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

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1500;
  background:#ffffff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:200px;
}

.p-hidden {
	display: none;
	opacity: 0;
	visibility: hidden;
}

/*言語選択*/

.lang {
	position: absolute;
	
	top:0;
	width: 28px;
	padding-top:100px;
	display: block;
	z-index: 19;
}

@media screen and (min-width:961px) { /*PC*/
	.lang {
		right:20px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.lang {
		right:10px;
	}
}

.lang:after {
	content: "";
	width:2px;
	height: 200px;
	background-color:#000;
	display: block;
	position: absolute;
	right: 13px;
	top:0;
}

.lang ul {
	display: flex;
	flex-direction: column;
	gap:20px;
}

.lang ul li a {
	background-color:#000;
	box-sizing:border-box;
	border:1px solid #000;
	display: block;
	width:28px;
	height:28px;
	position: relative;
	z-index: 20;
}

/*メインビジュアル*/

@media screen and (min-width:961px) { /*PC*/
	.p-mainvisual {
		background: url("../img/mainvisual.webp") right top no-repeat;
		width: 100%;
		max-width: 1920px;
		height: 1080px;
		margin:0 auto;
		position: relative;
		z-index: 10;
	}

	.p-main-logo {
		background:url("../img/main_logo.webp") left top no-repeat;
		width: 293px;
		height: 470px;
		position: absolute;
		left:100px;
		top:100px;
	}

	.p-main-staff {
		background:url("../img/day_staff.webp") left top no-repeat;
		width: 465px;
		height: 209px;
		position: absolute;
		left:100px;
		bottom:100px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-mainvisual {
		background: url("../img/mainvisual_mobile.webp") right top no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio:2 / 3;
		margin:0 auto;
		position: relative;
		z-index: 10;
	}
}

.p-night-line {
	background:url("../img/night_line.webp") left center repeat;
	width: 100%;
	height: 100px;
	position: absolute;
	left:0;
	bottom:0;
	z-index: 5;
}



/*メニュー*/

@media screen and (min-width:961px) { /*PC*/
	.p-header-inner {
		background-color: #1d3b60;
		width:100%;
		height: 70px;
	}
	.nav{
		width:100%;
		max-width: 1200px;
		margin:0 auto;
		display: block!important;
	}
	.nav ul {
		display: flex;
		justify-content: space-between;
	}
	.nav ul li {
		box-sizing: border-box;
	}
	.nav ul li:last-child {
	}
	.nav ul li a {
		display: block;
		height: 70px;
		text-indent: -9999px;
		overflow: hidden;
		position: relative;
		margin:0 auto;
	}
	.nav ul li a:after {
		content: "";
		display: block;
		width:0;
		position: absolute;
		left:50%;
		bottom:0px;
		height: 4px;
		background-color:#e87323;
		transition: all 0.3s;
	}
	.nav ul li a:hover:after {
		width:100%;
		left:0;
	}
	.p-menu-01 a {background:url("../img/menu01.webp") left top no-repeat; width: 51px;}
	.p-menu-02 a {background:url("../img/menu02.webp") left top no-repeat; width: 72px;}
	.p-menu-03 a {background:url("../img/menu03.webp") left top no-repeat; width: 83px;}
	.p-menu-04 a {background:url("../img/menu04.webp") left top no-repeat; width: 172px;}
	.p-menu-05 a {background:url("../img/menu05.webp") left top no-repeat; width: 113px;}
	.p-menu-06 a {background:url("../img/menu06.webp") left top no-repeat; width: 97px;}
	.p-menu-07 a {background:url("../img/menu07.webp") left top no-repeat; width: 153px;}
	.p-menu-08 a {background:url("../img/menu08.webp") left top no-repeat; width: 79px;}
}
@media screen and (max-width:960px) { /*MB*/
	
/*外側クローズ用*/
	.p-main{
	}
	.p-main-cover{
		position: fixed;
		width: 100%;
		visibility: hidden;
		z-index: -1;  
		-webkit-transition: .3s;
		transition: .3s;
	}
	.p-main-cover.active{
		height:100%;
		visibility: visible;
		background:rgba(0,0,0,0.4);
		z-index:1000;
	}

	.p-header-inner{
		width: 100%;
		height: 60px;
		position:fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background:#1d3b60;
	}
	.p-header-wrap{
		position:relative;
		width: 100%;
		height: 60px;
	}
	/*nav=====*/
	.nav{
		display: none;
		position: relative;
		width: 100%;
		text-align: center;
		top: 0;
		left: 0;
		z-index: 950;
		padding-top:60px;
	}
	.nav li{
		background: rgba(29,59,96,0.8);
		border-bottom: 1px solid #385272;
		text-align: left;
		text-indent: 12px;
	}
	.nav a{
		color: #fff;
		display: block;
		height: 50px;
		line-height: 50px;
		font-size:2rem;
		font-family: 'Noto Serif JP', serif;
		transform: rotate(0.03deg);
		font-weight: 700!important;
	}
	.nav a em {
		font-style: normal;
		font-size: 80%;
	}
	.nav a:hover{
		text-decoration: none;
	}
	/*ナビボタン*/
	.p-header-sp-nav{
		width: 30px;
		height: 26px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin:auto;
		cursor: pointer;
		z-index: 1000;
		background:#1d3b60;
	}
	.p-header-sp-nav:before {
		content: "";
		display: block;
		width:50px;
		height:60px;
		background-color:#1d3b60;
		z-index: -1;
		position: absolute;
		right:-10px;
		top:-17px;
	}
	.p-header-sp-nav span {
		display: block;
		position: absolute;
		width: 30px;
		height: 2px;
		background: #fff;
		-webkit-transition: .3s;
		transition: .3s;
	}
	.p-header-sp-nav span:first-of-type {
		top: 0;
		bottom: auto;
		margin-bottom: 10px;
	}
	.p-header-sp-nav span:nth-of-type(2) {
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.p-header-sp-nav span:last-of-type {
		bottom: 0;
		top: auto;
	}
	.p-header-sp-nav.active{
	}
	.p-header-sp-nav.active span:nth-of-type(2) {
		right: -60px;
		opacity: 0;
		visibility: hidden;
	}
	.p-header-sp-nav.active span:first-of-type{
		top: 0;
		bottom: 0;
		margin: auto;
		transform:rotate(45deg);
	}
	.p-header-sp-nav.active span:last-of-type{
		top: 0;
		bottom: 0;
		margin: auto;
		transform:rotate(-45deg);
	}
	
}

/*コンテンツ全般*/

p {
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.p-head {
	width: 100%;
	max-width: 459px;
	margin-bottom: 60px;
}

.p-topics {
	width: 100%;
	max-width: 270px;
	margin:0 auto 60px;
}

/*ニュース*/

@media screen and (min-width:961px) { /*PC*/
	.p-news-wrap {
		display: flex;
		justify-content: space-between;
		margin-bottom: 60px;
	}
	.p-news-sns {
		margin-top: auto;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-news-wrap {
		display: flex;
		justify-content: center;
		flex-direction: column;
		margin-bottom: 32px;
	}
	.p-news-sns {
		margin-bottom: 32px;
	}
}



.p-news-left {
	display: flex;
	flex-direction: column;
}

.p-news-right {
	width: 100%;
	max-width: 890px;
	position: relative;
}



.p-news-sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap:20px;
}

.p-news-sns ul li a {
	display: block;
	box-sizing: border-box;
	border:1px solid #e66f23;
	border-radius: 8px;
	transition: all 0.3s;
	overflow: hidden;
}

.p-news-list a dl {
	height: 70px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	border-top: 1px solid #bfbfbf;
}

.p-news-list a:last-child dl {
	border-bottom: 1px solid #bfbfbf;
}

.p-news-list a dl dt {
	height: 70px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.8rem;
	box-sizing: border-box;
	padding:0 12px;
	color:#e66f23;
}

.p-news-list a dl dd {
	height: 70px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.8rem;
	color:#242424;
}

.p-news-list a {
	display: block;
	transition: all 0.3s;
}

.p-news-list a:hover {
	text-decoration: none!important;
	background-color:antiquewhite;
}

.p-news-more {
	margin-top:12px;
}

.p-news-more a {
	display: block;
	background-color:antiquewhite;
	transition: all 0.3s;
	color:#e66f23;
	font-size: 1.5rem;
	font-weight: 700;
	box-sizing: border-box;
	padding:4px;
}

.p-news-more a:hover {
	background-color:#e66f23;
	color:#fff;
	text-decoration: none;
}

/*ストーリー*/

.p-story-catch {
	max-width: 715px;
	width: 100%;
	margin-bottom: 60px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-story-main {
		display: flex;
		justify-content: space-between;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-story-main {
		display: flex;
		justify-content:center;
		flex-direction: column;
		gap:48px;
	}
}



/*キャラクター*/

.p-chara-select {
	width:100%;
	padding:0 3%;
	max-width:calc( 1680px + 6% );
	margin:0 auto 0;
	position: relative;
	box-sizing: border-box;
}

.p-chara-select ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin:0 auto;
	max-width: 1200px;
	gap:50px;
}



@media screen and (min-width:729px) { /*PC*/
	.p-chara-select ul {
		gap:50px;
		justify-content: center;
	}
	.p-chara-select ul li {
		max-width: 200px;
	}
}
@media screen and (max-width:728px) { /*MB*/
	.p-chara-select ul {
		gap:24px;
		justify-content: flex-start;
	}
	.p-chara-select ul li {
		width:calc((100% - 48px) / 3);
	}
}

/*ギャラリー*/

.p-gallery-wrap ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:60px 32px;
}

.p-gallery-wrap ul li {
	width:calc((100% - 64px) / 3);
	position: relative;
	background-color:#000;
	box-shadow:0 0 20px rgba(0,0,0,0.4);
}

@media screen and (min-width:1025px) { /*PC-LARGE*/
	.p-gallery-wrap ul li {
		width:calc((100% - 64px) / 3);
	}
}
@media screen and (max-width:1024px) { /*PC-MIDDLE*/
	.p-gallery-wrap ul li {
		width:calc((100% - 32px) / 2);
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-gallery-wrap ul li {
		width:100%;
	}
}

/*ムービー*/

.p-movieframe {
	width:100%;
	position: relative;
	background-color:#000;
	box-shadow:0 0 20px rgba(0,0,0,0.4);
}

.p-movieframe iframe {
	width: 100%;
	aspect-ratio:16 / 9;
}

/*ダウンロード*/
/*スペック*/

.p-spec-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:60px 32px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-slist01 dl {
		width:calc((100% - 32px) / 2);
	}

	.p-slist02 dl {
		width:calc((100% - 64px) / 3);
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-slist01 dl {
		width:100%;
	}

	.p-slist02 dl {
		width:100%;
	}
}



.p-spec-list dl {
	color:#fff;
}

.p-spec-list dt {
	border-bottom: 1px solid #fff;
	font-size: 1.5rem;
	padding-bottom:12px;
}

.p-spec-list dd {
	color:#fff;
	padding-top: 12px;
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	
	line-height: 1.5;
}

.p-spec-list dd p {
	font-weight: 700;
}

.p-spec-list dd span {
	font-size: 70%;
	font-weight: 400;
}

/*フッター*/

.p-foot-sns ul {
	display: flex;
	justify-content: center;
	gap:20px;	
}

.p-foot-sns ul li a {
	width: 28px;
	height:28px;
	display: block;
	background-color:#4d4d4d;
	transition: all 0.3s;
}

.p-foot-sns ul li a:hover {
	background-color:#e66f23;
}

/*サブページ*/

/*キャラクターシングル*/

.p-character-single {
	box-sizing: border-box;
}

#Chara01 {background-color: #c3bbe1;}
#Chara02 {background-color: #963fc1;}
#Chara03 {background-color: #34303f;}
#Chara04 {background-color: #770000;}
#Chara05 {background-color: #65b4ca;}
#Chara06 {background-color: #4b3e66;}
#Chara07 {background-color: #63c5ae;}
#Chara08 {background-color: #1b2356;}
#Chara09 {background-color: #bf0000;}
#Chara10 {background-color: #0087ac;}


.p-chara-pt {
	box-sizing: border-box;
	background:url("../img/menu_patturn.webp") left top repeat;
}

.p-chara-white {
	background-color:#fff;
	box-sizing: border-box;
}

.p-chara-body {
	width: 100%;
	background:url("../img/chara/chara_bg.webp") center center no-repeat;
	position: relative;
}

.p-chara-phrase {
	position: absolute;
	z-index: 100;
}

.p-chara-stand {
}

.p-chara-name {
	width: 100%;
	max-width: 560px;
	background-size: cover;
	aspect-ratio:560 / 214;
	margin-bottom: 32px;
}

.p-chara-exp {
	
	text-align: left;
	position: relative;
	z-index: 40;
}

ul.p-voice-bt {
	display: flex;
	justify-content: flex-start;
	gap:20px;
	margin-bottom: 32px;
}


ul.p-voice-bt li {
	width: 50px;
 	height: 50px;
}

.p-chara-text {
	font-size: 1.6rem;
	line-height: 2.5;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
}

@media screen and (min-width:961px) { /*PC*/
	.p-chara-pt {
		padding:20px;
	}
	.p-chara-phrase {
		width:90px;
		aspect-ratio: 9 / 58 ;
		top:200px;
		left:50%;
		margin-left:-600px;
	}
	.p-chara-exp {
		width: 50%;
		max-width: 600px;
		margin-left:50%;
		height: 1160px;
		padding-top:200px;
	}
	.p-chara-stand {
		
		position: absolute;
		width: 690px;
		height: 1160px;
		left:50%;
		margin-left:-600px;
		top:0;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-chara-pt {
		padding:15px;
	}
	.p-chara-phrase {
		width:15%;
		max-width: 90px;
		aspect-ratio: 9 / 58 ;
		top:100px;
		left:20px;
	}
	.p-chara-stand {
		
		width: 100%;
		aspect-ratio:2 / 3;
		top:0;
	}
	.p-chara-exp {
		width: 90%;
		margin: 0 auto;
		text-align: left;
		position: relative;
		z-index: 40;
		padding:20px;
		background-color: rgba(255,255,255,0.7);
	}
	.p-chara-name {
	}
}

#Chara01 .p-chara-phrase {background: url("../img/chara/chara01_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara01 .p-chara-name {background:url("../img/chara/chara01_name.webp") left top no-repeat;background-size: cover;}
#Chara01 ul.p-voice-bt li img {filter: invert(83%) sepia(9%) saturate(794%) hue-rotate(211deg) brightness(90%) contrast(97%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara01 .p-chara-stand {background:url("../img/chara/chara01_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara01 .p-chara-stand {background:url("../img/chara/chara01_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara02 .p-chara-phrase {background: url("../img/chara/chara02_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara02 .p-chara-name {background:url("../img/chara/chara02_name.webp") left top no-repeat;background-size: cover;}
#Chara02 ul.p-voice-bt li img {filter: invert(30%) sepia(94%) saturate(1207%) hue-rotate(256deg) brightness(85%) contrast(92%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara02 .p-chara-stand {background:url("../img/chara/chara02_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara02 .p-chara-stand {background:url("../img/chara/chara02_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara03 .p-chara-phrase {background: url("../img/chara/chara03_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara03 .p-chara-name {background:url("../img/chara/chara03_name.webp") left top no-repeat;background-size: cover;}
#Chara03 ul.p-voice-bt li img {filter: invert(15%) sepia(26%) saturate(513%) hue-rotate(215deg) brightness(94%) contrast(87%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara03 .p-chara-stand {background:url("../img/chara/chara03_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara03 .p-chara-stand {background:url("../img/chara/chara03_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara04 .p-chara-phrase {background: url("../img/chara/chara04_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara04 .p-chara-name {background:url("../img/chara/chara04_name.webp") left top no-repeat;background-size: cover;}
#Chara04 ul.p-voice-bt li img {filter: invert(10%) sepia(44%) saturate(7342%) hue-rotate(354deg) brightness(85%) contrast(112%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara04 .p-chara-stand {background:url("../img/chara/chara04_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara04 .p-chara-stand {background:url("../img/chara/chara04_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara05 .p-chara-phrase {background: url("../img/chara/chara05_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara05 .p-chara-name {background:url("../img/chara/chara05_name.webp") left top no-repeat;background-size: cover;}
#Chara05 ul.p-voice-bt li img {filter: invert(62%) sepia(44%) saturate(393%) hue-rotate(146deg) brightness(97%) contrast(90%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara05 .p-chara-stand {background:url("../img/chara/chara05_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara05 .p-chara-stand {background:url("../img/chara/chara05_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara06 .p-chara-phrase {background: url("../img/chara/chara06_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara06 .p-chara-name {background:url("../img/chara/chara06_name.webp") left top no-repeat;background-size: cover;}
#Chara06 ul.p-voice-bt li img {filter: invert(25%) sepia(19%) saturate(1164%) hue-rotate(218deg) brightness(92%) contrast(89%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara06 .p-chara-stand {background:url("../img/chara/chara06_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara06 .p-chara-stand {background:url("../img/chara/chara06_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara07 .p-chara-phrase {background: url("../img/chara/chara07_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara07 .p-chara-name {background:url("../img/chara/chara07_name.webp") left top no-repeat;background-size: cover;}
#Chara07 ul.p-voice-bt li img {filter: invert(74%) sepia(62%) saturate(291%) hue-rotate(114deg) brightness(86%) contrast(85%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara07 .p-chara-stand {background:url("../img/chara/chara07_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara07 .p-chara-stand {background:url("../img/chara/chara07_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara08 .p-chara-phrase {background: url("../img/chara/chara08_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara08 .p-chara-name {background:url("../img/chara/chara08_name.webp") left top no-repeat;background-size: cover;}
#Chara08 ul.p-voice-bt li img {filter: invert(12%) sepia(41%) saturate(2621%) hue-rotate(214deg) brightness(90%) contrast(96%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara08 .p-chara-stand {background:url("../img/chara/chara08_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara08 .p-chara-stand {background:url("../img/chara/chara08_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara09 .p-chara-phrase {background: url("../img/chara/chara09_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara09 .p-chara-name {background:url("../img/chara/chara09_name.webp") left top no-repeat;background-size: cover;}
#Chara09 ul.p-voice-bt li img {filter: invert(11%) sepia(84%) saturate(6724%) hue-rotate(17deg) brightness(84%) contrast(125%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara09 .p-chara-stand {background:url("../img/chara/chara09_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara09 .p-chara-stand {background:url("../img/chara/chara09_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

#Chara10 .p-chara-phrase {background: url("../img/chara/chara10_phrase.webp") rgba(255,255,255,0.8) left top no-repeat;background-size: cover;}
#Chara10 .p-chara-name {background:url("../img/chara/chara10_name.webp") left top no-repeat;background-size: cover;}
#Chara10 ul.p-voice-bt li img {filter: invert(37%) sepia(100%) saturate(573%) hue-rotate(151deg) brightness(92%) contrast(102%);}
@media screen and (min-width:961px) { /*PC*/
	#Chara10 .p-chara-stand {background:url("../img/chara/chara10_stand.webp") center center no-repeat;background-size: contain;}
}
@media screen and (max-width:960px) { /*MB*/
	#Chara10 .p-chara-stand {background:url("../img/chara/chara10_stand.webp") center top 20px no-repeat;background-size: 140%;}
}

/*キャラクターシングルセレクト*/

/*ニュース記事ページ*/

.p-post-wrap {
	width: 100%;
	background-color: rgba(255,255,255,0.95);
	border-radius: 20px;
	padding:20px;
	text-align: left;
	margin-bottom: 32px;
}

.p-post-date {
	width: 150px;
	text-align: center;
	margin-bottom: 16px;
	border: 1px solid #1d3b60;
	padding: 3px 12px;
	background-color:#fff;
	box-sizing: border-box;
	position: relative;
}

.p-post-date p {
	display: inline-block;
	text-align: left;
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	color:#1d3b60;
}

.p-post-title {
	padding-bottom: 12px;
	margin-bottom: 32px;
	border-bottom: 3px solid #1d3b60;
}

.p-post-title p {
	font-size: 2.8rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	color:#1d3b60;
}

.p-post-main h1 {
	font-size: 2.2rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	margin-bottom: 16px;
	background-color:#1d3b60;
	box-sizing: border-box;
	padding:8px;
	color:#fff;
}

.p-post-main h2 {
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	margin-bottom: 16px;
	color:#1d3b60;
	padding:8px;
	background-color:#DEE8F4;
	
}

.p-post-main h3 {
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	margin-bottom: 16px;
	color:#1d3b60;
	padding:8px;
	border-left:5px solid #1d3b60;
}

.p-post-main h4 {
	font-size: 1.7rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	margin-bottom: 16px;
	color:#1d3b60;
	padding:8px;
	border:1px solid #1d3b60;
}

.p-post-main h5 {
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	margin-bottom: 16px;
	background-color:#1d3b60;
	box-sizing: border-box;
	padding:8px;
	color:#fff;
}

.p-post-main h6 {
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	margin-bottom: 16px;
	box-sizing: border-box;
	color:#1d3b60;
	padding:8px;
	background-color:#DEE8F4;
}


.p-post-main p {
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	margin-bottom: 16px;
	font-size: 1.7rem;
	line-height: 1.7;
}

.p-post-main a {
	color:#e66f23;
}

.p-post-main ul {
	margin-bottom: 16px;
	list-style: disc;
	list-style-position: inside;
}

.p-post-main ol {
	margin-bottom: 16px;
	list-style:decimal;
	list-style-position: inside;
}

.p-post-main ul li, .p-post-main ol li {
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	font-size: 1.7rem;
	line-height: 1.7;
}

.p-post-main blockquote {
	padding: 20px;
	box-sizing: border-box;
	background: rgba(238,238,238,1.00);
	margin-bottom: 16px;
}

.p-post-next {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.p-post-next-box {
	width: 49%;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	font-size: 1.7rem;
	background-color: rgba(255,255,255,0.95);
	border-radius: 20px;
	padding:20px;
}

.p-post-next-box a {
	color:#e66f23;
}

/*ストリームボタン*/

.p-news-stream {
	width: 100%;
	box-sizing: border-box;
	padding:20px;
	border: 1px solid #091A2F;
	background:#1d3b60;
}

.p-news-stream ul {
	display: flex;
	justify-content: center;
	gap:20px;
}

.p-news-stream ul li a {
	display: block;
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
	background-color: #fff;
}

p.p-at-steam {
	margin-top: 8px;
}

p.p-at-steam a {
	width: 100%;
	max-width: 280px;
	background-color: #fff;
	display: flex;
	font-size: 1.4rem;
	color: #000;
	box-sizing: border-box;
	padding: 2px 4px;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

p.p-at-steam a:hover {
	background-color: deepskyblue;
	color: #fff;
	text-decoration: none;
}

/*スペック追加*/

.p-product-spec {
	width: 100%;
	max-width: 720px;
	margin:0 auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap:24px;
}

.p-product-spec dl {
	color:#fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}

.p-product-spec dl dt {
	border-bottom: 1px solid #fff;
	text-align: left;
	width: 100%;
	padding-bottom: 12px;
}

.p-product-spec dl dt p {
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
}

.p-product-spec dl dd {
	padding-top: 12px;
	text-align: left;
	width: 100%;
}

.p-product-spec dl dd {
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	line-height: 1.5;
}