@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;
}


/*=================== 共通css */
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: 600;
	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;
}

/*文字ぞろえ*/
.text_center {
	text-align: center;
}

.text_left {
	text-align: left;
}

.text_right {
	text-align: right;
}


.aki {
	display: inline-block;
	width: 2.5rem;
}

.font-weight600 {
	font-weight: 600;
}

.font-weight800 {
	font-weight: 800;
}

.font-weight900 {
	font-weight: 900;
}

.text_upp {
	text-transform: uppercase;
}

*, :after, :before {
	box-sizing: border-box;
}

.emphasis_line {
	display: inline-block;
	/*下線微調整に必要*/
	line-height: normal;
	/*下線微調整に必要*/
}

/*ulリセット*/
ul {
	margin: 0;
	padding: 0;
}

/*liタグリセット*/
li {
	list-style: none;
}

/*aタグリセット*/
a {
	text-decoration: none;
	color: #000;
}

/*ボタンリセット*/
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
}

/*imgレスポンシブ*/
img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	pointer-events: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*背景白*/
.bg_white {
	background-color: #fff;
}

/*背景白*/
.bg_white_80 {
	background: rgba(255, 255, 255, 0.8);
}


/*灰色景白*/
.bg_gray {
	background-color: #EAEAEA;
}

/*見えなくする*/
.display_none {
	display: none;
}

/*---pcsp表示非表示---*/
.pc {
	display: block;
}

.sp {
	display: none;
}

/*共通cssここまで===================*/

/*---見出し---*/
h1, h2, h3 {
	line-height: 1.4;
}


/*header*/
.header {
	background-color: #fff;
}

.header_wrap {
	display: flex;
	max-width: 1000px;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding-left: 15px;
}

.header_wrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 135px;
	height: 45px;
}




/*main*/

.mainvisual_wrap {
	position: relative;
	top: 0;
	left: 0;
	height: 607px;
	color: #fff;
	z-index: 4;
}

.mainvisual_wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.kazari_text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 21;
}

.kazari_dot {
	position: absolute;
	width: 164px;
	height: auto;
}

.mainvisual_03 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

.mainvisual_03 img {
	position: relative;
}


.mainvisual_text {
	position: absolute;
	bottom: 0;
	width: 100%;
	line-height: 1.3;
	z-index: 13;
}


.mainvisual_text_inner {
	position: relative;
	width: 100%;
	height: 135px;
}


.mainvisual_text_inner h1 {
	position: absolute;
	width: 946px;
	font-size: 5rem;
	font-style: italic;
	line-height: 1.2;
	color: #fff;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}




.black_line_top {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 1;
}

/* topアニメーション遅延時間*/
.delay-time02 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.box {
	opacity: 0;
}

.fade {
	-webkit-animation-name: fadeAnime;
	animation-name: fadeAnime;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/*top黒帯アニメーション*/
.bgextend {
	-webkit-animation-name: bgextendAnimeBase;
	animation-name: bgextendAnimeBase;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;
	opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes bgextendAnimeBase {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.bgappear {
	-webkit-animation-name: bgextendAnimeSecond;
	animation-name: bgextendAnimeSecond;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*左から右*/
.bgLRextend::before {
	-webkit-animation-name: bgLRextendAnime;
	animation-name: bgLRextendAnime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000;
}

@-webkit-keyframes bgLRextendAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}

	50% {
		transform-origin: left;
		transform: scaleX(1);
	}

	50.001% {
		transform-origin: right;
	}

	100% {
		transform-origin: right;
		transform: scaleX(1);
	}
}

@keyframes bgLRextendAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}

	50% {
		transform-origin: left;
		transform: scaleX(1);
	}

	50.001% {
		transform-origin: right;
	}

	100% {
		transform-origin: right;
		transform: scaleX(1);
	}
}

.bgappearTrigger,
.bgLRextendTrigger {
	opacity: 0;
}

/*=== スクロールダウン ====*/

.scrolldown {
	position: absolute;
	top: 15vh;
	bottom: initial;
	left: 50%;
	z-index: 10;
	opacity: 1;
	transition: .3s;
}
.is-active{
	opacity: 0;
  }

/*Scrollテキストの描写*/
.scrolldown span {
	position: absolute;
	left: -24px;
	bottom: 61px;
	color: #ffffff;
	font-size: 1.7rem;
	letter-spacing: 0.05em;
}

/* 丸の描写 */
.scrolldown:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ffffff;
	-webkit-animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
	0% {
		bottom: 55px;
	}

	100% {
		bottom: -5px;
	}
}

