.p-content {
	padding-top: 0;
	padding-bottom: 0;
}

.p-heading-secondary {
	position: relative;
	font-weight: bold;
	font-size: 2.8rem;
	padding-top: 30px;
	line-height: var(--line-height-s);
	margin-bottom: 30px;
}
@media (min-width: 768px), print {
	.p-heading-secondary {
		padding-top: 0;
		padding-left: 90px;
		font-size: 3.4rem;
	}
}
.p-heading-secondary::before {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--color-prim);
	border-radius: 50%;
	top: 0;
	left: 0;
}
@media (min-width: 768px), print {
	.p-heading-secondary::before {
		width: 10px;
		height: 10px;
		top: calc(var(--line-height-s) * 1em / 2);
		transform: translateY(-50%);
	}
}
.p-heading-secondary::after {
	content: "";
	display: block;
	position: absolute;
	width: 40px;
	height: 5px;
	background: var(--color-seco);
	border-radius: 100px;
	left: 12px;
	top: 2px;
}
@media (min-width: 768px), print {
	.p-heading-secondary::after {
		width: 50px;
		height: 6px;
		left: 16px;
		top: calc(var(--line-height-s) * 1em / 2);
		transform: translateY(-50%);
	}
}

.p-button__inner {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 60px;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid var(--color-prim);
	color: var(--color-txt);
	border-radius: 50px;
	cursor: pointer;
	padding-inline: 20px;
}
.p-button__inner > span {
	padding: 8px 0;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: var(--line-height-s);
	color: inherit;
}
.p-button__icon {
	width: 1em;
	height: 1em;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--color-prim);
}
@media (min-width: 768px), print {
	.p-button__inner {
		min-height: 66px;
		padding-inline: 30px;
		transition: background-color 0.2s, color 0.2s;
		gap: 20px;
	}
	.p-button__inner .p-button__icon {
		transition: color 0.2s;
	}
	.p-button__inner:hover {
		color: #fff;
		background-color: var(--color-prim);
	}
	.p-button__inner:hover .p-button__icon {
		color: #fff;
	}
	.p-button__inner > span {
		font-size: 1.8rem;
	}
	.p-button__icon {
		font-size: 2.4rem;
	}
}

.p-cts-kv {
	position: relative;
	height: 400px;
}
@media (min-width: 768px), print {
	.p-cts-kv {
		height: 630px;
	}
}
.p-cts-kv__copy {
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	width: 278px;
	top: 120px;
}
@media (min-width: 768px), print {
	.p-cts-kv__copy {
		width: 860px;
		top: 310px;
	}
}
.p-cts-kv__images {
	height: 100%;
}
.p-cts-kv__images img {
	object-fit: cover;
	height: 100%;
}

.p-cts-nav {
	background: #D7EFFA;
	padding-block: 0 40px;
}
@media (min-width: 768px), print {
	.p-cts-nav {
		padding-block: 50px 90px;
	}
}
@media (max-width: 767px) {
	.p-cts-nav__contentbox {
		margin-inline: -5.3333333333vw;
	}
}
.p-cts-nav__tab {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.p-cts-nav__tab-item a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	background: #4D5357;
	border-top: 4px solid #4D5357;
	font-weight: bold;
	color: #fff;
	height: 100%;
	min-height: 60px;
	padding: 6px 20px 10px;
	line-height: var(--line-height-s);
	transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px), print {
	.p-cts-nav__tab-item a {
		gap: 16px;
		font-size: 2rem;
		min-height: 80px;
	}
}
.p-cts-nav__tab-item a.is-active {
	pointer-events: none;
	background-color: #fff;
}
.p-cts-nav__tab-item--kojin a:hover {
	border-color: var(--color-prim);
	background-color: var(--color-prim);
}
.p-cts-nav__tab-item--kojin a.is-active {
	color: var(--color-prim);
	border-color: var(--color-prim);
}
.p-cts-nav__tab-item--houjin a:hover {
	border-color: var(--color-seco);
	background-color: var(--color-seco);
}
.p-cts-nav__tab-item--houjin a.is-active {
	color: var(--color-seco);
	border-color: var(--color-seco);
}
.p-cts-nav__tab-icon {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	background-color: currentColor;
	-webkit-mask: no-repeat center center/contain;
	mask: no-repeat center center/contain;
}
.p-cts-nav__tab-icon--kojin {
	-webkit-mask-image: url(/saga/assets/images/common/icon_kojin.svg);
	mask-image: url(/saga/assets/images/common/icon_kojin.svg);
}
.p-cts-nav__tab-icon--houjin {
	-webkit-mask-image: url(/saga/assets/images/common/icon_houjin.svg);
	mask-image: url(/saga/assets/images/common/icon_houjin.svg);
}
@media (min-width: 768px), print {
	.p-cts-nav__tab-icon {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
	}
}
.p-cts-nav__panel {
	background: #fff;
	overflow: hidden;
	border-radius: 0 0 20px 20px;
	box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}
