/* リキッドレイアウト対応 */

body {
	font-family: "Noto Serif JP", serif;
}

.u-mobile {
	display: none !important;
}

html.is-fixed {
	overflow: hidden;
}

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: all 0.45s;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

picture {
	display: block;
}

button {
	display: block;
	padding: 0;
	width: 100%;
}

.c-btn {
	background-color: black;
	color: yellow;
	padding: 0.625rem 2.5rem;
}

.c-hamburger {
	height: 100%;
	position: relative;
	width: 100%;
}

.c-hamburger span {
	background-color: #fff;
	display: inline-block;
	height: 0.25rem;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
	width: 2.5rem;
}

.c-hamburger span:nth-child(1) {
	top: calc(50% - 0.5rem);
}

.c-hamburger span:nth-child(2) {
	top: calc(50% + 0.5rem);
}

.c-hamburger.is-active span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.c-hamburger.is-active span:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.c-sticky {
	bottom: 0;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: -1;
}

.c-sticky img {
	-o-object-fit: cover;
	height: 100%;
	max-width: none;
	max-width: initial;
	object-fit: cover;
}

.c-subTitle {
	align-items: center;
	display: flex;
	position: relative;
}

.c-subTitle span:nth-child(1) {
	color: #BF9C46;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
	padding-right: 1rem;
	position: relative;
	white-space: nowrap;
}

.c-subTitle span:nth-child(2) {
	background-color: #fff;
	height: 1px;
	width: 100%;
}

.c-text {
	font-size: 1rem;
	line-height: 1.5;
}

.--center {
	text-align: center;
}

.c-textLink {
	align-items: center;
	color: #fff;
	display: inline-flex;
	flex-direction: column;
	font-size: 1rem;
	font-weight: 400;
	gap: 0.5rem;
	justify-content: center;
	text-align: center;
	transition: all 0.45s;
}

.c-textLink span {
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	animation: popping-arrow 2s infinite ease-out;
	background-color: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	display: inline-block;
	height: 0.625rem;
	width: 0.625rem;
}

.c-textLink span:nth-of-type(1) {
	margin-top: 0.25rem;
}

.c-title {
	color: #004098;
	text-align: center;
}

.c-title h2 {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	text-shadow: 0.125rem 0.125rem 3rem rgba(0, 0, 0, 0.25);
}

.c-title h2::before {
	background-color: #004098;
	bottom: -0.375rem;
	content: "";
	height: 0.125rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3rem;
}

.c-title.--white h2::before {
	background-color: #fff;
}

