/* ==================== big-baseball-snoopy/@reset.css ==================== */

.big-baseball-snoopy img {
	max-width: 100%;
	vertical-align: bottom;
}

.big-baseball-snoopy hr {
	border: none;
	margin: 0;
	height: 2em;
}



/* ==================== big-baseball-snoopy/@responsive.css ==================== */

.big-baseball-snoopy, .big-baseball-snoopy img {
	font-size: 20px;
}

@media (max-width: 375px) {
	.big-baseball-snoopy, .big-baseball-snoopy img {
		font-size: 5.3333333333333vw;
	}
}

@media (min-width: 568px) and (max-width: 1000px) {
	.big-baseball-snoopy, .big-baseball-snoopy img {
		font-size: 2vw;
	}
}

@media (min-width: 1280px) {
	.big-baseball-snoopy, .big-baseball-snoopy img {
		font-size: 1.5625vw;
	}
}



/* ==================== big-baseball-snoopy/@root.css ==================== */

.big-baseball-snoopy {

	--yellow: #fff31b;
	--red: #e50000;
	--lightgray: #d6dde6;
	--darkblue: #004391;

	line-height: 1.5;
	font-family: sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.big-baseball-snoopy.isLP {
	padding-bottom: 3em;
}



/* ==================== big-baseball-snoopy/artist.css ==================== */

.big-baseball-snoopy .artist {
	background: var(--darkblue);
	color: white;
}

.big-baseball-snoopy .artist > * {
	margin: 0;
}

.big-baseball-snoopy .artist h3 {
	font-size: 1.9em;
}

.big-baseball-snoopy .artist h3 [lang="en"] {
	font-family: 'Lora';
	font-style: italic;
}

.big-baseball-snoopy .artist h3 small {
	font-size: 42.105263157895%;
}

.big-baseball-snoopy .artist figure {
	width: 12em;
}

.big-baseball-snoopy .artist p {
	font-size: 80%;
	text-align: justify;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .artist {
		padding: 1.5em;
	}

	.big-baseball-snoopy .artist h2 {
		display: none;
	}

	.big-baseball-snoopy .artist h3 {
		padding-left: 3.25em;
		background: url(../images/artist_title.svg) no-repeat left top / cover;
		height: 3em;
	}
	.big-baseball-snoopy .artist h3 small {
		display: block;
		margin-top: 0.25em;
	}

	.big-baseball-snoopy .artist figure {
		margin: 1em auto 1.5em;
		text-align: center;
	}

}


@media (min-width: 568px) {
	.big-baseball-snoopy .artist {
		padding: 2.5em calc((100% - 48em)/2);
		display: grid;
		grid-template-columns: 7em 1fr 12em;
		grid-template-areas:
		'h2 h3 figure'
		'h2 p figure';
		grid-gap: 0.75em 1em;

	}

	.big-baseball-snoopy .artist h2 {
		grid-column: 1/3;
		grid-row: 1/3;
	}
	.big-baseball-snoopy .artist h2 img {
		width: 100%;
	}

	.big-baseball-snoopy .artist h3 {
		grid-column: 2;
		grid-row: 1;
	}
	.big-baseball-snoopy .artist p {
		align-self: start;
		grid-column: 2;
		grid-row: 2;
	}
	.big-baseball-snoopy .artist figure {
		grid-column: 3;
		grid-row: 1/3;
	}

}



/* ==================== big-baseball-snoopy/features.css ==================== */

.big-baseball-snoopy .features {
	background: var(--lightgray) no-repeat left top;
	background-image: linear-gradient(-2deg, rgba(255,255,255,0), rgba(255,255,255,0) 49.9%, white 50%);
}


@media (max-width: 567px){
	.big-baseball-snoopy .features {
		display: grid;
		grid-gap: 1.5em;
		padding: 0 1em 1.5em;
		background-size: 100% 20em;
	}
}


@media (min-width: 568px) {
	.big-baseball-snoopy .features {
		display: grid;
		justify-content: center;
		justify-items: center;
		grid-template-areas:
		'h2 figure1'
		'ol figure1'
		'ol figure2';
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 2em;
		padding: 0 calc((100% - 46em) / 2) 3em;
		background-size: 100% 14em;
	}

	.big-baseball-snoopy .features h2 {
		grid-area: h2;
		padding-bottom: 0.5em;
	}
	.big-baseball-snoopy .features ol {
		grid-area: ol;
	}
	.big-baseball-snoopy .features figure:nth-of-type(1) {
		padding-top: 2em;
		grid-area: figure1;
	}
	.big-baseball-snoopy .features figure:nth-of-type(2) {
		grid-area: figure2;
	}

}



/* ==================== big-baseball-snoopy/features__<figure>.css ==================== */

.big-baseball-snoopy .features figure {
	margin: 0;
}



/* ==================== big-baseball-snoopy/features__<h2>.css ==================== */

.big-baseball-snoopy .features h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: 900;
	line-height: 1.25;
	white-space: nowrap;
}

