/* CSS Document */
:root {
	--color-main: #DF600D;
	--color-sub: #EDA613;
	--color-hover: #D8980C;
	--color-text: #0D0506;
	--color-gray: #ccc;
	--color-products: #DF600D;
	--color-events: #0DA800;
	--color-campaign: #FF5F8A;
	--color-card: #5FA9FF;
	--color-other: #999;




	--animate-duration: 1000ms;
	--animate-delay: 2s;
	--txt-size-xs: 13px;
	--txt-size-s: 15px;
	--txt-size-m: 16px;
	--txt-size-l: 18px;
	--txt-size-xl: 28px;
	--txt-size-xxl: 38px;
}

@media screen and (max-width: 767px) {
	:root {
		--txt-size-xs: 10px;
		--txt-size-s: 12px;
		--txt-size-m: 15px;
		--txt-size-l: 17px;
		--txt-size-xl: 20px;
		--txt-size-xxl: 30px;
	}
}

:focus-visible {
	outline-color: var(--color-sub);
	outline-offset: 2px;
}

:where(ul) li:before {
	background-color: var(--color-main);
}

:where(ul) li+li {
	margin-top: .5em;
}

:where(ul) li>ul {
	margin: 0.5em 0 0;
}

:where(ul) li>ul>li {
	margin: 0 0 0.2em;
}

:where(ul) li>ul>li:before {
	background-color: var(--color-sub);
}

#main {
	font-family: "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	line-height: 1.7;
	position: relative;
	background-image: url("../img/bg.png");
}

#main_card {
	font-family: "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	line-height: 1.7;
	position: relative;
}

.l-main {
	position: relative;
}

/** header(グロナビ)**/
.header {
	width: 100%;
	position: absolute;
	z-index: 19;
	transition: transform 0.3s ease-out;
	padding-top: 5px;
	top: 0;
}

@media screen and (max-width: 767px) {
	.header {
		padding-top: 0px;
	}
}

.header .sp_button {
	width: 50px;
	height: 50px;
	background-image: url("../img/bars.svg");
	background-repeat: no-repeat;
	background-size: 85%;
	background-position: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	display: none;
}

.header .sp_button.open {
	background-image: url("../img/bars_close.svg");
}

@media screen and (max-width: 767px) {
	.header .sp_button {
		display: block;
	}
}

.header.page {
	padding-top: 0px;
}

.header.fixed {
	position: fixed;
	padding-top: 0px;
}

.header.hide {
	transform: translateY(calc(-100% - 22px));
}


.header_inner {
	height: 80px;
	width: 100%;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.header.page .header_inner,
.header.fixed .header_inner {
	height: 60px;
}

@media screen and (max-width: 767px) {

	.header.page .header_inner,
	.header.fixed .header_inner,
	.header .header_inner {
		height: auto;
		display: block;
	}
}

.header_inner::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	background-color: var(--color-text);
	width: 100%;
	height: 60px;
	z-index: -1;
	transition: all 0.3s ease;
}

.header.page .header_inner::before,
.header.fixed .header_inner::before {
	top: 0px;
}

@media screen and (max-width: 767px) {
	.header .header_inner::before {
		top: 0px;
		height: 50px;
	}

	.header .header_inner.open::before {
		height: 100vh;
	}
}


.header_inner ul li {
	margin: 0;
	padding: 0;
}

.header_inner li::before {
	content: none;
}

.header_inner .left_box {
	position: relative;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.header_inner .left_box {
		display: block;
	}
}




.header_inner .left_box .logo {
	height: 80px;
	margin-left: 20px;
	margin-right: 40px;
	transition: all 0.3s ease;
}

@media screen and (max-width: 1565px) {
	.header_inner .left_box .logo {
		margin-right: 20px;
	}
}

@media screen and (max-width: 1335px) {
	.header_inner .left_box .logo {
		margin-right: 10px;
	}
}


.header.page .left_box .logo,
.header.fixed .left_box .logo {
	top: 0px;
	height: 60px;
	padding: 5px 0;
}

@media screen and (max-width: 767px) {

	.header .left_box .logo,
	.header.page .left_box .logo,
	.header.fixed .left_box .logo {
		top: 0px;
		height: 50px;
		padding: 5px 0 5px 10px;
		margin: 0;
	}
}


.header_inner .left_box .logo img {
	height: 100%;
	width: auto;
}

.header_inner .sns_box {
	margin-right: 20px;
}

@media screen and (max-width: 767px) {
	.header_inner .sns_box {
		display: none;
		padding: 5px 15px;
		margin: 0;
	}
}



.header_inner .sns_box ul {
	display: flex;
	margin: 0;
	align-items: center;
}

.header_inner .sns_box li {
	margin-left: 20px;
}

.header_inner .sns_box li.search_box {
	margin-left: 0px;
	margin-right: 20px;
}

@media screen and (max-width: 767px) {
	.header_inner .sns_box ul {
		flex-wrap: wrap;
		gap: 14px;
	}

	.header_inner .sns_box li {
		margin: 0px;
		height: auto;
	}

	.header_inner .sns_box li.search_box {
		/*	width: 70%;*/
		margin: 0;
		flex: 1;
	}
}

.header_inner .sns_box li a {
	height: 20px;
	display: block;
}

@media screen and (max-width: 767px) {
	.header_inner .sns_box li a {
		height: 30px;
	}
}