.p-cts-nav__buttons {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
	padding: 27px 20px 40px;
}
@media (min-width: 768px), print {
	.p-cts-nav__buttons {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 40px 90px;
	}
}
.p-cts-nav__login-button a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 70px;
	flex-wrap: nowrap;
	position: relative;
	overflow: hidden;
	border: 2px solid;
	color: #fff;
	border-radius: 10px;
	cursor: pointer;
}
@media (min-width: 768px), print {
	.p-cts-nav__login-button a {
		min-height: 100px;
		transition: background-color 0.2s;
	}
	.p-cts-nav__login-button a:hover {
		background-color: #fff;
	}
}
.p-cts-nav__login-button a > span {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: var(--line-height-s);
	color: inherit;
	text-align: center;
}
@media (min-width: 768px), print {
	.p-cts-nav__login-button a > span {
		font-size: 1.3rem;
	}
}
.p-cts-nav__login-button a > span b {
	display: block;
	font-size: 2rem;
}
@media (min-width: 768px), print {
	.p-cts-nav__login-button a > span b {
		font-size: 2.4rem;
	}
}
.p-cts-nav__login-button a::after {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	width: 28px;
	height: 28px;
	mask: url(/saga/assets/images/common/icon_login.svg) no-repeat center center/contain;
	background-color: currentColor;
}
.p-cts-nav__login-button--kojin a {
	background-color: var(--color-prim);
	border-color: var(--color-prim);
}
@media (min-width: 768px), print {
	.p-cts-nav__login-button--kojin a:hover {
		color: var(--color-prim);
	}
}
.p-cts-nav__login-button--houjin a {
	background-color: var(--color-seco);
	border-color: var(--color-seco);
}
@media (min-width: 768px), print {
	.p-cts-nav__login-button--houjin a:hover {
		color: var(--color-seco);
	}
}
.p-cts-nav__login-caution span {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #E6E6E6;
	border-radius: 10px;
	min-height: 70px;
	color: #4D5357;
	font-size: 1.6rem;
	line-height: var(--line-height-s);
}
.p-cts-nav__line-button a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	min-height: 70px;
	flex-wrap: nowrap;
	position: relative;
	overflow: hidden;
	border: 2px solid;
	color: #fff;
	border-radius: 10px;
	cursor: pointer;
	border-color: #03C755;
	color: #03C755;
}
@media (min-width: 768px), print {
	.p-cts-nav__line-button a {
		gap: 16px;
		min-height: 100px;
		transition: background-color 0.2s;
	}
	.p-cts-nav__line-button a:hover {
		background-color: #F4FFF4;
	}
}
.p-cts-nav__line-button a > i {
	width: 44px;
	height: 44px;
	background: url(/saga/assets/images/common/icon_brand_line.png) no-repeat center center/contain;
}
.p-cts-nav__line-button a > span {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: var(--line-height-s);
	color: inherit;
}
@media (min-width: 768px), print {
	.p-cts-nav__line-button a > span {
		font-size: 1.6rem;
	}
}
.p-cts-nav__line-button a > span b {
	display: block;
	font-size: 2rem;
}
@media (min-width: 768px), print {
	.p-cts-nav__line-button a > span b {
		font-size: 2.4rem;
	}
}
.p-cts-nav__menu {
	display: flex;
	flex-wrap: wrap;
}
.p-cts-nav__menu-item {
	border-top: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
}
@media (max-width: 767px) {
	.p-cts-nav__menu-item {
		width: 50%;
	}
	.p-cts-nav__menu-item:nth-child(2n) {
		border-right: none;
	}
}
@media (min-width: 768px), print {
	.p-cts-nav__menu-item {
		width: 33.333%;
	}
	.p-cts-nav__menu-item:nth-child(3n) {
		border-right: none;
	}
	.p-cts-nav__menu-item:nth-child(3n of .p-cts-nav__menu-item--pc-column4) {
		border-right: 1px solid var(--color-border);
	}
}
.p-cts-nav__menu-item a {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 15px 10px 20px;
	gap: 6px;
	color: var(--color-txt);
	font-weight: 500;
	transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 768px), print {
	.p-cts-nav__menu-item a {
		gap: 14px;
		font-size: 1.8rem;
		padding: 30px 10px 40px;
	}
	.p-cts-nav__menu-item a:hover {
		background-color: #F4FBFF;
		color: var(--color-prim);
	}
}
@media (min-width: 768px), print {
	.p-cts-nav__menu-item--pc-column4 {
		width: 25%;
	}
}
@media (max-width: 767px) {
	.p-cts-nav__menu-item--sp-column1 {
		width: 100%;
		border-right: none;
	}
	.p-cts-nav__menu-item--sp-column1 a {
		flex-direction: row;
		justify-content: flex-start;
		gap: 26px;
		padding-inline: 40px;
	}
	.p-cts-nav__menu-item--sp-column1 a .p-cts-nav__menu-icon {
		display: none;
	}
}
.p-cts-nav__menu-image {
	width: 48px;
	height: 48px;
}
@media (min-width: 768px), print {
	.p-cts-nav__menu-image {
		width: 80px;
		height: 80px;
	}
	.p-cts-nav__menu-image--service {
		width: 90px;
	}
}
.p-cts-nav__menu-icon {
	color: var(--color-prim);
	font-size: 1.8rem;
	margin-right: 10px;
	transform: translateY(3px);
}
@media (min-width: 768px), print {
	.p-cts-nav__menu-icon {
		transform: translateY(2px);
	}
}