.big-baseball-snoopy .features h2 small {
	font-size: 45%;
}
.big-baseball-snoopy .features h2 > span:nth-of-type(1) {
	font-style: italic;
}
.big-baseball-snoopy .features h2 > span:nth-of-type(2) {
	color: var(--red);
	font-size: 85%;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .features h2 {
		font-size: 175%;
	}
}


@media (min-width: 568px) {
	.big-baseball-snoopy .features h2 {
		font-size: 220%;
	}
}



/* ==================== big-baseball-snoopy/features__<ol>.css ==================== */

.big-baseball-snoopy .features ol {
	display: grid;
	grid-gap: 1.5em;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.big-baseball-snoopy .features ol h3 {
	position: relative;
	padding-left: 3em;
	font-family: 'Noto Sans JP', sans-serif;
	/* font-family: 'Roboto', 'Noto Sans JP', sans-serif; */
	font-feature-settings: 'palt';
	font-weight: 900;
	line-height: 1.25;
	border-bottom: 4px solid white;
	margin: 0 0 0.5em;
	padding-bottom: 0.5em;
}

.big-baseball-snoopy .features ol h3 > span {
	display: block;
}
.big-baseball-snoopy .features ol h3 span span {
	color: var(--red);
}

.big-baseball-snoopy .features ol h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2.5em;
	height: 2.5em;
	background: no-repeat center center / contain;
}

.big-baseball-snoopy .features ol li:nth-of-type(1) h3::before { background-image: url(../images/features_num_1.svg); }
.big-baseball-snoopy .features ol li:nth-of-type(2) h3::before { background-image: url(../images/features_num_2.svg); }
.big-baseball-snoopy .features ol li:nth-of-type(3) h3::before { background-image: url(../images/features_num_3.svg); }

.big-baseball-snoopy .features ol p {
	margin: 0;
	font-size: 80%;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .features ol h3 {
		font-size: 100%;
	}
	.big-baseball-snoopy .features ol p {
		font-size: 70%;
	}
}


@media (min-width: 568px) {
	.big-baseball-snoopy .features ol h3 {
		font-size: 120%;
	}
}



/* ==================== big-baseball-snoopy/iteminfo.css ==================== */

.big-baseball-snoopy .iteminfo {
	border: 1px solid #ccc;
}

.big-baseball-snoopy .iteminfo figure {
	margin: 0;
}

.big-baseball-snoopy .iteminfo h2 {
	display: flex;
	flex-direction: column;
	margin: 0;
	color: var(--red);
	font-family: 'Roboto';
	font-weight: 700;
	font-style: italic;
	line-height: 1.25;
}
.big-baseball-snoopy .iteminfo h2 img {
	margin: 1.5em auto;
}
.big-baseball-snoopy .iteminfo h2 small {
	color: #999;
	font-size: 60%;
	font-weight: 500;
}

.big-baseball-snoopy .iteminfo p.price {
	margin: 0.75em 0 0.5em;
	font-weight: bold;
	font-size: 90%;
}

.big-baseball-snoopy .iteminfo p.text {
	margin: 0;
	font-size: 70%;
	text-align: justify;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .iteminfo {
		margin: 0 1.5em;
		padding: 1.5em;
	}

	.big-baseball-snoopy .iteminfo h2,
	.big-baseball-snoopy .iteminfo p.price {
		text-align: center;
	}

	.big-baseball-snoopy .iteminfo h2 {
		font-size: 140%;
	}
	.big-baseball-snoopy .iteminfo h2 img {
		width: 6em;
	}
	.big-baseball-snoopy .iteminfo h2 small {
		font-size: 50%;
	}

}


