@charset "UTF-8";
:root {
	--color-black: #000;
	--color-white: #fff;
	--color-ritres-red: #CF122E;
	--color-gray: #333;
	--color-light-gray: #666;
	--color-extra-light-gray: #BBBBBB;
	--color-smoke-gray: #DDDDDD;
	--color-cloud: #F3F3F3;
	--color-sub-gray: #AAAAAA;
	--font-gothic: "M PLUS 1p", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: "Zen Old Mincho", "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-roboto: "Roboto", sans-serif;
}
body {
	background: var(--color-white);
	color: var(--color-black);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 2;
	overflow-wrap: break-word;
	font-weight: 500;
}
html.isFull {
	height: 100%;
}
body.isFull {
	height: 100%;
	overflow: hidden;
}
a {
	color: inherit;
}
a:focus-visible {
	outline-color: #025ecc;
	outline-offset: 1px;
	outline-style: auto;
}
a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}
button {
	caret-color: rgba(255, 255, 255, 0);
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 20px 16px;
	border: 1px solid var(--color-black);
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 25px;
	font-weight: inherit;
	font-family: inherit;
	transition-duration: .3s;
	transition-property: background-color, color;
}
textarea.isError,
[type="search"].isError,
[type="date"].isError,
[type="tel"].isError,
[type="email"].isError,
[type="number"].isError,
[type="password"].isError,
[type="text"].isError {
	background-color: rgba(207, 18, 46, 0.10);
}
[data-animation] {
	transition-duration: 1s;
	transition-delay: .2s;
	transition-property: opacity;
	opacity: 0;
}
[data-animation="after"] {
	opacity: 1;
}
[data-animation][data-animation-type="fadeInRight"] {
	transition-property: opacity, transform;
	transform: translateX(-20px);
}
[data-animation="after"][data-animation-type="fadeInRight"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInLeft"] {
	transition-property: opacity, transform;
	transform: translateX(20px);
}
[data-animation="after"][data-animation-type="fadeInLeft"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInUp"] {
	transition-property: opacity, transform;
	transform: translateY(20px);
}
[data-animation="after"][data-animation-type="fadeInUp"] {
	transform: translateY(0);
}
[data-animation][data-animation-type="fadeZoomOut"] {
	transition-property: opacity, transform;
	transform: scale(1.05);
}
[data-animation="after"][data-animation-type="fadeZoomOut"] {
	transform: scale(1);
}
::-webkit-input-placeholder {
	color: var(--color-sub-gray);
}
:-ms-input-placeholder {
	color: var(--color-sub-gray);
}
::placeholder {
	color: var(--color-sub-gray);
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.u-ttl {
	font-style: normal;
	font-weight: 500;
	font-size: 44px;
	line-height: 1.4;
	font-family: var(--font-mincho);
}
.u-tbl {
	width: 100%;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	vertical-align: middle;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {}
.u-tbl > tbody > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	text-align: left;
	width: 140px;
	vertical-align: top;
}
.u-tbl > tbody > tr > td {
	padding: 7px 10px;
	border: 1px solid #ddd;
	vertical-align: top;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
	line-height: 1.6;
}
.u-list > li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
	padding-left: 11px;
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-black);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 100px;
	margin-top: -100px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 86px;
	padding: 10px 10px;
	line-height: 1.2;
	background: var(--color-black);
	border: 2px solid var(--color-black);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: var(--color-white);
	min-height: 86px;
	font-size: 24px;
}
.u-btn-send {
	background-color: var(--color-ritres-red);
	border-color: var(--color-ritres-red);
}
.u-btn:active {}
.u-btn::after {
	content: "";
}
.u-btn-cancel {
	background-color: var(--color-white);
	color: var(--color-black);
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	right: 9px;
	border: 6px solid rgba(255, 255, 255, 0);
	width: 0;
	height: 0;
	border-top-width: 8px;
	border-bottom-width: 0;
	border-top-color: currentColor;
	transform: translateY(-50%);
	pointer-events: none;
}
.u-selWrap::after {}
.u-selWrap > select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 32px;
	height: 32px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 15px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding-right: 25px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
}
.u-selWrap > select::-ms-expand {
	display: none;
}
.u-chkLbl {
	position: relative;
	display: block;
	padding-left: 34px;
	line-height: 1.6;
}
.u-chkLbl > [type="checkbox"] {
	position: absolute;
	z-index: 2;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-chkLbl_icon {
	display: block;
	width: 21px;
	height: 21px;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
	border: 2px solid var(--color-ritres-red);
	position: absolute;
	z-index: 0;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-radius: 3px;
	box-sizing: border-box;
}
.isError + .u-chkLbl_icon {
	background-color: rgba(207, 18, 46, 0.10);
}
.u-chkLbl > [type="checkbox"]:focus-visible + .u-chkLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-chkLbl_icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 13px;
	box-sizing: border-box;
	transform: translate(-50%, -50%);
	background-image: url(/rebrand/assets/img/common/icn-check.svg);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-chkLbl_text {
	display: block;
	font-weight: normal;
}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {
	background-color: var(--color-ritres-red);
}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-rdoLbl > [type="radio"] {
	position: absolute;
	z-index: 1;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-rdoLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	border: 1px solid #666;
	box-sizing: border-box;
	position: absolute;
	z-index: 0;
	top: calc(0.8em + 5px);
	left: 0;
	transform: translateY(-50%);
}
.u-rdoLbl_icon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: #666;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-rdoLbl > [type="radio"]:focus-visible + .u-rdoLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl_text {
	display: block;
	font-weight: normal;
}
.u-hiddenSVG {
	height: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
}
.u-spBlock {
	display: none;
}
.u-spInline {
	display: none;
}
.u-tabletBlock {
	display: none;
}
.u-tabletInline {
	display: none;
}
.u-spsInline {
	display: none;
}
.u-lowResInline {
	display: none;
}
.u-clamp {
	max-height: 3.6em;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.u-switchImg > img:first-child {}
.u-switchImg > img:last-child {
	display: none;
}
.u-fitImg {
	position: relative;
	z-index: 1;
	padding-bottom: 100%;
	overflow: hidden;
}
.u-fitImg > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-editor {
	word-break: break-all;
}
.u-editor::after {
	content: "";
	display: block;
	clear: both;
}
.u-editor div {
	max-width: 100%;
}
.u-editor img {
	max-width: 100%;
	height: auto;
}
.u-editor iframe {
	max-width: 100%;
}
.u-editor video {
	max-width: 100%;
	height: auto;
}
.u-editor ul {
	padding-left: 1.5em;
}
.u-editor ol {
	padding-left: 1.5em;
}
.u-editor blockquote {
	background-color: #f6f6f6;
	padding: 30px;
	position: relative;
	z-index: 1;
}
.u-editor blockquote::before {
	content: "“";
	font-size: 50px;
	color: #999;
	position: absolute;
	left: 5px;
	top: 5px;
	line-height: 1;
}
.u-editor blockquote::after {
	content: "”";
	font-size: 50px;
	color: #999;
	position: absolute;
	right: 5px;
	bottom: -15px;
	line-height: 1;
}
.u-ttlSub {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-ritres-red);
	margin-bottom: 20px;
}
.u-btnMore {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 6px 16px 6px 26px;
	min-height: 32px;
	border: 1px solid var(--color-gray);
	border-radius: 50px;
	justify-content: center;
	column-gap: 7px;
	padding: 6px 10px;
	font-size: 13px;
	line-height: 1.2;
	width: 100%;
	color: var(--color-black);
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
}
.u-btnMore_icon {
	display: block;
	width: 10px;
	height: 10px;
	position: relative;
}
.u-btnMore_icon::before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2px;
}
.u-btnMore_icon::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2px;
}
.u-slideUp[data-animation] {
	display: block;
	overflow: hidden;
	opacity: 1;
}
.u-slideUp[data-animation] .u-slideUp_item {
	display: block;
	transform: translateY(100%);
	transition-duration: 1s;
	transition-property: transform;
	transition-delay: .2s;
}
.u-slideUp[data-animation="after"] .u-slideUp_item {
	transform: translateY(0);
}
.u-slideUpMask {
	display: block;
}
.u-slideUpMask[data-animation] {
	opacity: 1;
	transform: translateY(1.4em);
	transition-property: transform;
	line-height: 1.4;
}
.u-slideUpMask[data-animation="after"] {
	transform: translateY(0);
}
.u-slideUpMask[data-animation] .u-slideUpMask_item {
	-webkit-mask-image: linear-gradient(to bottom, #fff 50%, rgba(255, 255, 255, 0) 50%);
	mask-image: linear-gradient(to bottom, #fff 50%, rgba(255, 255, 255, 0) 50%);
	-webkit-mask-size: 100% 200%;
	mask-size: 100% 200%;
	-webkit-mask-position: 0 100%;
	mask-position: 0 100%;
	transition-duration: 1s;
	transition-property: -webkit-mask-position, mask-position;
	transition-delay: .2s;
}
.u-slideUpMask[data-animation="after"] .u-slideUpMask_item {
	-webkit-mask-position: 0 0;
	mask-position: 0 0;
}
@media screen and (max-width:1159px) {
	img {
		max-width: 100%;
		height: auto;
	}
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	.u-ttlSub {
		font-size: 14px;
	}
}
@media screen and (min-width: 1000px) and (hover: hover) {
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		background-color: var(--color-white);
		color: var(--color-black);
	}
	.u-btn-send:hover {
		color: var(--color-ritres-red);
	}
	.u-btn-cancel:hover {
		background-color: var(--color-black);
		color: var(--color-white);
	}
	a:hover .u-btnMore {
		background-color: var(--color-black);
		color: var(--color-white);
		border-color: var(--color-black);
	}
}
@media screen and (max-width:999px) {
	body {}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 36px;
	}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		padding: 10px 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 10px 10px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-tabletBlock {
		display: block;
	}
	.u-tabletInline {
		display: inline;
	}
	.u-tabletNone {
		display: none;
	}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-ttlSub {}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
		font-size: 15px;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {
		padding-left: 18px;
		padding-right: 18px;
	}
	.u-ttl {
		font-size: 28px;
	}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 3px 5px;
	}
	.u-tbl > tbody > tr > td {
		padding: 3px 5px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {
		margin: 0 5px 0 0;
		font-size: 13px;
	}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {
		min-height: 72px;
		font-size: 20px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-spBlock {
		display: block;
	}
	.u-spInline {
		display: inline;
	}
	.u-spNone {
		display: none;
	}
	.u-switchImg {}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-ttlSub {
		font-size: 13px;
		margin-bottom: 16px;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
}
