@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zen+Kurenaido&display=swap");
.pcHide {
	display: block;
}
@media (min-width: 768px) {
	.pcHide {
		display: none;
	}
}
.pcShow {
	display: none;
}
@media (min-width: 768px) {
	.pcShow {
		display: block;
	}
}
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	background-color: #ffffff;
	color: #222;
	line-height: 1.5;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}
#header,
#footer {
	display: none !important;
}
.page-container {
	overflow-x: hidden;
	padding-top: 56px;
	margin: 0;
	width: 100vw;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #ffffff;
}
@media (min-width: 800px) {
	.page-container {
		padding-top: 67px;
	}
}
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 100;
}
.header .header-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 12px 8px 16px;
}
.header .header-wrap .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 130px;
	-o-object-fit: cover;
	object-fit: cover;
}
.header .header-wrap .nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .header-wrap .nav .nav-link {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #222;
	text-decoration: underline;
	line-height: 1.6;
	text-align: center;
	padding: 6px 4px;
}
.header .header-wrap .nav .nav-link-store {
	padding: 7px 12px 6px;
	font-size: 11px;
	line-height: 1.2;
	background-color: #eee;
	border-radius: 20px;
	text-decoration: none;
}
@media only screen and (min-width: 800px) {
	.header .header-wrap {
		width: 800px;
		padding: 14px 16px;
		margin: 0 auto;
	}
	.header .header-wrap .logo {
		width: 182px;
	}
	.header .header-wrap .nav {
		gap: 16px;
	}
	.header .header-wrap .nav .nav-link {
		font-size: 16px;
		padding: 6px 4px;
	}
	.header .header-wrap .nav .nav-link:hover {
		color: #d4003b;
	}
	.header .header-wrap .nav .nav-link-store {
		position: relative;
		padding: 10px 16px;
		font-size: 16px;
		overflow: hidden;
		z-index: 1;
	}
	.header .header-wrap .nav .nav-link-store:after {
		background: #d4003b;
		position: absolute;
		top: -10px;
		left: 0;
		content: "";
		width: 100%;
		z-index: -1;
		-webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
		transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
		-webkit-transform: skewY(-10deg) scale(1, 0);
		transform: skewY(-10deg) scale(1, 0);
		height: 180px;
	}
	.header .header-wrap .nav .nav-link-store:hover {
		color: #fff;
	}
	.header .header-wrap .nav .nav-link-store:hover:after {
		-webkit-transform: skewY(-10deg) scale(1, 1);
		transform: skewY(-10deg) scale(1, 1);
	}
}
.footer {
	background-color: #000;
	color: #ffffff;
}
.footer .footer-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
}
.footer .footer-link {
	position: relative;
	padding-left: 1.25em;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 12px;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
}
.footer .footer-link:before {
	content: "";
	position: absolute;
	top: calc(50% + 1px);
	left: 0;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	pointer-events: none;
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.footer .copyright {
	padding: 16px 30px;
	font-size: 10px;
	font-weight: 400;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 800px) {
	.footer .footer-links {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 24px;
		width: 800px;
		margin: 0 auto;
	}
	.footer .footer-link {
		font-size: 16px;
		font-weight: 400;
	}
	.footer .footer-link:hover {
		color: #d4003b;
	}
	.footer .footer-link:hover:before {
		border-color: #d4003b;
	}
	.footer .copyright {
		padding: 16px;
		font-size: 14px;
	}
}
.pageTitle {
	margin: 16px 0px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	color: hsl(343, 100%, 42%);
}
@media only screen and (min-width: 800px) {
	.pageTitle {
		margin: 24px 0px;
		font-size: 24px;
	}
}
@media only screen and (min-width: 800px) {
	.content-inner {
		width: 800px;
		margin: 0 auto;
	}
}
.hero-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 16px 16px 32px;
	width: 100%;
	position: relative;
	z-index: 1;
}
.hero-section .hero-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.hero-section .hero-content .shipment-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 8px;
	width: 100%;
}
.hero-section .hero-content .shipment-info .shipment-label {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	font-weight: bold;
	color: black;
	font-size: 17px;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 22px;
	white-space: nowrap;
}
.hero-section .hero-content .shipment-info .shipment-number {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 3px;
}
.hero-section .hero-content .shipment-info .shipment-number .shipment-value {
	position: relative;
	top: 3px;
	font-family: "Roboto", "Helvetica";
	font-style: italic;
	color: #d4003b;
	font-size: 36px;
	text-align: center;
	font-weight: bold;
	line-height: 36px;
}
.hero-section .hero-content .shipment-info .shipment-number .shipment-unit {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	font-weight: bold;
	color: #d4003b;
	font-size: 17.5px;
	text-align: center;
	line-height: 22px;
	white-space: nowrap;
}
.hero-section .hero-content .thanks-container {
	position: relative;
	width: 211px;
	height: 246px;
}
.hero-section .hero-content .thanks-container .thanks-image {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	height: 246px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.hero-section .title-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: -31px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 1;
}
.hero-section .title-section .title-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.hero-section .title-section .title-content .texcy-luxe-title {
	width: 100%;
	text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.7);
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	font-weight: bold;
	color: #d4003b;
	font-size: 36px;
	text-align: center;
}
.hero-section .title-section .title-content .main-title {
	margin-top: -18px;
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 6px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.hero-section .title-section .title-content .main-title .title-char {
	width: 96px;
	height: 117px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	font-weight: bold;
	color: #d4003b;
	font-size: 100px;
	text-align: center;
	white-space: nowrap;
}
.hero-section .title-section .campaign-period {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 10px;
	width: 300px;
	height: 34px;
	line-height: 34px;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-top: 1px solid #d4003b;
	border-bottom: 1px solid #d4003b;
	color: #d4003b;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
	font-weight: bold;
}
.hero-section .title-section .campaign-period .period-label {
	font-size: 11px;
	letter-spacing: 0.55px;
}
.hero-section .title-section .campaign-period .period-dates {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 4px;
}
.hero-section .title-section .campaign-period .period-dates .date-item {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2px;
}
.hero-section .title-section .campaign-period .period-dates .date-item .date-text {
	font-size: 16px;
	line-height: 16px;
	white-space: nowrap;
}
.hero-section .title-section .campaign-period .period-dates .date-item .date-text .bold {
	position: relative;
	top: 1px;
	font-weight: bold;
}
.hero-section .title-section .campaign-period .period-dates .date-item .date-text .small {
	font-weight: bold;
	font-size: 11px;
	line-height: 11px;
}
.hero-section .title-section .campaign-period .period-dates .date-item .date-day {
	font-size: 11px;
	line-height: 11px;
	white-space: nowrap;
}
.hero-section .title-section .campaign-period .period-dates .period-separator {
	font-size: 11px;
}
.hero-section .title-section .campaign-period .period-after {
	position: absolute;
	bottom: -2px;
	font-size: 12px;
	color: #888;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
@media only screen and (min-width: 800px) {
	.hero-section .hero-content .shipment-info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
		gap: 8px;
		width: 100%;
	}
	.hero-section .hero-content .shipment-info .shipment-label {
		font-size: 20px;
	}
	.hero-section .hero-content .shipment-info .shipment-number {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}
	.hero-section .hero-content .shipment-info .shipment-number .shipment-value {
		top: 5px;
		font-size: 50px;
		line-height: 50px;
	}
	.hero-section .hero-content .shipment-info .shipment-number .shipment-unit {
		font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
		font-weight: bold;
		color: #d4003b;
		font-size: 17.5px;
		text-align: center;
		line-height: 22px;
		white-space: nowrap;
	}
	.hero-section .hero-content .thanks-container {
		width: 347px;
		height: 255px;
	}
	.hero-section .hero-content .thanks-container .thanks-image {
		height: 347px;
	}
	.hero-section .title-section {
		margin-top: 60px;
	}
	.hero-section .title-section .title-content .texcy-luxe-title {
		font-size: 52px;
	}
	.hero-section .title-section .title-content .main-title {
		margin-top: -6px;
		gap: 2px;
	}
	.hero-section .title-section .title-content .main-title .title-char {
		width: 140px;
		height: 140px;
		font-size: 140px;
	}
	.hero-section .title-section .campaign-period {
		width: 420px;
		height: 34px;
		margin-top: 8px;
	}
	.hero-section .title-section .campaign-period .period-label {
		font-size: 14px;
	}
	.hero-section .title-section .campaign-period .period-dates {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		gap: 4px;
	}
	.hero-section .title-section .campaign-period .period-dates .date-item {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 2px;
	}
	.hero-section .title-section .campaign-period .period-dates .date-item .date-text {
		font-size: 20px;
		line-height: 20px;
	}
	.hero-section .title-section .campaign-period .period-dates .date-item .date-text .small {
		font-size: 14px;
		line-height: 14px;
	}
	.hero-section .title-section .campaign-period .period-dates .date-item .date-day {
		font-size: 14px;
		line-height: 14px;
	}
	.hero-section .title-section .campaign-period .period-dates .period-separator {
		font-size: 14px;
	}
	.hero-section .title-section .campaign-period .period-after {
		font-size: 14px;
	}
}
.section-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px 24px;
}
.section-title .title-main {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #d4003b;
}
.section-title .title-sub {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #d4003b;
}
@media only screen and (min-width: 800px) {
	.section-title {
		width: 800px;
		margin: 0 auto;
	}
	.section-title .title-main {
		font-size: 28px;
	}
	.section-title .title-sub {
		font-size: 16px;
	}
}
.cta-button-area {
	position: relative;
	padding: 24px 32px;
	z-index: 10;
}
.cta-button-area .cta-button {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	background-color: #000;
	border: none;
	border-radius: 40px;
	padding: 12px 12px;
	cursor: pointer;
	margin: 0 auto;
	display: block;
	width: 100%;
	-webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
	text-align: center;
	text-decoration: none;
	z-index: 10;
}
.cta-button-area .cta-button.period-after,
.cta-button-area .cta-button.period-before {
	background-color: #ddd;
	color: #888;
	pointer-events: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.cta-button-area .cta-button-outline {
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
	padding: 10px 12px;
}
.cta-button-area .cta-button-outline.period-after,
.cta-button-area .cta-button-outline.period-before {
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
}
@media only screen and (min-width: 800px) {
	.cta-button-area {
		width: 800px;
		margin: 0 auto;
	}
	.cta-button-area .cta-button {
		position: relative;
		width: 360px;
		padding: 16px 12px;
		font-size: 22px;
		overflow: hidden;
	}
	.cta-button-area .cta-button:after {
		background: #d4003b;
		position: absolute;
		top: -30px;
		left: 0;
		content: "";
		width: 100%;
		z-index: -1;
		-webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
		transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
		-webkit-transform: skewY(-10deg) scale(1, 0);
		transform: skewY(-10deg) scale(1, 0);
		height: 240px;
	}
	.cta-button-area .cta-button:hover {
		color: #fff;
	}
	.cta-button-area .cta-button:hover:after {
		-webkit-transform: skewY(-10deg) scale(1, 1);
		transform: skewY(-10deg) scale(1, 1);
	}
	.cta-button-area .cta-button-outline {
		padding: 15px 12px;
	}
	.cta-button-area .cta-button-outline:after {
		background: #ffffff;
	}
	.cta-button-area .cta-button-outline:hover {
		color: #d4003b;
	}
}
.campaign-summary {
	position: relative;
	background-color: #f6f6f6;
	margin-top: 52px;
}
.campaign-summary .gold-decoration-1 {
	position: absolute;
	top: -200px;
	right: -15px;
	width: 164px;
	height: 167px;
	z-index: 0;
}
.campaign-summary:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-top: 73px solid transparent;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	z-index: 1;
	border-right: 100vw solid #f6f6f6;
}
.campaign-summary:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-right: 100vw solid transparent;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	border-top: 73px solid #f6f6f6;
}
.campaign-summary .summary-content {
	padding: 8px 24px 0;
}
.campaign-summary .summary-content .summary-title {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	color: #d4003b;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 1.3;
}
.campaign-summary .summary-content .summary-title + .present-set {
	margin-top: 32px;
}
.campaign-summary .summary-content .summary-title:after,
.campaign-summary .summary-content .summary-title:before {
	content: "";
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #d4003b;
}
.campaign-summary .summary-content .summary-title:before {
	left: -15px;
	-webkit-transform: translate(-50%, 50%) rotate(75deg);
	transform: translate(-50%, 50%) rotate(75deg);
}
.campaign-summary .summary-content .summary-title:after {
	right: -15px;
	-webkit-transform: translate(50%, -50%) rotate(-75deg);
	transform: translate(50%, -50%) rotate(-75deg);
}
.campaign-summary .summary-content .present-set {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.campaign-summary .summary-content .present-set + .present-set {
	margin-top: 32px;
}
.campaign-summary .summary-content .present-set .campaign-label {
	position: absolute;
	left: -12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #ffffff;
	background-color: #000;
	padding: 5px 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.campaign-summary .summary-content .present-set .present-cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	background-color: #ffffff;
	padding: 24px 16px;
	-webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
}
.campaign-summary .summary-content .present-set .present-cards .present-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card + .present-card {
	border-top: 1px solid #dddddd;
	padding-top: 16px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 3px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header .prize-label {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #d4003b;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header .prize-count {
	font-size: 18px;
	font-weight: 700;
	color: #d4003b;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header .prize-unit {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #d4003b;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-brand {
	font-size: 11px;
	font-weight: 700;
	line-height: 11px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-name {
	font-size: 16px;
	font-weight: 700;
	line-height: 19.2px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-name .small {
	margin-left: 5px;
	font-size: 12px;
	font-weight: 700;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-desc {
	font-size: 11px;
	font-weight: 700;
	line-height: 11px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-name-large {
	font-size: 16px;
	font-weight: 700;
	line-height: 19.2px;
}
.campaign-summary .summary-content .present-set .present-cards .present-card .prize-image {
	width: 86px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
@media only screen and (min-width: 800px) {
	.campaign-summary {
		padding: 0;
	}
	.campaign-summary .gold-decoration-1 {
		top: -340px;
		right: -30px;
		width: 300px;
		height: 300px;
	}
	.campaign-summary .summary-content .summary-title {
		font-size: 20px;
	}
	.campaign-summary .summary-content .present-set + .present-set {
		margin-top: 32px;
	}
	.campaign-summary .summary-content .present-set .campaign-label {
		left: -12px;
		font-size: 16px;
	}
	.campaign-summary .summary-content .present-set .present-cards {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 32px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card + .present-card {
		border-top: none;
		border-left: 1px solid #dddddd;
		padding-top: 0;
		padding-left: 32px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info {
		gap: 6px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header .prize-label {
		font-size: 22px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header .prize-count {
		font-size: 22px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-header .prize-unit {
		font-size: 16px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details {
		gap: 6px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-brand {
		font-size: 12px;
		line-height: 12px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-name {
		font-size: 20px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-name .small {
		margin-left: 5px;
		font-size: 16px;
		font-weight: 700;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .present-info .prize-details .prize-desc {
		font-size: 12px;
		line-height: 12px;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .prize-image {
		width: 100px;
		height: auto;
	}
	.campaign-summary .summary-content .present-set .present-cards .present-card .prize-image.novelty {
		width: 135px;
	}
}
.brand-message {
	background-color: #d4003b;
	margin-top: 72px;
	padding: 24px 24px 0 24px;
	position: relative;
	color: #ffffff;
}
.brand-message:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-top: 73px solid transparent;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	z-index: 1;
	border-right: 100vw solid #d4003b;
}
.brand-message:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-right: 100vw solid transparent;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	border-top: 73px solid #d4003b;
}
.brand-message .message-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 40px;
	z-index: 1;
}
.brand-message .message-catch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0;
}
.brand-message .message-title {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
}
.brand-message .cross-icon {
	width: 16px;
	height: 16px;
	margin: 0;
}
.brand-message .message-text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.75;
	text-align: left;
}
.brand-message .gold-decoration-2 {
	position: absolute;
	bottom: -72px;
	left: 0;
	width: 164px;
	height: 167px;
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
	z-index: 1;
}
@media only screen and (min-width: 800px) {
	.brand-message .message-content {
		gap: 24px;
		padding-bottom: 24px;
	}
	.brand-message .message-title {
		font-size: 26px;
	}
	.brand-message .cross-icon {
		width: 24px;
		height: 24px;
	}
	.brand-message .message-text {
		font-size: 16px;
		text-align: center;
	}
	.brand-message .gold-decoration-2 {
		bottom: -84px;
		left: -10px;
		width: 300px;
		height: 304px;
	}
}
.present-details {
	position: relative;
	background-color: #ffffff;
	margin-top: 72px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 1;
}
.present-details:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-top: 73px solid transparent;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	z-index: 1;
	border-right: 100vw solid #ffffff;
}
.present-details:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-right: 100vw solid transparent;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	border-top: 73px solid #ffffff;
}
.present-details .present-content .prize-detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	padding: 0 24px 24px;
}
.present-details .present-content .prize-detail + .prize-detail {
	padding-top: 16px;
}
.present-details .present-content .prize-detail .prize-detail-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid #cccccc;
	padding: 12px 0;
}
.present-details .present-content .prize-detail .prize-detail-header .prize-label-large {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 18px;
	color: #d4003b;
	white-space: nowrap;
	position: relative;
	top: 1px;
}
.present-details .present-content .prize-detail .prize-detail-header .prize-label-large .small {
	position: relative;
	top: -2px;
	font-size: 18px;
}
.present-details .present-content .prize-detail .prize-detail-header .prize-name-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}
.present-details .present-content .prize-detail .prize-detail-header .prize-name-group .prize-brand-large {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 14px;
}
.present-details .present-content .prize-detail .prize-detail-header .prize-name-xlarge {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 20px;
}
.present-details .present-content .prize-detail .prize-detail-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-image-group {
	position: relative;
	width: 100%;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .badge {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #d4003b;
	border-radius: 300px;
	width: 72px;
	height: 72px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2px;
	color: #ffffff;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .badge .badge-count {
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .badge .badge-unit {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 14px;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .prize-image-large {
	height: auto;
	width: 100%;
	padding-right: 10px;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-description-group .prize-description {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.present-details .present-content .prize-detail .prize-detail-content .prize-description-group .lifestyle-image {
	width: 108px;
	height: 108px;
	margin: 0 0 16px 16px;
	-o-object-fit: cover;
	object-fit: cover;
	float: right;
}
.present-details .present-content .novelty-detail {
	position: relative;
	padding: 0 24px;
	margin-top: 24px;
}
.present-details .present-content .novelty-detail .novelty-detail-label {
	position: absolute;
	top: -16px;
	left: 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #ffffff;
	background-color: #000;
	padding: 4px 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.present-details .present-content .novelty-detail .novelty-detail-card {
	border: 1px solid #cccccc;
	padding: 20px 16px 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	background-color: #f6f6f6;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
	padding: 8px 0;
	border-bottom: 1px solid #cccccc;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-header .novelty-detail-brand {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 14px;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-header .novelty-detail-name {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 24px;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content .novelty-detail-image {
	width: 100%;
	height: auto;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content .novelty-detail-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content .novelty-detail-text .link {
	font-weight: bold;
	text-decoration: underline;
	color: #222;
}
@media only screen and (min-width: 800px) {
	.present-details .present-content .prize-detail + .prize-detail {
		padding-top: 0;
	}
	.present-details .present-content .prize-detail .prize-detail-header .prize-label-large {
		font-size: 30px;
	}
	.present-details .present-content .prize-detail .prize-detail-header .prize-label-large .small {
		font-size: 22px;
	}
	.present-details .present-content .prize-detail .prize-detail-header .prize-name-group {
		gap: 6px;
	}
	.present-details .present-content .prize-detail .prize-detail-header .prize-name-group .prize-brand-large {
		font-size: 16px;
	}
	.present-details .present-content .prize-detail .prize-detail-header .prize-name-xlarge {
		font-size: 24px;
	}
	.present-details .present-content .prize-detail .prize-detail-content {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 32px;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-image-group {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .badge {
		width: 72px;
		height: 72px;
		padding-top: 2px;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .badge .badge-count {
		font-size: 28px;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .badge .badge-unit {
		font-size: 14px;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-image-group .prize-image-large {
		width: 300px;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-description-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-description-group .prize-description {
		font-size: 16px;
	}
	.present-details .present-content .prize-detail .prize-detail-content .prize-description-group .lifestyle-image {
		width: 120px;
		height: 120px;
	}
	.present-details .present-content .novelty-detail {
		margin-top: 24px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-label {
		font-size: 16px;
		padding: 4px 12px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card {
		padding: 24px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-header {
		gap: 8px;
		padding: 8px 0 16px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-header .novelty-detail-brand {
		font-size: 16px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-header .novelty-detail-name {
		font-size: 24px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		gap: 24px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content .novelty-detail-image {
		width: 320px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content .novelty-detail-text {
		font-size: 16px;
	}
	.present-details .present-content .novelty-detail .novelty-detail-card .novelty-detail-content .novelty-detail-text .link:hover {
		color: #d4003b;
	}
}
.howto-section {
	background-color: #f6f6f6;
	margin-top: 72px;
	position: relative;
}
.howto-section:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-top: 73px solid transparent;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	z-index: 1;
	border-right: 100vw solid #f6f6f6;
}
.howto-section:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-right: 100vw solid transparent;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	border-top: 73px solid #f6f6f6;
}
.howto-section .howto-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	padding: 0 24px;
}
.howto-section .howto-intro {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.howto-section .steps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
}
.howto-section .step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	width: 100%;
}
.howto-section .step-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #d4003b;
}
.howto-section .step-icon {
	width: 160px;
	height: 160px;
}
.howto-section .step-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
	text-align: center;
}
.howto-section .step-main {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}
.howto-section .step-note {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
@media only screen and (min-width: 800px) {
	.howto-section .howto-content {
		gap: 32px;
	}
	.howto-section .howto-content .howto-intro {
		font-size: 16px;
		text-align: center;
	}
	.howto-section .steps {
		gap: 24px;
		-ms-flex-flow: nowrap;
		flex-flow: nowrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.howto-section .steps .step {
		width: calc(50% - 12px);
	}
	.howto-section .steps .step .step-title {
		font-size: 22px;
	}
	.howto-section .steps .step .step-icon {
		width: 160px;
		height: 160px;
	}
	.howto-section .steps .step .step-text .step-main {
		font-size: 22px;
	}
	.howto-section .steps .step .step-text .step-note {
		font-size: 16px;
	}
}
.conditions-section {
	background-color: #ffffff;
	margin-top: 72px;
}
.conditions-section .conditions-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	padding: 0 24px;
}
.conditions-section .conditions-content .conditions-intro {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.conditions-section .conditions-content .condition-set .condition {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0;
}
.conditions-section .conditions-content .condition-set .condition .condition-text {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
}
.conditions-section .conditions-content .condition-set .condition .condition-text .strong {
	font-weight: 700;
	color: #d4003b;
}
.conditions-section .conditions-content .condition-set .condition .condition-text .strong .yen {
	font-size: 16px;
	font-weight: 700;
}
.conditions-section .conditions-content .condition-set .condition .condition-result {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-top: 4px;
}
.conditions-section .conditions-content .condition-set .condition .condition-result .large {
	position: relative;
	top: 1px;
	font-size: 24px;
	font-weight: 700;
}
.conditions-section .conditions-content .condition-set .condition + .condition {
	margin-top: 12px;
}
@media only screen and (min-width: 800px) {
	.conditions-section .conditions-content {
		text-align: center;
	}
	.conditions-section .conditions-content .conditions-intro {
		font-size: 16px;
		line-height: 1.5;
	}
	.conditions-section .conditions-content .condition-set .condition {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
	}
	.conditions-section .conditions-content .condition-set .condition .condition-text {
		font-size: 16px;
	}
	.conditions-section .conditions-content .condition-set .condition .condition-text .strong .yen {
		font-size: 20px;
	}
	.conditions-section .conditions-content .condition-set .condition .condition-result {
		margin-top: 0;
		font-size: 22px;
	}
	.conditions-section .conditions-content .condition-set .condition .condition-result .large {
		top: 2px;
		font-size: 28px;
	}
	.conditions-section .conditions-content .condition-set .condition + .condition {
		margin-top: 16px;
	}
}
.inquiry-section {
	position: relative;
	background-color: #d4003b;
	margin-top: 72px;
	padding: 0 0 16px 0;
	color: #ffffff;
}
.inquiry-section:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-top: 73px solid transparent;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	z-index: 1;
	border-right: 100vw solid #d4003b;
}
.inquiry-section .section-title .title-main {
	color: #fff;
}
.inquiry-section .section-title .title-sub {
	color: #fff;
}
.inquiry-section .inquiry-content {
	padding: 0 24px;
}
.inquiry-section .inquiry-content .inquiry-office {
	font-size: 16px;
	font-weight: 700;
}
.inquiry-section .inquiry-content .inquiry-hours {
	margin-top: 16px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inquiry-section .inquiry-content .inquiry-hours .item {
	display: inline-block;
	white-space: nowrap;
}
.inquiry-section .inquiry-content .inquiry-hours .deta {
	display: inline-block;
}
.inquiry-section .inquiry-content .caption {
	margin-top: 2px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}
@media only screen and (min-width: 800px) {
	.inquiry-section .inquiry-content {
		margin-top: 16px;
		padding: 0;
		text-align: center;
	}
	.inquiry-section .inquiry-content .inquiry-office {
		font-size: 20px;
	}
	.inquiry-section .inquiry-content .inquiry-hours {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 16px;
		font-size: 16px;
	}
	.inquiry-section .inquiry-content .inquiry-hours .item {
		color: #ffffff;
	}
	.inquiry-section .inquiry-content .caption {
		margin-top: 4px;
		font-size: 16px;
	}
}