@media (min-width: 568px) {

	.big-baseball-snoopy .iteminfo {
		width: 40em;
		margin: 0 auto;
		padding: 1.5em;
	}

	.big-baseball-snoopy .iteminfo::after {
		content: '';
		display: block;
		clear: both;
	}

	.big-baseball-snoopy .iteminfo figure {
		float: left;
		width: 50%;
		margin-right: 1.5em;
	}

	.big-baseball-snoopy .iteminfo h2 {
		font-size: 180%;
	}
	.big-baseball-snoopy .iteminfo h2 img {
		width: 7.5em;
	}
	.big-baseball-snoopy .iteminfo h2 small {
		font-size: 50%;
	}

}



/* ==================== big-baseball-snoopy/main-title.css ==================== */

.big-baseball-snoopy .main-title {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: 900;
	line-height: 1.1;
	font-feature-settings: 'palt';
	white-space: nowrap;
}

.big-baseball-snoopy .main-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.big-baseball-snoopy .main-title strong {
	position: relative;
	font-weight: inherit;
	color: var(--red);
}
.big-baseball-snoopy .main-title span:nth-of-type(1) small {
	display: flex;
	align-items: center;
	border-radius: 0.9em;
	width: max-content;
	height: 1.8em;
	margin-bottom: 0.25em;
	padding: 0 0.75em;
	background: var(--red);
	color: white;
	font-size: 30%;
	line-height: 1;
	transform: translateX(4.5em);
}

.big-baseball-snoopy .main-title span:nth-of-type(3) {
	font-style: italic;
}

.big-baseball-snoopy .main-title span:last-child {
	margin-top: 0.25em;
	font-size: 62%;
}


@media (max-width: 567px) {
	.tobuy .main-title {
		font-size: 1.6em;
	}
}


@media (min-width: 568px) {
	.tobuy .main-title {
		font-size: 1.95em;
	}
}



/* ==================== big-baseball-snoopy/rotate.css ==================== */

.big-baseball-snoopy .rotate h2 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0.75em;
	background: var(--darkblue);
	color: white;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: 'palt';
	font-weight: 700;
	line-height: 1.25;
}

.big-baseball-snoopy .rotate h2::after {
	position: absolute;
	left: 50%;
	top: 100%;
	height: 0.75em;
	content: '';
	display: block;
	width: 2em;
	transform: translateX(-50%);
	background:
	linear-gradient(to left bottom, var(--darkblue) 49%, rgba(0,67,145,0) 50%) no-repeat left top / 50% 100%,
	linear-gradient(to right bottom, var(--darkblue) 49%, rgba(0,67,145,0) 50%) no-repeat right top / 50% 100%;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .rotate h2 {
		font-size: 100%;
	}
}


@media (min-width: 568px) {
	.big-baseball-snoopy .rotate {
		background: url(../images/rotate_back_pc.jpg) no-repeat center center / cover;
	}

	.big-baseball-snoopy .rotate h2 {
		font-size: 135%;
	}
}



/* ==================== big-baseball-snoopy/rotate__view.css ==================== */

@media (min-width: 568px) {
	.big-baseball-snoopy .rotate .view {
		width: 27em;
		aspect-ration: 1/1;
		margin: 0 auto;
		padding: 3em;
	}
}



/* ==================== big-baseball-snoopy/seller.css ==================== */

.big-baseball-snoopy .seller address {
	color: #999;
	font-style: normal;
	text-align: center;
	font-size: 70%;
}



/* ==================== big-baseball-snoopy/shops.css ==================== */

.big-baseball-snoopy .shops {
	padding: 0 1.5em;
}

.big-baseball-snoopy .shops h2 {
	text-align: center;
}

.big-baseball-snoopy .shops h2 img {
	width: 11em;
}

.big-baseball-snoopy .shops p {
	font-size: 80%;
}

.big-baseball-snoopy .shops figure {
	margin: 0;
}