.c-title p {
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 0.75rem;
	text-transform: uppercase;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: calc(62.5rem + 25px + 25px);
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-main {
	padding-bottom: 7.5rem;
}

.js-scroll-fade {
	opacity: 0;
	position: relative;
	transform: translateY(1.25rem);
	transition: all 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}

.is-scroll-fade {
	opacity: 1;
	transform: translateY(0);
}

.normal-scroll {
	overflow: visible;
	overflow: initial;
}

.p-benefit {
	color: #fff;
	padding-top: 7.5rem;
	position: relative;
	z-index: 1;
}

.p-benefit::before {
	color: #fff;
	content: "Benefit";
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 7.25rem;
	opacity: 0.3;
	position: absolute;
	right: calc(50% - 33.75rem);
	top: 14.375rem;
}

.p-benefit__main {
	margin-top: 5rem;
}

.p-benefit__card {
	display: grid !important;
}

.p-benefit__card {
	grid-gap: 3.75rem;
	align-items: flex-start;
	gap: 3.75rem;
	grid-template-columns: 24.75rem 1fr;
}

.p-benefit__img {
	border: 0.125rem solid #BF9C46;
	border-radius: 0.625rem;
	overflow: hidden;
}

.p-benefit__number {
	color: #BF9C46;
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 5rem;
	font-weight: 400;
}

.p-benefit__cardTitle {
	font-size: 2rem;
	margin-top: 1.75rem;
}

.p-benefit__text {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	max-width: 31.75rem;
}

.p-benefit__text a {
	-webkit-text-decoration: underline;
	display: inline-block;
	margin-top: 0.875rem;
	text-decoration: underline;
}

.p-benefit__text a:hover {
	opacity: 0.6;
}

.p-benefit__figure {
	margin-top: 1rem;
}

.p-benefit__table {
	margin-top: 1.5rem;
	width: 100%;
}

.p-benefit__table th:nth-child(1),
.p-benefit__table td:nth-child(1) {
	width: 26%;
}

.p-benefit__table th {
	background-color: #E3E3E3;
	font-size: 0.625rem;
	height: 3rem;
	line-height: 1.2;
	text-align: center;
}

.p-benefit__table th.pink {
	background-color: #EA609E;
}

.p-benefit__table th.gold {
	background-color: #D6AF52;
}

.p-benefit__table th.red {
	background-color: #CA1C46;
}

.p-benefit__table th.blue {
	background-color: #57C4F1;
}

.p-benefit__table th.green {
	background-color: #36B25D;
}

.p-benefit__table th.yellow {
	background-color: #FDD000;
	color: #231815;
}

.p-benefit__table th.purple {
	background-color: #762263;
}

.p-benefit__table td {
	background-color: #E3E3E3;
	font-size: 0.625rem;
	font-weight: bold;
	height: 2rem;
	text-align: center;
}

.p-benefit__table td:nth-child(1) {
	color: #000;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1.2;
	padding-left: 0.5rem;
	text-align: left;
}

.p-benefit__table td span {
	border-radius: 50%;
	display: inline-block;
	height: 1rem;
	width: 1rem;
}

.p-benefit__table td:nth-child(2) span,
.p-benefit__table td:nth-child(3) span {
	background-color: #EA609E;
	color: #EA609E;
}

.p-benefit__table td:nth-child(4) span,
.p-benefit__table td:nth-child(5) span,
.p-benefit__table td:nth-child(6) span {
	background-color: #D6AF52;
	color: #D6AF52;
}

.p-benefit__table td:nth-child(7) {
	color: #CA1C46;
}

.p-benefit__table td:nth-child(7) span {
	background-color: #CA1C46;
}

.p-benefit__table td:nth-child(8) {
	color: #57C4F1;
}

.p-benefit__table td:nth-child(8) span {
	background-color: #57C4F1;
}

.p-benefit__table td:nth-child(9) {
	color: #36B25D;
}

.p-benefit__table td:nth-child(9) span {
	background-color: #36B25D;
}

.p-benefit__table td:nth-child(10) {
	color: #D7B100;
}

.p-benefit__table td:nth-child(10) span {
	background-color: #D7B100;
	color: #D7B100;
}

.p-benefit__table td:nth-child(11) {
	color: #762263;
}

.p-benefit__table td:nth-child(11) span {
	background-color: #762263;
}

.p-benefit__option {
	margin-top: 2.5rem;
}

.p-benefit__bigText {
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 1.5rem;
}

.p-benefit__lists {
	grid-gap: 1.75rem 2.5rem;
	display: grid;
	gap: 1.75rem 2.5rem;
	grid-template-columns: 1fr 54%;
	margin-top: 1.75rem;
}

.p-benefit__list {
	grid-gap: 1.5rem;
	align-items: center;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 3.5rem 1fr;
}

.p-benefit__list p span {
	font-size: 0.75rem;
	font-weight: 400;
}

.p-benefit__cards .slide-arrow {
	align-items: center;
	bottom: 0;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 400;
	gap: 0.5rem;
	position: absolute;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 1;
}

.p-benefit__cards .slide-arrow img {
	width: 1.375rem;
}

.p-benefit__cards .prev-arrow {
	right: 8.75rem;
}

.p-benefit__cards .prev-arrow img {
	transform: rotate(180deg);
}

.p-benefit__cards .next-arrow {
	right: 0px;
}

.p-btns {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.p-btns__btn {
	height: 4rem;
	width: 22.5rem;
}

.p-btns__btn a {
	align-items: center;
	border-radius: 0.625rem;
	display: flex;
	font-size: 1.25rem;
	font-weight: bold;
	gap: 1rem;
	height: 100%;
	justify-content: center;
}

.p-btns__btn a img {
	transition: all 0.45s;
	width: 1.25rem;
}

.p-btns__btn:nth-child(1) a {
	background-color: #F5E0B0;
	border: 0.1875rem solid #BF9C46;
	color: #000;
}

.p-btns__btn:nth-child(2) a {
	background-color: #fff;
	border: 0.1875rem solid #004098;
	color: #000;
}

.p-csr {
	background-color: #fff;
	overflow: hidden;
	padding-bottom: 7.5rem;
	position: relative;
}

.p-csr__inner {
	max-width: 56.25rem;
}

.p-csr__img {
	margin-left: calc(50% - 50vw);
	width: 100vw;
}

.p-csr__body {
	margin-top: 5rem;
}

.p-csr__text {
	font-weight: bold;
	margin-top: 5rem;
}

.p-csr__note {
	font-weight: bold;
	margin-top: 2rem;
}

.p-csr__table {
	line-height: 1.5;
	margin-top: 2.5rem;
	width: 100%;
}

.p-csr__table th {
	background-color: #004098;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
}

.p-csr__table th:nth-child(2) {
	width: 22.5%;
}

.p-csr__table td {
	background-color: #E3E3E3;
	font-size: 1rem;
	font-weight: bold;
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
	text-align: center;
}

.p-csr__table td:nth-child(2) {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	width: 22.5%;
}

.p-csr__btn {
	margin-top: 2.5rem;
	text-align: center;
}

.p-csr__btn a {
	align-items: center;
	border: 0.125rem solid #004098;
	border-radius: 0.625rem;
	color: #004098;
	display: inline-flex;
	font-size: 1rem;
	font-weight: bold;
	justify-content: center;
	padding: 0.75rem 2.3125rem;
	transition: all 0.3s;
}

.p-drawer {
	background: url(../images/bg_menu.jpg) center center/cover no-repeat;
	display: none;
	height: 100%;
	left: 0;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	width: 100%;
}

.p-drawer__inner {
	height: 100%;
	max-width: none;
	max-width: initial;
	min-height: 800px;
	position: relative;
}

.p-drawer__body {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-drawer__logo {
	margin: 0 auto;
	max-width: 23.875rem;
}

.p-drawer__nav {
	margin-top: 4rem;
}

.p-drawer__btns {
	margin-top: 4rem;
}

.p-drawer__personal {
	display: none;
}

.p-drawer__personal a {
	display: block;
}

.p-faq {
	background-color: #E3E3E3;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.p-faq__inner {
	position: relative;
}

.p-faq__blocks {
	margin-top: 5rem;
}

.p-faq__block {
	border-radius: 0.625rem;
	cursor: pointer;
	overflow: hidden;
}

.p-faq__block + .p-faq__block {
	margin-top: 1rem;
}

.p-faq__q {
	min-height: 4.625rem;
	position: relative;
}

.p-faq__q::before {
	background-color: #000;
	content: "";
	height: 0.125rem;
	position: absolute;
	right: 0.9375rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.875rem;
}

.p-faq__q::after {
	background-color: #000;
	content: "";
	height: 0.125rem;
	position: absolute;
	right: 0.9375rem;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	transition: all 0.45s;
	width: 0.875rem;
}

.p-faq__block.is-active .p-faq__q::after {
	transform: translateY(-50%);
}

.p-faq__q p {
	grid-gap: 1.5rem;
	align-items: center;
	background-color: #fff;
	display: grid;
	font-weight: bold;
	gap: 1.5rem;
	grid-template-columns: 2.5rem 1fr;
	height: 100%;
	padding: 1.0625rem 2.5rem 1.0625rem 0.9375rem;
}

.p-faq__q span:nth-child(1) {
	align-items: center;
	background-color: #004098;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 1.5rem;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.p-faq__q span:nth-child(2) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 2.5rem;
}

.p-faq__a {
	display: none;
}

.p-faq__a p {
	grid-gap: 1.5rem;
	align-items: flex-start;
	background-color: #F4F4F4;
	display: grid;
	font-weight: bold;
	gap: 1.5rem;
	grid-template-columns: 2.5rem 1fr;
	height: 100%;
	padding: 1.0625rem 0.9375rem 1.0625rem 0.9375rem;
}

.p-faq__a span:nth-child(1) {
	align-items: center;
	background-color: #E60039;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 1.5rem;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.p-faq__a span:nth-child(2) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 2.5rem;
}

.p-feature {
	color: #fff;
	padding-top: 10rem;
}

.p-feature__blocks {
	margin-top: 5rem;
}

.p-feature__block {
	align-items: flex-start;
	display: flex;
	gap: 2.5rem;
	justify-content: space-between;
}

.p-feature__block:nth-child(even) {
	flex-direction: row-reverse;
}

.p-feature__block + .p-feature__block {
	margin-top: 4rem;
}

.p-feature__img {
	border: 0.125rem solid #BF9C46;
	border-radius: 0.625rem;
	overflow: hidden;
	width: 25rem;
}

.p-feature__content {
	max-width: 33.5rem;
	width: calc(100% - 27.5rem);
}

.p-feature__number {
	color: #BF9C46;
	font-size: 5rem;
	font-weight: 400;
}

.p-feature__subtitle {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 1.5rem;
}

.p-feature__text {
	font-size: 1.25rem;
	margin-top: 1.5rem;
}

.p-feature__btn {
	margin-top: 1.5rem;
	text-align: left;
}

.p-feature__btn a {
	align-items: center;
	border: 0.125rem solid #BF9C46;
	border-radius: 0.625rem;
	color: #fff;
	display: inline-flex;
	gap: 0.5rem;
	justify-content: center;
	min-width: 18.75rem;
	padding: 0.75rem 1.875rem;
}

.p-feature__btn a span {
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	background-color: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	height: 1rem;
	width: 1rem;
}

.p-feature__nav {
	margin-top: 7.5rem;
}

.p-float {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}

.p-float__btns {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

.p-float__btn {
	height: 7.625rem;
	width: 6.25rem;
}

.p-float__btn a {
	align-items: center;
	border-radius: 0.625rem 0 0 0.625rem;
	box-shadow: 0.125rem 0.125rem 3rem rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	font-size: 1.5rem;
	font-weight: bold;
	height: 100%;
	justify-content: center;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.p-float__btn p {
	position: relative;
	z-index: 1;
}

.p-float__btn a img {
	margin: 0 auto;
}

.p-float__btn:nth-child(1) a {
	background-color: #F5E0B0;
	border-right: 0.3125rem solid #BF9C46;
}

.p-float__btn:nth-child(1) a::before {
	background-color: #BF9C46;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.45s;
	width: 0%;
}

.p-float__btn:nth-child(1) a img {
	margin-top: 0.5rem;
	transition: all 0.45s;
	width: 1.5rem;
}

.p-float__btn:nth-child(2) a {
	background-color: #E3E3E3;
	border-right: 0.3125rem solid #004098;
}

.p-float__btn:nth-child(2) a::before {
	background-color: #004098;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.45s;
	width: 0%;
}

.p-float__btn:nth-child(2) a img {
	margin-top: 0.5rem;
	transition: all 0.45s;
	width: 1.5rem;
}

.p-float__btn:nth-child(3) a {
	background-color: #004098;
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.5;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.p-float__btn:nth-child(3) a:hover {
	opacity: 0.6;
}

.p-float__btn:nth-child(3) a img {
	margin-bottom: 0.5rem;
	width: 2rem;
}

.p-float__btn:nth-child(4) a {
	background-color: #E60039;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
}

.p-float__btn:nth-child(4) a:hover {
	opacity: 0.6;
}

.p-float__btn:nth-child(4) a img {
	margin-bottom: 0.5rem;
	width: 2rem;
}

.p-float__btn em {
	font-size: 1.125rem;
	font-style: normal;
}

.p-flow {
	margin-top: -1px;
}

.p-flow__bg {
	height: 100vh;
}

.p-flow__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
}

.p-flow__inner {
	margin-top: -100vh;
	padding-bottom: 8.125rem;
	padding-top: 10rem;
	position: relative;
}

.p-flow__box {
	background-color: #fff;
	border-radius: 0.625rem;
	margin-top: 5rem;
	padding: 4.1875rem 3.125rem 2.5rem;
}

.p-flow__steps {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
	grid-template-columns: repeat(3, 1fr);
}

.p-flow__steps .slider-dots li {
	background-color: #E3E3E3;
}

.p-flow__steps .slide-arrow {
	align-items: center;
	bottom: 0;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 400;
	gap: 0.5rem;
	position: absolute;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 1;
}

.p-flow__steps .slide-arrow img {
	width: 1.375rem;
}

.p-flow__steps .prev-arrow {
	right: 8.75rem;
}

.p-flow__steps .prev-arrow img {
	transform: rotate(180deg);
}

.p-flow__steps .next-arrow {
	right: 0px;
}

.p-flow__step {
	background-color: #E3E3E3;
	border-radius: 0.625rem;
	padding: 2.625rem 1.5rem;
	position: relative;
}

.p-flow__step + .p-flow__step::before {
	background: url(../images/flow/icon_arrow.svg) center center/contain no-repeat;
	content: "";
	height: 4rem;
	left: -2.9375rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 4rem;
}

.p-flow__number {
	color: #BF9C46;
	font-size: 5rem;
	font-weight: 400;
	left: 0;
	position: absolute;
	text-align: center;
	top: -2.5rem;
	width: 100%;
}

.p-flow__wrap {
	grid-gap: 1.125rem;
	align-items: center;
	color: #004098;
	display: grid;
	font-size: 1.125rem;
	gap: 1.125rem;
	grid-template-columns: 4rem 1fr;
	margin-left: auto;
	margin-right: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.p-flow__wrap img {
	width: 4rem;
}

.p-flow__text {
	font-weight: 400;
	margin-top: 1rem;
}

.p-flow__scedule {
	background-color: #fff;
	border-radius: 0.625rem;
	font-size: 1rem;
	line-height: 1.5;
	margin-top: 1rem;
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
	text-align: center;
}

.p-flow__scedule span {
	display: block;
	font-size: 1.25rem;
}

.p-flow__note {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 1rem;
}

.p-flow__btns {
	margin-top: 2rem;
}

.p-flow__block {
	margin-top: 2.5rem;
}

.p-flow__subtitle {
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.3333333333;
	position: relative;
}

.p-flow__subtitle::before {
	background-color: #000;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.p-flow__subtitle span {
	background-color: #fff;
	display: inline-block;
	padding-right: 0.8125rem;
	position: relative;
	z-index: 1;
}

.p-flow__table {
	line-height: 1.5;
	margin-top: 2.5rem;
	width: 100%;
}

.p-flow__table th {
	background-color: #004098;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
}

.p-flow__table th:nth-child(1) {
	width: 22.5%;
}

.p-flow__table td {
	background-color: #E3E3E3;
	font-size: 1rem;
	font-weight: bold;
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
	text-align: center;
}

.p-flow__table td:nth-child(1) {
	font-size: 1rem;
	width: 22.5%;
}

.p-flow__text {
	font-weight: bold;
	margin-top: 1.5rem;
}

.p-flow__text span {
	font-weight: 400;
}

.p-flow__btn {
	margin-top: 1.5rem;
}

.p-flow__btn a {
	align-items: center;
	border: 0.125rem solid #BF9C46;
	border-radius: 0.625rem;
	color: #BF9C46;
	display: inline-flex;
	font-size: 1rem;
	gap: 0.5rem;
	justify-content: center;
	line-height: 1.5;
	padding: 0.75rem 3.625rem;
	transition: all 0.45s;
}

.p-flow__btn a span {
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background-color: #BF9C46;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	height: 1rem;
	transition: all 0.45s;
	width: 1rem;
}

.p-footer {
	color: #fff;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
	position: relative;
}

.p-footer__logo {
	margin-left: auto;
	margin-right: auto;
	max-width: 6.25rem;
}

.p-footer__sns {
	margin-top: 2rem;
}

.p-footer__snstitle {
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 0.9375rem;
	font-weight: bold;
	text-align: center;
}

.p-footer__snsLinks {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	margin-top: 0.625rem;
}

.p-footer__snsLink {
	height: 1.5rem;
	width: 1.5rem;
}

.p-footer__snsLink a {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
}

.p-footer__snsLink img {
	-o-object-fit: contain;
	margin: auto;
	max-height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-footer__snsLink a:hover {
	opacity: 0.6;
}

.p-footer__links {
	border-top: 1px solid #fff;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5rem;
	max-width: 45rem;
}

.p-footer__link {
	border-bottom: 1px solid #fff;
}

.p-footer__link a {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.8125rem;
	font-weight: bold;
	line-height: 1.4615384615;
	padding-bottom: 1.375rem;
	padding-top: 1.375rem;
	position: relative;
}

.p-footer__link.--sub {
	border: none;
}

.p-footer__link.--sub a {
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
}

.p-footer__link:not(.--sub) + .p-footer__link.--sub {
	margin-top: 0.625rem;
}

.p-footer__link.--sub + .p-footer__link:not(.--sub) {
	border-top: 1px solid #fff;
	margin-top: 0.625rem;
}

.p-footer__link a::before {
	background: url(../images/footer/icon_arrow.svg) center center/contain no-repeat;
	content: "";
	height: 0.625rem;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.3125rem;
}

.p-footer__link a:hover {
	opacity: 0.6;
}

.p-footer__copy {
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 0.625rem;
	margin-top: 2.75rem;
	text-align: center;
}

.p-header {
	height: 6.5rem;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.p-header__inner {
	align-items: center;
	display: flex;
	max-width: none;
	max-width: initial;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.p-header__logo {
	max-width: 22.5rem;
}

.p-header__hamburger {
	height: 3rem;
	margin-left: auto;
	width: 3rem;
	z-index: 1;
}

.p-intro {
	background: url(../images/bg_about.jpg) center center/cover no-repeat;
	color: #fff;
	height: 100dvh;
}

.p-intro__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.p-intro__title {
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.p-intro__text {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 2.5rem;
	text-align: center;
}

.p-intro__link {
	margin-top: 3rem;
}

.p-main__bg {
	height: 100vh;
}

.p-main__feature {
	margin-top: -100vh;
}

.p-main section {
	position: relative;
}

.p-match {
	padding-top: 7.5rem;
}

.p-match__content {
	background-color: #fff;
	border-radius: 0.625rem;
	margin-top: 5rem;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.p-match__subtitle {
	color: #BF9C46;
	font-size: 2.5rem;
	line-height: 1.5;
	text-align: center;
}

.p-match__text {
	font-weight: bold;
	margin-top: 1rem;
}

.p-mv {
	height: 100dvh;
	position: relative;
}

.p-mv__img {
	height: 100%;
}

.p-mv__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
}

.p-mv__content {
	color: #fff;
	left: 50%;
	position: absolute;
	top: 9.6875rem;
	transform: translateX(-50%);
	width: 100%;
}

.p-mv__logo {
	margin-left: auto;
	margin-right: auto;
	max-width: 12.75rem;
}

.p-mv__title {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.2;
	margin-top: 1.125rem;
	text-align: center;
}

.p-mv__link {
	margin-top: 2.5625rem;
	text-align: center;
}

.p-nav {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.p-nav__link {
	border-radius: 0.625rem;
	height: 6.25rem;
	width: 6.25rem;
}

.p-nav__link a {
	align-items: center;
	background-color: #BF9C46;
	border-radius: 0.625rem;
	box-shadow: 0 0.25rem 0 #71581B;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	text-align: center;
	transition: all 0.3s;
}

.p-nav__link a img {
	height: 2rem;
	width: 2rem;
}

.p-nav__text {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 0.0625rem;
}

.p-nav__text span {
	display: block;
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 0.75rem;
	font-weight: 400;
	margin-top: 0.1875rem;
	position: relative;
	text-transform: uppercase;
}

.p-nav__text span::before {
	background-color: #fff;
	content: "";
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: -0.1875rem;
	transform: translateX(-50%);
	width: 1.5rem;
}

.p-price {
	padding-top: 7.5rem;
}

.p-price__box {
	background-color: #fff;
	border-radius: 0.625rem;
	margin-top: 5rem;
	padding: 2.5rem 3.125rem;
}

.p-price__blocks {
	grid-gap: 3rem;
	align-items: flex-start;
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-price__subTitle {
	color: #004098;
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
}

.p-price__figure {
	margin-top: 2rem;
}

.p-price__table {
	margin-top: 2rem;
	width: 100%;
}

.p-price__table th,
.p-price__table td {
	width: 33.3333333333%;
}

.p-price__table th {
	color: #fff;
	font-size: 0.875rem;
	padding-bottom: 0.875rem;
	padding-top: 0.875rem;
}

.p-price__table th:nth-child(1) {
	background-color: #707070;
}

.p-price__table th:nth-child(2) {
	background-color: #E60039;
}

.p-price__table th:nth-child(3) {
	background-color: #000;
}

.p-price__table td {
	background-color: #E3E3E3;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25rem;
	height: 3rem;
	text-align: center;
}

.p-price__table td:nth-child(1) {
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-size: 0.875rem;
	line-height: 1.2;
}

.p-price__table td.pink {
	background-color: #EA609E;
}

.p-price__table td.gold {
	background-color: #D6AF52;
}

.p-price__table td.red {
	background-color: #CA1C46;
}

.p-price__table td.blue {
	background-color: #57C4F1;
}

.p-price__table td.green {
	background-color: #36B25D;
}

.p-price__table td.yellow {
	background-color: #FDD000;
	color: #000;
}

.p-price__table td.purple {
	background-color: #762263;
}

.p-price__btn {
	margin-top: 2rem;
	text-align: center;
}

.p-price__btn a {
	align-items: center;
	border: 0.125rem solid #BF9C46;
	border-radius: 0.625rem;
	color: #BF9C46;
	display: inline-flex;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.75rem 1.875rem;
}

.p-price__btn a span {
	-webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
	background-color: #BF9C46;
	clip-path: polygon(50% 0, 0% 100%, 100% 100%);
	height: 1rem;
	width: 1rem;
}

.p-tabs {
	display: none;
}

.p-tab {
	text-align: center;
}

.p-priceCard {
	background-color: #fff;
	border-radius: 0.625rem;
	color: #000;
	height: 100%;
	padding: 2.5rem 3.125rem;
}

.p-priceCard__title {
	color: #004098;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.p-priceCard__wrap {
	grid-gap: 1.75rem;
	align-items: center;
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 28.75rem 1fr;
	margin-top: 2rem;
}

.p-priceCard__tabs {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.p-priceCard__tab {
	background-color: #9D9D9D;
	border-radius: 0.3125rem;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	padding: 0.5rem 1rem;
	transition: all 0.45s;
}

.p-priceCard__tab.is-active {
	background-color: #E60039;
}

.p-priceCard__img {
	margin-top: 1.5rem;
	position: relative;
}

.p-priceCard__img img {
	opacity: 0;
	visibility: hidden;
}

.p-priceCard__img img.is-active {
	opacity: 1;
	visibility: visible;
}

.p-priceCard__img img:nth-child(2) {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-priceCard__scroll {
	max-height: 23.75rem;
	overflow-y: scroll;
}

.p-priceCard__table {
	width: 100%;
}

.p-priceCard__table th:nth-child(1),
.p-priceCard__table td:nth-child(1) {
	width: 51%;
}

.p-priceCard__table th {
	background-color: #707070;
	color: #fff;
	font-size: 0.875rem;
	height: 3rem;
	line-height: 1.2;
}

.p-priceCard__table th:nth-child(2) {
	background-color: #E60039;
}

.p-priceCard__table th:nth-child(3) {
	background-color: #000;
}

.p-priceCard__table td {
	background-color: #E3E3E3;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	height: 3rem;
	text-align: center;
}

.p-priceCard__table td:nth-child(1) {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Noto Serif JP", serif;
	font-size: 0.8125rem;
	font-weight: bold;
	justify-content: space-between;
	line-height: 1.2;
	padding-left: 0.375rem;
	padding-right: 0.375rem;
	position: relative;
	text-align: left;
	width: 100%;
}

.p-priceCard__table td:nth-child(1) small {
	font-size: 0.6875rem;
}

.p-priceCard__table td:nth-child(1) span {
	align-items: center;
	border-radius: 0.3125rem;
	color: #fff;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	height: 2rem;
	justify-content: center;
	width: 4rem;
}

.p-priceCard__table td:nth-child(1) span.mix {
	background-color: #000;
}

.p-priceCard__table td:nth-child(1) span.home {
	background-color: #004098;
}

.p-priceCard__table td.pink {
	background-color: #EA609E;
}

.p-priceCard__table td.gold {
	background-color: #D6AF52;
}

.p-priceCard__table td.red {
	background-color: #CA1C46;
}

.p-priceCard__table td.yellow {
	background-color: #D7B100;
}

.p-priceCard__table td.blue {
	background-color: #57C4F1;
}

.p-priceCard__table td.green {
	background-color: #36B25D;
}

.p-priceCard__table td.purple {
	background-color: #762263;
}

.p-priceCard__bottom {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 1.75rem;
}

.p-priceCard__bottom p {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: bold;
	gap: 0.75rem;
	line-height: 1.5;
}

.p-priceCard__bottom p img {
	width: 6.25rem;
}

.slick-track {
	display: flex;
}

.slick-slide {
	height: auto !important;
}

.p-seat {
	color: #fff;
	overflow: hidden;
	padding-top: 7.5rem;
}

.p-seat__contents {
	margin-top: 5rem;
}

.p-seat__content {
	position: relative;
}

.p-seat__content::before {
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 7.25rem;
	opacity: 0.3;
	position: absolute;
	right: calc(50% - 31.25rem);
}

.p-seat__content:nth-child(1)::before {
	color: #BF9C46;
	content: "Premium";
}

.p-seat__content:nth-child(2)::before {
	color: #fff;
	content: "Standard";
}

.p-seat__content + .p-seat__content {
	margin-top: 5rem;
}

.p-seat__seatTitle {
	color: #BF9C46;
	font-size: 2.5rem;
	line-height: 1.5;
}

.p-seat__tags {
	display: flex;
	flex-wrap: wrap;
	font-family: "Noto Sans JP", sans-serif;
	gap: 1rem;
	margin-top: 0.5rem;
}

.p-seat__tag {
	background-color: #E60039;
	border-radius: 0.3125rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 400;
	padding: 0.5rem 1rem;
}

.p-seat__text {
	font-weight: 400;
	margin-top: 2.5rem;
}

.p-seat__block {
	margin-top: 2.5rem;
}

.p-seat__bigText {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 1rem;
}

.p-seat__bigText strong {
	color: #BF9C46;
	font-size: 2rem;
}

.p-seat__blockText {
	margin-top: 1rem;
}

.p-seat__services {
	align-items: center;
	display: flex;
	gap: 2rem;
	margin-top: 1.5rem;
}

.p-seat__service {
	align-items: center;
	display: flex;
	font-size: 1rem;
	gap: 1rem;
	line-height: 1.2;
}

.p-seat__service span {
	font-size: 0.875rem;
}

.p-seat__service img {
	width: 3rem;
}

.p-seat__tabs {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.p-seat__tab {
	align-items: center;
	border: 2px solid;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 0.875rem;
	font-weight: bold;
	height: 2.3125rem;
	padding: 0.5rem 0.4375rem;
	transition: all 0.45s;
}

.p-seat__tab:hover {
	opacity: 0.6;
}

.p-seat__tabs.--1 .p-seat__tab:nth-child(1) {
	border-color: #fff;
}

.p-seat__tabs.--1 .p-seat__tab:nth-child(1).is-active {
	background-color: #fff;
	color: #004098;
}

.p-seat__tabs.--1 .p-seat__tab:nth-child(2),
.p-seat__tabs.--1 .p-seat__tab:nth-child(3) {
	border-color: #EA609E;
}

.p-seat__tabs.--1 .p-seat__tab:nth-child(2).is-active,
.p-seat__tabs.--1 .p-seat__tab:nth-child(3).is-active {
	background-color: #EA609E;
}

.p-seat__tabs.--1 .p-seat__tab:nth-child(4),
.p-seat__tabs.--1 .p-seat__tab:nth-child(5),
.p-seat__tabs.--1 .p-seat__tab:nth-child(6) {
	border-color: #D6AF52;
}

.p-seat__tabs.--1 .p-seat__tab:nth-child(4).is-active,
.p-seat__tabs.--1 .p-seat__tab:nth-child(5).is-active,
.p-seat__tabs.--1 .p-seat__tab:nth-child(6).is-active {
	background-color: #D6AF52;
}

.p-seat__tabs.--2 .p-seat__tab {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(1) {
	border-color: #fff;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(1).is-active {
	background-color: #fff;
	color: #004098;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(2) {
	border-color: #CA1C46;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(2).is-active {
	background-color: #CA1C46;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(3) {
	border-color: #57C4F1;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(3).is-active {
	background-color: #57C4F1;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(4) {
	border-color: #36B25D;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(4).is-active {
	background-color: #36B25D;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(5) {
	border-color: #FDD000;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(5).is-active {
	background-color: #FDD000;
	color: #231815;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(6) {
	border-color: #762263;
}

.p-seat__tabs.--2 .p-seat__tab:nth-child(6).is-active {
	background-color: #762263;
}

.p-seat__cards {
	margin-left: -1.25rem;
	margin-top: 2rem;
	width: calc(100% + 2.5rem);
}

.p-seat__card {
	margin: 0 1.25rem;
}

.p-seat__cards .slide-arrow {
	background: url(../images/icon_arrow_slider_w.svg) center center/contain no-repeat;
	height: 3.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.5rem;
}

.p-seat__cards .prev-arrow {
	left: -1.625rem;
	transform: translateY(-50%) rotate(180deg);
}

.p-seat__cards .next-arrow {
	right: -1.625rem;
}

.p-seatCard {
	background-color: #fff;
	border-radius: 0.625rem;
	color: #000;
	height: 100%;
	padding: 2.1875rem 3.125rem;
}

.p-seatCard__wrap {
	align-items: flex-start;
	display: grid;
	grid-template-columns: 1fr 29.5625rem;
}

.p-seatCard__title {
	font-family: "Times New Roman", Times, "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: bold;
}

.p-seatCard__infoText {
	align-items: center;
	color: #004098;
	display: flex;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 0.5rem;
}

.p-seatCard__infoText span {
	background-color: #000;
	border-radius: 0.3125rem;
	color: #fff;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: bold;
	line-height: 1;
	margin-left: 1rem;
	padding: 0.125rem 1rem;
	text-align: center;
}

.p-seatCard__infoText span.blue {
	background-color: #004098;
}

.p-seatCard__infoText span.red {
	background-color: #E60039;
}

.p-seatCard__infoText span.homemix {
	background: none;
	padding: 0;
	width: 6.25rem;
}

.p-seatCard__infoText img {
	width: 100%;
}

.p-seatCard__price {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	margin-top: 1rem;
}

.p-seatCard__price strong {
	font-size: 1.5rem;
	font-weight: bold;
}

.p-seatCard__price span {
	font-size: 1rem;
	font-weight: 400;
}

.p-seatCard__price small {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 0.375rem;
}

.p-seatCard__lead {
	position: relative;
}

.p-seatCard__lead div {
	opacity: 0;
	transition: all 0.45s;
	visibility: hidden;
}

.p-seatCard__lead div.is-active {
	opacity: 1;
	visibility: visible;
}

.p-seatCard__lead div:nth-child(2) {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-seatCard__bigText {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.35;
}

.p-seatCard__text {
	font-size: 0.875rem;
	font-weight: 400;
	margin-top: 1rem;
}

.p-seatCard__tabs {
	display: none;
}

.p-seatCard__wrap2 {
	grid-gap: 2.5rem;
	align-items: flex-start;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr 31.25rem;
	margin-top: 1.5rem;
}

.p-seatCard__tabs2 {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-seatCard__tab2 {
	background-color: #9D9D9D;
	border-radius: 0.3125rem;
	color: #fff;
	cursor: pointer;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	padding: 0.5rem 1rem;
	transition: all 0.45s;
}

.p-seatCard__tab2:hover {
	opacity: 0.6;
}

.p-seatCard__tab2.is-active {
	background-color: #E60039;
}

.p-seatCard__seatImg {
	margin-top: 2.25rem;
	position: relative;
}

.p-seatCard__seatImg img {
	opacity: 0;
	transition: all 0.45s;
	visibility: hidden;
}

.p-seatCard__seatImg img.is-active {
	opacity: 1;
	visibility: visible;
}

.p-seatCard__seatImg img:nth-child(2) {
	-o-object-fit: cover;
	-o-object-position: bottom;
	height: 13.125rem;
	left: 0;
	object-fit: cover;
	object-position: bottom;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-seatCard__right {
	position: relative;
}

.p-seatCard__thumbnail {
	margin-left: -0.125rem;
	margin-top: 0.25rem;
	width: calc(100% + 0.25rem);
}

.p-seatCard__thumbnail .slick-track {
	transform: none !important;
	transform: initial !important;
}

.p-seatCard__thumbnail .slick-track {
	margin-left: 0;
}

.p-seatCard__thumbnailImg {
	margin: 0 0.125rem;
	position: relative;
}

.p-seatCard__thumbnailImg::before {
	background-color: #000;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.7;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: all 0.45s;
	width: 100%;
}

.p-seatCard__thumbnailImg:first-child::before {
	opacity: 0;
}

.p-seatCard__thumbnailImg.is-hide::before {
	opacity: 0.7;
}

.p-seatCard__thumbnailImg.slick-current::before {
	opacity: 0;
}

.p-seatCard__service {
	grid-gap: 1.5rem;
	align-items: center;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 7.625rem 1fr;
	margin-top: 2rem;
}

.p-seatCard__serviceTitle {
	border: 1px solid #E60039;
	color: #E60039;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	padding: 0.5rem 0.5rem;
	text-align: center;
	width: 100%;
}

.p-seatCard__lists {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: flex-start;
}

.p-seatCard__list {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.p-seatCard__list img {
	width: 2rem;
}

.p-seatCard__list p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: bold;
	line-height: 1.5;
}

.p-seatCard__list p span {
	display: block;
	font-size: 0.625rem;
	font-weight: 400;
}

.p-seatCard__priceLists {
	margin-top: 1rem;
}

.p-seatCard__priceList {
	align-items: center;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
}

.p-seatCard__priceList + .p-seatCard__priceList {
	margin-top: 1rem;
}

.p-seatCard__priceList span {
	border: 1px solid #E60039;
	color: #E60039;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 0.5rem;
	padding: 0.25rem;
}

.p-seatCard__priceList strong {
	align-self: baseline;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.3125rem;
}

.p-seatCard__imgText {
	display: none;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -6rem;
	position: relative;
}

.p-seatCard__gallery {
	height: auto;
	opacity: 0;
	transition: all 0.45s;
	visibility: hidden;
}

.p-seatCard__gallery:nth-child(2) {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-seatCard__gallery.is-active {
	opacity: 1;
	visibility: visible;
}

.p-test {
	margin-left: calc(50% - min(3.125rem, 50px));
}

.slider-dots {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin: 0 auto;
	margin-top: 3rem;
}

.slider-dots li {
	background-color: #fff;
	border-radius: 50%;
	height: 0.5rem;
	list-style: none;
	transition: all 0.3s;
	width: 0.5rem;
}

.slider-dots li.slick-active {
	background-color: #BF9C46;
}

.slider-dots button {
	display: none;
}

.u-gold {
	color: #BF9C46;
}

.u-green {
	color: #36B25D;
}

.u-yellow {
	color: #D7B100;
}

.u-pink {
	color: #EA609E;
}

.u-red {
	color: #E60039;
}

.u-water {
	color: #57C4F1;
}

.u-white {
	color: #fff;
}

@media (hover: hover) {

.c-textLink:hover {
	opacity: 0.6;
}

.p-btns__btn a:hover img {
	filter: brightness(0) invert(1);
}

.p-btns__btn:nth-child(1) a:hover {
	background-color: #BF9C46;
	color: #fff;
}

.p-btns__btn:nth-child(2) a:hover {
	background-color: #004098;
	border-color: #004098;
	color: #fff;
}

.p-csr__btn a:hover {
	background-color: #004098;
	color: #fff;
}

.p-feature__btn a:hover {
	background-color: #BF9C46;
}

.p-float__btn:nth-child(1) a:hover {
	color: #fff;
}

.p-float__btn:nth-child(1) a:hover img {
	filter: brightness(0) invert(1);
}

.p-float__btn:nth-child(1) a:hover::before {
	width: 100%;
}

.p-float__btn:nth-child(2) a:hover {
	color: #fff;
}

.p-float__btn:nth-child(2) a:hover img {
	filter: brightness(0) invert(1);
}

.p-float__btn:nth-child(2) a:hover::before {
	width: 100%;
}

.p-flow__btn a:hover {
	background-color: #BF9C46;
	color: #fff;
}

.p-flow__btn a:hover span {
	background-color: #fff;
}

.p-nav__link a:hover {
	box-shadow: none;
	transform: translateY(0.25rem);
}

.p-price__btn a:hover {
	background-color: #BF9C46;
	color: #fff;
}

.p-price__btn a:hover span {
	background-color: #fff;
}

}

@media (max-width: 1280px) {

html {
	font-size: 1.25vw;
}

}

@media screen and (max-width: 768px) {

.u-desktop {
	display: none !important;
}

.u-mobile {
	display: block !important;
}

html {
	font-size: 16px;
}

a[href^="tel:"] {
	pointer-events: none;
}

.c-hamburger span {
	height: 0.1875rem;
	width: 1.625rem;
}

.c-hamburger span:nth-child(1) {
	top: calc(50% - 0.3125rem);
}

.c-hamburger span:nth-child(2) {
	top: calc(50% + 0.3125rem);
}

.c-subTitle span:nth-child(1) {
	font-size: 1.25rem;
}

.c-text {
	font-size: 0.875rem;
}

.c-textLink {
	font-size: 0.875rem;
}

.c-title h2 {
	font-size: 1.5rem;
}

.c-title p {
	font-size: 1rem;
}

.l-inner {
	max-width: 33.75rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

.l-main {
	padding-bottom: 7rem;
}

.p-benefit {
	padding-top: 7rem;
}

.p-benefit::before {
	font-size: 5rem;
	right: 0;
	top: 31.5rem;
	z-index: -1;
}

.p-benefit__main {
	margin-top: 4rem;
}

.p-benefit__cards .slider-dots {
	justify-content: flex-start;
}

.p-benefit__card {
	display: block !important;
}

.p-benefit__content {
	margin-top: 2rem;
}

.p-benefit__number {
	font-size: 4rem;
}

.p-benefit__cardTitle {
	font-size: 1.25rem;
	margin-top: 1.5rem;
}

.p-benefit__text {
	font-size: 1rem;
}

.p-benefit__text a:hover {
	opacity: 1;
}

.p-benefit__figure {
	margin-top: 2rem;
}

.p-benefit__scroll {
	margin-left: calc(50% - 50vw);
	overflow-x: scroll;
	width: 100vw;
}

.p-benefit__table {
	min-width: 55rem;
	padding: 0 2rem;
}

.p-benefit__table th:nth-child(1),
.p-benefit__table td:nth-child(1) {
	width: 15%;
}

.p-benefit__table td:nth-child(1) {
	font-size: 0.625rem;
	padding-bottom: 0.625rem;
	padding-left: 0.375rem;
	padding-top: 0.625rem;
}

.p-benefit__option {
	margin-top: 2rem;
}

.p-benefit__bigText {
	font-size: 1.25rem;
	line-height: 1.2;
}

.p-benefit__lists {
	display: block;
}

.p-benefit__list {
	align-items: flex-start;
	gap: 1rem;
}

.p-benefit__list small {
	font-size: 0.625rem;
}

.p-benefit__list + .p-benefit__list {
	margin-top: 1.5rem;
}

.p-benefit__cards .slide-arrow {
	bottom: -0.3125rem;
}

.p-benefit__cards .prev-arrow {
	right: 6.75rem;
}

.p-btns {
	flex-direction: column;
	gap: 1rem;
}

.p-btns__btn {
	height: 3rem;
	width: 16.9375rem;
}

.p-btns__btn a {
	font-size: 1rem;
	gap: 0.5rem;
}

.p-btns__btn a img {
	width: 1.5rem;
}

.p-csr {
	padding-bottom: 4rem;
}

.p-csr__img {
	height: 20.0625rem;
}

.p-csr__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
}

.p-csr__body {
	margin-top: 4rem;
}

.p-csr__text {
	margin-top: 4rem;
}

.p-csr__bnr {
	margin-top: 2rem;
}

.p-csr__table {
	margin-top: 2rem;
}

.p-csr__table th {
	font-size: 0.75rem;
	line-height: 1.2;
}

.p-csr__table th:nth-child(2) {
	width: 30%;
}

.p-csr__table td {
	font-size: 0.75rem;
	height: 3.5rem;
}

.p-csr__table td:nth-child(2) {
	font-size: 1rem;
	width: 30%;
}

.p-csr__btn {
	margin-top: 2rem;
}

.p-csr__btn a {
	font-size: 0.875rem;
	padding: 0.8125rem 0;
	width: 100%;
}

.p-drawer {
	background-image: url(../images/bg_menu_sp.jpg);
}

.p-drawer__inner {
	min-height: 626px;
}

.p-drawer__body {
	padding-left: 1rem;
	padding-right: 1rem;
}

.p-drawer__logo {
	max-width: 20.625rem;
}

.p-drawer__nav {
	margin-top: 0rem;
}

.p-drawer__btns {
	margin-top: 1.5rem;
}

.p-drawer__personal {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5rem;
	max-width: 11rem;
}

.p-faq {
	padding-top: 4rem;
}

.p-faq__blocks {
	margin-top: 4rem;
}

.p-faq__q p {
	gap: 0.5rem;
	grid-template-columns: 2rem 1fr;
}

.p-faq__q span:nth-child(1) {
	font-size: 1.125rem;
	height: 2rem;
	width: 2rem;
}

.p-faq__a p {
	gap: 0.5rem;
	grid-template-columns: 2rem 1fr;
}

.p-faq__a span:nth-child(1) {
	font-size: 1.125rem;
	height: 2rem;
	width: 2rem;
}

.p-feature {
	padding-top: 7rem;
}

.p-feature__blocks {
	margin-top: 4rem;
}

.p-feature__block {
	display: block;
}

.p-feature__block + .p-feature__block {
	margin-top: 3rem;
}

.p-feature__img {
	width: 100%;
}

.p-feature__content {
	margin-top: 2rem;
	width: 100%;
}

.p-feature__number {
	font-size: 4rem;
}

.p-feature__subtitle {
	font-size: 1.25rem;
}

.p-feature__text {
	font-size: 1rem;
}

.p-feature__btn a {
	font-size: 0.875rem;
	min-width: 15.625rem;
	padding: 0.75rem 1.25rem;
}

.p-feature__btn a span {
	height: 0.75rem;
	width: 0.75rem;
}

.p-feature__nav {
	margin-left: -1rem;
	margin-top: 7rem;
	width: calc(100% + 2rem);
}

.p-float {
	bottom: 0;
	left: 50%;
	right: auto;
	right: initial;
	top: auto;
	top: initial;
	transform: translateX(-50%);
}

.p-float__btns {
	gap: 0.8125rem;
	grid-template-columns: repeat(2, 1fr);
	margin: 0 auto;
	width: -moz-fit-content;
	width: fit-content;
}

.p-float__btn {
	height: 3.5rem;
	width: 10.3125rem;
}

.p-float__btn a {
	border-radius: 0.625rem 0.625rem 0 0;
	font-size: 1.25rem;
}

.p-float__btn p {
	padding-left: 2.125rem;
}

.p-float__btn a img {
	left: 0.125rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
}

.p-float__btn:nth-child(1) a {
	border-bottom: 0.5rem solid #BF9C46;
	border-right: none;
}

.p-float__btn:nth-child(1) a img {
	margin: 0;
}

.p-float__btn:nth-child(2) a {
	border-bottom: 0.5rem solid #004098;
	border-right: none;
}

.p-float__btn:nth-child(2) a img {
	margin: 0;
}

.p-float__btn:nth-child(3) a:hover {
	opacity: 1;
}

.p-float__btn:nth-child(4) a:hover {
	opacity: 1;
}

.p-float__btn em {
	font-size: 1rem;
}

.p-float__btn:nth-child(3),
.p-float__btn:nth-child(4) {
	display: none;
}

.p-flow__inner {
	padding-bottom: 7rem;
	padding-top: 7rem;
}

.p-flow__box {
	padding: 1.5rem 1rem 1.5rem;
}

.p-flow__steps {
	display: block;
}

.p-flow__steps .slick-list {
	padding-top: 1.875rem;
}

.p-flow__steps .slider-dots {
	justify-content: flex-start;
	margin-top: 1.4375rem;
}

.p-flow__steps .slide-arrow {
	bottom: -0.3125rem;
}

.p-flow__steps .prev-arrow {
	right: 6.75rem;
}

.p-flow__step {
	padding-bottom: 1.5rem;
}

.p-flow__step + .p-flow__step::before {
	display: none;
}

.p-flow__btns {
	margin-top: 0;
}

.p-flow__subtitle {
	font-size: 1rem;
}

.p-flow__table {
	margin-top: 1.5rem;
}

.p-flow__table th {
	font-size: 0.75rem;
	line-height: 1.2;
}

.p-flow__table th:nth-child(1) {
	width: 20%;
}

.p-flow__table td {
	font-size: 0.75rem;
	height: 3.5rem;
	line-height: 1.5;
}

.p-flow__table td:nth-child(1) {
	font-size: 0.75rem;
	width: 20%;
}

.p-flow__btn a {
	font-size: 0.875rem;
	min-width: 12.625rem;
	padding: 0.625rem 1.25rem;
}

.p-flow__btn a span {
	height: 0.875rem;
	width: 0.875rem;
}

.p-footer {
	padding-top: 7rem;
}

.p-footer__snsLink a:hover {
	opacity: 1;
}

.p-footer__link a:hover {
	opacity: 1;
}

.p-header {
	height: 4rem;
}

.p-header__inner {
	padding-left: 1rem;
	padding-left: 0;
	padding-right: 1rem;
}

.p-header__logo {
	max-width: 14.375rem;
}

.p-intro__inner {
	display: block;
	padding: 0 0.625rem;
	padding-top: 6.875rem;
}

.p-intro__title {
	font-size: 1.5rem;
}

.p-intro__text {
	font-size: 1rem;
	margin-top: 1.5rem;
}

.p-intro__link {
	margin-top: 2rem;
	text-align: center;
}

.p-match {
	padding-top: 6.875rem;
}

.p-match__content {
	margin-top: 4rem;
	padding-bottom: 3rem;
	padding-top: 3rem;
}

.p-match__subtitle {
	font-size: 2rem;
}

.p-match__text {
	font-size: 1rem;
	margin-top: 0.75rem;
}

.p-mv__content {
	top: 5rem;
}

.p-mv__logo {
	max-width: 10rem;
}

.p-mv__title {
	font-size: 2rem;
	margin-top: 0;
}

.p-mv__link {
	margin-top: 1.875rem;
}

.p-nav {
	gap: 1rem;
}

.p-nav__link {
	height: 4.5rem;
	width: 4.5rem;
}

.p-nav__link a {
	box-shadow: 0 0.1875rem 0 #71581B;
}

.p-nav__link a img {
	height: 1.5rem;
	width: 1.5rem;
}

.p-nav__text {
	font-size: 0.75rem;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.p-nav__text span {
	font-size: 0.625rem;
}

.p-price {
	padding-top: 7rem;
}

.p-price__box {
	margin-top: 4rem;
	padding: 1.5rem 1rem;
}

.p-price__blocks {
	display: block;
}

.p-price__block:nth-child(2) {
	display: none;
}

.p-price__table {
	margin-top: 1.5rem;
}

.p-price__table th,
.p-price__table td {
	width: auto;
}

.p-price__table th {
	font-size: 0.75rem;
	line-height: 1.2;
}

.p-price__table th:nth-child(1) {
	width: 43%;
}

.p-price__table td {
	font-size: 1rem;
}

.p-price__table td:nth-child(1) {
	font-size: 0.75rem;
	width: 43%;
}

.p-price__btn a {
	font-size: 0.875rem;
	min-width: 14.375rem;
}

.p-price__btn a span {
	height: 0.875rem;
	width: 0.875rem;
}

.p-tabs {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-tab:nth-child(1) {
	border: 2px solid #BF9C46;
	color: #BF9C46;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1.5;
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
}

.p-tab:nth-child(1).is-active {
	background-color: #BF9C46;
	color: #fff;
}

.p-tab:nth-child(2) {
	border: 2px solid #004098;
	color: #004098;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1.5;
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
}

.p-tab:nth-child(2).is-active {
	background-color: #004098;
	color: #fff;
}

.p-priceCard {
	padding: 1.5rem 1rem;
}

.p-priceCard__title {
	font-size: 1rem;
}

.p-priceCard__wrap {
	display: block;
	margin-top: 1.5rem;
}

.p-priceCard__tab {
	font-size: 0.75rem;
	padding: 0.375rem 0.25rem;
}

.p-priceCard__img {
	margin-top: 0.75rem;
}

.p-priceCard__scroll {
	margin-top: 1.5rem;
	max-height: 21.5rem;
}

.p-priceCard__table th:nth-child(1),
.p-priceCard__table td:nth-child(1) {
	width: 43%;
}

.p-priceCard__table th {
	font-size: 0.75rem;
}

.p-priceCard__table td {
	font-size: 1rem;
	height: 4.25rem;
}

.p-priceCard__table td:nth-child(1) {
	align-items: flex-start;
	font-size: 0.75rem;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
	padding-top: 0.75rem;
	width: 100%;
}

.p-priceCard__table td:nth-child(1) small {
	font-size: 0.625rem;
}

.p-priceCard__table td:nth-child(1) span {
	bottom: 0.375rem;
	height: 1rem;
	left: 50%;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	transform: translateX(-50%);
	width: 3.125rem;
}

.p-priceCard__table td:nth-child(1) span:has(img) {
	width: 5.625rem;
}

.p-priceCard__table td:nth-child(1) span:has(img) img {
	height: 100%;
}

.p-priceCard__bottom {
	flex-direction: column;
	gap: 1rem;
	gap: 0.75rem;
}

.p-priceCard__bottom p {
	align-items: flex-start;
	flex-direction: column;
	width: 100%;
}

.p-priceCard__bottom p img {
	width: 5rem;
}

.p-seat {
	padding-top: 7rem;
}

.p-seat__contents {
	margin-top: 4rem;
}

.p-seat__content::before {
	left: 15.3125rem;
	top: -7.25rem;
	transform: rotate(90deg);
	transform-origin: bottom left;
}

.p-seat__content + .p-seat__content {
	margin-top: 4rem;
}

.p-seat__seatTitle {
	font-size: 2rem;
}

.p-seat__tags {
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.p-seat__tag {
	padding: 0.375rem 0.875rem;
}

.p-seat__text {
	margin-top: 2rem;
}

.p-seat__block {
	margin-top: 2rem;
}

.p-seat__bigText {
	font-size: 1rem;
}

.p-seat__bigText strong {
	font-size: 1.5rem;
}

.p-seat__services {
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1rem;
}

.p-seat__service {
	font-size: 0.875rem;
}

.p-seat__service span {
	font-size: 0.75rem;
}

.p-seat__service img {
	width: 2rem;
}

.p-seat__tabs {
	gap: 1rem;
	margin-left: calc(50% - 50vw);
	overflow: scroll;
	padding: 0 2rem;
	white-space: nowrap;
	width: 100vw;
}

.p-seat__tab {
	font-size: 0.75rem;
	padding: 0.5rem;
}

.p-seat__tab:hover {
	opacity: 1;
}

.p-seat__tabs.--2 .p-seat__tab {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.p-seat__cards .slide-arrow {
	height: 2rem;
	width: 2rem;
}

.p-seat__cards .prev-arrow {
	left: -0.625rem;
}

.p-seat__cards .next-arrow {
	right: -0.625rem;
}

.p-seat__cards .slider-dots {
	margin-top: 1rem;
}

.p-seatCard {
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1rem;
}

.p-seatCard__wrap {
	display: contents;
}

.p-seatCard__info {
	order: -2;
}

.p-seatCard__title {
	font-size: 1.25rem;
}

.p-seatCard__infoText {
	font-size: 0.75rem;
}

.p-seatCard__infoText span {
	font-size: 0.625rem;
	padding: 0.125rem 0.9375rem;
}

.p-seatCard__price strong {
	font-size: 1.25rem;
}

.p-seatCard__lead {
	margin-top: 1.5rem;
}

.p-seatCard__bigText {
	font-size: 1rem;
}

.p-seatCard__text {
	font-size: 0.75rem;
	margin-top: 0.75rem;
}

.p-seatCard__tabs {
	grid-gap: 0.9375rem;
	align-items: center;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 1.5rem;
}

.p-seatCard__tab {
	background-color: #fff;
	border: 2px solid #004098;
	color: #004098;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.p-seatCard__tab.is-active {
	background-color: #004098;
	color: #fff;
}

.p-seatCard__wrap2 {
	display: contents;
}

.p-seatCard__seat {
	display: contents;
}

.p-seatCard__seat.is-active .p-seatCard__seatImg {
	height: auto;
	opacity: 1;
	visibility: visible;
}

.p-seatCard__tabs2 {
	height: -moz-fit-content;
	height: fit-content;
	margin-top: 1.5rem;
	order: -1;
}

.p-seatCard__tab2 {
	font-size: 0.75rem;
	padding: 0.375rem 0.25rem;
}

.p-seatCard__tab2:hover {
	opacity: 1;
}

.p-seatCard__seatImg {
	height: 0;
	opacity: 0;
	transition: all 0.3s;
	visibility: hidden;
}

.p-seatCard__seatImg img:nth-child(2) {
	height: auto;
}

.p-seatCard__right {
	height: 0;
	opacity: 0;
	transition: all 0.3s;
	visibility: hidden;
}

.p-seatCard__right.is-active {
	height: auto;
	opacity: 1;
	visibility: visible;
}

.p-seatCard__service {
	display: block;
}

.p-seatCard__serviceTitle {
	font-size: 0.75rem;
	padding: 0.375rem 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-seatCard__lists {
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-top: 0.75rem;
}

.p-seatCard__list:has(p) {
	width: 100%;
}

.p-seatCard__list p {
	font-size: 0.75rem;
}

.p-seatCard__priceList {
	display: block;
}

.p-seatCard__priceList + .p-seatCard__priceList {
	margin-top: 1.25rem;
}

.p-seatCard__priceList span {
	display: block;
	margin-bottom: 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-seatCard__priceList strong {
	font-size: 1.25rem;
}

.p-seatCard__imgText {
	margin-top: 0.75rem;
}

}

@media screen and (hover: hover) and (max-width: 768px) {

.p-nav__link a:hover {
	transform: translateY(0.1875rem);
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes popping-arrow {

0% {
	transform: translateY(0);
}

30% {
	transform: translateY(0.5em);
}

60% {
	transform: translateY(0);
}

}


/*# sourceMappingURL=style.css.map */