.p-cts-recommend {
	padding-block: 60px;
}
@media (min-width: 768px), print {
	.p-cts-recommend {
		padding-block: 80px;
	}
}

.p-recommend-swiper__main {
	overflow: hidden;
	position: relative;
}
@media (max-width: 767px) {
	.p-recommend-swiper__main {
		margin-inline: -5.3333333333vw;
	}
}
.p-recommend-swiper__slide {
	overflow: hidden;
}
.p-recommend-swiper__slide a {
	display: block;
}
.p-recommend-swiper__slide a img {
	transition: transform 0.3s;
}
@media (min-width: 768px), print {
	.p-recommend-swiper__slide a:hover img {
		transform: scale(1.1);
	}
}
.p-recommend-swiper--disabled {
	padding-inline: 20px;
}
.p-recommend-swiper--disabled .p-recommend-swiper__controls {
	display: none;
}
@media (min-width: 768px), print {
	.p-recommend-swiper--disabled .swiper-wrapper {
		justify-content: center;
		gap: 30px;
	}
	.p-recommend-swiper--disabled .swiper-slide {
		width: 380px;
	}
}
.p-recommend-swiper__controls {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 30px;
}
@media (min-width: 768px), print {
	.p-recommend-swiper__controls {
		gap: 20px;
	}
}
.p-recommend-swiper__button-prev, .p-recommend-swiper__button-next {
	margin: 0;
}
.p-recommend-swiper__button-prev::after, .p-recommend-swiper__button-next::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(/saga/assets/images/common/icon_arrow_circle_right_black.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
	.p-recommend-swiper__button-prev, .p-recommend-swiper__button-next {
		position: static;
		width: 32px;
		height: 32px;
	}
}
@media (min-width: 768px), print {
	.p-recommend-swiper__button-prev, .p-recommend-swiper__button-next {
		top: -160px;
		width: 40px;
		height: 40px;
		transition: opacity 0.3s;
	}
	.p-recommend-swiper__button-prev:hover, .p-recommend-swiper__button-next:hover {
		opacity: 0.8;
	}
}
.p-recommend-swiper__button-prev::after {
	transform: rotate(180deg);
}
.p-recommend-swiper__button-prev {
	left: -60px;
}
.p-recommend-swiper__button-next {
	right: -60px;
}
.p-recommend-swiper__pagenation {
	display: flex;
	gap: 10px;
}
.p-recommend-swiper__pagenation .swiper-pagination-bullet-active {
	background-color: var(--color-seco);
}
@media (max-width: 767px) {
	.p-recommend-swiper__pagenation {
		display: none;
	}
}
.p-recommend-swiper__play-button {
	width: 80px;
	height: 30px;
	border-radius: 4px;
	border: 1px solid #667480;
	color: #444;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px), print {
	.p-recommend-swiper__play-button {
		width: 20px;
		height: 20px;
		border-radius: 50%;
		transition: opacity 0.3s;
	}
	.p-recommend-swiper__play-button:hover {
		opacity: 0.8;
	}
}
.p-recommend-swiper__play-button::before {
	content: "";
	width: 8px;
	height: 8px;
	background: currentColor;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (min-width: 768px), print {
	.p-recommend-swiper__play-button::before {
		width: 7px;
		height: 7px;
		margin-left: 2px;
	}
}
.p-recommend-swiper__play-button.is-playing {
	gap: 4px;
}
.p-recommend-swiper__play-button.is-playing::before, .p-recommend-swiper__play-button.is-playing::after {
	content: "";
	width: 2px;
	height: 8px;
	margin: 0;
	clip-path: none;
	background: currentColor;
}
@media (min-width: 768px), print {
	.p-recommend-swiper__play-button.is-playing {
		gap: 2px;
	}
	.p-recommend-swiper__play-button.is-playing::before, .p-recommend-swiper__play-button.is-playing::after {
		height: 7px;
		margin-left: 0;
	}
}

.p-cts-lifePlan {
	background: var(--color-seco);
	padding-block: 90px 50px;
}
@media (min-width: 768px), print {
	.p-cts-lifePlan {
		position: relative;
		padding-block: 60px 180px;
		background: transparent;
	}
	.p-cts-lifePlan::before {
		content: "";
		display: block;
		position: absolute;
		background: var(--color-seco);
		height: calc(100% - 140px);
		width: calc(50% + 445px);
		border-radius: 0 20px 20px 0;
		top: 0;
	}
	.p-cts-lifePlan::after {
		content: "";
		display: block;
		position: absolute;
		background: #F2F2F2;
		height: calc(100% - 160px);
		width: calc(50% + 445px);
		border-radius: 20px 0 0 20px;
		bottom: 80px;
		right: 0;
		z-index: -1;
	}
}
@media (min-width: 768px), print {
	.p-cts-lifePlan__inner {
		position: relative;
		display: flex;
		gap: 50px;
	}
}
@media (min-width: 768px), print {
	.p-cts-lifePlan__heading-content {
		width: 330px;
		flex: 0 0 330px;
	}
}
.p-cts-lifePlan__title {
	position: relative;
	line-height: var(--line-height-s);
	color: #fff;
	font-weight: bold;
	font-size: 3.2rem;
}
@media (min-width: 768px), print {
	.p-cts-lifePlan__title {
		margin-top: 80px;
		font-size: 4rem;
	}
}
.p-cts-lifePlan__title::after {
	content: "";
	display: block;
	position: absolute;
	width: 135px;
	height: 66px;
	background: url(/saga/assets/images/top/lifeplan_text.png) no-repeat center center/contain;
	top: -70px;
	transform: rotate(-10deg);
}
@media (min-width: 768px), print {
	.p-cts-lifePlan__title::after {
		width: 180px;
		height: 87px;
		transform: rotate(-15deg);
		top: -100px;
		left: -20px;
	}
}
.p-cts-lifePlan__description {
	margin-top: 10px;
	color: #fff;
	font-size: 1.6rem;
}
@media (min-width: 768px), print {
	.p-cts-lifePlan__description {
		margin-top: 20px;
	}
}

.p-lifePlan-swiper__main {
	overflow: hidden;
	position: relative;
}
@media (max-width: 767px) {
	.p-lifePlan-swiper__main {
		margin-top: 30px;
		margin-inline: -5.3333333333vw;
	}
}
.p-lifePlan-swiper__slide {
	height: 100% !important;
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__slide {
		width: 500px !important;
	}
}
.p-lifePlan-swiper__slide a {
	height: 100%;
	display: block;
	overflow: hidden;
	border-radius: 20px;
	background-color: #fff;
	transition: transform 0.3s, border-color 0.3s;
	border: 3px solid transparent;
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__slide a:hover {
		border-color: var(--color-prim);
	}
	.p-lifePlan-swiper__slide a:hover .p-lifePlan-swiper__title {
		color: var(--color-prim);
	}
}
.p-lifePlan-swiper__slide-text {
	padding: 24px;
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__slide-text {
		padding: 30px 40px 60px;
	}
}
.p-lifePlan-swiper__title {
	font-weight: bold;
	font-size: 2rem;
	color: var(--color-seco);
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__title {
		transition: color 0.3s;
		font-size: 2.4rem;
	}
}
.p-lifePlan-swiper__description {
	margin-top: 15px;
	font-size: 1.4rem;
	color: var(--color-txt);
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__description {
		font-size: 1.6rem;
	}
}
.p-lifePlan-swiper__icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 1em;
	height: 1em;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--color-prim);
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__icon {
		font-size: 2.4rem;
		bottom: 20px;
		right: 20px;
	}
}
.p-lifePlan-swiper--disabled {
	padding-inline: 20px;
}
.p-lifePlan-swiper--disabled .p-lifePlan-swiper__controls {
	display: none;
}
.p-lifePlan-swiper__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 30px;
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__controls {
		position: absolute;
		left: 250px;
		bottom: 80px;
	}
}
.p-lifePlan-swiper__button-prev, .p-lifePlan-swiper__button-next {
	position: static;
	margin: 0;
}
.p-lifePlan-swiper__button-prev::after, .p-lifePlan-swiper__button-next::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(/saga/assets/images/common/icon_arrow_circle_right_white.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
	.p-lifePlan-swiper__button-prev, .p-lifePlan-swiper__button-next {
		width: 32px;
		height: 32px;
	}
}
@media (min-width: 768px), print {
	.p-lifePlan-swiper__button-prev, .p-lifePlan-swiper__button-next {
		width: 40px;
		height: 40px;
		transition: opacity 0.3s;
	}
	.p-lifePlan-swiper__button-prev:hover, .p-lifePlan-swiper__button-next:hover {
		opacity: 0.8;
	}
}
.p-lifePlan-swiper__button-prev::after {
	transform: rotate(180deg);
}

