@charset "utf-8";

/* Config ------------------------------------------------*/
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overscroll-behavior: none; /*--- iOS のビヨヨン効果無効化 ---*/
}

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


body {
	background-color: #fff;
	color: #050002;
	line-height: 30px;
	font-family: 'Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS ゴシック","MS Gothic",Verdana,sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;

	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /*--- iOS の文字サイズ自動調節無効化 ---*/
	text-size-adjust: 100%;
}


a {color: #050002; text-decoration: none;}
a:active {color: #050002; text-decoration: none;}
a:visited {color: #050002; text-decoration: none;}
a:hover {color: #ff2772; text-decoration: none;}

a:link img {border-color: #666;}
a:visited img {border-color: #666;}
a:hover img {
	border-color: #666;
	opacity: 0.66;
	-webkit-transition: .2s;
	transition: .2s;
}


/*--- list ---*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ol {
	list-style: decimal;
	margin: 0;
	padding-left: 0;
}


/* 上マージン */
.mT-10 {margin-top: -10px ;}
.mT-20 {margin-top: -20px ;}

.mT0  {margin-top:0 !important;}
.mT5  {margin-top:5px ;}
.mT10 {margin-top:10px ;}
.mT15 {margin-top:15px ;}
.mT20 {margin-top:20px ;}
.mT25 {margin-top:25px ;}
.mT30 {margin-top:30px ;}
.mT40 {margin-top:40px ;}
.mT50 {margin-top:50px ;}
.mT60 {margin-top:60px ;}


/* 下マージン */
.mB-10 { margin-bottom: -10px ;}

.mB0  {margin-bottom:0 !important;}
.mB5  {margin-bottom:5px ;}
.mB10 {margin-bottom:10px ;}
.mB15 {margin-bottom:15px ;}
.mB20 {margin-bottom:20px ;}
.mB25 {margin-bottom:25px ;}
.mB30 {margin-bottom:30px ;}
.mB40 {margin-bottom:40px ;}
.mB50 {margin-bottom:50px ;}
.mB100 {margin-bottom:100px ;}


/* Fonts */
.f10 {font-size: 10px;}
.f12 {font-size: 12px;}
.f14 {font-size: 14px;}
.f16 {font-size: 16px;}
.f18 {font-size: 18px;}
.f20 {font-size: 20px;}
.f22 {font-size: 22px;}
.f24 {font-size: 24px;}
.f25 {font-size: 25px;}
.f28 {font-size: 28px;}
.f30 {font-size: 30px;}
.f32 {font-size: 32px;}
.f36 {font-size: 36px;}
.f38 {font-size: 36px;}
.f40 {font-size: 40px;}

.normal {font-weight: 400;}
.bold {font-weight: bold;}

.right {text-align: right;}
.center {text-align: center;}
.left {text-align: left;}


/*--- Load ---*/
#fadeWhite {
	position: fixed;
	width: 100%;
	background: #fff;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 99999;
}




/*--- 共通パーツ -----------*/
.whiteBox {
	width: 100%;
	max-width: 1100px;
	padding: 36px 30px 33px; 
	margin: 0 auto;
	background-color: rgba(255,255,255,0.8);
	border-radius: 8px;
}

.infoBox {
	display: flex;
	max-width: 980px;
	justify-content: space-around;
	padding: 40px 20px 10px;
	margin: 0 auto -20px;
}

.infoBox li {
	width: 100%;
	max-width: 420px;
	padding: 20px; 
	margin: 0 20px;
	text-align:center;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 0px 8px #f2e6cd ;/*外側*/
	border: dashed 2px #ccbe9f/*破線*/
}


h1 {
	font-size: 26px;
	font-weight: 400;
	padding: 0 0 22px;
	margin: 0 auto 31px;
	text-align:center;
	background-image: linear-gradient(90deg, #050002 0 15%, #ff2772 15%, transparent);
	background-repeat: no-repeat;
	background-size: 260px 5px;
	background-position: bottom;
}


h2 {
	font-size: 22px;
	font-weight: 400;
	border-left: 10px solid #e4007f;
	padding: 0 0 3px 16px;
	margin-bottom: 21px;
	text-align: left;
	border-left-style: double;
}


h3 {
	position: relative;
	width: 100%;
	max-width: fit-content;
	font-size: 22px;
	font-weight: normal;
	text-align:center;
	padding:7px 25px 7px 25px;
	border-top: solid 2px #00479d;
	border-bottom: solid 2px #00479d;
	margin: 42px 0 33px;
}
h3:before, h3:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: -webkit-calc(100% + 14px);
	height: calc(100% + 14px);
	background-color: #00479d;
}
h3:before {
	left: 7px;
}
h3:after {
	right: 7px;
}


h4 {
	font-size: 22px;
	color: #fff;
	font-weight: normal;
}

.bold {
	font-weight: bold;
}

.green {
	color: #12c112;
}

.blue {
	color: #00a0e9;
	font-weight: normal;
}

.red {
	color: #ff2772;
}

.big {
	color: #d7000f;
	font-size: 22px;
	font-weight: bold;
	line-height: 32px
}

.br {
	display: block;
	content: "";
	height: 15px;
}
.br2 {
	display: block;
	content: "";
	height: 18px;
}

.set {
	text-indent: -1.0rem;
	padding-left: 1.0rem;
}
.set2 {
	text-indent: -20px;
	padding-left: 20px;
}

.etc_pc {
	display: block;
}
.etc_sp {
	display: none;
}
/*--- 共通パーツ -----------*/


.age-gate {
	margin-top: 11% !important;
}
.age-gate-buttons, .age-gate__buttons {
	margin-top: 20px;
}



/* headerMenu --------------------------------------------*/
#sp_header {
	display: none;
}

#up_menu {
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	background-image: linear-gradient(45deg, #050002 0%, #ff2772 100%); opacity: 0.90; filter: alpha(opacity=90);
	transition: ease solid 3s;
	z-index: 10;
	box-shadow: 0 1px 6px #666;
	-moz-box-shadow: 0 1px 6px #666;
	-webkit-box-shadow: 0 1px 6px #666;
}

.headerMenu {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	margin: 0 auto;
}

.headerMenu li {
	padding-top: 9px;
	line-height: 40px;
	text-align: center;
	transition: all 0.5s ease-out;
}
.headerMenu li img {
	margin-top: -32px;
	max-width: 300px;
}
.headerMenu li a.twitter img {
	margin-top: 2px;
	max-width: 36px;
}

.headerMenu li a {
	position: relative;
	color: #fff;
}
ul.menubar {
	display: flex;
	justify-content: space-between;
	width: 500px;
}

.menuListLink::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #fce939;
	border-radius: 3px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .2s;
}
.menuListLink:hover::after {
	transform: scale(1, 1);
}




/* btn -------------------------------*/
/*--- 資料請求 -------------*/
.btn,
a.btn,
button.btn {
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
}

a.btn-flat {
	margin-top: -10px;
	height: 70px;
	overflow: hidden;
	padding: 18px 8px 8px;
	border-radius: 0 0 8px 8px;
	background: #050002;
	box-shadow: 0 0 4px #444;
	-moz-box-shadow: 0 0 4px #444;
	-webkit-box-shadow: 0 0 4px #444;
}

a.btn-flat span {
	color: #fff;
	position: relative;
	z-index: 1;
}

a.btn-flat:before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 140px;
	height: 100px;
	content: '';
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-transform: translateY(-92%);
	transform: translateY(-92%);
	background: #ff2772;
}

a.btn-flat:hover:before {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
/*--- 資料請求 -------------*/




/* btn -------------------------------*/
.btn01 {
	position: relative;
	display: inline-block;
	width: 160px;
	height: 46px;
	padding: 10px 5px;
	margin: 0 5px;
	text-align: center;
	background: #ff2772;
	border: none;
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	overflow: hidden;
	line-heigt: 1.2em;
	-webkit-transition: .2s;
	transition: .2s;
}

.btn01.long {
	width: 230px;
}

.btn01::before,
.btn01::after {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 51%;
	height: 100%;
	background: #050002;
	-webkit-transition: .2s;
	transition: .2s;
}
.btn01::before {
	left: 0;
}
.btn01::after {
	right: 0;
}
.btn01:hover::before,
.btn01:hover::after {
	width: 0;
}
.btn01:hover {
	color: #fff;
}
.btn01 span {
	position: relative;
	z-index: 1;
}


/*--- btn jump -----------------------*/
.btn01_jump {
	overflow: hidden;
	padding: 6px 5px;
	margin: 22px 2px 0;

}
.btn01_jump a {
	color: #fff;
}
.result {
	left: 2px;
}
.btn01:hover .result {
	left: 5px;
	-webkit-transition: .5s;
	transition: .4s;
}
.btn01:hover .result img {
	opacity: 0.9;
}




/* ◆1. top ----------------------------------------------*/
/* ファーストビュー ------------------*/
#Pwrap {
	height: 100%;
	min-height: 780px;
	background-image: none;
}
#Pwrap::before {
	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	left: 0;
	z-index: -2;
	animation: image_anime 6s ease;
}
.bg_1::before {
	background: url(img/top/bg_1.jpg) center 0% no-repeat;
}
.bg_2::before {
	background: url(img/top/bg_2.jpg) center 0% no-repeat;
}

@keyframes image_anime {
4% {
	background-image: url(img/top/bg_1.jpg);
}
40% {
	background-image: url(img/top/bg_1.jpg);
 }
100% {
	background-image: url(img/top/bg_2.jpg);
}
}


.Content1-1 {
	position: relative;
	top: 0;
	width: 100%;
	height: 480px;
	padding: 0 20px;;
	z-index: 0;
	margin: 0 auto;
	text-align: center;
}

.firstVlogo {
	padding: 150px 0 0;
	margin: 0 auto;
	text-align: center;
}
.firstVlogo img {
	width: 100%;
	max-width: 620px;
	padding: 0;
	margin: 0 auto;
}


/* 斜め帯 ----------------------------*/
.nana {
	position: relative;
	top: 49px;
	width: 100%;
	height: auto;
	background-image: linear-gradient(45deg, rgba(255,39,114,0.9) 0%, rgba(255,39,114,0.2) 100%);
	transform: skewY(-3deg);
	padding: 0;
	margin-top: 0;
}

.nana_text {
	width: 100%;
	max-width: 986px;
	color: #fff;
	padding: 60px 20px;
	margin: 0 auto;
}

.nana01 > * {
	transform: skewY(5deg);
}

#wrap_1 {
	width: 100%;
	margin: 0 auto;
	background: url(img/top/wrap.jpg) center 0% repeat;
		overflow: hidden;
}


