@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: #333;
    color: #fff;
	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: #fff; text-decoration: none;}
a:active {color: #f98484; text-decoration: none;}
a:visited {color: #fff; text-decoration: none;}
a:hover {color: #f98484; text-decoration: none;}

a:link img {border-color: #666;}
a:visited img {border-color: #666;}
a:hover img {border-color: #666; opacity: 0.6; filter: alpha(opacity=60);}


/*--- 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 {
	color: #fff;
	font-size: 28px;
	padding: 26px 0 30px;
	margin-top: -28px;
	background-color: none;
	background: url(img/top/h1.png) center center no-repeat;
	background-size: 164px 33px;
	background-position: center top 21px;
	text-align:center;
}
h1:after {
	content: "";
	display: block;
	width: 280px;
	height: 6px;
	margin: 18px auto 0;
	background: linear-gradient(to right, #b50c0c, transparent);
 	text-align:center;
}

h1.orange:after {
	background: linear-gradient(to right, #b50c0c, transparent);
}


h2 {
	font-size: 24px;
	border-left: 6px solid #b50c0c;
	padding: 1px 0 3px 16px;
	margin-bottom: 21px;
	text-align: left;
}


h3 {
	position: relative;
	width: 280px;
	font-size: 24px;
	padding:7px 15px 7px 25px;
	background-color: #fff;
	border-top: solid 2px #333;
	border-bottom: solid 2px #333;
	margin-bottom: 22px;
}
h3:before, h3:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: -webkit-calc(100% + 14px);
	height: calc(100% + 14px);
	background-color: #333;
}
h3:before {
	left: 7px;
}
h3:after {
	right: 7px;
}


h4 {
	font-size: 24px;
	text-align: right;
}


.green {
	color: #5aff19;
	font-weight: bold;
}

.red {
	color: #b50c0c;
	font-weight: bold;
}

.bold {
	font-weight: bold;
}

.big {
	color: #b50c0c;
	font-size: 18px;
	font-weight: bold;
}

.br {
	display: block;
	content: "";
	height: 22px;
}

.set {
	text-indent: -20px;
	padding-left: 20px;
}
/*--- 共通パーツ -----------*/




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

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

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

.headerMenu li {
	padding-top: 11px;
	line-height: 40px;
	text-align: center;
	transition: all 0.5s ease-out;
}
.headerMenu li img {
	margin-top: 0;
}
.headerMenu li.logo_top img {
	margin-top: 0px;
}
.headerMenu li.line_PC img {
	width: 100%;
	max-width: 116px;
}

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

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




/* btn -------------------------------*/
.btn01 {
	position: relative;
	display: inline-block;
	width: 160px;
	padding: 10px 5px;
	margin: 0 5px;
	text-align: center;
	background: #e35b00;
	border: none;
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	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-color: #aa0b0b;
	-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 {
	background: #000;
	border: none;
	font-size: 16px;
	font-weight: 400;
	overflow: hidden;
	padding: 5px;
	margin: 29px 2px 0;
}
.btn01_jump a {
	color: #fff;
}
.result {
	left: 2px;;
}
.btn01:hover .result {
	left: 4px;
	-webkit-transition: .1s;
	transition: .1s;
}




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

@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 {
	height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.firstVlogo img {
	width: 100%;
	height: auto;
	max-width: 628px;
	padding: 0;
	margin-top: 26px;
}


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


/* Top ---------------------------------------------------*/
/* Introduction ----------------------*/
.Content1-2 {
	max-width: 1120px;
	padding: 48px 20px 0;
	margin: 0 auto;
}


/* maniac icons ----------------------*/
.Content1-3 {
	max-width: 1120px;
	padding: 37px 20px 0;
	margin: 0 auto;
}

#three_EL {
	display: flex;
	width: 100%;
	max-width: 980px;
	justify-content: space-around;
	padding: 10px 0 37px;
	margin: 0 auto;
	overflow: hidden;
}
.three-1 img {
	width: 100%;
	max-width: 240px;
	border-radius: 8px;
}
.middleSpace {
	padding: 0 16px;
}

.mask {
	width: 100%;
}

.eng {
	margin-top: -3px;
}
.eng2 {
	margin-top: 31px;
}


/* DEATH ICONS -----------------------*/
.Content1-4 {
	max-width: 1120px;
	padding: 38px 20px 0;
	margin: 0 auto;
}


/* Movies ----------------------------*/
.Content1-5 {
	max-width: 1120px;
	padding: 39px 20px 42px;
	margin: 0 auto;
}

.movie {
	text-align: center;
	padding: 10px 0 35px;
	margin: 0 auto;
}
video {
	width: 100%;
	max-width: 640px;
}


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


/* GIF animations --------------------*/
.Content1-6 {
	max-width: 1120px;
	padding: 47px 20px 0;
	margin: 0 auto;
}

.gifAni {
	display: flex;
	max-width: 980px;
	justify-content: space-around;
	padding: 10px 0 43px;
	margin: 0 auto;
	overflow: hidden;
}


/* Gallery ---------------------------*/
.Content1-7 {
	max-width: 1120px;
	padding: 40px 20px 0;
	margin: 0 auto;
}

.gall {
	display: flex;
	width: 100%;
	max-width: 980px;
	justify-content: space-around;
	margin: 0 auto;
	padding: 10px 0 35px;
}
.gall2 img {
	width: 100%;
	height: auto;
	max-width: 240px;
	padding: 0;
	margin: 0;
}


/* Information -----------------------*/
.Content1-8 {
	max-width: 1120px;
	padding: 40px 20px 0;
	margin: 0 auto;
}

.wng {
	margin: 1px 0;
}
.wng h2 {
	margin-bottom: 30px;
}
.wng .whatsnew {
	margin: 0;
}
.wng .whatsnew a {
	color: #fff;
}
.wng .whatsnew a:hover {
	color: #f98484;
}
.wng .whatsnew .newmark {
	font-size: 75%;
	padding: 0px 5px 2px;
	margin-right: 3px;
	vertical-align: top;
	background-color: #b50c0c;
}


/*--- 表 -------------------*/
#info {
	padding-top: 8px;
}
#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: #333;
	font-weight: normal;
	padding: 11px 20px 12px;
	border-radius: 8px 0 0 8px;
}
#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 #333;
}
#info table td {
	text-align: left;
	background-color: #555;
	padding: 11px 20px 12px;
	border-radius: 0 8px 8px 0;
}
#info table td {
	border: 1px solid #555;
}
#info a:link {text-decoration: underline;}
#info a:hover {text-decoration: none;}
/*--- 表 -------------------*/


/* SNS -------------------------------*/
.Content1-9 {
	width: 100%;
	padding: 52px 20px 52px;
}

.sns_txtvox {
	width: 100%;
	max-width: 400px;
	text-align: center;
	padding: 21px 0 16px;
	margin: 0 auto 15px;

	box-shadow: 0px 0px 0px 4px #555;
	border-radius: 8px;
}
.sns {
	display: flex;
	justify-content: space-around;
	padding: 20px 2px 5px;
	margin: 0 auto;
}
.sns img {
	width: 56px;
}


.contactB {
	text-align: center;
	padding: 10px 0 0;
	margin: 0 auto;
}


/* footer ------------------------------------------------*/
#documentation {
	padding: 17px 0;
	background: #b50c0c;
}

footer {
	color: #fff;
	text-align: center;
	padding : 32px 5px 31px;
	margin: 0;
	background-image: linear-gradient(45deg, #111 0%, #111 100%);
	margin-top: -25px;
}

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

.footer_logo img {
	max-width: 170px;
	margin: 4px 0 -8px;
}
.footer_logo2 img {
	max-width: 170px;
	margin: 4px 0 -6px;
}

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

.sp_br {
	display: none;
}
.bar_sp {
	display: none;
}
.sp_br480 {
	display: none;
}
.sp_br320 {
	display: none;
}




/* ◆2 maniac icons --------------------------------------*/
/* ヘッダータイトル --------*/
.header_title {
	background: #222;
	width: 100%;
	padding: 97px 0 10px;
	margin: 0 auto;
	overflow: hidden;
}


.Content2-1 {
	max-width: 1120px;
	padding: 43px 20px 0;
	margin: 0 auto;
}
.Content2-1.mT-1 {
	padding-top: 42px;
}

.Content2-2 {
	max-width: 1120px;
	padding: 0 20px 33px;
	margin: 0 auto;
}
.Content2-2.mT_death {
	padding-top: 6px;
}

.miNomb {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 980px;
	justify-content: space-between;
	padding: 12px 16px 9px;
	margin: 0 auto;
}

.icons {
	display: flex;
	width: 100%;
	max-width: 1120px;
	justify-content: space-between;
	margin: 0 auto;
	padding: 23px 0 17px;
}
.iconTable {
	width: 100%;
	max-width: 530px;
	padding: 15px 16px 17px;
	margin: 0;
	text-align: center;
	background-color: #222;
	border-radius: 8px;
}
.iconText {
	padding-bottom: 17px;
}
.iconTable img {
	max-width: 100%;
	padding: 0;
	margin: 0;
}

/* btn 2 -----------------------------*/
.btn02 {
	position: relative;
	display: inline-block;
	width: 158px;
	background: #000;
	border: none;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	overflow: hidden;
	line-heigt: 1.2em;
	padding: 5px;
	margin: 17px 5px 0;
	border-radius: 8px;
	-webkit-transition: .2s;
	transition: .2s;
}
.btn02 a {
	color: #fff;
}

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

.btn02.deAct::before,
.btn02.deAct::after {
	background-color: #000;
}

.btnWin {
	color: #4dd6ff;

}


.Content2-3 {
	max-width: 1120px;
	padding: 27px 20px 52px;
	margin: 0 auto;
}

.icons.mBend {
	margin-bottom: -6px;
}

.icons.mBend2 {
	margin: 6px 0 -9px;
}


#PwrapIcons {
	height: 300px;
	background-image: none;
}
#PwrapIcons::before {
	background-size: cover0;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
}