@keyframes circlemove {
	0% {
		bottom: 55px;
	}

	100% {
		bottom: -5px;
	}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1;
	}

	80% {
		opacity: 0.9;
	}

	100% {
		opacity: 0;
	}
}

@keyframes cirlemovehide {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1;
	}

	80% {
		opacity: 0.9;
	}

	100% {
		opacity: 0;
	}
}

/* 線の描写 */
.scrolldown:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 57px;
	background: #ffffff;
}

/*コンテンツレイアウト*/

.black_line {
	position: relative;
	display: block;
	content: "";
	width: 1px;
	height: 120px;
	margin: 0 auto;
	background-color: #000;
	z-index: 1;
}

/*プロフィール部分*/
.pf_area {
	position: relative;
	padding-top: 50px;
}

.pf_area_wrap {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
	padding: 106px 0 100px 0;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
	grid-template-areas:
		"a c"
		"b c";
	grid-column-gap: 50px;
	grid-row-gap: 0px;
}

.kazari_white {
	position: absolute;
	width: 1100px;
	top: -25%;
	left: -111%;
}

.pf_area_inner {
	position: relative;
	max-width: 276px;
	z-index: 2;
}

.squea_box {
	position: absolute;
	content: "";
	width: 62px;
	height: 62px;
	top: -13px;
	left: -30px;
}

.pf_area_inner p {
	font-size: 1.8rem;
	line-height: 1;
}

.pf_area_inner h2 {
	position: relative;
	font-size: 6rem;
	z-index: 1;
}

.pf_area_inner p:nth-child(2) {
	font-size: 2.6rem;
	padding: 12px 0;
}

.Section-Headline {
	grid-area: a;
}

.Section-Image {
	width: 100%;
	grid-area: c;
	display: grid;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.Section-Text {
	position: relative;
	grid-area: b;
	padding-top: 45px;
	z-index: 2;
	font-size: 1.7rem;
}

/*記事部分*/
.article_area {
	max-width: 1000px;
	margin: 0 auto;
	padding: 240px 15px 0 15px;
}

.article_area_inner {
	max-width: 600px;
	margin: 0 auto;
}

.aritcle_area_h2 {
	font-size: 4.2rem;
	text-align: start;
}

.article_area p {
	font-size: 1.8rem;
	padding: 50px 0;
}

/*記事写真部分*/
.article_area_img {
	display: flex;
	justify-content: center;
	width: calc(100% - 8px);
}

.article_area_img_inner {
	position: relative;
}

.article_area_img_right {
	justify-content: end;
}

.article_area_img_left {
	justify-content: start;
}

.box_shadow {
	position: relative;
	z-index: 2;
}

.stripe_box {
	content: "";
	position: absolute;
	width: 148px;
	height: 148px;
	z-index: 1;
}

/*右下ストライプボックス*/
.stripe_box_right {
	bottom: -74px;
	right: -74px;
}

/*左下ストライプボックス*/
.stripe_box_left {
	bottom: -74px;
	left: -74px;
}

/*飾り部分*/
.kazari {
	position: relative;
	height: 240px;
	width: 1000px;
	margin: 0 auto;
}

.kazari img {
	width: 1373px;
	mix-blend-mode: multiply;
	position: absolute;
	bottom: 0;
	left: -30%;
}

/*stcky部分*/
.sticky-hero__media {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	height: 100vh;
}

.sticky-hero__content {
	position: relative;
	z-index: 2;
	height: 100%;
	top: -20vh;
	margin-top: 20vh;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	transform: translateZ(0);
}

.sticky-hero--media-is-fixed .sticky-hero__media {
	transform: scale(0.9);
}

/*グラフ*/
.graf_title {
	font-size: 3.2rem;
}

.graf_img {
	margin-top: 87px;
	padding-bottom: 35px;
}

.graf_comment {
	display: flex;
	justify-content: end;
}

.graf_comment_inner span {
	display: block;
	line-height: 1.3;
	font-size: 1.5rem;
}

.graf_comment_inner span:first-child::before {
	content: "※";
	margin-left: -1.5rem;
}

/*成績表*/

.dl_grade_wrap {
	max-width: 1000px;
	padding: 100px 162px;
}

.dl_grade_caption {
	font-size: 3.2rem;
	margin-bottom: 1em;
	padding: 1rem;
}

.dl_grade {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1042px;
	height: 100%;
	gap: 10px;
}

.dl_grade dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 82px;
	font-size: 1.7rem;
}