/* お知らせ --------------------------*/
.Content1-2 {
	max-width: 1200px;
	padding: 46px 20px 0;
	margin: 0 auto;
}

.Content1-2 h1 {
	margin-bottom: 40px;
}

.wng {
	margin-bottom: -3px;
}
.wng .whatsnew .newmark {
	background-color: #ff2772;
	padding: 0px 5px 2px;
	margin-right: 4px;
	vertical-align: top;
}
.wng .whatsnew a:hover {
    background-color: #fff;
}

h2.wnew {
	margin-top: 45px;
	margin-bottom: 28px;
}

.Content1-2 table {
	width: 100%;
	padding: 0;
}

/*--- 表 -------------------*/
#info {
	padding-top: 7px;
	margin-bottom: 6px;
}
#info table {
	width: 100%;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0 2px;
}
#info table th {
	position: relative;
	text-align: left;
	width: 20%;
	background-color: #d3d8da;
	font-weight: normal;
	padding: 12px 20px 14px;
	border-radius: 6px 0 0 6px;
}
#info table th:after {
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #d3d8da;
}
#info table th.access {
	background-color: #d8e6ec;
}
#info table th.access:after {
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #d8e6ec;
}

#info table td {
	text-align: left;
	background: rgba(255,255,255,0.3);
	padding: 12px 20px 14px;
	border-radius: 0 6px 6px 0;
}
#info table td {
	border: 1px solid #d3d8da;
}
/*--- 表 -------------------*/