.mIcons-1::before {
	background: url(img/mi/bg_1.jpg) center center no-repeat;
}
.mIcons-2::before {
	background: url(img/mi/bg_2.jpg) center center no-repeat;
}
.mIcons-3::before {
	background: url(img/mi/bg_3.jpg) center center no-repeat;
}
.mIcons-4::before {
	background: url(img/mi/bg_4.jpg) center center no-repeat;
}
.mIcons-d::before {
	background: url(img/di/bg_d.jpg) center center no-repeat;
}




/* ◆3 Movies --------------------------------------------*/
#Content3 .movie {
	text-align: center;
	padding: 10px 0 0;
	margin: 0 auto;
}


.mIcons-m::before {
	background: url(img/movies/bg_m.jpg) center center no-repeat;
}




/* ◆4 GIF animations ------------------------------------*/
.Content4-1 {
	max-width: 1120px;
	padding: 32px 20px 30px;
	margin: 0 auto;
}
.mT-a {
	margin-top: -1px;
}

.gifAni_2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1080px;
	justify-content: space-between;
	padding: 2px 0 0;
	margin: 0 auto;

}
.gifAni_2 img {
	padding: 10px;
}

.tinC {
	text-align: center;
	padding: 10px 0 12px;
}


.mIcons-g::before {
	background: url(img/gif/bg_g.jpg) center center no-repeat;
}