.header_inner .sns_box li a img {
	height: 100%;
	width: auto;
}




.gnav {
	display: flex;
	align-items: center;
	flex: 1;
}

.gnav .mainmenu {
	margin: 0;
	display: flex;
	font-size: var(--txt-size-l);
	font-weight: bold;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
}

@media screen and (max-width: 1565px) {
	.gnav .mainmenu {
		font-size: 16px;
		gap: 10px;
	}
}

@media screen and (max-width: 1355px) {
	.gnav .mainmenu {
		font-size: 1.1vw;
		gap: 6px;
	}
}

@media screen and (max-width: 767px) {
	.gnav {
		display: none;
		padding: 15px
	}

	.gnav .mainmenu {
		display: block;
		font-size: var(--txt-size-l);
		/*	gap:30px;*/
	}

	.gnav .mainmenu>li {
		padding: 13px 0;
		border-top: 2px solid rgba(255, 255, 255, 0.3);
	}

	.gnav .mainmenu>li:last-child {
		border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	}
}



.gnav .mainmenu>li {}

.gnav .mainmenu>li>a {
	text-decoration: none;
	color: #fff;
	position: relative;
	padding-left: 29px;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1;
	cursor: pointer;
	z-index: 0;
	transition: color 0.3s ease;
	/* ← これでフェード */
}

.gnav .mainmenu>li>a.disabled {
	pointer-events: none;
	opacity: 0.4;
}


.gnav .mainmenu>li>a::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 13px);
	width: 26px;
	height: 26px;
	background-image: url("../img/ball.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;

	/** animation **/
	will-change: transform;
}

@media screen and (max-width: 1565px) {
	.gnav .mainmenu>li>a {
		padding-left: 26px;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.gnav .mainmenu>li>a::before {
		top: calc(50% - 12px);
		width: 24px;
		height: 24px;
	}
}

@media screen and (max-width: 1355px) {
	.gnav .mainmenu>li>a {
		padding-left: 18px;
		padding-top: 3px;
		padding-bottom: 3px;
	}

	.gnav .mainmenu>li>a::before {
		top: calc(50% - 9px);
		width: 18px;
		height: 18px;
	}
}

@media screen and (max-width: 767px) {
	.gnav .mainmenu>li>a {
		padding-left: 27px;
	}

	.gnav .mainmenu>li>a::before {
		top: calc(50% - 11px);
		width: 22px;
		height: 22px;
		background-image: url("../img/ball_w.svg");
	}

}



.gnav .mainmenu>li.has-submenu>a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 6px 0 6px;
	border-color: #FFFFFF transparent transparent transparent;
	margin-bottom: 1px;
	margin-left: 3px;
}

.gnav .mainmenu>li.open>a {
	color: var(--color-sub);
}

.gnav .mainmenu>li>a:focus-visible::before,
.gnav .mainmenu>li.open>a::before {
	background-image: url("../img/ball_fullcolor.svg");
	animation: ball-bounce 500ms cubic-bezier(.22, .61, .36, 1) both;
}

.gnav .mainmenu>li>a:focus-visible::after,
.gnav .mainmenu>li.open>a::after {
	border-color: var(--color-sub) transparent transparent transparent;
}

/* hover可能なデバイスだけに効かせる */
@media (hover: hover) and (pointer: fine) {

	.gnav .mainmenu>li>a.current,
	.gnav .mainmenu>li>a:hover {
		color: var(--color-sub);
	}

	.gnav .mainmenu>li>a.current::before,
	.gnav .mainmenu>li>a:hover::before {
		background-image: url("../img/ball_fullcolor.svg");
		animation: ball-bounce 500ms cubic-bezier(.22, .61, .36, 1) both;
	}

	.gnav .mainmenu>li>a.current::after,
	.gnav .mainmenu>li>a:hover::after {
		border-color: var(--color-sub) transparent transparent transparent;
	}
}

.gnav .mainmenu .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--color-text);
	min-width: 240px;
	margin: 20px 0 0;
	padding: 15px 0 15px;
	-webkit-box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.2);
	z-index: 0;
}

@media screen and (max-width: 767px) {
	.gnav .mainmenu .submenu {
		background-color: inherit;
		position: relative;
		min-width: inherit;
		width: 100%;
		margin: 0 0;
		padding: 5px 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}


.gnav .mainmenu .submenu>li:first-child {}

.gnav .mainmenu .submenu>li {
	line-height: 1;
	padding: 0;
	margin: 0;
}

.gnav .mainmenu .submenu>li>a {
	line-height: 1;
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 85%;
	cursor: pointer;
	padding: 12px 15px 11px;
}

.gnav .mainmenu .submenu>li>a::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url("../img/arrow_right.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.gnav .mainmenu .submenu>li>a:hover {
	color: #fff;
	background-color: var(--color-main);
}

.gnav .mainmenu .submenu>li.ttl {
	padding-bottom: 16px;
	border-bottom: 2px solid var(--color-gray);
}

.gnav .mainmenu .submenu>li.ttl span::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 13px);
	width: 26px;
	height: 26px;
	border-radius: 99px;
	border: 1px solid var(--color-text);
	background-color: var(--color-text);
	background-image: url("../img/ball_fullcolor.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}

.gnav .mainmenu .submenu>li.ttl span {
	padding-left: 29px;
	padding-top: 4px;
	padding-bottom: 4px;
	z-index: 0;
	position: relative;
	display: block;
}




/* バウンドのキーフレーム
   ベースの translateY(-50%) を維持しつつ、相対的に上下させる */
@keyframes ball-bounce {
	0% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-14px);
	}

	/* ポーンと上に */
	55% {
		transform: translateY(0);
	}

	/* 着地 */
	75% {
		transform: translateY(-3px);
	}

	/* 余韻の小バウンド */
	100% {
		transform: translateY(0);
	}
}