/* プレゼント企画 --------------------*/
.Content1-p {
	max-width: 1200px;
	padding: 48px 20px 0px;
	margin: 0 auto;
}
.bannner.top {
	margin: 40px auto 0;
}
.bannner.sec {
	margin: 32px auto 0;
}
.bannner {
	text-align: center;
	margin: 8px auto 26px;
}
.bannner img {
	width: 100%;
	max-width: 1120px;
}
.bannner img.sp_jpg {
	display: none;
}


/* おすすめ作品 ----------------------*/
.Content1-3 {
	max-width: 1200px;
	padding: 47px 20px 52px;
	margin: 0 auto;
}

.Pthree {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	margin: -11px auto -12px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.PboxThree {
	position: relative;
	width: 100%;
	max-width: 347px;
	margin: 20px 5px;
	padding: 12px 10px 2px 12px;
	border: 1px solid #ff2772 ;
	border-radius: 8px;
}
.PboxThree .shinsaku {
	position: absolute;
	top: 0;
	left: 0:
	display: block:
	height: 30px;
	background: #ff2772;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	padding: 0 10px 4px;
	border-radius:  0 0 6px 6px;
	Z-index: 10;
}
.PboxThree.mid {
	margin: 0 10px;
}
.PboxThree.list-mv02 {
	overflow: visible;
}
.PboxThree.list-mv04 {
	overflow: visible;
}
.PboxThree.list-mv05 {
	overflow: visible;
}
.PboxThree img {
	width: 100%;
	max-width: 321px;
	margin: 0 auto;
}
.PboxThree .flexT {
	height: auto;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.PboxThree .PboxThree-txt {
	padding: 1px 0 3px;
}
.PboxThree .PboxThree-txt .f18 {
	padding-bottom: 2px;
}

a .PboxThree:hover {
	color: #050002;
	text-decoration: none;
	-webkit-transition: .2s;
	transition: .2s;
}


#Pwrap1 {
	height: 360px;
	background-image: none;
}
#Pwrap1::before {

	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
}