.p-cts-about {
	padding-block: 70px 110px;
	height: 550px;
	background: url(/saga/assets/images/top/about_bg.jpg) no-repeat center center/cover;
}
@media (min-width: 768px), print {
	.p-cts-about {
		padding-block: unset;
		height: 600px;
	}
}
.p-cts-about__inner {
	display: flex;
	height: 100%;
	align-items: center;
}
@media (max-width: 767px) {
	.p-cts-about__inner {
		padding-inline: 0;
	}
}
.p-cts-about__content {
	max-width: 335px;
	padding: 60px 40px 60px 20px;
	border-radius: 0 20px 20px 0;
	background-color: rgba(236, 243, 244, 0.8);
}
@media (min-width: 768px), print {
	.p-cts-about__content {
		max-width: unset;
		border-radius: 20px;
		padding: 80px 100px 100px;
	}
}
.p-cts-about__description {
	font-size: 1.6rem;
}
@media (min-width: 768px), print {
	.p-cts-about__description {
		font-size: 1.8rem;
	}
}
.p-cts-about__button {
	margin-top: 20px;
}
@media (min-width: 768px), print {
	.p-cts-about__button {
		margin-top: 40px;
	}
}

.p-cts-news {
	padding-block: 60px;
}
@media (min-width: 768px), print {
	.p-cts-news {
		padding-block: 80px;
	}
}