.big-baseball-snoopy .shops p {
	font-family: 'Noto Sans JP';
	font-weight: 700;
	font-feature-settings: 'palt';
}


@media (max-width: 567px) {
	.big-baseball-snoopy .shops p {
		word-break: break-all;
		text-align: justify;
	}
}


@media (min-width: 568px) {
	.big-baseball-snoopy .shops {
		display: grid;
		grid-template-areas:
			'logo pic'
			'copy pic'
			'shops shops';
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1em;
		width: 48em;
		margin: 0 auto;
	}

	.big-baseball-snoopy .shops h2 {
		grid-area: logo;
		align-self: end;
		margin: 0;
	}
	.big-baseball-snoopy .shops p {
		grid-area: copy;
		align-self: start;
		margin: 0;
		text-align: center;
	}
	.big-baseball-snoopy .shops p span {
		display: inline-block;
	}

	.big-baseball-snoopy .shops figure {
		grid-area: pic;
	}

	.big-baseball-snoopy .shops ul {
		grid-area: shops;
	}
}



/* ==================== big-baseball-snoopy/shops__<ul>.css ==================== */

.big-baseball-snoopy .shops ul {
	border-top: 1px solid #e6e6e6;
	margin: 1em 0 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}

.big-baseball-snoopy .shops ul li {
	border: 0 solid #e6e6e6;
}

.big-baseball-snoopy .shops ul h3 {
	margin: 0 0 0.5em;
	line-height: 1.25;
	font-weight: normal;
	font-size: 80%;
	
}
.big-baseball-snoopy .shops ul h3 span {
	display: block;
}

.big-baseball-snoopy .shops ul dl {
	margin: 0;
	font-size: 70%;
}
.big-baseball-snoopy .shops ul dt {
	display: none;
}
.big-baseball-snoopy .shops ul dd {
	margin: 0;
}
.big-baseball-snoopy .shops ul dd a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}
.big-baseball-snoopy .shops ul dd a::before {
	margin-right: 0.2em;
	font-family: 'Material Icons';
	font-size: 135%;
}

/* location */
.big-baseball-snoopy .shops ul .location {
	display: flex;
	align-items: center;
	margin: 0;
	color: #00a0e9;
}
.big-baseball-snoopy .shops ul .location::before {
	content: 'location_on';
	font-family: 'Material Icons';
	font-size: 150%;
}
.big-baseball-snoopy .shops ul .location a {
	color: inherit;
	text-decoration: underline;
}

/* tel */
.big-baseball-snoopy .shops ul .tel {
	font-weight: bold;
}
.big-baseball-snoopy .shops ul .tel a {
	text-decoration: none;
}
.big-baseball-snoopy .shops ul .tel a::before {
	content: 'phone';
}

/* contact */
.big-baseball-snoopy .shops ul .contact {
	align-self: stretch;
	font-weight: bold;
}
.big-baseball-snoopy .shops ul .contact a {
	height: 2.75em;
	background: var(--yellow);
	text-decoration: none;
}
.big-baseball-snoopy .shops ul .contact a::before {
	content: 'mail_outline';
}



/* ==================== big-baseball-snoopy/shops__<ul>@pc.css ==================== */

@media (min-width: 568px) {
	.big-baseball-snoopy .shops ul {
		display: flex;
		padding-top: 1em;
	}
	.big-baseball-snoopy .shops ul li {
		padding: 0 0.75em;
		width: 100%;
	}
	.big-baseball-snoopy .shops ul li:not(:last-child) {
		border-right-width: 1px;
	}
	.big-baseball-snoopy .shops ul dl {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75em;
	}
}



/* ==================== big-baseball-snoopy/shops__<ul>@sp.css ==================== */