.dl_grade_content {
	width: calc(100% - 92px);
}

.dl_grade_content:not(:last-child) {
	border-bottom: 2px solid #000000;
}

.dl_grade_content .dl_grade_content_inner:not(:last-child) {
	border-bottom: 1px solid #000000;
}

.dl_grade_content_inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	line-height: 1.4;
	font-size: 1.9rem;
	padding: 16px 0;
}

.victory {
	color: #fff;
	background: #E50012;
	padding: 0.2rem 2rem;
	font-size: 1.8rem;
}

.lank {
	color: #000;
	padding: 0 2rem;
}

.metre {
	font-size: 2.8rem;
	color: #009ED7;
	margin-left: 1rem;
}

.place {
	width: calc(100% - 84px);
}

.place span {
	display: inline-block;
}

.dl_grade_content_inner dd:not(:first-child) {
	width: 204px;
	display: flex;
	justify-content: end;
	align-items: center;
	flex-wrap: nowrap;
}

@media (max-width: 1041px) {
	.dl_grade_wrap {
		padding: 15px;
		margin: 0 15px;
	}

	.dl_grade_content_inner dd:not(:first-child) {
		width: 100%;
	}
}



/*エリア分け下矢印*/
.traiangl_area01::before {
	content: "";
	width: 100%;
	height: 50%;
	background-color: #ffffff;
	position: absolute;
	bottom: 0px;
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
	clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
}

.traiangl_area01 {
	width: 100%;
	background-size: cover;
	padding: 20vw 0;
	position: relative;
}

.traiangl_area01::after {
	content: "";
	width: 100%;
	height: 50%;
	background-color: #ffffff;
	position: absolute;
	bottom: 0px;
	-webkit-clip-path: polygon(50% 100%, 100% 0%, 100% 100%);
	clip-path: polygon(50% 100%, 100% 0%, 100% 100%);
}

/*ラストエリア*/
.last_area {
	position: relative;
	background-color: #fff;
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 240px;
}

.last_area_img {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.last_area_svg {
	position: absolute;
	display: block;
	width: 100%;
	left: 50%;
	bottom: -1px;
	transform: translateX(-50%);
	opacity: 0.6;
}

.last_area_svg img {
	max-width: 1000px;
	margin: 0 auto -2px;
}

/*リンクエリア*/
.link_area {
	margin: 0 auto;
}

/*関連記事を読む*/
ul.cp_list_02 {
	padding: 200px 15px 140px 15px;
	max-width: 600px;
	margin: 0 auto;
	list-style-type: none;
}

.cp_list_02_title {
	font-size: 1.8rem;
	border-bottom: 2px solid #333;
	padding-bottom: 0.5em;
	margin-bottom: 8px;
}

ul.cp_list_02 li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 20px 2em 20px 1em;
	line-height: 1.5;
	border-bottom: 1px solid #000;
	color: #000;
	background: #fff;
	overflow: hidden;
	z-index: 2;
	transition: 0.3s;
}

ul.cp_list_02 li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 8px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: translateY(-50%) rotate(-45deg);
	transition: 0.3s;
	z-index: 1;
}

ul.cp_list_02 li a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	transition: all .3s ease-in-out;
	transform: translateX(-99%);
	background: #000;
	z-index: -5;
}

ul.cp_list_02 li a:hover:before {
	transform: translateX(0%);
}

