@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400,700&display=swap");
/* font family */
:root,
::before, ::after {
	/* color */
	--color-theme: #0074C0;
	--color-border: #DDDDDD;
	--color-bg: #E0F1FA;
	--color-warning: #CC0000;
	--color-text: #222222;
}

/* メインコンテンツ */
.l-section {
	max-width: 1320px;
	margin-inline: auto;
	padding-inline: 20px;
}
@media (min-width: 768px) {
	.l-section {
		width: 1320px;
		padding-inline: 60px;
	}
}

/* ユーティリティ */
br.u-pcbr {
	display: none;
}
@media (min-width: 768px) {
	br.u-pcbr {
		display: inline;
	}
	.u-sp-v {
		display: none !important;
	}
}

@media (min-width: 768px) {
	br.u-spbr {
		display: none;
	}
}

.u-text-bold {
	font-weight: bold;
}

.u-text-warning {
	color: var(--color-warning);
}

.pc-img {
  display: block;
}
.sp-img {
  display: none;
}

/* 画面幅が768px以下（スマホなど）の場合、画像を切り替え */
@media screen and (max-width: 768px) {
  .pc-img {
    display: none;
  }
  .sp-img {
    display: block;
  }
}

/* コンポーネント */
.c-icontext {
	display: inline-block;
	padding-left: 1.5em;
	background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat left 0.3em/1em;
}
.c-icontext > a {
	text-decoration: none;
	color: var(--color-text);
}
@media (hover: hover) {
	.c-icontext > a {
		transition: color 0.2s;
	}
	.c-icontext > a:hover {
		text-decoration: underline;
		color: var(--color-theme);
	}
}

.c-iconcard__inner {
	display: grid;
	place-items: center;
	gap: 6px;
	height: 100%;
	padding: 10px;
	border: 2px solid var(--color-border);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	text-align: center;
}
.c-iconcard__image {
	width: 100%;
	height: 50px;
	position: relative;
	overflow: hidden;
}
.c-iconcard__image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
	object-position: center;
}
.c-iconcard__caption {
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: bold;
}
.c-iconcard__caption > span {
	font-size: 0.8em;
}
.c-iconcard--small .c-iconcard__inner {
	padding: 10px 6px;
	border-width: 1px;
}
@media (min-width: 768px) {
	.c-iconcard__image {
		height: 76px;
	}
	.c-iconcard__caption {
		font-size: 1.8rem;
	}
	.c-iconcard--small .c-iconcard__inner {
		border-width: 1px;
	}
	.c-iconcard--small .c-iconcard__image {
		height: 50px;
	}
	.c-iconcard--small .c-iconcard__caption {
		font-size: 1.4rem;
	}
}
@media (hover: hover) {
	.c-iconcard__caption {
		transition: color 0.2s;
	}
	.c-iconcard__inner {
		transition: border-color 0.2s;
	}
	.c-iconcard__inner:hover {
		border-color: var(--color-theme);
	}
}

.c-card-n__inner {
	display: block;
	height: 100%;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	text-decoration: none;
	color: var(--color-text);
}
.c-card-n__image {
	width: 100%;
	height: 0;
	padding-bottom: 37.5%;
	position: relative;
	overflow: hidden;
}
.c-card-n__image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.c-card-n__content {
	min-height: 58px;
	padding: 10px 32px 10px 10px;
	display: grid;
	place-items: center start;
	background: url("/assets/images/icons/chev-cir-right.svg") no-repeat right 12px center/1em;
}
.c-card-n__text {
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.c-card-n__content {
		padding: 10px 40px 10px 20px;
	}
	.c-card-n__text {
		font-size: 1.6rem;
	}
}
@media (hover: hover) {
	.c-card-n__inner {
		transition: border-color 0.2s;
		cursor: pointer;
	}
	.c-card-n__text {
		transition: color 0.2s;
	}
	.c-card-n__image img {
		transition: scale 0.4s;
	}
	.c-card-n__inner:hover {
		border-color: var(--color-theme);
	}
	.c-card-n__inner:hover .c-card-n__text {
		color: var(--color-theme);
	}
	.c-card-n__inner:hover .c-card-n__image img {
		scale: 1.1;
	}
}