.Content4-2 {
	max-width: 1120px;
	padding: 42px 20px 50px;
	margin: 0 auto;
}




/* ◆5 Gallery -------------------------------------------*/
.Content5-1 {
	max-width: 1120px;
	padding: 32px 20px 30px;
	margin: 0 auto;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1080px;
	justify-content: space-between;
	padding: 2px 0 10px;
	margin: 0 auto;
}
.gallery img {
	max-width: 255px;
	padding: 10px 0;
}


.mIcons-ga::before {
	background: url(img/gallery/bg_ga.jpg) center center no-repeat;
}


.Content5-2 {
	max-width: 1120px;
	padding: 42px 20px 52px;
	margin: 0 auto;
}

.gallery_2 {
	text-align: center;
	padding: 0;
	margin: 0 auto;
}
.gallery_2 img {
	max-width: 255px;
}




/* ◆6 About ---------------------------------------------*/
.Content6-1 {
	max-width: 1120px;
	padding: 43px 20px 0;
	margin: 0 auto;
}

.Content6-2 {
	max-width: 1120px;
	padding: 34px 20px 0;
	margin: 0 auto;
}

.hsw_logo img {
	max-width: 170px;
	padding-top: 8px;
}

.Content6-3 {
	max-width: 1120px;
	padding: 32px 20px 39px;
	margin: 0 auto;
}


.mIcons-ab::before {
	background: url(img/about/bg_ab.jpg) center center no-repeat;
}




/* ◆7. お問い合わせ -------------------------------------*/
.Content7 {
	width: 100%;
	max-width: 1120px;
	padding: 42px 20px 40px;
	margin: 0 auto;
}


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