ul.cp_list_02 li:hover a::after {
	border-right: 2px solid #fff !important;
	border-bottom: 2px solid #fff !important;
}

.cp_list_02 li a:hover {
	color: #fff;
}

ul.cp_list_02 li:not(:last-child) {
	margin-bottom: 3px;
}

.link-card-wrapper {
	width: 100%;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid gray;
	border-radius: 8px;
	margin: 0;
	padding: 10px;
}

.link-card, a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color: #333;
}

.link-card-image, .link-card-text {
	width: 100%;
}

.link-card-text {
	padding-bottom: 0;
}

.link-card-image img {
	width: 126px;
	height: 90px;
	-o-object-fit: cover;
	object-fit: cover;
}

.link-card-image_top img {
	-o-object-position: 100% 20%;
	object-position: 100% 20%;
}

.link-card-title {
	font-size: 1.8rem;
	line-height: 1.3;
	font-weight: 800;
	margin: 0 0 10px 0;
}

.link-card-title span {
	display: inline-block;
}

blockquote {
	font-size: 17px;
	margin: 0 0 10px 0;
	padding: 0 20px;
	border-left: 5px solid #ddd;
}

.card-blockquote p {
	margin: 0;
	padding: 5px 0;
}

.link-card-description {
	line-height: 1.3;
	margin: 0 0 10px 0;
	font-size: 1.4rem;
}

.link-card-domain {
	display: flex;
}

.link-card-domain img {
	width: 16px;
	height: 16px;
	margin: 0 8px 0 0;
}

.link-card-domain p {
	display: inline-block;
	margin: 0 10px 0 0;
	color: gray;
	font-size: 14px;
	line-height: 1.2;
}

.link-card-content {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
}

/* image */
#grid-content-1 {
	margin: auto 0;
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

/* title */
#grid-content-2 {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

/* description,favicon,url */
#grid-content-3 {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	display: grid;
	grid-template-rows: auto 1fr;
	margin-top: 5px;
	padding-left: 20px;
}

.trimming {
	width: 100%;
	overflow: hidden;
	display: block;
}

.trimming__inner {
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

/*----- PC専用 */
@media screen and (min-width:769px), print {

	.trimming__pc1 {
		line-clamp: 1;
		-webkit-line-clamp: 1;
	}

	.trimming__pc2 {
		line-clamp: 2;
		-webkit-line-clamp: 2;
	}

	.trimming__pc3 {
		line-clamp: 3;
		-webkit-line-clamp: 3;
	}

}

/*----- SP専用 */
@media screen and (max-width:768px), print {

	.trimming__sp1 {
		line-clamp: 1;
		-webkit-line-clamp: 1;
	}

	.trimming__sp2 {
		line-clamp: 2;
		-webkit-line-clamp: 2;
	}

	.trimming__sp3 {
		line-clamp: 3;
		-webkit-line-clamp: 3;
	}

}

@media (min-width: 640px) {


	.link-card-title {
		margin: 0;
	}

	.link-card-text {
		padding-bottom: 8px;
	}

	.link-card-image {
		width: 100%;
		margin: 5px 0;
	}

	.link-card-image img {
		width: 126px;
		height: 90px;
	}


	.link-card-description {
		font-size: 1.5rem;
		margin: 0 0 10px 0;
	}

	.link-card-domain {
		align-items: end;
		margin-bottom: 5px;
	}
}

/*リンクのバナー*/
.link-bunner {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 15px 140px 15px;
}

.link-bunner li:not(:last-child) {
	padding-bottom: 20px;
}

.hover {
	transition: 0.5s;
}

.hover:hover {
	opacity: 0.5;
}


/*sns*/
.sns-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 40px;
}

.sns-btn li {
	width: 30px;
	margin-left: 10px;
	margin-right: 10px;
}

.sns-btn li a {
	display: block;
	width: 100%;
	height: 100%;
}

.staff {
	font-size: 1.2rem;
	padding-bottom: 80px;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}

.staff dt {
	text-transform: capitalize;
}

.staff dd {
	color: #6B6B6B;
}

.staff dl:not(:last-child) {
	margin-bottom: 30px;
}