.c-imagelink__inner {
	display: block;
	height: 100%;
	cursor: pointer;
}
.c-imagelink__image {
	margin-bottom: 18px;
	width: 100%;
	height: 0;
	border-radius: 15px;
	padding-bottom: 50%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.c-imagelink__image > img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.c-imagelink__content {
	padding-inline: 10px;
}
.c-imagelink__title {
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.4;
	padding-right: 26px;
	background: url("/assets/images/icons/chev-cir-right.svg") no-repeat right 0.2em/1em;
}
.c-imagelink__text {
	margin-top: 16px;
	font-size: 1.4rem;
	color: var(--color-txt);
}
@media (min-width: 768px) {
	.c-imagelink__title {
		font-size: 2rem;
	}
	.c-imagelink__text {
		font-size: 1.6rem;
	}
}
@media (hover: hover) {
	.c-imagelink__inner {
		cursor: pointer;
	}
	.c-imagelink__inner .c-imagelink__title {
		transition: color 0.2s;
	}
	.c-imagelink__inner:hover .c-imagelink__image > img {
		scale: 1.05;
	}
	.c-imagelink__inner:hover .c-imagelink__title {
		color: var(--color-theme);
	}
}

.c-button-n > a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 52px;
	border: 1px solid var(--color-theme);
	border-radius: 100px;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.2;
	color: var(--color-theme);
}
.c-button-n > a > span {
	padding: 12px 24px;
	color: inherit;
}
.c-button-n > a::after {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: calc(50% - 7px);
	right: 16px;
	background-color: var(--color-theme);
	-webkit-mask: url("/assets/images/icons/chev-right.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/chev-right.svg") no-repeat center/contain;
}
@media (min-width: 768px) {
	.c-button-n > a {
		min-height: 64px;
		font-size: 1.8rem;
	}
}
@media (hover: hover) {
	.c-button-n > a {
		cursor: pointer;
		transition: background-color 0.2s, color 0.2s;
	}
	.c-button-n > a:hover {
		background-color: var(--color-theme);
		color: #fff;
	}
	.c-button-n > a:hover::after {
		background-color: #fff;
	}
}

.c-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px 20px;
}
@media (min-width: 768px) {
	.c-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
	}
}

.c-important {
	margin-bottom: 8px;
	padding: 16px 20px;
	border: 1px solid #fff;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	background-color: #fff;
}
.c-important dl dt {
	display: grid;
	place-items: center start;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border);
	font-weight: bold;
	line-height: 1.4;
}
.c-important dl dt > span {
	display: inline-block;
	padding-left: 1.8em;
	position: relative;
}
.c-important dl dt > span::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 0;
	top: calc(50% - 0.5em);
	background: url("/assets/images/icons/warning.svg") no-repeat center/contain;
}
.c-important dl dd {
	margin-top: 12px;
}
.c-important__list > li {
	line-height: 1.4;
}
.c-important__list > li + li {
	margin-top: 8px;
}
.c-important__list > li > a {
	display: inline-block;
	padding-left: 1.5em;
	position: relative;
}
.c-important__list > li > a::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 0;
	top: 0.3em;
	background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat center/contain;
}
.c-important__list > li > span {
	display: inline-block;
	padding-left: 1.4em;
	position: relative;
}
.c-important__list > li > span::before {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	position: absolute;
	left: 0.4em;
	top: 0.6em;
	background-color: var(--color-text);
}
.c-important__link {
	position: absolute;
	top: 14px;
	right: 20px;
}
.c-important__link > a {
	display: inline-block;
	padding-right: 1.5em;
	background: url("/assets/images/icons/chev-cir-right.svg") no-repeat right 0.35em/1em;
	font-weight: bold;
	color: var(--color-theme);
}
.c-important--emergency {
	border-color: #F2BEBE;
	background-color: #FAE1E1;
}
.c-important--emergency dl dt {
	place-items: center;
	border-color: #F2BEBE;
	color: var(--color-warning);
}
.c-important--emergency dl dt > span::before {
	background: var(--color-warning);
	-webkit-mask: url("/assets/images/icons/warning.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/warning.svg") no-repeat center/contain;
}
.c-important--emergency .c-important__list > li > a,
.c-important--emergency .c-important__list > li > span {
	color: var(--color-warning);
	font-weight: bold;
}
.c-important--emergency .c-important__list > li > a::before,
.c-important--emergency .c-important__list > li > span::before {
	background: var(--color-warning);
}
.c-important--emergency .c-important__list > li > a::before {
	-webkit-mask: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat center/contain;
}
.c-important--up dl dt > span::before {
	background: var(--color-warning);
	-webkit-mask: url("/assets/images/icons/warning.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/warning.svg") no-repeat center/contain;
}
@media (min-width: 768px) {
	.c-important {
		padding: 14px 16px 14px 20px;
	}
	.c-important dl {
		display: flex;
		justify-content: space-between;
	}
	.c-important dl dt {
		flex: 0 0 180px;
		padding-bottom: 0;
		border-bottom: none;
		border-right: 1px solid var(--color-border);
	}
	.c-important dl dd {
		margin-top: 0 !important;
		flex: 1 1 auto;
		padding-left: 20px;
	}
	.c-important__list {
		padding-right: 120px !important;
	}
	.c-important__list > li {
		font-size: 1.5rem;
	}
	.c-important__list > li > a {
		cursor: pointer;
	}
	.c-important__list > li > a:hover {
		text-decoration: underline;
	}
	.c-important__list > li + li {
		margin-top: 10px;
	}
	.c-important__link {
		top: 50%;
		right: 16px;
		translate: 0 -50%;
	}
	.c-important__link > a {
		padding: 8px 16px;
		border: 1px solid var(--color-border);
		border-radius: 50px;
		background: #fff;
		line-height: 1.2;
		transition: border-color 0.2s;
	}
	.c-important__link > a:hover {
		border-color: var(--color-theme);
	}
	.c-important--emergency dl dt {
		place-items: center start;
		border-color: #F2BEBE;
	}
	.c-important--emergency .c-important__list > li {
		font-size: 1.6rem;
	}
}
.c-important.is-empty {
	display: none;
}