/* よくあるご質問 --------------------*/
.Content1-5 {
	max-width: 1200px;
	padding: 56px 20px 0;
	margin: 0 auto;
}
.Content1-5 h1 {
	margin-bottom: 33px;
}

.qaInner {
	padding: 0;
	margin: 2px auto -13px;
}
.qaInner .accordion-area section {
	border: 1px solid #ccc;
}


/*--- アコーディオン--------*/
.accordion-area {
	padding: 7px 0 13px;
	margin:0 auto;
	border-radius: 6px;
}
.accordion-area li {
	margin: 0;
}
.accordion-area section {
	border: 2px solid #051733;
	border-radius: 6px;
}

.title {
	position: relative;
	cursor: pointer;
	font-size: 18px;
	padding: 16px 33px 18px 16px;
	background: rgba(255,255,255,0.4);
	transition: all .5s ease;
}
.title::before,
.title::after {
	position: absolute;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #051733;
}
.title::before {
	top: 48%;
	right: 16px;
	transform: rotate(0deg);
}
.title::after {
	top:48%;
	right: 16px;
	transform: rotate(90deg);
}
.title.close::before {
	transform: rotate(45deg);
}
.title.close::after {
	transform: rotate(-45deg);
}

.box {
	cursor: pointer;
	display: none;
	margin: 0 auto;
	padding: 6px 17px 17px 17px;
	background: rgba(255,255,255,0.4);
}
/*--- アコーディオン--------*/