@media (max-width: 567px) {

	.big-baseball-snoopy .shops ul li,
	.big-baseball-snoopy .shops ul dl {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 0.75em 0.5em;
		justify-items: center;
	}

	.big-baseball-snoopy .shops ul li {
		padding: 1.25em 0;
		border-bottom-width: 1px;
	}

	.big-baseball-snoopy .shops ul h3 {
		grid-column: 1;
		grid-row: 1/3;
		align-self: start;
	}

	.big-baseball-snoopy .shops ul dl {
		justify-self: stretch;
		grid-column: 1/3;
		grid-row: 1/3;
		grid-template-rows: repeat(2, auto);
		grid-auto-flow: column;
	}
	.big-baseball-snoopy .shops ul dl::before {
		content: '';
	}

	.big-baseball-snoopy .shops ul .location {
		align-self: end;
	}
	.big-baseball-snoopy .shops ul .contact {
		justify-self: stretch;
	}
}



/* ==================== big-baseball-snoopy/tobuy.css ==================== */

.big-baseball-snoopy .tobuy {
	position: relative;
}

.big-baseball-snoopy .tobuy > * {
	margin: 0;
}

.big-baseball-snoopy .tobuy figure img[src*="bigsize.svg"] {
	position: absolute;
}

.big-baseball-snoopy .tobuy p {
	text-align: center;
}
.big-baseball-snoopy .tobuy p img {
	width: 90%;
}

.big-baseball-snoopy .tobuy a {
	grid-area: btn;
}
.big-baseball-snoopy .tobuy a img {
	width: 100%;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .tobuy {
		display: flex;
		flex-direction: column;
		gap: 1em;
		padding: 5.75em 1.5em 1.5em;
		background: url(../images/tobuy_back_sp.jpg) no-repeat right top 2em / cover;
		font-size: 4vw;
	}

	.big-baseball-snoopy .tobuy figure img {
		position: absolute;
	}
	.big-baseball-snoopy .tobuy figure img[src*="bigsize.svg"] {
		left: 40%;
		top: 0;
		width: 38%;
	}
	.big-baseball-snoopy .tobuy figure img[src*="snoopy.png"] {
		left: 0;
		top: 0;
		width: 40%;
	}

	.big-baseball-snoopy .tobuy h2 {
		width: max-content;
		margin-left: auto;
	}

}


@media (min-width: 568px) {
	.big-baseball-snoopy .tobuy {
		display: grid;
		justify-content: center;
		grid-gap: 0.5em 1em;
		grid-auto-rows: 6.5em;
		grid-template-columns: auto 19.5em;
		padding: 3.5em 0 1.5em;
		background: url(../images/tobuy_back_pc.jpg) no-repeat center bottom / cover;
		background-clip: content-box;
	}

	.big-baseball-snoopy .tobuy {
		grid-template-areas:
		'title feature'
		'title btn';
	}

	.big-baseball-snoopy .tobuy figure {
		position: absolute;
		right: 50%;
		top: 0;
		height: 100%;
		transform: translateX(-12.5em);
	}
	.big-baseball-snoopy .tobuy figure img[src*="bigsize.svg"] {
		left: 100%;
		top: 0;
		transform: translateX(-15%);
		width: 64%;
	}
	.big-baseball-snoopy .tobuy figure img[src*="snoopy.png"] {
		height: 100%;
	}

	.big-baseball-snoopy .tobuy h2 {
		grid-area: title;
		align-self: center;
		margin-left: 4.5em;
	}

	.big-baseball-snoopy .tobuy p {
		grid-area: feature;
		align-self: end;
	}

	.big-baseball-snoopy .tobuy a {
		align-self: start;
	}

}



/* ==================== big-baseball-snoopy/top.css ==================== */

.big-baseball-snoopy .top {
	position: relative;
	display: grid;
	background: var(--darkblue) no-repeat;
}

.big-baseball-snoopy .top .logo {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
}

.big-baseball-snoopy .top h1 {
	margin: 0;
}

.big-baseball-snoopy .top figure {
	position: relative;
	margin: 0;
}