.Content7 section {
	max-width: 1120px;
	margin: -1px auto 0;
	padding: 12px 0 20px;
}
.Content7 section table {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 20px 0 19px;
}
.Content7 section th, section td {
	font-size: 15px;
	border: 1px solid #444;
	margin: 0 auto;
	padding: 15px;
}
.Content7 section th {
	width: 25%;
	font-weight: normal;
	text-align: left;
	background-color: #444;
	padding: 10px 15px;
}
.Content7 section th span {
	color: #f98484;
	font-size: 0.90rem;
}
.Content7 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;
}
.Content7 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;
}

.Content7 select {
	height: 27px;
}


/*--- FAQ ----------------------------*/
.tab {
	position: relative;
	width: 100%;
	padding: 10px 0 0;
	overflow: hidden;
}
input.qa {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
label.qa {
	position: relative;
	display: block;
	padding: 16px 40px 17px 16px;
	cursor: pointer;
	border: 6px solid #f98484;
	border-radius: 8px;
}
.tab-content {
	max-height: 0;
	overflow: hidden;
	background: #222;
	border-radius: 8px;
	-webkit-transition: max-height .35s;
	-o-transition: max-height .35s;
	transition: max-height .35s;
}
.tab-content p {
	font-size: 16px;
	margin: 16px 20px 17px;
}

input.qa:checked ~ .tab-content {
	max-height: 50vh;
}

label.qa::after {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 3.1em;
	height: 3em;
	line-height: 3;
	 text-align: center;
	-webkit-transition: all .35s;
	-o-transition: all .35s;
	transition: all .35s;
}
input.qa[type=checkbox] ~ label.qa::after {
	margin-top: 7px;
	content: "\025b6";
}
input.qa[type=checkbox]:checked ~ label.qa::after {
	margin-top: 7px;
	transform: rotate(90deg);
}


.Content7 .tab {
	margin-top: 9px;
}
.Content7 .qa_pp {
	font-size: 14px;
	padding: 15px 16px;
}
.Content7 input.qa:checked ~ .tab-content {
	max-height: 45vh;
	overflow-y: scroll;
}


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

.Content7 input[type="submit" i] {
	position: relative;
	display: inline-block;
	padding: 0.4em 0.6em 0.3em;
	margin: 0 10px;
	text-decoration: none;
	color: #fff;
	background: #444;
	border: solid 1px #222;
	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;
}
.Content7 input[type="submit" i]:hover {
		background: #111;
}


/*--- thanks page ---*/
#Content7_wrap {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 65px;
	position: relative;
	padding-bottom: 0px;
	box-sizing: border-box;
}
.Content7_thanks {
	max-width: 720px;
	margin: 0 auto;
	padding: 42px 20px 0;
	text-align: center;
}




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

.pt-cv-wrapper {
	max-width: 1120px;
	padding: 50px 20px 7px;
	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: #292655 !important;
	border-color: #292655 !important;
	margin-top: 9px;
}
.pt-cv-wrapper .btn-success:hover {
	background-color: #fed900 !important;
	border-color: #fed900 !important;
}

.pt-cv-meta-fields {
	font-size: 14px !important;
	padding-top: 6px;
}
.pt-cv-meta-fields a {
	color: #c30d23 !important;
}
.pt-cv-meta-fields a:hover {
	color: #fed900 !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: #292655;
}
.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: #292655 !important;
}
.pt-cv-wrapper .pagination>li>a, .pt-cv-wrapper .pagination>li>span {
	padding: 5px 12px 6px !important;
	color: #292655 !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: #292655 !important;
}


/*--- 共通ウイジェット ---*/
section#archives-2 {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px 46px;
	/*--margin-top: -17px;--*/
}
section#archives-2 select {
	height: 27px;
	margin-left: 3px;
}
section#categories-2 {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px 60px;
}
section#categories-2 select {
	height: 27px;
	margin-left: 3px;
}
	section#archives-2 h2, section#categories-2 h2 {
	margin-bottom: 21px;
}
/*--- 共通ウイジェット ---*/


/*--- パンくず -------------*/
#pk {
	width: 100%;
}
.pk {
	max-width: 1080px;
	padding: 0px 20px;
	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: 2px;
}

#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;
}

.date-head {
	text-align: center;
	padding-top: 11px;
}
.date-head p {
	display: none;
}

.date-head h3 {
	font-size: 24px;
}

.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 img {
	width: 100%;
	max-width: 960px;
	height: auto;
	padding: 0;
	margin: 33px 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: 35px 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 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
}
/*--- リセット ---*/




/* ◆9. プライバシーポリシー -----------------------------*/
.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;
}

.set1 {
	text-indent: -16px;
	padding-left: 16px;
}