/* SNS -------------------------------*/
.sns_txtvox {
	width: 100%;
	max-width: 259px;
	padding: 51px 0 51px;
	margin: 0 auto;
	text-align: center;
}

.sns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0px 0;
	margin: 0 auto;
}
.sns img {
	width: 48px;
}


/* footer ------------------------------------------------*/
#bottom_line {
	display: block;
	padding: 4px 0;
	background-image: linear-gradient(30deg, #a84200 20%, #ffda00 80%);
}

footer {
	color: #fff;
	text-align: center;
	padding : 32px 5px 32px;
	margin: 0;
	background-image: linear-gradient(45deg, #050002 0%, #ff2772 100%);
		overflow: hidden;
}

.flink_sp {
	display: none;
}

footer a:link {color: #fff; text-decoration: none;}
footer a:active {color: #eee; text-decoration: none;}
footer a:visited {color: #eee; text-decoration: none;}
footer a:hover {color: #fff; text-decoration: underline;}

.snsIcons img {
	max-width: 56px;
	margin: 34px 10px 0px;
}

.footer_info {
	max-width: 800px;
	align-items: center;
	margin: 31px auto 29px;
}
.footer_info img {
	max-width: 280px;
	margin: 0 auto 14px;
}

footer br.sp_br480 {
	display: none;
}
footer span.bar_sp480 {
	display: none;
}

footer .copy {
	margin-top: 24px;
}

br.sp_br {
	display: none;
}
span.bar_sp {
	display: none;
}
.sp_br834 {
	display: none;
}
.sp_br768 {
	display: none;
}
.sp_br480 {
	display: none;
}
.sp_br320 {
	display: none;
}

br.sp_br_copy {
	display: none;
}




/* ◆2 作品から選ぶ --------------------------------------*/
/* ヘッダータイトル --------*/
.header_title {
	background: url(img/top/header.jpg?20251024-1) center 0% repeat;
	width: 100%;
	padding: 95px 0 9px;
	margin: 0 auto;
	overflow: hidden;
}

.Content2 {
	max-width: 1200px;
	padding: 51px 20px 52px;
	margin: 0 auto;
	overflow: hidden;
}




/* ◆3 作品詳細 ------------------------------------------*/
.Content3-1 {
	max-width: 1200px;
	padding: 5px 20px 0;
	margin: 0 auto;
}

.pkz {
	font-size: 14px;
}
.pkz a {color: #ff2772;}
.pkz a:hover {text-decoration: underline;}

.C3-title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	padding: 28px 0 37px;
}
.pc_br {
	display: block;
}

.swiper-wrapper {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.swiper-slide img {
	width: 100%;
	max-width: 800px;
	margin-bottom: 62px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
    margin-bottom: 6px;
}
.swiper-button-next, .swiper-button-prev {
    color: #ff2772 !important;
}
:root {
    --swiper-theme-color: #ff2772 !important;
}

.Content3-2 {
	max-width: 1200px;
	padding: 48px 20px 60px;
	margin: 0 auto;
}

.Content3-2 .tips690 {
	display: none;
}

.Content3-2 table {
	width: 100%;
	border-spacing: 0;
}
.Content3-2 table td {
	padding: 8px 4px 10px 8px;
	border: 1px solid #ccc;
}
.Content3-2 table.midashi {
	padding-top: 33px;
}
.Content3-2 table.midashi td {
	background: #e3e6eb;
	border-bottom: none;
}
.Content3-2 table.haishin td {
	width: 50%;
	padding: 10px 6px 2px 7px;
	text-align: center;
	border-top: none;
}
.Content3-2 table.haishin td img {
	width: 100%;
	max-width: 200px;
}
.Content3-2 table td.link img {
	padding-bottom: 20px;
}

.tousen {
	display: block;
	padding: 19px 16px 18px;
	margin: 3px auto 32px;
	border: 1px solid #ff2772 ;
	border-radius: 8px;
}

.space {
	display: block;
	content: "";
	height: 24px;
}




/* ◆4 blog ----------------------------------------------*/
#blog_wrap {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	padding-bottom: 16px; /*--- ページャー出たら消す ---*/
}

.pt-cv-wrapper {
	max-width: 1120px;
	padding: 50px 20px 8px;
	margin: 0 auto -17px;
}

.pt-cv-view .pt-cv-ifield {
	padding-bottom: 19px;
}

.pt-cv-wrapper img {
	width: 160px;
}


.pt-cv-view .pt-cv-title {
	max-height: 20px;
	overflow: hidden;
	text-align: left;
}
.pt-cv-view a {text-decoration: none;}
h4.pt-cv-title:hover {text-decoration: underline;}


.pt-cv-ifield>*, .pt-cv-view .pt-cv-content-item>* {
	margin-bottom: 7px !important;
}


/* 修正 ---*/
.pt-cv-view .pt-cv-title {
	margin-bottom: 11px !important;
}
.pt-cv-content {
	line-height: 28px;
}
/* 修正 ---*/


.pt-cv-wrapper .btn-success {
	background-color: #e4007f !important;
	border-color: #e4007f !important;
	margin-top: 9px;
}
.pt-cv-wrapper .btn-success:hover {
	background-color: #333 !important;
	border-color: #333 !important;
}

.pt-cv-meta-fields {
	font-size: 14px !important;
	padding-top: 6px;
}
.pt-cv-meta-fields a {
	color: #1871e4 !important;
}
.pt-cv-meta-fields a:hover {
	color: #333 !important;
	text-decoration: underline !important;
}


/*-- ページャー --*/
.pt-cv-pagination-wrapper {
	text-align: center;
	margin: 11px 0 -19px !important;
}
.pt-cv-wrapper .pagination>li>a, .pt-cv-wrapper .pagination>li>span {
	color: #333;
}
.pt-cv-wrapper .pagination>.active>a, .pt-cv-wrapper .pagination>.active>a:focus, .pt-cv-wrapper .pagination>.active>a:hover, .pt-cv-wrapper .pagination>.active>span, .pt-cv-wrapper .pagination>.active>span:focus, .pt-cv-wrapper .pagination>.active>span:hover {
	color: #fff !important;
	background-color: #e4007f !important;
}
.pt-cv-wrapper .pagination>li>a, .pt-cv-wrapper .pagination>li>span {
	padding: 5px 12px 6px !important;
	color: #e4007f !important;
}
.pt-cv-wrapper .pagination>li>a:focus, .pt-cv-wrapper .pagination>li>a:hover, .pt-cv-wrapper .pagination>li>span:focus, .pt-cv-wrapper .pagination>li>span:hover {
	color: #333 !important;
}


/*---- 共通ウイジェット ----*/
section#archives-2 {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px 46px;
	/*--margin-top: -17px;--*/
}
section#archives-2 select {
	font-size: 14px;
	color: #333;
	margin-top: 8px;
	padding: 6px 5px 5px 6px;
	border-radius: 4px;
	-webkit-appearance: none;
}
section#categories-2 {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px 60px;
}
section#categories-2 select {
	font-size: 14px;
	color: #333;
	margin-top: 8px;
	padding: 6px 7px 5px 6px;
	border-radius: 4px;
	-webkit-appearance: none;
}
section#archives-2 h2, section#categories-2 h2 {
	margin-bottom: 22px;
}
/*---- 共通ウイジェット ----*/