.p-slide .slide_arrow_prev,
.p-slide .slide_arrow_next,
.top-splide-prev,
.top-splide-next {
	display: grid;
	place-items: center;
	width: 48px !important;
	height: 48px !important;
	border-radius: 50%;
	background: #66747F;
}
.p-slide .slide_arrow_prev::before,
.p-slide .slide_arrow_next::before,
.top-splide-prev::before,
.top-splide-next::before {
	content: "" !important;
	display: block !important;
	width: 16px;
	height: 16px;
	background-color: #fff;
}
@media (hover: hover) {
	.p-slide .slide_arrow_prev,
	.p-slide .slide_arrow_next,
	.top-splide-prev,
	.top-splide-next {
		cursor: pointer;
		transition: background-color 0.2s;
	}
	.p-slide .slide_arrow_prev:hover,
	.p-slide .slide_arrow_next:hover,
	.top-splide-prev:hover,
	.top-splide-next:hover {
		background-color: var(--color-theme);
	}
	.p-slide .slide_arrow_prev:hover::before,
	.p-slide .slide_arrow_next:hover::before,
	.top-splide-prev:hover::before,
	.top-splide-next:hover::before {
		background-color: #fff;
	}
}

.p-slide .slide_arrow_prev::before,
.top-splide-prev::before {
	-webkit-mask: url("/assets/images/icons/chev-left.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/chev-left.svg") no-repeat center/contain;
}

.p-slide .slide_arrow_next::before,
.top-splide-next::before {
	-webkit-mask: url("/assets/images/icons/chev-right.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/chev-right.svg") no-repeat center/contain;
}