.p-cts-bnr {
	background: #F2F2F2;
	padding-block: 40px 50px;
}
@media (min-width: 768px), print {
	.p-cts-bnr {
		padding-block: 40px;
	}
}

.p-bnr-swiper__main {
	overflow: hidden;
	position: relative;
}
@media (max-width: 767px) {
	.p-bnr-swiper__main {
		margin-inline: -5.3333333333vw;
	}
}
.p-bnr-swiper__slide {
	overflow: hidden;
}
.p-bnr-swiper__slide a {
	display: block;
}
.p-bnr-swiper__slide a img {
	transition: transform 0.3s;
}
@media (min-width: 768px), print {
	.p-bnr-swiper__slide a:hover img {
		transform: scale(1.1);
	}
}
.p-bnr-swiper--disabled {
	padding-inline: 20px;
}
.p-bnr-swiper--disabled .p-bnr-swiper__controls {
	display: none;
}
@media (min-width: 768px), print {
	.p-bnr-swiper--disabled .swiper-wrapper {
		justify-content: center;
		gap: 30px;
	}
	.p-bnr-swiper--disabled .swiper-slide {
		width: 380px;
	}
}
.p-bnr-swiper__controls {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 30px;
}
@media (min-width: 768px), print {
	.p-bnr-swiper__controls {
		gap: 20px;
	}
}
.p-bnr-swiper__button-prev, .p-bnr-swiper__button-next {
	margin: 0;
}
.p-bnr-swiper__button-prev::after, .p-bnr-swiper__button-next::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(/saga/assets/images/common/icon_arrow_circle_right_black.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
	.p-bnr-swiper__button-prev, .p-bnr-swiper__button-next {
		position: static;
		width: 32px;
		height: 32px;
	}
}
@media (min-width: 768px), print {
	.p-bnr-swiper__button-prev, .p-bnr-swiper__button-next {
		top: -86px;
		width: 40px;
		height: 40px;
		transition: opacity 0.3s;
	}
	.p-bnr-swiper__button-prev:hover, .p-bnr-swiper__button-next:hover {
		opacity: 0.8;
	}
}
.p-bnr-swiper__button-prev::after {
	transform: rotate(180deg);
}
.p-bnr-swiper__button-prev {
	left: -60px;
}
.p-bnr-swiper__button-next {
	right: -60px;
}
.p-bnr-swiper__pagenation {
	display: flex;
	gap: 10px;
}
.p-bnr-swiper__pagenation .swiper-pagination-bullet-active {
	background-color: var(--color-seco);
}
@media (max-width: 767px) {
	.p-bnr-swiper__pagenation {
		display: none;
	}
}
.p-bnr-swiper__play-button {
	width: 80px;
	height: 30px;
	border-radius: 4px;
	border: 1px solid #667480;
	color: #444;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px), print {
	.p-bnr-swiper__play-button {
		width: 20px;
		height: 20px;
		border-radius: 50%;
		transition: opacity 0.3s;
	}
	.p-bnr-swiper__play-button:hover {
		opacity: 0.8;
	}
}
.p-bnr-swiper__play-button::before {
	content: "";
	width: 8px;
	height: 8px;
	background: currentColor;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (min-width: 768px), print {
	.p-bnr-swiper__play-button::before {
		width: 7px;
		height: 7px;
		margin-left: 2px;
	}
}
.p-bnr-swiper__play-button.is-playing {
	gap: 4px;
}
.p-bnr-swiper__play-button.is-playing::before, .p-bnr-swiper__play-button.is-playing::after {
	content: "";
	width: 2px;
	height: 8px;
	margin: 0;
	clip-path: none;
	background: currentColor;
}
@media (min-width: 768px), print {
	.p-bnr-swiper__play-button.is-playing {
		gap: 2px;
	}
	.p-bnr-swiper__play-button.is-playing::before, .p-bnr-swiper__play-button.is-playing::after {
		height: 7px;
		margin-left: 0;
	}
}
/*# sourceMappingURL=top.css.map */