/*--- パンくず -------------*/
#pk {
	width: 100%;
}
.pk {
	max-width: 1023px;
	padding: 1px 20px 3px;
	margin: 0 auto;
	font-size: 14px;
}
.pk a {text-decoration: none;}
.pk a:hover {text-decoration: underline;}




/*--- カテゴリー一覧 -----------------*/
#blogWrap_2 {
	width: 100%;
	max-width: 1080px;
	padding-bottom: 34px;
	padding-bottom: 46px; /*---- ページャー出たら消す ----*/
	margin: 0 auto;
}

ul.lcp_catlist {
	padding: 0;
	margin-top: 30px;
}

#blogWrap_2 .lcp_catlist li {
	width: 92%;
	max-width: 980px;
	margin: 0 auto;
}

ul.lcp_catlist li {
	display: block;
	width: 100%;
	height: 201px;
	padding: 17px 0 0;
	margin: 0 auto;
	border-bottom: 1px solid #CCC;
}
ul.lcp_catlist li img {
	float: left;
	margin: 3px 30px 0 0;
}
.icp_post {
	margin: 1px 0 12px;
}

/*-- 文字制限 本文 --*/
.lcp_catlist h3 {
	font-size: 19px;
	line-height: 36px;
	padding: 0;
	margin-top: -2px;
	height: 45px;
	overflow: hidden;
}