/*footer*/
.footer_inner {
	width: 100%;
	height: auto;
}

.footer_inner small {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1300px;
}

.footer_inner {
	padding: 14px 12px;
}

/*最新記事ホップアップ*/
.new_articlepage_link {
	position: fixed;
	bottom: 35px;
	right: 35px;
	z-index: 100;
	margin: 0 15px;
	width: 300px;
}

.new_articlepage_link a {
	display: block;
	width: 100%;
	padding: 0.5rem 15px;
	font-size: 1.6rem;
	color: #000;
	background: #ffffffd7;
	border: solid 1px #000;
	box-shadow: 0px 0px;
	transition: all 0.3s;
}

.new_articlepage_link a span {
	display: inline-block;
}

.new {
	color: #E50012;
}

.new_articlepage_link a:hover {
	box-shadow: 3px 3px #000;
}

.hidden {
	animation: fade .2s ease-in-out forwards;
}

@keyframes fade {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(100%);
	}
}

.visible {
	animation: fadeOut .2s ease-in-out forwards;
}

@keyframes fadeOut {
	from {
		opacity: 0;
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/*アニメーション*/
.animation {
	animation: buruburu 1s ease-in-out infinite;
	scale: 1;
}

@keyframes buruburu {
	0% {
		transform: translateX(0)
	}

	50% {
		transform: translateX(5px)
	}

	100% {
		transform: translateX(0px)
	}
}

/*狭いブラウザとタブレット向け*/
/*スマホ向け*/
@media (max-width: 460px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	/*header*/
	.header_wrap a {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 150px;
		height: 26px;
		justify-content: end;
		z-index: 20;
		opacity: 0.75;
	}


	/*main*/

	.mainvisual_wrap {
		overflow: hidden;
		height: 100svh;
	}

	.mainvisual {
		width: 100%;
		padding: 0 16px;
	}

	.mainvisual_03 {
		position: absolute;
		top: initial;
		left: initial;
		transform: translate(0, -0);
	}

	.mainvisual_03 img {
		position: relative;
		left: 0;
	}

	.mainvisual_text {
		bottom: 15vh;
	}

	@media (max-height: 740px) and (max-width: 460px) {
		.mainvisual_text {
			bottom: 10vh;
		}
	}


	.mainvisual_text_inner {
		height: 26vw;
	}

	.mainvisual_text_inner h1 {
		width: 100%;
		font-size: 9vw;
		padding: 0 1.5rem;
	}

	.aki {
		width: 1.3rem;
	}

	/*=== スクロールダウン ====*/

	.scrolldown2 {
		position: absolute;
		bottom: 0;
		left: 50%;
		z-index: 10;
	}

	/*Scrollテキストの描写*/
	.scrolldown2 span {
		display: none;
		position: absolute;
		left: 10px;
		bottom: 10px;
		color: #000000;
		font-size: 0.7rem;
		letter-spacing: 0.05em;
		-ms-writing-mode: tb-rl;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
	}

	/* 丸の描写 */
	.scrolldown2:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: -4px;
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: #000000;
		-webkit-animation:
			circlemove 1.6s ease-in-out infinite,
			cirlemovehide 1.6s ease-out infinite;
		animation:
			circlemove 1.6s ease-in-out infinite,
			cirlemovehide 1.6s ease-out infinite;
	}

	/*下からの距離が変化して丸の全体が上から下に動く*/
	@-webkit-keyframes circlemove {
		0% {
			bottom: 55px;
		}

		100% {
			bottom: -5px;
		}
	}

	@keyframes circlemove {
		0% {
			bottom: 55px;
		}

		100% {
			bottom: -5px;
		}
	}

	/*上から下にかけて丸が透過→不透明→透過する*/
	@-webkit-keyframes cirlemovehide {
		0% {
			opacity: 0
		}

		50% {
			opacity: 1;
		}

		80% {
			opacity: 0.9;
		}

		100% {
			opacity: 0;
		}
	}

	@keyframes cirlemovehide {
		0% {
			opacity: 0
		}

		50% {
			opacity: 1;
		}

		80% {
			opacity: 0.9;
		}

		100% {
			opacity: 0;
		}
	}

	/* 線の描写 */
	.scrolldown2:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 1px;
		height: 57px;
		background: #000000;
	}

	/*コンテンツレイアウト*/
	/*右下ストライプボックス*/
	.stripe_box_right {
		bottom: -51px;
		right: -25px;
	}

	.stripe_box_right80 {
		bottom: -51px;
		right: -80px;
	}

	/*左下ストライプボックス*/
	.stripe_box_left {
		bottom: -51px;
		left: -25px;
	}

	/*プロフィール部分*/
	.pf_area_inner p {
		font-size: 1.6rem;
	}

	.pf_area_inner h2 {
		font-size: 5.4rem;
	}

	.pf_area_inner p:nth-child(2) {
		font-size: 2.1rem;
		padding: 18px 0 12px 0;
	}

	.pf_area_inner p:nth-child(3) {
		padding-bottom: 25px;
		font-size: 1.7rem;
	}

	.pf_area_wrap {
		padding: 120px 50px 0 50px;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		grid-column-gap: 0px;
		grid-template-areas:
			"a"
			"c"
			"b";
	}

	.Section-Image {
		justify-content: end;
	}

	.pf_img {
		width: 47vw;
	}

	.Section-Text {
		padding: 25px 0 10px;
		font-size: 1.6rem;
	}

	.pf_area {
		padding-top: 0px;
	}

	.kazari_white {
		width: 664px;
		top: -4%;
		left: -63%;
		transform: scale(-1, 1);
	}

	/*飾り部分*/
	.kazari {
		margin: 0 auto -20px;
		height: 120px;
	}

	.kazari img {
		width: 730px;
		bottom: 0;
		left: -30%;
	}

	/*stcky部分*/
	.sticky-hero__media {
		margin: 20px 0;
	}

	/*記事部分*/
	.article_area {
		padding-top: 100px;
	}

	.aritcle_area_h2 {
		font-size: 2.9rem;
		text-align: start;
		line-height: 1.3;
	}

	.aritcle_area_h2 span {
		display: inline-block;
	}

	.article_area p {
		font-size: 1.6rem;
		padding: 35px 0;
	}

	.stripe_box {
		width: 102px;
		height: 102px;
	}

	/*グラフ*/
	.graf_title {
		font-size: 2.2rem;
		line-height: 1.3;
		padding-top: 26px;
	}

	.graf_title span {
		display: block;
	}


	.graf_img {
		margin-top: 40px;
		padding-bottom: 20px;
	}

	.graf_comment_inner span {
		font-size: 1.2rem;
	}


	/*成績表*/
	.dl_grade_caption {
		font-size: 2.2rem;
		width: calc(100% + 30px);
		margin-left: -15px;
		padding: 1rem 0.5rem;
	}

	.dl_grade dt {
		width: 52px;
		font-size: 1.6rem;
	}

	.dl_grade_content {
		width: calc(100% - 62px);
	}

	.dl_grade_content_inner {
		font-size: 1.7rem;
	}

	.metre {
		font-size: 2.3rem;
	}

	.victory {
		font-size: 1.6rem;
		padding: 0.4rem 1.6rem;
	}

	.lank {
		padding: 0.4rem 1.6rem;
	}

	.place {
		width: calc(100% - 70px);
		text-align: end;
		padding-right: 10px;
	}

	.dl_grade_wrap {
		padding: 0 15px 15px 15px;
		margin: 0 15px;
	}

	/*ラストエリア*/
	.last_area {
		padding-top: 100px;
	}

	/*sns*/
	.sns-btn {
		padding-top: 20px;
	}

	/*関連記事を読む*/
	ul.cp_list_02 {
		padding: 100px 15px 60px 15px;
	}

	.staff {
		padding-bottom: 60px;
	}

	/*リンクのバナー*/
	.link-bunner {
		padding: 0 15px 60px 15px;
	}

	/*最新記事ホップアップ*/
	.new_articlepage_link {
		position: fixed;
		bottom: 25px;
		width: 80%;
		margin: 0;
		opacity: 0;
	}

	.new_articlepage_link a {
		font-size: 4vw;
	}

}