.p-slide .slide_pause,
.top-splide-toggle {
	place-items: center;
	width: 28px;
	height: 28px;
}
.p-slide .slide_pause .splide__toggle__play,
.p-slide .slide_pause .splide__toggle__pause,
.top-splide-toggle .splide__toggle__play,
.top-splide-toggle .splide__toggle__pause {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.p-slide .slide_pause .splide__toggle__play,
.top-splide-toggle .splide__toggle__play {
	background-image: url("/assets/images/icons/play.svg");
}
.p-slide .slide_pause .splide__toggle__pause,
.top-splide-toggle .splide__toggle__pause {
	background-image: url("/assets/images/icons/pause.svg");
}
@media (hover: hover) {
	.p-slide .slide_pause,
	.top-splide-toggle {
		cursor: pointer;
		transition: opacity 0.2s;
	}
	.p-slide .slide_pause:hover,
	.top-splide-toggle:hover {
		opacity: 0.5;
	}
}

.p-slide .slide_pagenation,
.top-splide-pagination {
	display: none;
}
@media (min-width: 768px) {
	.p-slide .slide_pagenation,
	.top-splide-pagination {
		display: block;
		display: flex;
		justify-content: center;
		gap: 0 12px;
	}
	.p-slide .slide_pagenation .slide_pagenation_page,
	.p-slide .slide_pagenation .splide__pagination__page,
	.top-splide-pagination .slide_pagenation_page,
	.top-splide-pagination .splide__pagination__page {
		width: 12px !important;
		height: 12px !important;
		margin: 0;
		border-radius: 12px !important;
		border: 0 !important;
		background-color: #ddd !important;
		transition: background-color 0.2s;
		cursor: pointer;
	}
	.p-slide .slide_pagenation .slide_pagenation_page.is-active,
	.p-slide .slide_pagenation .splide__pagination__page.is-active,
	.top-splide-pagination .slide_pagenation_page.is-active,
	.top-splide-pagination .splide__pagination__page.is-active {
		background-color: var(--color-theme) !important;
	}
}

.p-slide .area-slide {
	gap: 30px 20px;
}
.p-slide .slide_pause {
	margin-top: 0;
}
.p-slide .slide_arrow_prev {
	margin: 0;
	bottom: -10px;
	left: 20px;
	right: auto;
}
.p-slide .slide_arrow_next {
	margin: 0;
	bottom: -10px;
	left: auto;
	right: 20px;
}
@media (max-width: 767px) {
	.p-slide .splide__list .splide__slide {
		padding: 0 20px;
	}
}
@media (min-width: 768px) {
	.p-slide .area-slide {
		width: 1200px;
		overflow: visible;
	}
	.p-slide .slide_arrow_prev {
		bottom: auto;
		left: -50px;
	}
	.p-slide .slide_arrow_next {
		bottom: auto;
		right: -50px;
	}
}

/*----------
	top
----------*/
.l-maincts {
	padding-top: 0;
	font-size: 1.4rem;
}
@media (min-width: 768px) {
	.l-maincts {
		font-size: 1.6rem;
	}
}

/* KV枠 */
.top-kv {
	padding-top: 120px;
	padding-bottom: 70px;
	background-color: var(--color-bg);
	position: relative;
	overflow: hidden;
}
.top-kv__important {
	max-width: 1320px;
	margin-inline: auto;
	padding-inline: 10px;
}
@media (min-width: 768px) {
	.top-kv {
		padding-top: 180px;
		padding-bottom: 80px;
	}
	.top-kv__important {
		width: 1320px;
		padding-inline: 60px;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.top-kv {
		padding-top: 120px;
	}
}
/* 重要なお知らせエリア */
.p-notice_top {
	background-color: transparent;
}
.p-notice_top .inner_notice {
	padding: 0;
}

.top-kv__scrollable .splide {
	visibility: visible;
}
.top-kv__scrollable .splide__arrow {
	display: none;
}
.top-kv__scrollable .splide__list {
	display: block;
}
.top-kv__scrollable .splide__toggle {
	display: none;
}
.top-kv__scrollable .splide.is-initialized .c-important__list > li > a:hover .text {
	text-decoration: underline;
}
.top-kv__scrollable .splide.is-initialized .c-important__list > li + li {
	margin-top: 0;
	padding-block: 4px;
}
.top-kv__scrollable .splide.is-initialized .splide__arrow {
	display: block;
	position: absolute;
	top: calc(50% - 26px);
	right: 0;
	width: 16px;
	height: 16px;
	background-color: #B8C3CC;
	-webkit-mask: url("/assets/images/icons/chev-up.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/chev-up.svg") no-repeat center/contain;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.2s;
}
.top-kv__scrollable .splide.is-initialized .splide__arrow--next {
	top: calc(50% + 10px);
	mask-image: url("/assets/images/icons/chev-down.svg");
	-webkit-mask-image: url("/assets/images/icons/chev-down.svg");
}
.top-kv__scrollable .splide.is-initialized .splide__arrow:hover {
	background-color: var(--color-theme);
}
.top-kv__scrollable .splide.is-initialized .marquee {
	overflow: auto;
	position: relative;
	display: flex;
	align-items: center;
	width: calc(100% - 32px);
	height: 24px;
	line-height: 1.2;
	padding-left: 0;
	scrollbar-width: none;
}
.top-kv__scrollable .splide.is-initialized .marquee::-webkit-scrollbar {
	display: none;
}
.top-kv__scrollable .splide.is-initialized .marquee::before {
	position: sticky;
	left: 0;
	top: calc(50% - 0.75em);
	z-index: 1;
	width: 1.5em;
	height: 1.5em;
	background-color: #fff;
	background-position: left center;
	background-size: 1em;
}
.top-kv__scrollable .splide.is-initialized .marquee .text {
	position: absolute;
	top: 4px;
	left: 0;
	display: block;
	width: auto;
	margin: 0;
	padding-left: 1.5em;
	white-space: nowrap;
}
.top-kv__scrollable .splide.is-initialized .marquee_label {
	position: relative;
	height: 24px;
}
.top-kv__scrollable .splide.is-initialized span.marquee::before {
	display: none;
}
.top-kv__scrollable .splide.is-initialized .splide__track {
	height: 52px;
}
@media (min-width: 768px) {
	.top-kv__scrollable .splide.is-initialized .splide__arrow {
		right: 80px;
	}
}

/* TOP汎用 */
.top-wrapper-w,
.top-wrapper-b {
	margin-top: -40px;
	padding-top: 30px;
	padding-bottom: 100px;
	border-radius: 20px 20px 0 0;
	position: relative;
	overflow: hidden;
	background-color: #fff;
}
@media (min-width: 768px) {
	.top-wrapper-w,
	.top-wrapper-b {
		margin-top: -60px;
		padding-top: 70px;
		padding-bottom: 180px;
		border-radius: 40px 40px 0 0;
	}
}

.top-wrapper-b {
	background-color: #E0F2FA;
}

.top-subtitle {
	padding-bottom: 20px;
	position: relative;
	font-weight: bold;
}
.top-subtitle::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	border-left: 20px solid #FFE100;
	border-right: 20px solid #0074C0;
	position: absolute;
	left: 0;
	bottom: 0;
}
.top-subtitle__main {
	position: relative;
	z-index: 1;
	font-size: 2rem;
	line-height: 1.4;
}
.top-subtitle__sub {
	position: absolute;
	left: 0;
	bottom: -10px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	font-size: 5rem;
	line-height: 1;
	color: #ECF3FA;
}
@media (min-width: 768px) {
	.top-subtitle {
		padding-bottom: 28px;
	}
	.top-subtitle__main {
		font-size: 3.2rem;
	}
	.top-subtitle__sub {
		bottom: -15px;
		font-size: 8rem;
	}
}

.top-wrapper-b .top-subtitle__sub {
	color: #fff;
}

/* KVスライド */
.top-kv__lower {
	max-width: 1320px;
	margin-top: 20px;
	margin-inline: auto;
	padding-inline: 10px;
}
@media (min-width: 768px) {
	.top-kv__lower {
		min-height: 700px;
		width: 1320px;
		padding-inline: 60px;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.top-kv__slide {
	position: relative;
}
.top-kv__slide .splide__track {
	overflow: visible;
	padding-bottom: 60px;
}
.top-kv__slide .top-splide-prev,
.top-kv__slide .top-splide-next {
	position: absolute;
	bottom: 0;
}
.top-kv__slide .top-splide-prev {
	left: 0;
}
.top-kv__slide .top-splide-next {
	right: 0;
}
.top-kv__slide__ctl {
	position: absolute;
	bottom: 5px;
	left: calc(50% - 14px);
	z-index: 1;
}
.top-kv__slide__item > a {
	display: block;
}
.top-kv__slide__item > a figure {
	border-radius: 10px;
	overflow: hidden;
}
.top-kv__slide__caption {
	margin-top: 1px;
	padding: 20px;
	position: relative;
}
.top-kv__slide__caption > * {
	position: relative;
}
.top-kv__slide__caption::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fff;
	pointer-events: none;
}
.top-kv__slide__caption-title {
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.4;
}
.top-kv__slide__caption-text {
	margin-top: 14px;
}
@media (min-width: 768px) {
	.top-kv__slide {
		flex: 0 0 780px;
	}
	.top-kv__slide .splide__track {
		padding-bottom: 0;
	}
	.top-kv__slide .top-splide-prev,
	.top-kv__slide .top-splide-next {
		bottom: -125px;
		left: 0;
	}
	.top-kv__slide .top-splide-next {
		left: 70px;
	}
	.top-kv__slide__ctl {
		display: flex;
		justify-content: center;
		gap: 16px;
		width: auto;
		height: auto;
		position: absolute;
		bottom: -116px;
		left: 150px;
	}
	.top-kv__slide__item > a figure {
		border-radius: 20px;
	}
	.top-kv__slide__caption {
		position: absolute;
		bottom: -58px;
		left: -50px;
		margin-top: 0;
		padding: 32px 40px 32px 0;
	}
	.top-kv__slide__caption::before {
		width: 100vw;
		border-radius: 20px;
		background-color: rgba(255, 255, 255, 0.9);
	}
	.top-kv__slide__caption-title {
		font-size: 3.8rem;
	}
	.top-kv__slide__caption-text {
		margin-top: 18px;
		font-size: 1.8rem;
	}
}
@media (hover: hover) {
	.top-kv__slide__item > a figure img {
		transition: scale 0.4s;
	}
	.top-kv__slide__item > a:hover figure img {
		scale: 1.05;
	}
	.top-kv__slide__item > a:hover .top-kv__slide__caption .c-icontext {
		text-decoration: underline;
	}
}

.top-kv__login {
	margin-top: 36px;
	margin-inline: -10px;
	padding: 25px 20px;
	border-radius: 20px;
	background-color: #fff;
}
.top-kv__login__button > a {
	display: grid;
	place-items: center;
	padding: 14px;
	border-radius: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 1.5rem;
	color: #fff;
}
.top-kv__login__button > a strong {
	display: block;
	font-size: 1.8rem;
}
.top-kv__login__button--kojin > a {
	background-color: #006CB6;
	border: 1px solid var(--color-theme);
}
.top-kv__login__button--apply {
	margin-top: 23px;
}
.top-kv__login__button--apply > a {
	background-color: #FFE100;
	color: var(--color-text);
}
.top-kv__login__button--hojin > a {
	background-color: #003491;
	border: 1px solid #003491;
}
.top-kv__login__textlink {
	margin-top: 25px;
	text-align: center;
	font-size: 1.4rem;
}
.top-kv__login__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 25px;
}
.top-kv__login__links .c-iconcard--small .c-iconcard__inner {
	padding-inline: 2px;
}
.top-kv__login__links .c-iconcard--small .c-iconcard__caption {
	font-size: 1.6rem;
}
.top-kv__login__links .c-iconcard--small .c-iconcard__caption > span {
	font-size: 0.75em;
}
@media (min-width: 768px) {
	.top-kv__login {
		margin-top: 0;
		margin-inline: 0;
		flex: 0 0 400px;
	}
	.top-kv__login .top-kv__login-hojin {
		margin-top: 30px;
	}
}
@media (hover: hover) {
	.top-kv__login__button > a {
		cursor: pointer;
		transition: background-color 0.2s, color 0.2s;
	}
	.top-kv__login__button--kojin > a:hover {
		background-color: #fff;
		color: var(--color-theme);
	}
	.top-kv__login__button--hojin > a:hover {
		background-color: #fff;
		color: #003491;
	}
	.top-kv__login__button--apply > a {
		transition: opacity 0.2s;
	}
	.top-kv__login__button--apply > a:hover {
		opacity: 0.6;
	}
}

@media (max-width: 767px) {
	.page-home .top-kv__login-hojin {
		display: none;
	}
}

.top-kv__login-kojin + .top-kv__login-hojin {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
}

/* 商品・サービス */
.top-service-subtitle::after {
	content: none;
}
.top-service-subtitle .top-subtitle__main {
	padding-left: 1.8em;
	font-size: 1.8rem;
	position: relative;
}
.top-service-subtitle .top-subtitle__main::before {
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	top: 0;
	left: 0;
	background: url("/assets/images/home_2026/service-subtitle-bg.svg") no-repeat center/contain;
}
@media (min-width: 768px) {
	.top-service-subtitle .top-subtitle__main {
		font-size: 2.6rem;
	}
}

.top-service-list {
	margin-top: 30px;
}
.top-service-list > li {
	min-height: 115px;
}
@media (min-width: 768px) {
	.top-service-list > li {
		min-height: 166px;
	}
}

/* キャンペーン */
.top-campaign-slider {
	height: auto !important;
}
.top-campaign-slider .area-slide {
	position: relative;
}
@media (min-width: 768px) {
	.top-campaign-slider .slide_arrow_prev,
	.top-campaign-slider .slide_arrow_next {
		top: 110px;
	}
}

.top-campaign-button {
	width: 80%;
	max-width: 400px;
	margin-top: 50px;
	margin-inline: auto;
}
.top-campaign-button > a {
	border: 1px solid var(--color-theme);
	background-color: var(--color-theme);
	color: #fff;
}
.top-campaign-button > a::after {
	background-color: #fff;
}
@media (hover: hover) {
	.top-campaign-button > a:hover {
		color: var(--color-theme);
		background-color: #fff;
	}
	.top-campaign-button > a:hover::after {
		background-color: var(--color-theme);
	}
}

/* ライフイベント */
@media (min-width: 768px) {
	.top-lifeevents {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 0 75px;
	}
}
.top-lifeevents__list > li {
	padding: 18px 10px 18px 0;
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
	.top-lifeevents__list {
		flex: 1 1 auto;
		margin-top: 40px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 30px;
	}
}

.top-lifeevents__slide .p-slide .area-slide {
	width: 100%;
	overflow: visible;
}
.top-lifeevents__slide .p-slide .no_splide .splide__track {
	padding: 0;
	padding-inline: 20px;
}
.top-lifeevents__slide .p-slide .no_splide .splide__slide {
	padding: 0;
	width: 100%;
}
.top-lifeevents__slide .p-slide .no_splide .splide__toggle {
	display: none;
}
.top-lifeevents__slide .p-slide .no_splide .splide__arrows {
	display: none;
}
@media (min-width: 768px) {
	.top-lifeevents__slide {
		width: 580px;
		flex: 0 0 580px;
	}
	.top-lifeevents__slide .p-slide {
		height: auto;
	}
	.top-lifeevents__slide .p-slide .area-slide {
		position: relative;
	}
	.top-lifeevents__slide .p-slide .slide_arrow_prev {
		left: -10px;
	}
	.top-lifeevents__slide .p-slide .slide_arrow_next {
		right: -10px;
	}
	.top-lifeevents__slide .p-slide .no_splide .splide__track {
		padding: 0;
	}
}

.top-lifeevents__item {
	display: block;
	position: relative;
}
.top-lifeevents__item__image {
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.top-lifeevents__item__detail {
	width: calc(100% - 20px);
	padding: 10px 48px 10px 20px;
	border-radius: 10px;
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: #fff url("/assets/images/icons/chev-cir-right.svg") no-repeat right 20px center/1em;
}
.top-lifeevents__item__title {
	font-size: 1.6rem;
	font-weight: bold;
}
@media (min-width: 768px) {
	.top-lifeevents__item__title {
		font-size: 1.8rem;
	}
}
@media (hover: hover) {
	.top-lifeevents__item {
		cursor: pointer;
	}
	.top-lifeevents__item .top-lifeevents__item__title {
		transition: color 0.2s;
	}
	.top-lifeevents__item .top-lifeevents__item__image img {
		transition: scale 0.2s;
	}
	.top-lifeevents__item:hover .top-lifeevents__item__image img {
		scale: 1.05;
	}
	.top-lifeevents__item:hover .top-lifeevents__item__title {
		color: var(--color-theme);
	}
}

/* 最新情報 */
@media (min-width: 768px) {
	.top-news {
		display: grid;
		grid-template-columns: 240px 1fr;
		gap: 50px 60px;
		position: relative;
	}
	.top-news .top-subtitle {
		position: absolute;
		top: 0;
		left: 60px;
		width: 300px;
	}
	.top-news .top-news-tabwrap {
		grid-column: 2/3;
		grid-row: 1/2;
	}
	.top-news .top-news-link {
		grid-column: 1/2;
		grid-row: 1/2;
	}
	.top-news .top-news-important {
		grid-column: 1/3;
		grid-row: 2/3;
	}
}

.top-news-tabwrap {
	margin-top: 48px;
}
@media (min-width: 768px) {
	.top-news-tabwrap {
		margin-top: 0;
	}
}

.top-news-tab > ul {
	justify-content: flex-start;
}
.top-news-tab > ul > li {
	width: auto;
	max-width: none;
	flex: 1 1 auto;
}
.top-news-tab > ul > li::before {
	content: none !important;
}
.top-news-tab > ul > li > p {
	height: 48px;
	border-radius: 10px 10px 0 0;
}
.top-news-tab > ul > li > p > span {
	text-align: center;
}
.top-news-tab > ul > li.active > p {
	background-color: #E1F1FA;
}
.top-news-tab > ul > li.active > p > span {
	color: var(--color-text);
}

.top-news .p-news_list > li > a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 16px;
	padding: 20px 0;
}
.top-news .p-news_list > li .p-news_date {
	flex: 0 0 auto;
	margin: 0;
	font-weight: bold;
	font-size: 1.4rem;
}
.top-news .p-news_list > li .p-news_cate {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}
.top-news .p-news_list > li .p-news_cate_item {
	float: none;
	min-width: 80px;
	width: auto;
	flex: 0 0 auto;
	margin: 0;
	padding: 0 8px;
	border-radius: 50px;
	background-color: #EFEFEF;
	color: var(--color-text);
}
.top-news .p-news_list > li .p-news_dtl {
	flex: 0 0 100%;
}
.top-news .p-news_list > li .p-news_dtl::before {
	content: none;
}
.top-news .p-news_list > li.new .p-news_dtl > p::before {
	content: none;
}
.top-news .p-news_list > li.new .p-news_dtl > p::after {
	content: "NEW";
	display: inline-block;
	margin-left: 0.5em;
	font-weight: bold;
	color: var(--color-warning);
}
@media (min-width: 768px) {
	.top-news .p-news_list > li > a::before {
		content: none;
	}
	.top-news .p-news_list > li .p-news_date {
		padding-right: 0;
	}
}

.top-news-tab__link {
	width: 80%;
	max-width: 400px;
	margin-top: 20px;
	margin-inline: auto;
}
@media (min-width: 768px) {
	.top-news-tab__link {
		display: none;
	}
}

.top-news-link {
	display: none;
}
.top-news-link > li > a {
	place-items: center start;
}
.top-news-link > li + li {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.top-news-link {
		display: block;
		width: 100%;
		margin-top: 120px;
	}
}

.top-news-important {
	margin-top: 40px;
	background-color: #F5F5F5;
}
@media (min-width: 768px) {
	.top-news-important {
		margin-top: 0;
	}
}

/* おすすめ情報 */
.top-pickup-list > li {
	min-height: 115px;
}
@media (min-width: 768px) {
	.top-pickup-list > li {
		min-height: 166px;
	}
}

/* よく見られている・最近見た */
.p-infolist .p-cts-container .p-cts-container__item .c-ttl_02 {
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 34px;
	border-bottom: none;
	background: url("/assets/images/common/icon-ranking.png") no-repeat left center/24px;
}
.p-infolist .p-cts-container .p-cts-container__item .c-ttl_02 > span {
	font-size: 1.8rem;
}
.p-infolist .p-cts-container .p-cts-container__item.page_recently_viewed .c-ttl_02 {
	background-image: url("/assets/images/common/icon-page.png");
}
.p-infolist .p-cts-container .p-cts-container__item + .p-cts-container__item {
	margin-top: 50px;
}
.p-infolist .page_recently_viewed .dv_recommend .dv_rc_items,
.p-infolist .page_frequently_viewed .dv_recommend .dv_rc_items {
	padding-left: 2em;
	border-bottom: 1px solid var(--color-border);
}
.p-infolist .page_recently_viewed .dv_recommend .dv_rc_items::before,
.p-infolist .page_frequently_viewed .dv_recommend .dv_rc_items::before {
	width: 1em;
	height: 1em;
	background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat center/contain;
}

@media (min-width: 768px) {
	.link-recommended.u-mt-xl {
		margin-top: 80px !important;
	}
	.p-infolist .p-cts-container {
		padding-inline: 0;
		gap: 60px;
	}
	.p-infolist .p-cts-container .p-cts-container__item {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.p-infolist .p-cts-container .p-cts-container__item .c-ttl_02 {
		margin-bottom: 30px;
	}
	.p-infolist .p-cts-container .p-cts-container__item .c-ttl_02 > span {
		font-size: 2.4rem;
	}
	.p-infolist .p-cts-container .p-cts-container__item .dv_rc_items {
		font-size: 1.8rem;
	}
	.p-infolist .p-cts-container .p-cts-container__item + .p-cts-container__item {
		margin-top: 0;
	}
}
/* SNS */
.top-sns {
	padding-bottom: 70px;
}
@media (min-width: 768px) {
	.top-sns {
		padding-bottom: 0;
	}
}

.top-sns-list {
	margin-top: 20px;
	margin-bottom: 40px;
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
	text-align: center;
}
.top-sns-list > dt {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.4;
}
.top-sns-list > dd {
	margin-top: 20px !important;
}
.top-sns-list > dd > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.top-sns-list > dd > ul > li {
	flex: 0 0 48px;
}
@media (min-width: 768px) {
	.top-sns-list {
		margin-bottom: 70px;
		padding: 32px;
		border-radius: 20px;
	}
	.top-sns-list > dt {
		font-size: 2.4rem;
	}
	.top-sns-list > dd {
		margin-top: 24px !important;
	}
}

/* フッター上スライド */
.slide_footer .area-slide {
	height: auto;
}

/*----------
	法人トップ用
----------*/
@media only screen and (max-width: 767px) {
	.p-hojin_support .p-tabcts {
		position: relative;
		margin-top: 20px;
		z-index: 2;
	}
	.p-hojin_support .p-tabcts:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 50px;
		height: 100%;
		border-radius: 50px;
		background-color: #ECF4FA;
		z-index: -1;
	}
	.p-hojin_support .tabcts {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.p-hojin_support .tabcts .p-cts-container__item {
		position: relative;
		min-height: 60px;
		padding-left: 120px;
	}
	.p-hojin_support .tabcts .p-cts-container__item + .p-cts-container__item {
		margin-top: 40px;
	}
	.p-hojin_support .tabcts .p-cts-container__item > .img {
		position: absolute;
		top: 0;
		left: 10px;
	}
	.p-hojin_support .tabcts .p-cts-container__item > .img img {
		width: 80px;
	}
	.p-hojin_support .tabcts .p-cts-container__item > .img + p {
		text-align: left !important;
	}
	.p-hojin_support .tabcts .p-cts-container__item > .img + p + .c-button {
		margin-top: 20px;
	}
	.p-hojin_support .tabcts .p-cts-container__item .c-button + .c-button {
		margin-top: 10px;
	}
	.p-hojin_support .tabcts.show + .p-cts-container__item {
		margin-top: 40px;
	}
}
@media only screen and (min-width: 768px), print {
	.p-hojin_support .p-tabcts {
		position: relative;
		margin-top: 20px;
		z-index: 2;
	}
	.p-hojin_support .p-tabcts:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100px;
		border-radius: 20px;
		background-color: #ECF4FA;
		z-index: -1;
	}
	.p-hojin_support .tabcts {
		padding-top: 30px;
	}
	.p-hojin_support .tabcts .p-cts-container__item > .img {
		text-align: center;
	}
	.p-hojin_support .tabcts .p-cts-container__item > .img img {
		width: 100%;
		max-width: 100px;
	}
}
.page-hojin_top .l-maincts {
	padding-bottom: 80px;
}
.page-hojin_top .top-kv__login-hojin {
	margin-top: 0;
}
@media (min-width: 768px) {
	.page-hojin_top .l-maincts {
		padding-bottom: 120px;
	}
	.page-hojin_top .top-kv__lower {
		min-height: 600px;
	}
}

/*----------
	フッター
----------*/
.l-footer {
	margin-top: -20px;
	padding-top: 72px;
	border-radius: 20px 20px 0 0;
}
.l-footer .l-backtohead {
	top: -72px;
	right: 0;
	background-color: #0034A1;
}
.l-footer .l-footer__nav_wrp .list-footernav > li > a {
	padding-left: 24px;
}
.l-footer .l-footer__nav_wrp .list-footernav > li > a::before {
	content: "";
	top: calc(5px + 1em);
	left: 0;
	width: 12px;
	height: 3px;
	background-color: #fff;
}
.l-footer .l-footer__subnav {
	margin-top: 30px;
	padding-top: 30px;
}
.l-footer .l-footer__subnav .list-subnav > li a {
	padding-left: 0;
}
.l-footer .l-footer__subnav .list-subnav > li a::before {
	content: none;
}
@media (min-width: 768px) {
	.l-footer {
		margin-top: -40px;
		padding-top: 80px;
		border-radius: 40px 40px 0 0;
	}
	.l-footer .l-backtohead {
		top: -80px;
	}
	.l-footer .l-footer__nav_wrp {
		padding-top: 0;
		padding-bottom: 0;
	}
	.l-footer .l-footer__subnav {
		margin-top: 40px;
		padding-top: 40px;
		border-top-width: 2px;
	}
	.l-footer .l-footer__subnav .list-subnav > li a {
		padding-left: 20px;
		padding-right: 20px;
	}
	.l-footer .l-footer__subnav .list-subnav > li a::before {
		content: none;
	}
}
/*# sourceMappingURL=top_2026.css.map */