.sns_box .search_box {
	position: relative;
	width: 180px;
	height: 30px;
}

.sns_box .search_box .area {
	border: none;
	background-color: #fff;
	outline: none;
	font-size: 14px;
	padding: 8px;
	width: 100%;
	border-radius: 99px;
}

.sns_box .search_box .btn {
	width: 14px;
	height: 14px;
	position: absolute;
	right: 8px;
	top: calc(50% - 7px);
	border: none;
	background-color: inherit;
	background-image: url("../img/magnifying-glass-solid-full.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 0;
	line-height: 0;
	text-indent: -9999px;
	cursor: pointer;
}

/** パンくず **/
.pankuzu {
	padding-top: 60px;
	padding-left: 40px;
}

@media screen and (max-width: 767px) {
	.pankuzu {
		padding-left: 10px;
		padding-bottom: 10px;
		overflow-x: scroll;
		word-break: keep-all;
		white-space: nowrap;
	}
}

.pankuzu ul {
	list-style: none;
	display: flex;
	font-size: var(--txt-size-xs);
	margin: 0;
	padding: 30px 0 50px;
	gap: 10px;
}

@media screen and (max-width: 767px) {
	.pankuzu ul {
		padding: 0;
	}
}

.pankuzu ul li {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.pankuzu ul li::before {
	content: "";
	width: 16px;
	height: 16px;
	display: block;
	margin-right: 10px;
	background-image: url("../img/arrow_right_circle_bk.svg");
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.2;
	position: relative;
	top: inherit;
	left: inherit;
	background-color: inherit;
}

.pankuzu ul li:first-child::before {
	content: none;
}

.pankuzu a {
	color: var(--color-main);
	text-decoration: none;
}

.pankuzu a:hover {
	color: var(--color-sub);
	text-decoration: underline;
}

.pankuzu a:visited {
	/*	color: var(--color-sub);*/
}

/** 通常ページのタイトル **/
.title_sec {
	margin: 0 auto 50px;
	text-align: center;
}

.title_sec h2 {
	font-size: var(--txt-size-xxl);
	text-align: center;
	line-height: 1;
	margin: 0;
}

.title_sec h2 span {
	font-size: var(--txt-size-l);
	display: block;
}

.title_sec h2::before {
	content: "";
	display: block;
	width: 38px;
	height: 38px;
	background-image: url("../img/ball_bk.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	opacity: 0.55;
	margin: 0 auto 10px;
}

@media screen and (max-width: 767px) {
	.title_sec {
		margin: 10px auto 15px;
	}

	.title_sec h2::before {
		width: 22px;
		height: 22px;
		margin-bottom: 5px;
	}
}


/** メインセクション（共通）**/
.main_sec {
	margin-top: 120px;
}

@media screen and (max-width: 767px) {
	.main_sec {
		margin-top: 60px;
	}
}

.main_sec.no_margin {
	margin-top: 0px;
}

.main_sec_inner {
	max-width: 1200px;
	margin: 0 auto;
}

.main_sec_inner.page {
	max-width: 1100px;
}

.main_sec .ttl {
	max-width: 1200px;
	margin: 0 auto 55px;
	position: relative;
	height: auto;
}

@media screen and (max-width: 767px) {
	.main_sec .ttl {
		height: auto;
		padding: 0px 0px 0px 5px;
		margin-bottom: 40px;
	}
}

.main_sec .ttl h2 {
	position: relative;
	display: inline-block;
	background: transparent;
	z-index: 1;
	line-height: 1;
	height: 100%;
	padding: 10px 0 10px 85px;
	margin: 0;
	color: #fff;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.main_sec .ttl h2 {
		padding: 4px 0 8px 32px;
	}
}

.main_sec .ttl h2::before {
	position: absolute;
	content: "";
	aspect-ratio: 1 / 1;
	height: calc(100% - 22px);
	background-image: url("../img/ball_subcolor.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}

@media screen and (max-width: 767px) {
	.main_sec .ttl h2::before {
		height: 20px;
		top: 8px;
		transform: translateY(0%);
		left: 8px;
	}
}

.main_sec .ttl h2::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: -9999px;
	height: 100%;
	background-color: var(--color-main);
	background-image: url("../img/bg2.png");
	z-index: -1;
	border-bottom-left-radius: 99px;
	border-top-left-radius: 99px;
	box-shadow: 10px 10px 0px var(--color-sub);
}

@media screen and (max-width: 767px) {
	.main_sec .ttl h2::after {
		border-bottom-left-radius: 20px;
		border-top-left-radius: 20px;
	}
}

.main_sec .ttl .jp {
	font-size: var(--txt-size-xxl);
	display: block;
}

.main_sec .ttl .en {
	font-size: var(--txt-size-l);
	display: block;
	padding-top: 7px;
}

@media screen and (max-width: 767px) {
	.main_sec .ttl .jp {
		font-size: 20px;
		line-height: 1.4;
		position: relative;
	}

	.main_sec .ttl .en {
		font-size: 12px;
		padding-top: 0px;
	}
}

.main_sec .bg_orange {
	position: relative;
}

.main_sec .bg_orange .bg_orange_inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: right;
}

.main_sec .bg_orange .bg_orange_inner::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
	background-color: var(--color-main);
	background-image: url("../img/bg2.png");
	right: 0;
	left: -9999px;
	border-bottom-right-radius: 57px;
	border-top-right-radius: 57px;
	height: 100%;
	box-shadow: 10px 10px 0px var(--color-sub);
}

.main_sec .bg_orange .bg_orange_inner h2 {
	position: relative;
	display: inline-block;
	background: transparent;
	z-index: 1;
	line-height: 1;
	/*	height: 100%;	*/
	padding: 10px 85px 10px 0;
	margin: 0;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.main_sec .bg_orange .bg_orange_inner h2 {
		padding: 4px 32px 8px 0;
	}
}


.main_sec .bg_orange .bg_orange_inner h2::after {
	position: absolute;
	content: "";
	aspect-ratio: 1 / 1;
	height: calc(100% - 22px);
	background-image: url("../img/ball_subcolor.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}

@media screen and (max-width: 767px) {
	.main_sec .ttl h2::before {
		height: 20px;
		top: 8px;
		transform: translateY(0%);
		left: 8px;
	}
}

.main_sec .bg_orange .bg_orange_inner h2 .jp {
	font-size: var(--txt-size-xxl);
	display: block;
}

.main_sec .bg_orange .bg_orange_inner h2 .en {
	font-size: var(--txt-size-l);
	display: block;
	padding-top: 7px;
}

@media screen and (max-width: 767px) {
	.main_sec .ttl .jp {
		font-size: 20px;
		line-height: 1.4;
		position: relative;
	}

	.main_sec .ttl .en {
		font-size: 12px;
		padding-top: 0px;
	}
}
















.three_column {
	display: flex;
	margin: 0 -15px;
}

.three_column .item {
	width: calc(33.3% - 30px);
	display: block;
	margin: 0 15px;
}

/** 通常ページ（イベントとかニュースとか）**/
.main_sec_inner.page .pagehero {
	box-shadow: 10px 10px 0px var(--color-sub);
	margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
	.main_sec_inner.page .pagehero {
		width: calc(100% - 16px);
		margin: 0 auto 25px;
	}
}

.main_sec_inner.page .pagehero img {
	width: 100%;
	height: auto;
	border: 3px solid var(--color-text);
}

.main_sec_inner.page .entry {
	padding: 50px;
	background-color: #fff;
	line-height: 1.45;
	font-size: var(--txt-size-m);
	margin: 0 auto 2em;
}

@media screen and (max-width: 767px) {
	.main_sec_inner.page .entry {
		padding: 18px 14px;
		width: calc(100% - 16px);
	}
}

.main_sec_inner.page .entry hr {
	height: 0;
	margin: 1.5em 0;
	padding: 0;
	border: 0;
	border-top: 2px dotted #ccc;
}

.main_sec_inner.page .entry .first_paragraph {
	display: flex;
	gap: 25px;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.main_sec_inner.page .entry .first_paragraph {
		flex-direction: column;
	}
}

.main_sec_inner.page .entry .first_paragraph p {
	font-weight: bold;
	font-size: var(--txt-size-l);
	line-height: 1.5;
	flex: 1;
}

.main_sec_inner.page .entry .first_paragraph .thumb {
	width: 30%;
}

@media screen and (max-width: 767px) {
	.main_sec_inner.page .entry .first_paragraph .thumb {
		width: 60%;
	}
}

.main_sec_inner.page .entry h3 {
	font-size: var(--txt-size-xxl);
	font-weight: bold;
	color: var(--color-main);
	margin: 0 0 0.8em;
}

.main_sec_inner.page .entry h4 {
	font-size: var(--txt-size-xl);
	font-weight: bold;
	color: var(--color-main);
	margin-bottom: 0.8em;
	margin-top: 2em;
	position: relative;
	padding-left: 0.5em;
	z-index: 1;
}

/**アンカーアリの場合**/
.main_sec_inner.page .entry .anchor-offset {
	height: 65px;
}

.main_sec_inner.page .entry .anchor-offset+h4 {
	margin-top: 0;
}

.main_sec_inner.page .entry h4::before {
	content: "";
	aspect-ratio: 1 / 1;
	height: 23px;
	background-image: url("../img/ball_subcolor.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	top: -5px;
	left: 0px;
	opacity: 0.9;
	z-index: -1;
}

.main_sec_inner.page .entry h5 {
	font-size: var(--txt-size-l);
	font-weight: bold;
	margin-bottom: 0.5em;
	margin-top: 2em;
	position: relative;
	z-index: 1;
	padding-left: 25px;
}

.main_sec_inner.page .entry h5::before {
	content: "";
	height: 2px;
	width: 20px;
	background-color: var(--color-text);
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
}

.main_sec_inner.page .entry h6 {
	font-size: var(--txt-size-m);
	font-weight: bold;
	margin-bottom: 0.4em;
	margin-top: 1.5em;
	background-color: var(--color-text);
	padding: 4px;
	color: #fff;
}

.main_sec_inner.page .entry p {
	margin: 0 0 0.8em;
}

.main_sec_inner .red {
	color: #cc1100;
}

.main_sec_inner .center {
	text-align: center;
}

.main_sec_inner.page .entry .caution {
	font-size: 90%;
	opacity: 0.8;
}

.main_sec_inner.page .entry p.lead {
	font-size: 110%;
	font-weight: bold;
}


.main_sec_inner.page .entry .block-image {
	width: 100%;
	padding: 15px;
	margin: 0 0 0.8em;
	background-color: #F5F5F5;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	align-items: center;
}

.main_sec_inner.page .entry .block-image p {
	text-align: center;
	font-size: var(--txt-size-s);
	margin: 0;
	font-weight: bold;
}

.main_sec_inner.page .entry .block-image p img {
	margin-top: 5px;
}

.main_sec_inner.page .entry .block-image img {
	max-width: 100%;
	height: auto;
}

.main_sec_inner.page .entry .block-image img.column-3 {
	max-width: 30%;
}

.main_sec_inner.page .entry .block-image .column-2 {
	max-width: 46%;
}

@media screen and (max-width: 767px) {

	.main_sec_inner.page .entry .block-image .column-2,
	.main_sec_inner.page .entry .block-image img.column-3 {
		max-width: 100%;
	}
}

.main_sec_inner.page .entry .block-btnbox {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	margin: 2em 0 1em;
}

@media screen and (max-width: 767px) {
	.main_sec_inner.page .entry .block-btnbox {
		flex-direction: column;
	}
}

.main_sec_inner .caution_box {
	padding: 20px 12px 15px;
	background-color: #efefef;
	margin: 2em 0 1em;
}

.main_sec_inner .caution_box p {
	margin: 0 0 0.8em;
}

@media screen and (max-width: 767px) {
	.main_sec_inner.page .entry h3 {
		font-size: 1.5rem;
	}

	.main_sec_inner.page .entry h4 {
		font-size: 1.2rem;
	}

	.main_sec_inner.page .entry h5 {
		font-size: 1.05rem;
	}

	.main_sec_inner.page .entry h5::before {
		width: 1.05rem;
	}

}

.main_sec_inner.page .entry .normal_tbl {
	margin: 0 0 1em;
}

.main_sec_inner.page .entry .normal_tbl table {
	border-collapse: collapse;
	border-spacing: 0;
}

.main_sec_inner.page .entry .normal_tbl table th,
.main_sec_inner.page .entry .normal_tbl table td {
	padding: 0.8em 1.6em;
	text-align: left;
	border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {

	.main_sec_inner.page .entry .normal_tbl table th,
	.main_sec_inner.page .entry .normal_tbl table td {
		padding: 0.5em 1em;
		width: 100%;
		display: block;
	}

}

.main_sec_inner.page .entry .normal_tbl table th {
	background-color: #f0f0f0;
}


.main_sec_inner.page .entry ol {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
	margin: 0;
}

.main_sec_inner.page .entry ol li {
	padding-left: 30px;
	position: relative;
}

.main_sec_inner.page .entry ol li+li {
	margin-top: 0.8em;
}


.main_sec_inner.page .entry ol li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: var(--color-main);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 22px;
	width: 22px;
	color: #fff;
	font-size: 85%;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
}

/**ページ内の目次（アンカー）**/

.main_sec_inner.page .entry .table-of-contents {
	margin: 0;
	padding: 0;
	border: 3px solid var(--color-sub);
}

.main_sec_inner.page .entry .table-of-contents>p {
	padding: .3em;
	margin: 0;
	text-align: center;
	color: #fff;
	background-color: var(--color-sub);
}

.main_sec_inner.page .entry .table-of-contents>ul {
	margin: 0;
	padding: 12px;
}

.main_sec_inner.page .entry .table-of-contents>ul>li {
	margin: 0;
	padding: 0;
	/* display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px; */
	font-weight: bold;
}
.main_sec_inner.page .entry .table-of-contents>ul>li>a {
	color: var(--color-main);
	text-decoration: none;
	transition: all 0.2s ease;
	padding: 4px;
	display: block;
	text-align: center;
}
.main_sec_inner.page .entry .table-of-contents>ul>li>a:hover {
	background-color: #fffec7;
}
.main_sec_inner.page .entry .table-of-contents>ul>li:last-child {
	margin-bottom: 0;
}
.main_sec_inner.page .entry .table-of-contents>ul>li::before {
	content: none;
	/* position: relative;
	width: 18px;
	height: 18px;
	top: inherit;
	left: inherit;

	background-color: var(--color-main);
	border-radius: 99px;
	background-image: url("../img/arrow_down.svg");
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: center; */
}

/** 汎用タブナビゲーション**/
.tab_general {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 45px;
}

.tab_general.center {
	justify-content: center;
}

.tab_general ul {
	margin: 0;
	padding: 0;
	display: flex;
	column-gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.tab_general {
		flex-wrap: wrap;
		justify-content: center;
		padding: 0 5px;
		margin-bottom: 20px;
	}

	.tab_general ul {
		align-items: flex-start;
		justify-content: center;
		gap: 10px;
	}
}

.tab_general ul li {
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 767px) {
	.tab_general ul li .btn {
		/*	font-size: var(--txt-size-s);*/
		padding: 8px 16px;
	}

	.tab_general .btn_link {
		margin-top: 10px;
	}
}

.tab_general ul li::before {
	content: none;
}

/** ボタン系 **/
.btn {
	font-size: var(--txt-size-l);
	background-color: #fff;
	padding: 9px 20px;
	border-radius: 99px;
	border: 1px solid var(--color-text);
	font-weight: bold;
	color: var(--color-text);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1;
	display: block;
}

.btn.current,
.btn:hover {
	background-color: var(--color-text);
	color: #fff;
}

.btn.products.current,
.btn.products:hover {
	background-color: var(--color-products);
	border-color: var(--color-products);
}

.btn.campaign.current,
.btn.campaign:hover {
	background-color: var(--color-campaign);
	border-color: var(--color-campaign);
}

.btn.events.current,
.btn.events:hover {
	background-color: var(--color-events);
	border-color: var(--color-events);
}

.btn.card.current,
.btn.card:hover {
	background-color: var(--color-card);
	border-color: var(--color-card);
}

.btn.other.current,
.btn.other:hover {
	background-color: var(--color-other);
	border-color: var(--color-other);
}


.btn_link {
	font-size: var(--txt-size-l);
	background-color: var(--color-text);
	padding: 9px 50px 9px 20px;
	border-radius: 99px;
	border: 1px solid var(--color-text);
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1;
	display: inline-block;
	position: relative;
}

.btn_link::after {
	position: absolute;
	content: "";
	width: 29px;
	height: 29px;
	background-image: url("../img/arrow_right_circle.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
}

.btn_link.mail::after {
	background-image: url("../img/mail.svg");
	width: 26px;
	height: 26px;
	right: 12px;
}

.btn_link:hover {
	background-color: #fff;
	color: var(--color-text);
}

.btn_link:hover::after {
	background-image: url("../img/arrow_right_circle_bk.svg");
}

.btn_link.mail:hover::after {
	background-image: url("../img/mail_bk.svg");
}

/** カードリストボタン **/
/** 購入はこちらボタン **/
/** イベント開催店舗ボタン **/
/** pdfボタン **/
/** pdfボタン **/
/** blankボタン **/
.btn_link_card,
.btn_link_blank,
.btn_link_pdf,
.btn_link_store,
.btn_link_cart {
	font-size: var(--txt-size-l);
	background-color: var(--color-sub);
	padding: 10px 20px;
	border-radius: 99px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1;
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
}

.btn_link_card::after,
.btn_link_blank::after,
.btn_link_pdf::after,
.btn_link_store::after,
.btn_link_cart::after {
	content: "";
	width: 26px;
	height: 26px;
	background-image: url("../img/cart_w.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
}

.btn_link_store::after {
	background-image: url("../img/store_w.svg");
}

.btn_link_pdf::after {
	background-image: url("../img/pdf.svg");
}

.btn_link_blank::after {
	background-image: url("../img/blank_w.svg");
}

.btn_link_card::after {
	background-image: url("../img/cards_w.svg");
}

.btn_link_card:hover,
.btn_link_blank:hover,
.btn_link_pdf:hover,
.btn_link_store:hover,
.btn_link_cart:hover {
	background-color: var(--color-main);
}

.btn_link_card {
	background-color: #00b512;
}

.btn_link_card:hover {
	background-color: #00a5be;
}





/**  ボタンエリア　space-around 配置**/
.btn_area {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

/** サムネイルリスト（イベント等で使い回す？） **/
.thumb_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -14px;
}

.thumb_list .item {
	display: flex;
	flex-direction: column;
	margin: 0 14px 30px;
	width: calc(25% - 28px);
	cursor: pointer;
	text-decoration: none;
	color: var(--color-text);
}

.thumb_list .item.big {
	width: calc(50% - 28px);
}

@media screen and (max-width: 767px) {
	.thumb_list {
		margin: 0 -8px;
		padding: 0 8px;
	}

	.thumb_list .item {
		margin: 0 8px 16px;
		width: calc(50% - 16px);
	}

	.thumb_list .item.big {
		width: calc(100% - 16px);
	}
}

.thumb_list .item .thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 2px solid var(--color-text);
}

.thumb_list .item .thumb.sq {
	aspect-ratio: 4 / 3;
	border: 2px solid var(--color-main);
}

.thumb_list .item .thumb.empty {
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-weight: bold;
}

.thumb_list .item .thumb.empty::before {
	content: "";
	display: block;
	width: 35%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../img/ball_bk.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
}

.thumb_list .item .thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.3s transform ease;
}

.thumb_list .item .thumb.sq img {
	object-fit: contain;
}



.thumb_list .item:hover .thumb img {
	transform: scale(1.15)
}

.thumb_list .item .sub1 {
	font-size: var(--txt-size-s);
	line-height: 1;
	padding: 14px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.thumb_list .item .sub1 .date {
	padding: 2px 0;
	position: relative;
	padding-left: 25px;
}

.thumb_list .item .sub1 .date::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("../img/ball_bk.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	opacity: 0.5;
}

.thumb_list .item .sub2 {
	font-size: var(--txt-size-m);
	line-height: 1.4em;
	/* 行の高さを指定 */
	margin: 0 0 0.5em;
	/*  height: calc(1.5em * 3);  3行分の高さ */
	overflow: hidden;
	font-weight: bold;
}

.thumb_list .item .sub3 {
	font-size: var(--txt-size-s);
	line-height: 1.4em;
	/* 行の高さを指定 */
	/*  height: calc(1.5em * 2);  2行分の高さ */
	overflow: hidden;
}

.thumb_list .item .sub4 {
	font-size: var(--txt-size-l);
	padding: 3px;
	background-color: var(--color-main);
	color: #fff;
	font-weight: bold;
	text-align: center;
}





.tag {
	padding: 2px 10px;
	color: #fff;
	border-radius: 99px;
}

@media screen and (max-width: 767px) {
	.thumb_list .item .sub1 {
		padding: 8px 0;
	}

	.thumb_list .item .sub1 .date {
		padding: 2px 0;
		padding-left: 20px;
	}

	.thumb_list .item .sub1 .date::before {
		width: 16px;
		height: 16px;
	}

	.tag {
		padding: 1px 8px;
	}
}

/** 商品リスト（イベント等で使い回す？） **/
.product_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.product_list .item {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	text-decoration: none;
	color: var(--color-text);
	font-size: var(--txt-size-m);
	background-color: #fff;
	padding: 10px;
	border: 2px solid var(--color-text);
	box-shadow: 3px 3px 0px var(--color-text);
}

.product_list .item .top {
	flex-grow: 1;
}

.product_list .item .top .subject {
	font-weight: bold;
	line-height: 1.45;
}

.product_list .item .bottom {
	font-size: var(--txt-size-xs);
	padding-top: 15px;
}

.product_list .item .bottom .date span,
.product_list .item .bottom .price span {
	font-weight: bold;
	width: 7em;
}

.product_list .item .thumb {
	width: 100%;
	padding: 15px;
	background-color: #f0f0f0;
	margin-bottom: 12px;
	line-height: 1.5;
}

@media screen and (max-width: 767px) {
	.product_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		width: calc(100% - 16px);
		margin: 0 auto 20px;
	}

	.product_list .item {
		padding: 6px;
		box-shadow: none;
	}

	.product_list .item .thumb {
		padding: 8px;
		margin-bottom: 6px;
	}
}

.btn.pack.current,
.bg-pack {
	border-color: #FF3C3C;
	background-color: #FF3C3C;
}

.btn.deck.current,
.bg-deck {
	border-color: #F0D90E;
	background-color: #F0D90E;
}

.btn.peripheral.current,
.bg-peripheral {
	border-color: #499BFF;
	background-color: #499BFF;
}



.product_list .item .thumb img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	transition: 0.3s transform ease;
}

.product_list .item:hover .thumb img {
	transform: scale(1.15)
}

.product_list .item .tag {
	padding: 2px 15px;
	color: #fff;
	border-radius: 99px;
	font-size: var(--txt-size-xs);
}

@media screen and (max-width: 767px) {
	.product_list .item .tag {
		padding: 1px 8px;
	}
}



/** footer **/
.vobaca_copy {
	width: 100%;
	padding: 24px 0 12px;
	background-color: var(--color-text);
	background-image: url("../img/bg2.png");
}

.vobaca_copy p {
	line-height: 1;
	font-size: 11px;
	color: #fff;
	margin: 0;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.vobaca_copy p {
		font-size: 9px;
	}
}


.vobaca_copy_inner {
	margin: 0 auto;
	max-width: 1200px;
}

.vobaca_copy_inner .rogo_w {
	width: 200px;
	background-image: url("../img/rogo_w.svg");
	aspect-ratio: 300 / 127;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: 0 auto 8px;
}

@media screen and (max-width: 767px) {
	.vobaca_copy_inner .rogo_w {
		width: 160px;
	}
}

.footer_sns {
	display: flex;
	justify-content: center;
	gap: 80px;
	padding: 120px 0 60px;
}

@media screen and (max-width: 767px) {
	.footer_sns {
		padding: 60px 0 30px;
	}
}

.footer_x {
	font-size: 10px;
	text-align: center;
	color: var(--color-text);
	text-decoration: none;
}

.footer_x::before {
	display: block;
	margin: 0 auto;
	content: "";
	height: 50px;
	background-image: url("../img/logo_x_bk.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	aspect-ratio: 1200 / 1227;
}

.footer_youtube {
	font-size: 10px;
	text-align: center;
	color: var(--color-text);
	text-decoration: none;
}

.footer_youtube::before {
	display: block;
	margin: 0 auto;
	content: "";
	height: 50px;
	background-image: url("../img/logo_youtube_bk.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	aspect-ratio: 214 / 150;
}

/* bg color category **/
.bg-products {
	background-color: var(--color-products);
}

.bg-events {
	background-color: var(--color-events);
}

.bg-campaign {
	background-color: var(--color-campaign);
}

.bg-card {
	background-color: var(--color-card);
}

.bg-other {
	background-color: var(--color-other);
}


/** ページネーション **/
.pagenavi {
	display: flex;
	justify-content: center;
	font-weight: bold;
	gap: 8px;
	align-items: center;
	padding: 0 10px;
}

.pagenavi .num_wrap {
	display: flex;
	gap: 4px;
}

.pagenavi .num_wrap_sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.pagenavi .num_wrap {
		display: none;
	}

	.pagenavi .num_wrap_sp {
		display: block;
		border: 2px solid var(--color-text);
		padding: 3px 10px;
	}
}

.pagenavi .num {
	cursor: pointer;
	background-color: #fff;
	line-height: 1;
	border: 2px solid var(--color-text);
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.pagenavi .num:hover,
.pagenavi .num.current {
	background-color: var(--color-text);
	color: #fff;
}

.pagenavi .num.disabled,
.pagenavi .num.disabled:hover {
	width: auto;
	height: auto;
	background-color: inherit;
	border: none;
	pointer-events: none;
}

.pagenavi .next,
.pagenavi .prev {
	cursor: pointer;
	background-color: #fff;
	line-height: 1;
	padding: 5px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	border: 2px solid var(--color-text);
	color: var(--color-text);
	text-decoration: none;
}

.pagenavi .next {
	padding-left: 10px;
	border-top-right-radius: 99px;
	border-bottom-right-radius: 99px;
}

.pagenavi .next::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("../img/ball_bk.svg");
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 8px;
}

.pagenavi .next:hover::after {
	background-image: url("../img/ball_w.svg");
}

.pagenavi .prev {
	padding-right: 10px;
	border-top-left-radius: 99px;
	;
	border-bottom-left-radius: 99px;
	;
}

.pagenavi .prev::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("../img/ball_bk.svg");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 8px;
}

.pagenavi .prev:hover::before {
	background-image: url("../img/ball_w.svg");
}

@media screen and (max-width: 767px) {

	.pagenavi .next,
	.pagenavi .prev {
		padding: 4px;
	}


	.pagenavi .next {
		padding-left: 8px;
	}

	.pagenavi .prev {
		padding-right: 8px;
	}

	.pagenavi .prev::before,
	.pagenavi .next::after {
		width: 20px;
		height: 20px;
	}
}

.pagenavi .next:hover,
.pagenavi .prev:hover {
	background-color: var(--color-text);
	color: #fff;
}

.pagenavi .next.disabled,
.pagenavi .prev.disabled {
	pointer-events: none;
	background-color: #eee;
	border-color: #eee;
	color: #ccc;
}

.pagenavi .next.disabled::after,
.pagenavi .prev.disabled::before {
	opacity: 0.25;
}

/* リザルト */
.results {
	display: flex;
	padding: 2px 0;
	font-size: var(--txt-size-xs);
	align-items: baseline;
	line-height: 1;
	background-color: var(--color-text);
	padding: 8px 16px;
	border-radius: 99px;
	color: #fff;
}

.results .count {
	font-size: var(--txt-size-xl);
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.results .fromto {
		display: none;
	}
}

/** リザルト＋ページナビ**/
.pagenavi_group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	margin-bottom: 25px;
	padding: 0 0 0 10px;
}


/** QAの表示部分（アコーディオン） **/
.qa_item {
	background-color: #fff;
	border: 2px solid var(--color-text);
	box-shadow: 5px 5px 0px var(--color-text);
	padding: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.qa_item {
		padding: 10px;
	}
}

.qa_item.open {
	background-color: #fffcf0;
}

.qa_item .info {
	font-weight: bold;
	display: flex;
	gap: 8px;
	position: relative;
	line-height: 1;
	align-items: center;
}



.qa_item .info::before {
	content: "";
	width: 22px;
	height: 22px;
	display: block;
	background-image: url("../img/circle-plus-solid-full.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.qa_item.open .info::before {
	background-image: url("../img/circle-minus-solid-full.svg");
}

.qa_item .info .id {
	font-size: 22px;
	color: var(--color-main);
}

.qa_item .info .card {
	font-size: 22px;
}

@media screen and (max-width: 767px) {
	.qa_item .info {
		flex-wrap: wrap;
	}

	.qa_item .info .card {
		font-size: 18px;
		width: 100%;
	}
}



.qa_item .info .date {
	font-weight: normal;
	opacity: 0.6;
}

.qa_item .que,
.qa_item .ans {
	padding-top: 14px;
	font-size: var(--txt-size-l);
	font-weight: bold;
}

.qa_item .ans {
	border-top: 2px dotted #666;
	margin-top: 14px;
	display: none;
}

.qa_item.open .ans {
	display: block;
}




/*モーダルウィンドウ*/
body.modal {
	height: 100vh;
	overflow: hidden;
}

.enlargement {
	content: '';
	max-width: 1000px;
	width: 90%;
	height: calc(100vh - 100px);
	/*	position: absolute;*/
	position: relative;
	transition: all 300ms 0s ease;
	z-index: 200;
	/*
	top: 50%;
	left: 50%;
*/
	opacity: 0;
	/*
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
*/
	-webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.50);
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.50);
	/*	border-radius: 8px;*/
	overflow: hidden;
	background-image: url("../img/bg.png");
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.enlargement {
		width: 100%;
		overflow: auto;
	}
}


.enlargement.open {
	content: '';
	opacity: 1;
	transition: all 300ms 0s ease;

}

.enlargement iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*	overflow:hidden;*/
}

#modalmask::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	width: 50px;
	height: 50px;
	background-image: url("../img/close.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 210;
}

#modalmask {
	z-index: 3500;
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	cursor: zoom-out;
	padding: 50px 0;
}

@media screen and (max-width: 767px) {
	#modalmask {}
}

#modalmask.open {
	display: block;
}

/**youtube貼り付け用**/
.youtube-wrap {
	position: relative;
	overflow: hidden;
	padding-bottom: 56.25%;
	/*アスペクト比 16:9の場合の縦幅*/
	height: 0;
}

.youtube-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}