.lcp_excerpt {
	position: relative;
	height: 59px;
	overflow: hidden;
}
.lcp_excerpt:before, .ellipsis:after {
	position: absolute;
	background: #fff;
}
.lcp_excerpt:before {
	content: "...";
	bottom: 0;
	right: 0;
	padding: 0 10px;
}
.lcp_excerpt:after {
	content: "";
	width: 100%;
	height: 100%;
}
/*-- 文字制限 本文 --*/


/*-- ページャー --*/
.lcp_paginator {
	text-align: center;
	margin: 48px auto 14px;
}

.lcp_currentpage {
	color: #fff;
	background-color: #292655 !important;
	border: 1px solid #ddd !important;
	border-radius: 4px;
}
.lcp_paginator li {
	display: inline-block;
	width: 34px;
	height: 35px;
	border: 1px solid #ddd !important;
	border-radius: 4px;
}
.lcp_paginator li a {
	color: #292655 !important;
}
.lcp_paginator li:hover {
	background-color: #eee;
}
.lcp_paginator li a {
	text-decoration: none;
}


/*--- アーカイブ一覧 -----------------*/
#blogWrap_3 {
	width: 100%;
	max-width: 1080px;
	padding: 0;
	margin: 5px auto 0;
}

.pk_2 {
	font-size: 14px;
	margin-left: 20px;
}

#blogWrap_3 .date-head {
	max-width: 1020px;
	text-align: center;
	padding: 11px 20px 0;
	margin: 0 auto;
}
.date-head p {
	display: none;
}

.date-head h3 {
	font-size: 24px;
	padding: 7px 7px 7px;
	margin-bottom: 13px;
}

.date-list {
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
}
.date-list ul {
	padding: 27px 20px 6px;
	margin: 0 auto;
}
.date-list ul li {
	display: block;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 11px 16px 7px;
	margin: 0 auto 40px;
}
.date-list li img {
	display: none;
}
.date-list li h2 {
	margin: 8px 0 11px;
}
.date-list li p {
	padding: 6px 0;
}

.dateCtg {
	font-size: 14px;
	margin: -3px 0 -4px;
}


/*--- 記事詳細 ---*/
#content_blog {
	max-width: 1000px;
	padding: 46px 20px 0;
	margin: 0 auto;
	min-height: 23.1vh;
}
#content_blog strong {
	display: block;
	font-size: 18px;
	margin: 0 0 -10px;
}

#content_blog img {
	/*--- width: 100%;---*/
	max-width: 100%;
	height: auto;
	padding: 0;
	margin: 9px 0 -1px;
}
#content_blog img.mT-8 {
	padding: 9px 0 7px;
}

#content_blog a:hover {
	text-decoration: underline;
}

.kijiPeager {
	max-width: 960px;
	padding: 0 20px;
	margin: 33px auto 53px;
}
.kijiPeager a {
	padding: 20px 10px 0;
}
.kijiPeager a:hover {
	color: #111;
	text-decoration: underline;
}

