@charset 'UTF-8';
@import url('css/ress.edit.css');
/*
Theme Name: originalThemeVer2
Author: TYL Yanagida
Version: 2.0
-------------------------------------------------------------- */
body {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	letter-spacing: 0.1em;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	font-style: normal;
	color: #fff;
	line-height: 200%;
	background-color: #e50012;
}

/* 画像 ---------- */
img.cover,
video.cover {
	width: 100%;
	height: auto;
}
img.cover50 {
	width: 50%;
	height: auto;
	margin: 0 25%;
}
img.cover60 {
	width: 60%;
	height: auto;
	margin: 0 20%;
}
img.cover80 {
	width: 80%;
	height: auto;
	margin: 0 10%;
}
.post p.imageWrapper {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
figure.onImg{
	position: relative;
}
figure img{
	width: auto;
	max-width: 100%;
}
figure.onImg figcaption{
	position: absolute;
	left: 1em;
	bottom: 1em;
}
figure.onImg.right figcaption{
	left: auto;
	right: 1em;
}

/* display 設定 ---------- */
@media screen and (max-width: 800px) {
	img.cover50,
	img.cover60 {
		width: 86%;
		height: auto;
		margin: 0 7%;
	}
	img.cover80 {
		width: 100%;
		height: auto;
		margin: 0;
	}
}
.preload {
	display: none;
}
.dispWide {
	display: block;
}
.dispNarrow {
	display: none;
}
@media screen and (max-width: 800px) {
	.dispWide,
	.blank {
		display: none;
	}
	.dispNarrow {
		display: block;
	}
}

/* リンク ---------- */
a {
	display: inline-block;
	position: relative;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a.hover {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}
a.hoverOpacity {
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a.hoverOpacity.hover {
	opacity: 0.75;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}
.post a:not(.thumbLink)::before,
a.hoverBorder::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 1px;
	margin-top: 0.7em;
	background-color: #fff;
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#navCatalog a::before,
footer > ul > li > a::before{
	content: none!important;
}
.textBlack a.hoverBorder::before,
.post a::before {
	background-color: #000;
}
.post a:not(.btn)::before,
a.hover.hoverBorder::before,
.selected a.hoverBorder::before {
	width: 100%;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}
@media screen and (max-width: 800px) {
	.post a,
	a.hoverBorder {
		text-decoration: underline;
	}
	header a.hoverBorder,
	footer a.hoverBorder {
		text-decoration: none;
	}
	.post a::before,
	a.hoverBorder::before,
	.selected a.hoverBorder::before {
		width: 0;
	}
}
a.btn {
	padding: 0.6em 2em;
	border-radius: 5em;
}
.deactive {
	opacity: 0.5;
}
.deactive a {
	pointer-events: none;
}

/*文字選択時文字色＆背景色*/
::selection {
	color: #fff;
	background-color: #e50012;
}
/* テキスト装飾 ---------- */
.alignCenter {
	text-align: center;
}
/* 文字数がわからないブロックをセンタリングする場合 */
.alignCenter > .blockCenter {
	display: inline-block;
}
.alignRight {
	text-align: right;
}
.alignLeft {
	text-align: left;
}
.textBold {
	font-weight: bold;
}
/* 文字をデフォルトの太さにする場合（デフォルト） */
.textNormal {
	font-weight: normal;
}
.textIndent {
	padding-left: 1em;
}
/*二行目以降一文字分段落ち指定*/
.textAttention {
	display: block;
	text-indent: -1em;
	margin-left: 1em;
}
/*一行の領域からはみ出す時に文字省略*/
.textEllipsis {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*二行の領域からはみ出す時に文字省略*/
.textEllipsis2lines {
	display: -webkit-box!important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* 行間指定 ---------- */
.lineHeight100 {
	line-height: 100%;
}
.lineHeight150 {
	line-height: 150%;
}
.tag,
.listtag,
.lineHeight186 {
	line-height: 186%;
}
.lineHeight200 {
	line-height: 200%;
}
.lineHeight220 {
	line-height: 220%;
}
@media screen and (max-width: 800px) {
	.lineHeight100 {
		line-height: 120%;
	}
}
/* 文字間指定 */
.letterSpacing0 {
	letter-spacing: 0;
}
/* 余白指定 ---------- */
.marginTopHalf {
	margin-top: 0.5em!important;
}
.post h1,
.post h2,
.post p,
.post dl,
.post ol,
.post ul,
.post .tableWrapper,
.marginTop1 {
	margin-top: 1em!important;
}
.post p + h2,
.post p + h3,
.post dl + h2,
.post dl + h3,
.post ol + h2,
.post ol + h3,
.post ul + h2,
.post ul + h3,
.marginTop1half {
	margin-top: 1.5em!important;
}
.marginTop2 {
	margin-top: 2em!important;
}
.marginTop3 {
	margin-top: 3em!important;
}
.marginTop4 {
	margin-top: 4em!important;
}
.post dl dl,
.post ol ol,
.post ul ul {
	margin-top: 0!important;
}
.post dd {
	margin-left: 1em;
}
.paddingVertical1 {
	padding: 1em 0;
}
.paddingVertical2 {
	padding: 2em 0;
}
.paddingVertical3 {
	padding: 3em 0;
}
.paddingHorizontalHalf {
	padding: 0 0.5em;
}
.paddingHorizontal1 {
	padding: 0 1em;
}
.paddingHorizontal2 {
	padding: 0 2em;
}
.tag,
.listtag,
.post dd span {
	padding: 0.25em 0.5em;
}
.post {
	padding-bottom: 4em;
}
.breadCrumbs + .post {
	margin-top: -1em;
}
.post + .post {
	margin-top: -3em;
}
span.tag,
span.listtag {
	display: inline-block;
}
.date {
	display: inline-block;
	margin-bottom: 0.5em;
	border-bottom: 1px solid #fff;
}
.bgWhite .date {
	border-bottom-color: #000;
}

/* font size /950px ---------- */
.text24 {
	font-size: 2.526316vw;
}
.widthWrapper .text24 {
	font-size: 36px;
}
.text18 {
	font-size: 1.894737vw;
}
.widthWrapper .text18 {
	font-size: 27px;
}
.text14 {
	font-size: 1.473684vw;
}
.widthWrapper .text14 {
	font-size: 21px;
}
.text12 {
	font-size: 1.2631572vw;
}
.widthWrapper .text12 {
	font-size: 18px;
}
.text10 {
	font-size: 1.052631vw;
}
.widthWrapper .text10 {
	font-size: 15px;
}
.text0 {
	font-size: 0;
}
@media screen and (min-width: 801px) and (max-width: 1425px) {
	.widthWrapper .text24 {
		font-size: 2.526316vw;
	}
	.widthWrapper .text18 {
		font-size: 1.894737vw;
	}
	.widthWrapper .text14 {
		font-size: 1.473684vw;
	}
	.widthWrapper .text12 {
		font-size: 1.2631572vw;
	}
	.widthWrapper .text10 {
		font-size: 1.052631vw;
	}
}
@media screen and (max-width: 800px) {
	.widthWrapper .text24,
	.text24 {
		font-size: 4.25vw;
	}
	.text18,
	.widthWrapper .text18 {
		font-size: 4vw;
	}
	.text14,
	.widthWrapper .text14 {
		font-size: 3.75vw;
	}
	#pkgBlock .text18,
	#pkgBlock .text14,
	.text12,
	.text10,
	.widthWrapper .text12 {
		font-size: 3vw;
	}
	.widthWrapper .text10 {
		font-size: 2.5vw;
	}
}

/* bread crumbs ---------- */
.breadCrumbs {
	width: 100%;
	padding: 1em 0;
}
.breadCrumbs li,
.breadCrumbs li span {
	display: inline-block;
	padding-right: 1em;
}
.breadCrumbs li:not(:last-child)::after {
	content: ">";
}
@media screen and (max-width: 800px) {
  .breadCrumbs {
    overflow-x: scroll;
    white-space: nowrap;
  }
}

/* 枠組み ---------- */
.widthWrapper {
	width: 100%;
	max-width: 1282.5px;
	margin: 0 auto;
}
.insideWrapper {
	width: 72.5%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 800px) {
	.insideWrapper {
		width: 100%;
	}
}
hr {
	width: 100%;
	height: 1px;
	border: none;
}

/* flexbox指定 ---------- */
.flexBlock {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
	flex-shrink: 0;
	list-style: none;
	margin: 0 auto;
}
.flexColumn {
	flex-direction: column;
}
.flexStart {
	justify-content: flex-start;
}
.flexBetween {
	justify-content: space-between;
}
.flexEnd {
	justify-content: flex-end;
}
.flexStretch {
	align-items: stretch;
}
.flexAlignCenter {
	align-items: center;
}
.flexReverse {
	flex-direction: row-reverse;
}
.flexOrder > div {
	order: 2;
}
.flexOrder > div + div {
	order: 1;
}
.flexList2 {
	width: 50%;
}
.flexSplit {
	width: 48%;
}
.flexSns {
	width: 2em;
}
.flexSns > a {
	display: block;
	width: 100%;
	padding-top: 100%;
	height: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 1.5em auto;
}
.flexSns > a.hover {
	background-size: 1.75em auto;
}
.flexSns.snsFacebook > a {
	background-image: url("images/_svg/snsFacebook.svg");
}
.flexSns.snsInstagram > a {
	background-image: url("images/_svg/snsInstagram.svg");
}
.flexSns.snsTwitter > a {
	background-image: url("images/_svg/snsTwitter.svg");
}
.flexSns.snsYoutube > a {
	background-image: url("images/_svg/snsYoutube.svg");
}
.post .flexSplit:nth-child(even) {
	margin-left: 4%;
}
.flexList3 {
	width: 33.333333%;
	width: calc(100%/3);
}
.flexList3wide {
	width: 66.666666%;
	width: calc(200%/3);
}
.flexList4 {
	width: 25%;
}
.newsList li {
	position: relative;
	align-items: flex-start;
	margin-bottom: 2em;
}
.newsList .newsThumb {
	width: 20%;
	padding-top: 15.4%;
	background-size: 120% auto;
	background-color: #fff;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
	overflow: hidden;
}
.newsList .hover .newsThumb {
	background-size: 125% auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.newsList .newsThumb + div {
	width: 77%;
	margin-left: auto;
}
.newsList .newsThumb + div span {
	display: block;
}
.newsList a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 800px) {
	.flexReverse {
		flex-direction: column;
	}
	.flexSplit,
	.flexList2,
	.flexList3wide {
		width: 100%;
	}
	.post .flexSplit:nth-child(even) {
		margin-left: 0;
	}
	.flexList3wide + .flexList3,
	.flexList3 + .flexList2,
	.flexSplit + .flexSplit {
		margin-top: 1em;
	}
	.flexList3,
	.flexList4 {
		width: 50%;
	}
	.galleryList .flexList4 {
		width: 25%;
	}
	.newsList li {
		position: relative;
		margin-bottom: 2em;
	}
	.newsList .newsThumb {
		width: 40%;
		padding-top: 30.8%;
	}
	.newsList .newsThumb + div {
		width: 57%;
		margin-left: auto;
	}
}

/* 文字色 ---------- */
.textWhite,
.textWhite a,
a .textWhite {
	color: #fff;
}
.textBlack,
.textBlack a,
a .textBlack {
	color: #000;
}
.textGreen,
.textGreen a {
	color: #00a23e;
}
.textGold,
.textGold a {
	color: #c19854;
}
.textRed,
.textRed a {
	color: #e50012;
}
.textBlue,
.textBlue a {
	color: #005bab;
}
.textPurple,
.textPurple a {
	color: #854596;
}
.textYellow,
.textYellow a {
	color: #f5aa00;
}
.textSkyBlue,
.textSkyBlue a {
	color: #00aaea;
}
.textOrange,
.textOrange a {
	color: #ea6100;
}
.textYellowGreen,
.textYellowGreen a {
	color: #b3db1e;
}
.textWine,
.textWine a {
	color: #dd0062;
}
.textYellowLight,
.textYellowLight a {
	color: #e3d605;
}
.textLightCyan,
.textLightCyan a {
	color: #9dc3e7;
}

.textShadow{
	text-shadow: 0 0 10px #000,0 0 10px #000,0 0 10px #000;
}

/* 背景色 ---------- */
.bgWhite,
header > nav > ul > li > a.hoverBorder::before {
	background-color: #fff;
}
.bgBlack {
	background-color: #000;
}
.bgBlackTranslucent{
	background-color: rgba(0,0,0,.7);
}
.bgLightGray {
	background-color: #888;
}
.bgDarkGray {
	background-color: #1e1e1e;
}
.bgGreen {
	background-color: #00a23e;
}
.bgGold {
	background-color: #c19854;
}
.bgRed {
	background-color: #e50012;
}
.bgBlue {
	background-color: #005bab;
}
.bgSkyBlue {
	background-color: #00aaea;
}
.bgYellow {
	background-color: #f5aa00;
}
.bgOrange {
	background-color: #ea6100;
}
.bgYellowGreen {
	background-color: #b3db1e;
}
/*20210603*/
.bgYellowLight {
	background-color: #e3d605;
}
.bgPurple {
	background-color: #854596;
}
.bgGreenRed {
	background: #00a23e;
	background: linear-gradient(120deg, rgba(0,162,62,1) 50%, rgba(229,0,18,1) 50%);
}
.bgWine {
	background-color: #dd0062;
}
.bgGreenRed {
	background: #00a23e;
	background: linear-gradient(120deg, rgba(0,162,62,1) 50%, rgba(229,0,18,1) 50%);
}
/*20220630*/
.bgEmerald {
	/*
	background-color: #52e2cc;
	*/
	background-color: #4cb2b0;
}
.bgHover {
	background-color: rgba(0,0,0,0.6);
}
/*20250707*/
.bgLightCyan{
	background: #9dc3e7;
}

a.btn.bgWhite {
	background-color: #fff;
	border: 2px solid #fff;
}
a.btn.bgWhite.hover {
	color: #fff;
	background-color: transparent;
	border: 2px solid #fff;
}
a.btn.bgGreen {
	background-color: #00a23e;
	border: 2px solid #00a23e;
}
a.btn.bgGreen.hover {
	color: #00a23e;
	background-color: transparent;
}
a.btn.bgGold {
	background-color: #c19854;
	border: 2px solid #c19854;
}
a.btn.bgGold.hover {
	color: #c19854;
	background-color: transparent;
}
a.btn.bgRed {
	color: #fff!important;
	background-color: #e50012;
	border: 2px solid #e50012;
}
a.btn.bgRed.hover {
	color: #e50012!important;
	background-color: transparent;
}
a.btn.bgBlue {
	background-color: #005bab;
	border: 2px solid #005bab;
}
a.btn.bgBlue.hover {
	color: #005bab;
	background-color: transparent;
}
a.btn.bgSkyBlue {
	background-color: #00aaea;
	border: 2px solid #00aaea;
}
a.btn.bgSkyBlue.hover {
	color: #00aaea;
	background-color: transparent;
}
a.btn.bgYellow {
	background-color: #f5aa00;
	border: 2px solid #f5aa00;
}
a.btn.bgYellow.hover {
	color: #f5aa00;
	background-color: transparent;
}
a.btn.bgOrange {
	background-color: #ea6100;
	border: 2px solid #ea6100;
}
a.btn.bgOrange.hover {
	color: #ea6100;
	background-color: transparent;
}
a.btn.bgYellowGreen {
	background-color: #b3db1e;
	border: 2px solid #b3db1e;
}
a.btn.bgYellowGreen.hover {
	color: #b3db1e;
	background-color: transparent;
}
a.btn.bgPurple {
	background-color: #854596;
	border: 2px solid #854596;
}
a.btn.bgPurple.hover {
	color: #854596;
	background-color: transparent;
}
a.btn.bgWine {
	background-color: #dd0062;
	border: 2px solid #dd0062;
}
a.btn.bgWine.hover {
	color: #dd0062;
	background-color: transparent;
}

.photoWithFrame {
	position: relative;
}
.photoWithFrame::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("images/_svg/maskLensKvNarrow.svg");
	background-size: 104% auto;
	z-index: 10;
}

/* YouTube ---------- */
.movieWrapper,
.embedMovieWrapper {
	position: relative;
	width: 100%;
	height: 0;
	margin: 0 auto;
	padding-top: 56.25%;
	overflow: hidden;
}
.post .movieWrapper {
	position: relative;
	width: 80%;
	height: 0;
	margin: 1em auto 0;
	padding-top: 44.82%;
	overflow: hidden;
}
.movieWrapper iframe,
.movieWrapper video,
.embedMovieWrapper iframe,
.embedMovieWrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movieWrapper span,
.movieWrapper span img,
.movieWrapper span span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movieWrapper span span {
	display: block;
	background-image: url("images/_svg/btnPlay.svg");
}
/*
.movieWrapper span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background-image: url("images/_svg/btnPlay.svg");
	transform: translate(-50%, -50%);
}
*/

/* single ---------- */
.post .postTitle {
	position: relative;
}
.post .postTitle::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -0.5em;
	width: 4px;
	height: 100%;
	background-color: #000;
}
.post ol {
	width: 100%;
	margin: 0;
	/*
	padding: 0 0 0 1em;
	*/
	padding: 0;
	list-style: none;
	counter-reset: number;
}
.post ol li {
	position: relative;
	width: 100%!important;
	padding-left: 2em;
	box-sizing: border-box;
}
.post ol li + li {
	margin-top: 0.5em;
}
.post ol li:before {
	content: counter(number);
	counter-increment: number;
	/*
	font-weight: bold;
	*/
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: #000;
	width: 1.5em;
	height: 1em;
	text-align: center;
}
.post ol li:after {
	content: "";
	display: block;
	position: absolute;
	top: 0.175em;
	left: 0.025em;
	width: 1.4em;
	height: 1.4em;
	border: 2px solid #000;
	border-radius: 100%;
	box-sizing: border-box;
}
.post ul {
	width: 100%;
	margin: 0;
	padding: 0 0 0 1em;
}

/* table ---------- */
table.timeline,
table.timeline tr {
	width: 100%;
	letter-spacing: 0.01em;
}
table.timeline tr + tr th,
table.timeline tr + tr td {
	padding-top: 1em;
}
table.timeline th {
	width: 14%;
	min-width: 7em;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}
table.timeline td {
	width: 84%;
}
table.timeline th {
	width: 12%;
	min-width: inherit;
}
table.timeline td {
	width: 87%;
}
table.timeline th span {
	letter-spacing: 0.18em;
}
table.timeline th span.character3 {
	letter-spacing: 0.75em;
}
table.timeline th span.character2 {
	letter-spacing: 2.5em;
}
@media screen and (max-width: 800px) {
	/*
	table {
		padding-top: 2em;
	}
	*/
	table.timeline th,
	table.timeline td {
		display: block;
		width: 100%;
		line-height: 200%;
	}
	table.timeline tr + tr th,
	table.timeline tr + tr td {
		padding-top: 0;
	}
	table.timeline td {
		padding: 0.5em 0 1.5em;
		border-top: 1px dotted #999;
	}
	.bgRed table.timeline td {
		border-top-color: #fff;
	}
}
#filterNow {
	min-height: 80vh;
}
#catalog .icon {
	position: relative;
	display: inline-block;
	padding-left: 2.5em;
}
#catalog .icon::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 2em;
	height: 2em;
	background-image: url("images/_svg/iconCatalog.svg");
	background-size: contain;
	transform: translateY(-50%);
}

/* ページネーション ---------- */
.pager {
	justify-content: center;
	padding: 2.5em 0;
}
.pager li {
	width: 2em;
	height: 2em;
	margin: 0 0.3125em;
	line-height: 2em;
}
.pager li.empty {
	width: 1.5em;
	background-color: transparent;
}
.pager li.empty:after {
	content: "...";
}
.pager li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: #1e1e1e;
	background-color: #ecf0f4;
	opacity: 1;
}
.pager li a.hover,
.pager li.current {
	color: #fff;
	background-color: #e50012;
}
.pager li.next,
.pager li.prev {
}
.pager li.next a::before,
.pager li.prev a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.pager li.next a::before {
	content: ">";
}
.pager li.prev a::before {
	content: "<";
}
@media screen and (max-width: 800px) {
	.pager {
		padding: 1.25em 0 3.75em;
	}
	.pager + .btnBackToList {
		transform: translateY(-3.75em);
	}
}

/* sns ---------- */
.snsBlock {
	position: relative;
	width: 100%;
	height: 20px;
	margin: 0 auto 2em;
	padding: 8px 0;
	overflow: visible;
}
.snsBlock .snsBtn {
	display: block;
	height: 20px;
	margin: 0 4px 0 0;
	line-height: 0;
}