.big-baseball-snoopy .top p:nth-of-type(2) {
	margin: 0;
	color: white;
	font-weight: bold;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .top {
		padding: 1.5em 0 0;
		background:
		linear-gradient(var(--darkblue), var(--darkblue)) no-repeat left bottom / 100% 8em,
		url(../images/top_back_sp.jpg) no-repeat center top / contain;
		font-size: 4vw;
	}

	.big-baseball-snoopy .top .logo {
		padding: 0.5em;
	}
	.big-baseball-snoopy .top .logo img {
		width: 4em;
	}

	.big-baseball-snoopy .top h1 {
		margin-bottom: 0.25em;
		font-size: 225%;
	}

	.big-baseball-snoopy .top figure,
	.big-baseball-snoopy .top p:nth-of-type(1) {
		grid-column: 1;
		grid-row: 2;
	}

	.big-baseball-snoopy .top figure {
		margin-top: 1.25em;
		overflow-x: visible;
	}

	.big-baseball-snoopy .top figure img[src*="bigsize"] {
		position: absolute;
		width: 7em;
		transform: translate(6.75em, -1.25em);
	}

	.big-baseball-snoopy .top figure img[src*="top_image"] {
		position: relative;
		width: 10.5em;
	}

	.big-baseball-snoopy .top p:nth-of-type(1) {
		align-self: end;
		justify-self: end;
		margin: 0.5em;
	}
	.big-baseball-snoopy .top p:nth-of-type(1) img {
		width: 10em;
	}

	.big-baseball-snoopy .top p:nth-of-type(2) {
		padding: 1em;
		font-size: 90%;
		text-align: justify;
	}

}


@media (min-width: 568px) {
	.big-baseball-snoopy .top {
		justify-content: center;
		justify-items: center;
		grid-template-areas:
		'figure h1'
		'figure p1'
		'figure p2';
		padding: 3em 0 1.5em;
		background:
		linear-gradient(var(--darkblue), var(--darkblue)) no-repeat left bottom / 100% 6em,
		url(../images/top_back_pc.jpg) no-repeat center top / cover;
	}

	.big-baseball-snoopy .top .logo {
		padding: 1em;
	}
	.big-baseball-snoopy .top .logo img {
		width: 6em;
	}

	.big-baseball-snoopy .top h1 {
		grid-area: h1;
		font-size: 280%;
	}

	.big-baseball-snoopy .top figure {
		grid-area: figure;
		width: 20em;
	}
	.big-baseball-snoopy .top figure img[src*="bigsize"] {
		position: absolute;
		left: 100%;
		top: 0;
		width: 50%;
		transform: translate(-50%, -25%);
	}

	.big-baseball-snoopy .top p:nth-of-type(1) img {
		grid-area: p1;
		width: 24em;
	}

	.big-baseball-snoopy .top p:nth-of-type(2) {
		grid-area: p2;
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 75%;
	}

}



/* ==================== big-baseball-snoopy/youtube.css ==================== */

.big-baseball-snoopy .youtube {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.big-baseball-snoopy .youtube > * {
	position: relative;
}

.big-baseball-snoopy .youtube h2 {
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0;
	background: var(--red);
	color: white;
	font-family: 'Noto Sans JP';
	font-weight: 700;
	font-feature-settings: 'palt';
	line-height: 1.25;
}

.big-baseball-snoopy .youtube h2::after {
	position: absolute;
	left: 50%;
	top: 100%;
	height: 0.75em;
	content: '';
	display: block;
	width: 2em;
	transform: translateX(-50%);
	background:
	linear-gradient(to left bottom, var(--red) 49%, rgba(230,0,0,0) 50%) no-repeat left top / 50% 100%,
	linear-gradient(to right bottom, var(--red) 49%, rgba(230,0,0,0) 50%) no-repeat right top / 50% 100%;
}

.big-baseball-snoopy .youtube iframe {
	padding: 1.5em;
	border: none;
	background: black;
	aspect-ratio: 16/9;
}


@media (max-width: 567px) {
	.big-baseball-snoopy .youtube h2 {
		padding: 0.5em 0;
		font-size: 90%;
	}

	.big-baseball-snoopy .youtube iframe {
		box-sizing: border-box;
		width: 100%;
	}

}


@media (min-width: 568px) {
	.big-baseball-snoopy .youtube {
		padding-bottom: 2em;
		background: var(--lightgray);
	}
	.big-baseball-snoopy .youtube h2 {
		height: 2em;
		border-radius: 1em;
		padding: 0 1em;
		font-size: 100%;
	}

	.big-baseball-snoopy .youtube iframe {
		width: 40em;
		margin-top: -1em;
		padding-top: 2em;
	}
}