.img_br {
	display: block;
	content: "";
	margin-top: -10px;
}


/*--- リセット ---*/
#content_blog p {
	margin: 15px auto 14px;
}
#content_blog h1 {
	margin: 7px 0 12px;
}
#content_blog h2 {
	margin: 0 0 21px;
}
#content_blog h3 {
	margin: 17px 0 18px;
}
#content_blog h4 {
	text-align: left;
	margin: 1px 0 1px;
}
#content_blog h5 {
	margin: -1px 0 1px;
}
h5 {
	font-size: 18px
}
/*--- リセット ---*/




/* ◆6. お問い合わせ -------------------------------------*/
.Content6 {
	width: 100%;
	padding: 41px 20px 40px;
	margin: 0 auto;
}

.Content6_1 {
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}


/*--- フォーム ---*/
.Content6 input {
	outline: none;
	padding: 5px 5px 6px;/*--- 2025.10 ---*/
	border-width: 1px;
}
.Content6 input, select {
	font-size: 15px;
}
.Content6 textarea {
	outline: none;
}

.Content6 section {
	max-width: 1120px;
	margin: 0 auto;
	padding: 11px 0 20px;
}
.Content6 section table {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 20px 0 19px;
}
.Content6 section th, section td {
	font-size: 15px;
	border: 1px solid #d3d8da;
	margin: 0 auto;
	padding: 15px 15px 15px;
	border-radius: 0 6px 6px 0;
}
.Content6 section th {
	width: 25%;
	font-weight: normal;
	text-align: left;
	background-color: #d3d8da;
	padding: 10px 15px 11px;
	border-radius: 6px 0 0 6px;
}
.Content6 section th span {
	color: #ff2772;
	font-size: 0.90rem;
}

.Content6 textarea {
	width: 100%;
	font-size: 15px;
	font-family: 'Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3",Verdana,sans-serif;
}
.Content6 section td textarea {
	margin: 1px 0 -8px;
}

.Content6 input[type="date" i] {
	font-family: 'Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3",Verdana,sans-serif;
	padding: 0;
}

.Content6 select {
	height: 27px;
}

.Content6 input.btn-OF {
	margin-left: 0 !important;
}
.tenpu {
	padding-top: 7px;
}


/*--- プライバシーポリシー ---*/
.Content6_1 .qaInner {
	padding: 0;
	margin: 12px auto -13px;
}
.Content6 .qaInner section {
	padding: 0;
}

.Content6 .qaInner .title {
	font-size: 16px;
	padding: 15px 33px 17px 16px;
}
.Content6 .qaInner .box {
	max-height: 45vh;
	overflow-y: scroll;
	padding-top: 8px;
}


/*--- ボタン ---*/
.Content6 .submitB {
	display: flex;
	justify-content: center;
	padding-top: 29px;
	margin: 11px auto 0;
	text-align: center;
	height: 65px;
}

.Content6 input[type="submit" i] {
	position: relative;
	display: inline-block;
	padding: 0.4em 0.6em 0.45em;/*--- 2025.10 ---*/
	margin: 0 10px;
	text-decoration: none;
	color: #fff;
	background: #98999a;
	border: solid 1px #999;
	border-radius: 6px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
	-webkit-appearance: none;
}
.Content6 input[type="submit" i]:hover {
		background: #ffa800;
}




/*--- thanks page ---*/
.entry-content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.Content6_thanks {
	max-width: 720px;
	margin: 0 auto;
	padding: 51px 20px 0;
	text-align: center;
}




/* ◆ プライバシーポリシー -----------------------------*/
.cPP_Text1 {
	max-width: 1020px;
	color: #333;
	padding: 42px 20px 53px;
	margin: 0 auto;
}
.cPP_Text1 span {
	font-weight: bold;
}

.mT-br {
	padding-top: 20px;
}

.set_pp {
	text-indent: -18px;
	padding-left: 26px;
}
