@charset "utf-8";
/* CSS Document */




.contents {
	padding-top: 60px;
}

.contents a {
	text-decoration: none;
}

.contents a:hover {
	color: var(--color-link);
}


/* ------------------------------------------------------------------------------------------------------ */


.section {
	margin-top: 50px;
}

.section-inner {

}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
}

.section-header.divider {
	position: relative;
}

.section-header.divider::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-image: linear-gradient(45deg, #EF849D, #758EC4 50%);
	top: 0;
	left: 0;
}

.section-header__ttl {
	text-align: left;
}

.section-header__ttl .ja {
	display: inline-block;
	font-weight: bold;
	font-size: 1.5rem;
	margin-right: 5px;
}

.section-header__ttl .en {
	display: inline-block;
	font-size: 1.1rem;
	font-family: 'Open Sans', sans-serif;
	opacity: 0.6;
}

.section-header .more-link {
	min-width: max-content;
}

.section-header .more-link a {
	display: flex;
	align-items: center;
	transition: color .2s ease-in-out;
}

.section-header .more-link .lbl {
	font-size: 1.2rem;
}

.section-header .more-link .icon {
	transition: transform 0.2s ease-in-out;
}

.section-header .more-link a:hover .icon {
	stroke-width: 1.3;
	transform: translateX(2px);
}

.section-body {
	
}

@media screen and (min-width: 1280px) {

	.section {
		margin-top: 70px;
	}

	.section-header {
		padding: 40px 0;
	}

	.section-header__ttl .ja {
		font-size: 1.8rem;
	}

	.section-header .more-link .lbl {
		font-size: 1.3rem;
	}
}



/* popular-contents (home only) ------------------------------------------------------------------------- */

.popular-contents {
	transition: 0.2s ease-in-out;
	transition-property: opacity;
}

.scroll-y-start .popular-contents {
	opacity: 0;
	pointer-events: none;
}

.scroll-y-start .popular-contents-drawer {
	pointer-events: none;
}

/* kv --------------------------------------------------------------------------------------------------- */

.kv {
	position: relative;
	height: calc(100vh - 20px);
	overflow: hidden;
	margin-bottom: 50px;
	background: #f7f5f2;
}

@media screen and (min-width: 768px) {
	.kv {
		height: calc(100vh - 60px);
	}
}

@media screen and (min-width: 1280px) {
	.kv {
		height: calc(100vh - 100px);
		margin-bottom: 60px;
	}
}

.kv__indicator {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 25px;
	height: 25px;
	margin: auto;
	opacity: 1;
	z-index: 1;
}

.kv.-ready .kv__indicator {
	opacity: 0;
	transition: opacity 0.5s ease-out 0.25s;
}

.kv__indicator__inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
	margin: auto;
	z-index: 9999;
	background-image: url(/common/images/indicator_k.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 25px 300px;
	animation: indicatorAnimation 0.75s steps(12) infinite;
}

@keyframes indicatorAnimation {
	from { background-position: 0px 0px; }
	to   { background-position: 0px -300px; }
}


@only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 3) {
	@keyframes indicatorAnimation2 {
		from { background-position: 0px 0px; }
		to   { background-position: 0px -150px; }
	}
}

.kv__ttl-container {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: calc(100% - 60px);
	max-width: 1800px;
	height: 100%;
	margin: auto;
	padding-bottom: 120px;
	text-align: left;
	box-sizing: border-box;
	z-index: 2;
}

.kv__ttl-container-inner {
	color: #fff;
}

.load .kv__ttl-container-inner {
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.kv__ttl-container {
		width: calc(100% - 100px);
	}
}

@media screen and (min-width: 1280px) {
	.kv__ttl-container {
		width: calc(100% - 120px);
		padding-bottom: 70px;
	}
}

.kv__ttl {
	font-size: 1.3rem;
	line-height: 2;
	opacity: 0;
	transition: opacity 1s ease-out 1s;
}

.kv__ttl.main {
	margin-bottom: 0.5em;
	font-size: 4rem;
	font-family: FOT-マティス Pro M, MatissePro-M, serif;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.14em;
	transform: scaleX(0.825);
	transform-origin: left center;
}

.kv__ttl.sub {
	margin-top: 20px;
	letter-spacing: 0.08em;
}

.-ready .kv__ttl {
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.kv__ttl {
		font-size: 1.6rem;
	}

	.kv__ttl.main {
		font-size: 7rem;
	}
}

@media screen and (min-width: 1280px) {
	.kv__ttl {
		
	}

	.kv__ttl.main {
		font-size: 8rem;
	}
}

@media screen and (min-width: 1600px) {
	.kv__ttl {
		
	}

	.kv__ttl.main {
		font-size: 9rem;
	}
}

/* ---------- */

.kv__img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.kv__img::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #6581c0;
	animation: kvGradient 20s ease infinite;
	opacity: 0;
	z-index: 2;
	transition: opacity 1.5s ease;
}

.-ready .kv__img::before {
	opacity: 0.2;
}

@keyframes kvGradient {
	0%{ background-position: 50% 0% }
	50%{ background-position: 50% 100% }
	100%{ background-position: 50% 0% }
}

.kv__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* slideshow */

.img-reel {
	position: absolute;
	top: -62.5px;
	z-index: 1;
	width: 100%;
	height: calc(100% + 125px);
	margin: auto;
	padding: 0;
	font-size: 0;
	line-height: 0;
	list-style: none;
	overflow: hidden;
}

.img-reel__item {
	position: absolute;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-position: 0 center;
	animation-duration: 8s;
	animation-delay: 0s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	opacity: 0;
	z-index: 1;
}

.img-reel__item-inner {
	height: 100%;
	width: 100%;
}

.img-reel__item-bg.img {
	display: none;
}

.img-reel__item.current {
	z-index: 2;
	animation-name: showImage;
}

.img-reel__item.prev {
	z-index: 2;
	animation-name: hideImage;
}

.img-reel__item-inner {
	position: absolute;
	left: -50px;
	top: 0;
	width: calc(100% + 100px);
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transform: translate3d(0, 0, 0);
	transform-origin: center center;
	animation: inherit;
	animation-timing-function: linear;
}

.current .img-reel__item-inner {
	animation-name: showTranslateBG;
}

.prev .img-reel__item-inner {
	animation-name: hideTranslateBG;
}

.msie .img-reel {
	transform: none !important;
}

@keyframes showImage {
	0%   { opacity: 0; }
	20%  { opacity: 1; }
	100% { opacity: 1; }
}

@keyframes hideImage {
	0%   { opacity: 1; }
	20%  { opacity: 0; }
	100% { opacity: 0; }
}

@keyframes showTranslateBG {
	0%   { transform: translate3d(0, 50px, 0); }
	100% { transform: translate3d(0, 0, 0); }
}

@keyframes hideTranslateBG {
	0%   { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(0, -50px, 0); }
}


/* ---------------------------------------------------------------------------- */

.kv-news {
	width: calc(100% - 20px);
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #fff;
	border-top-left-radius: 10px;
	box-sizing: border-box;
	z-index: 2;
}

.kv-news::before {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: -30px;
	background-image: var(--round-out-corner-RB);
}

.msie .kv-news {
	display: none;
}

@media screen and (min-width: 768px) {

	.kv-news {
		width: 66.666%;
		max-width: 600px;
	}

}

.kv-news__list {
	max-height: 80px;
	padding-left: 10px;
	padding-right: 60px;
	box-sizing: border-box !important;
	transition-timing-function: cubic-bezier(.22,.61,.36,1) !important;
}

@media screen and (min-width: 1280px) {

	.kv-news__list {
		max-height: 100px;
		padding-right: 80px;
		transition-timing-function: cubic-bezier(.77,0,.18,1) !important;
	}

}


.kv-news__item {
	--move-delay: 1s;
	display: flex;
	text-align: left;
	padding: 0;
	line-height: 1.6;
	transition-property: transform, opacity !important;
	transition-duration: var(--move-delay);
	transition-timing-function: cubic-bezier(.17,.84,.44,1);
	opacity: 0.25;
}

.kv-news__item[class*="active"] {
	opacity: 1;
	transition-timing-function: cubic-bezier(.77,0,.18,1);
}

.kv-news__item.swiper-slide-active {
	opacity: 1;
}

@media screen and (min-width: 1280px) {

}

.kv-news__anchor {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-height: 100px;
	box-sizing: border-box;
	margin: 10px 0;
	padding: 10px;
	border-radius: 5px;
}

a.kv-news__anchor {
	transition: 0.2s ease-in-out;
	transition-property: background, color;
}

a.kv-news__anchor:hover {
	color: var(--color-link);
	background-color: var(--color-link-bg);
}

@media screen and (min-width: 1280px) {

	.kv-news__anchor {
		padding: 10px 20px;
	}

}


.kv-news__date {
	text-align: center;
	line-height: 1;
	font-family: 'Open Sans', sans-serif;
}

.kv-news__date .year {
	display: block;
	font-size: 1rem;
	font-weight: 600;
}

.kv-news__date .day {
	display: block;
	font-size: 1.5rem;
	margin-top: 5px;
	padding: 5px 5px 0;
	position: relative;
	
}

.kv-news__date .day::before,
.kv-news__date .day::after {
	position: absolute;
	content: "";
	top: 0;
	right: auto;
	left: 0;
	width: 100%;
	height: 1px;
	margin: auto;
	background-color: currentColor;
}

.kv-news__date .day::before {
	opacity: .15;
}

.kv-news__date .day::after {
	width: 0;
	opacity: 1;
	transition-timing-function: linear;
	transition-property: width;
	transition-duration: 0.1s;
	transition-delay: var(--move-delay);
}

.-slideChangeTransitionEnd .kv-news__item[class*="active"] .kv-news__date .day::after {
	width: 100%;
	transition-duration: var(--swiper-delay);
	transition-delay: 0s;
}

.kv-news__item[class*="prev"] .kv-news__date .day::after {
	width: 0;
}

@media screen and (min-width: 1280px) {

	.kv-news__date .day {
		font-size: 1.8rem;
	}

}



.kv-news__ttl {
	width: calc(100% - 65px);
	font-size: 1.3rem;
	
	/* line-clamp styles */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media screen and (min-width: 1280px) {

	.kv-news__ttl {
		width: calc(100% - 90px);
	}

}

/* --- */

.kv-news .swiper-container {
	margin: 0;
}

.kv-news .swiper__btns {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.kv-news .swiper__btns-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	width: 60px;
	height: 100%;
	margin-left: auto;
	position: relative;
}

@media screen and (min-width: 1280px) {

	.kv-news .swiper__btns-inner {
		width: 80px;
	}

}


.kv-news .swiper__btns-inner::before {
	position: absolute;
	content: "";
	width: 24px;
	height: 1px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: currentColor;
	opacity: 0.3;
	margin: auto;
}

.kv-news .swiper__btns .swiper-button-next,
.kv-news .swiper__btns .swiper-button-prev {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: auto;
	z-index: 10;
	outline: none;
	background-color: transparent;
	background-image: none;
	color: #3a3737;
	box-shadow: 0 0 0 rgba(133,87,74,0.3), 0 0 0 rgba(133,87,74,0.1);
	transition: 0.2s ease;
	transition-property: opacity, background, box-shadow;
	padding: 3px;
	box-sizing: border-box;
}

.kv-news .swiper-button-next::after,
.kv-news .swiper-button-prev::after {
	display: none;
}

.kv-news .swiper-button-next:hover,
.kv-news .swiper-button-prev:hover {

}

.kv-news .swiper-button-next.swiper-button-disabled,
.kv-news .swiper-button-prev.swiper-button-disabled  {
	opacity: 0.35;
	background-color: transparent;
	box-shadow: none;
}

.kv-news .swiper-button-next:hover .icon,
.kv-news .swiper-button-prev:hover .icon {
	stroke-width: 1.8;
}

.kv-news .swiper-button-next svg,
.kv-news .swiper-button-prev svg {
	width: 100%;
	height: 100%;
}


/* emergency --------------------------------------------------------------------------------------------------- */

.emergency {
	
}

@media screen and (min-width: 1280px) {

	.emergency {
		
	}

}

.emergency-list {
	background-color: #ff1f5417;
	border-radius: 5px;
	padding: 20px 10px;
	box-sizing: border-box;
}

.emergency-list > * {
	margin-top: 3px;
}

.emergency-list > *:first-child {
	margin-top: 0;
}


.emergency-item {
	text-align: left;
}



@media screen and (min-width: 768px) {
	.emergency-list {
		padding: 15px;
	}
}

@media screen and (min-width: 1280px) {
	.emergency-list {
		
	}
}

.emergency-item a {
	display: flex;
	align-items: center;
	position: relative;
	color: #ff1f54;
	transition: 0.2s ease-in-out;
	transform: background, color;
	padding: 8px 10px;
	border-radius: 3px;
	box-sizing: border-box;
}

.emergency-item a:hover {
	color: #000;
	background-color: rgba(255,0,0,.05);
}

.emergency-item .icon {
	display: block;
	left: 0;
	margin-right: 10px;
	stroke-width: 1.3;
}

.emergency-item .arrow-icon {
	display: none;
}

.emergency__ttl {
	font-size: 1.3rem;
	font-weight: bold;
	font-feature-settings: "palt";
	line-height: 1.6;
	
}

.emergency__ttl .date {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	font-size: 1.1rem;
	font-family: 'Open Sans', sans-serif;
}

.emergency__ttl .date::after {
	content: "";
	display: block;
	width: 2em;
	height: 1px;
	margin-left: 5px;
	background-color: currentColor;
	opacity: 0.3;
}

.emergency__ttl .ttl {
	display: block;
}

.emergency-item a:hover {
	
}


@media screen and (min-width: 768px) {

	.emergency-item .icon {
		
	}

	.emergency__ttl {
		display: flex;
		align-items: baseline;
	}

	.emergency__ttl .ttl {
		margin-left: 15px;
	}

	.emergency__ttl .date {
		font-size: 1.2rem;
	}

	.emergency__ttl .date::after {
		margin-left: 15px;
	}

}

@media screen and (min-width: 1280px) {

	.emergency-item a {
		
	}

	.emergency__ttl {
		display: flex;
		align-items: center;
		width: 100%;
		font-size: 1.5rem;
	}

	.emergency__ttl .date {
		justify-content: space-between;
		font-size: 1.4rem;
		width: calc((((100% - (var(--wcalc-gap) * 9)) / 10) * 2) + (var(--wcalc-gap) * 1) - 10px);
	}

	.emergency__ttl .date::after {
		width: 5em;
		margin-right: var(--wcalc-gap);
	}

	.emergency-item .arrow-icon {
		display: block;
		position: absolute;
		right: 0;
		left: auto;
		top: 0;
		bottom: 0;
		width: 24px;
		height: 24px;
		margin: auto;
	}

	.emergency__ttl .ttl {
		width: calc((((100% - (var(--wcalc-gap) * 9)) / 10) * 8) + (var(--wcalc-gap) * 7) + 36px);
		margin-left: 0;
		padding-right: 24px;
	}
/*
	.emergency__ttl .ttl::after {
		content: "";
		display: block;
		width: 2em;
		height: 1px;
		margin-left: 5px;
		background-color: currentColor;
		opacity: 0.3;
	}
*/
}

/* --------------------------------------------------------------------------------------------------- */


.contents {
	
}

@media screen and (min-width: 1280px) {

	.contents {
		padding-top: 100px;
	}

}


/* --------------------------------------------------------------------------------------------------- */

.mainContents {
	
}

@media screen and (min-width: 1280px) {

	.mainContents {
		position: relative;
		overflow: hidden;
	}

	/*.mainContents::after {
		position: absolute;
		content: "";
		top: auto;
		bottom: 0;
		right: 0;
		left: auto;
		width: calc((((1440px - (var(--wcalc-gap) * 9)) / 10) * 9) + (var(--wcalc-gap) * 8) + ((100vw - var(--scrollbar-width) - 1440px) / 2));
		height: calc(100% - 60px);
		background-color: #f7f5f2;
		border-radius: 5px 0 0 5px;
		z-index: 0;
	}*/

}


.mainContents__list {
	position: relative;
	margin-bottom: 20px;
	padding: 30px 0;
	z-index: 1;
}

.mainContents__list:last-child {
	margin-bottom: 0;
}

.mainContents__list::after {
	position: absolute;
	content: "";
	width: calc(100% - 25px);
	height: 100%;
	background-color: #f7f5f2;
	border-radius: 5px 0 0 5px;
	top: 0;
	left: 50px;
	z-index: -1;
}

@media screen and (min-width: 768px) {

	.mainContents__list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.mainContents__list::after {
		width: calc(100vw - var(--scrollbar-width) - 50px - 50px);
	}

}

@media screen and (min-width: 1280px) {

	.mainContents__list {
		display: flex;
		justify-content: space-between;
		margin-bottom: 0;
		padding: 20px 0 45px;
	}

	.mainContents__list::after {
		display: none;
	}

	.mainContents__list.sub {
		padding-top: 0;
		padding-bottom: 50px;
	}

}



.mainContents__item {
	margin-bottom: 20px;
}

.mainContents__item:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {

	.mainContents__item {
		width: calc(50% - 10px);
	}

}

@media screen and (min-width: 1280px) {

	.mainContents__item {
		position: relative;
		margin-bottom: 0;
	}

	.mainContents__item.-ambulatory      { --bgc: #77bd31; }
	.mainContents__item.-hospitalization { --bgc: #6fbdde; }
	.mainContents__item.-check-up        { --bgc: #a799fc; }
	.mainContents__item.-rehabilitation  { --bgc: #fb8c96; }
	.mainContents__item.-service         { --bgc: #fba64a; }

	.main .mainContents__item {
		width: calc((((100% - (40px * 9)) / 10) * 2) + (40px * 1));
	}

	.sub .mainContents__item {
		width: calc(33.33% - ((40px * 2) / 3));
	}

	.main .mainContents__item::after {
		position: absolute;
		content: "";
		top: 100px;
		right: 0;
		left: -20px;
		bottom: auto;
		margin: auto;
		display: block;
		background-color: var(--bgc);
		z-index: 0;
		mix-blend-mode: color;
		width: calc(100% + 600px);
		height: calc(100% - 60px);
		border-radius: 8px;
		transform: translate(-25%, 25%);
		transition: opacity 0.4s cubic-bezier(.65,.05,.36,1);
		opacity: 0.5;
		filter: blur(128px);
		border-radius: 100%;
	}

	.main .mainContents__item:nth-child(even)::after {
		top: 180px;
	}

	/* safari はblurの負荷がかかりすぎるので表示しない */
	.is_safari .main .mainContents__item::after {
		display: none;
		content: none;
	}
}



.mainContents__anchor {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: rgba(255,255,255,1);
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 8px 8px 20px rgba(0,0,0,.1);
	transition: box-shadow 0.2s ease;
}

.mainContents__anchor:hover {
	box-shadow: 2px 2px 8px rgba(0,0,0,.15);
	transition-duration: 0.2s;
}

.sub .mainContents__anchor {
	position: relative;
	z-index: 1;
}

.mainContents__hoverelm {
	display: none;
}

@media screen and (min-width: 1280px) {


	.-loaded a.mainContents__anchor:hover {
		color: #fff;
	}

	/* ---------------------------------------- */

	.main .mainContents__anchor {
		display: block;
		z-index: 2;
		height: 100%
	}

	/* ブラウザの拡大表示を行うとscaleで拡大させるとChromeなどでずれるためtransformでの拡大を使用しない方法に変更 */
	.mainContents__hoverelm {
		position: absolute;
		inset: 0 -100%;
		display: block;
		width: calc(var(--scale) * 1px);
		height: calc(var(--scale) * 1px);
		margin: auto;
		z-index: 1;
		mix-blend-mode: multiply;
	}

	.mainContents__hoverelm::before,
	.mainContents__hoverelm::after {
		position: absolute;
		inset: 0;
		margin: auto;
		display: block;
		background-color: var(--bgc);
		width: 0;
		height: 0;
		border-radius: 100%;
		transition: 0.4s cubic-bezier(.77,0,.18,1);
		transition-property: opacity, translate, width, height;
		z-index: 2;
		opacity: 0;
		content: "";
	}

	.mainContents__anchor:hover .mainContents__hoverelm::before,
	.mainContents__anchor:hover .mainContents__hoverelm::after {
		width: calc(var(--scale) * 1px);
		height: calc(var(--scale) * 1px);
		transition-duration: 0.4s;
		transition-timing-function: cubic-bezier(.19,1,.22,1);
		translate: 0 0;
	}

	.mainContents__anchor:hover .mainContents__hoverelm::before {
		opacity: 0.5;
	}

	.mainContents__anchor:hover .mainContents__hoverelm::after {
		opacity: 0.8;
		transition-duration: 0.8s;
		transition-delay: 0.2s;
	}

	/* ---------------------------------------- */

	.sub .mainContents__anchor {
		height: 120px;
	}

	.sub .mainContents__anchor:hover {
		color: #fff;
	}

	.sub .mainContents__anchor::before {
		position: absolute;
		inset: 0;
		left: calc((var(--longside) - var(--scale)) / 2 * 1px);
		width: 0;
		height: 0;
		border-radius: 50%;
		margin: auto;
		background-color: var(--color-link);
		transition: 0.4s cubic-bezier(.77,0,.18,1);
		transition-property: opacity, translate, width, height;
		z-index: 2;
		opacity: 0;
		content: "";
	}

	.sub .mainContents__anchor:hover::before {
		width: calc(var(--scale) * 1px);
		height: calc(var(--scale) * 1px);
		opacity: 1;
		transition-duration: 0.8s;
		transition-timing-function: cubic-bezier(.19,1,.22,1);
	}

}



.mainContents__img {
	position: relative;
	width: 90px;
	height: 90px;
	overflow: hidden;
	z-index: 1;
}

.mainContents__img img {
	width: 100%;
	vertical-align: bottom;
	transition: transform 1s cubic-bezier(.17,.84,.44,1);
}

.mainContents__img-fg {
	display: none;
}

@media screen and (min-width: 768px) {

	.mainContents__img {
		width: 110px;
		height: 110px;
	}

}

@media screen and (min-width: 1280px) {

	.mainContents__img {
		width: 100%;
		height: var(--height, auto);
		background-color: var(--bgc);
	}

	.mainContents__img img {
		object-fit: cover;
	}

	.-loading .mainContents__img img {
		opacity: 0;
	}

	.-loaded .mainContents__img img {
		opacity: 1;
		transition-delay: 0s, 1s;
		transition-property: transform, opacity;
	}

	.no-object-fit .mainContents__img img {
		height: auto;
	}

	a:hover .mainContents__img img {
		transform: scale(1.1);
	}

	.mainContents__img-fg {
		position: absolute;
		left: 0;
		right: 0;
		top: auto;
		bottom: 0;
		display: block;
		width: calc(100% - 40px);
		height: 50px;
		margin: auto;
		border-radius: 10px 10px 0 0;
		padding: 20px 15px 0;
		background-color: #fff;
		box-sizing: border-box;
		
		--w: 20px;
	}

	.mainContents__img-fg::before,
	.mainContents__img-fg::after {
		position: absolute;
		content: "";
		display: block;
		width: var(--w);
		height: var(--w);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		bottom: 0%;
	}

	.mainContents__img-fg::before {
		left: calc(var(--w) * -1);
		background-image: var(--round-out-corner-RB);
	}

	.mainContents__img-fg::after {
		right: calc(var(--w) * -1);
		background-image: var(--round-out-corner-LB);
	}

	.mainContents__img-fg {
		
	}

	.mainContents__indicator {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 25px;
		height: 25px;
		margin: auto;
		opacity: 1;
		z-index: 1;
	}

	.-loaded .mainContents__indicator {
		opacity: 0;
		transition: opacity 0.5s ease-out 0.5s;
	}

	.mainContents__indicator__inner {
		position: absolute;
		top: -24px;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		display: block;
		margin: auto;
		z-index: 9999;
		background-image: url(/common/images/indicator_w.png);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: 25px 300px;
		animation: indicatorAnimation 0.75s steps(12) infinite;
	}

}



.mainContents__txt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc(100% - 90px);
	height: 90px;
	padding: 10px;
	padding-left: 20px;
	box-sizing: border-box;
	transition: color .5s cubic-bezier(.65,.05,.36,1);
	z-index: 2;
}

@media screen and (min-width: 768px) {

	.mainContents__txt {
		width: calc(100% - 110px);
		height: 110px;
	}

}

@media screen and (min-width: 1280px) {

	.mainContents__txt {
		height: 100%;
	}

	.main .mainContents__txt {
		position: relative;
		flex-direction: column;
		width: 100%;
		height: auto;
		padding: 55px 15px 25px;
		z-index: 3;
	}

	.main a:hover .mainContents__txt::after {
		width: 100%;
	}

	.sub .mainContents__txt {
		width: calc(100% - 100px);
		padding: 0;
	}

}



.mainContents__ttl {
	text-align: left;
}

.mainContents__ttl span {
	display: block;
}

.mainContents__ttl .ja {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
}

.mainContents__ttl .en {
	font-size: 1.1rem;
	font-family: 'Open Sans', sans-serif;
	margin-top: 5px;
	opacity: 0.6;
}


@media screen and (min-width: 768px) {

	.mainContents__ttl .ja {
		font-size: 1.6rem;
	}

}

@media screen and (min-width: 1280px) {

	.main .mainContents__ttl {
		text-align: center;
	}

	.mainContents__ttl .ja {
		font-size: 1.8rem;
	}

}


.mainContents__des {
	display: none;
	margin-top: 10px;
	padding: 10px;
	text-align: center;
	font-feature-settings: "palt";
	line-height: 1.8;
}

.mainContents__des > * {
	margin-top: 10px;
}

.mainContents__des > *:first-child {
	margin-top: 0;
}


@media screen and (min-width: 768px) {

	.mainContents__des {
		
	}

}

@media screen and (min-width: 1280px) {

	.mainContents__des {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		min-height: calc(3em * 1.8);
		box-sizing: border-box;
	}

}



.mainContents__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 90px;
	height: 90px;
	z-index: 2;
	border-right: 0.6px solid rgba(0,0,0,0.2);
	box-sizing: border-box;
}

.mainContents__icon .icon {
	position: relative;
	stroke-width: 0.8;
	z-index: 1;
}

.mainContents__icon svg {
	width: 36px;
	height: 36px;
}

.mainContents__icon svg .color_1 {
	stroke: #4B5663;
	transition: stroke .4s cubic-bezier(.65,.05,.36,1);
}

.mainContents__icon svg .color_2 {
	stroke: #768EC6;
	transition: stroke .4s cubic-bezier(.65,.05,.36,1);
}

.main .mainContents__icon {
	display: none;
}

@media screen and (min-width: 768px) {

	.mainContents__icon {
		width: 110px;
		height: 110px;
	}

	.mainContents__icon .icon {
		stroke-width: 0.6;
	}

	.mainContents__icon svg {
		width: 60px;
		height: 60px;
	}

}

@media screen and (min-width: 1280px) {

	.mainContents__icon {
		width: 100px;
		height: 100%;
		border-right: none;
	}

	a:hover .mainContents__icon svg .color_1,
	a:hover .mainContents__icon svg .color_2 {
		stroke: #fff;
	}

	.mainContents__icon::before {
		content: "";
		position: absolute;
		inset: 0;
		width: 0px;
		height: 0px;
		margin: auto;
		border-radius: 100%;
		background-color: #4769b7;
		transition: 0.4s cubic-bezier(.77,0,.18,1);
		transition-property: opacity, translate, width, height;
		z-index: 1;
		opacity: 0;
	}

	a:hover .mainContents__icon::before {
		width: 80px;
		height: 80px;
		opacity: 1;
		transition-duration: 0.8s;
		transition-delay: 0.2s;
		transition-timing-function: cubic-bezier(.22,1.42,.35,.99);
	}

	.main .mainContents__icon {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		transform: translateY(-50%);
		display: block;
		height: auto;
		margin: auto;
		transition: 0.4s cubic-bezier(.77,0,.18,1);
	}

	.main .mainContents__icon::before {
		background-color: var(--bgc);
	}

	.main a:hover .mainContents__icon {
		color: var(--bgc);
	}

	.main a:hover .mainContents__icon::before {
		background-color: #fff;
		transition-delay: 0.4s;
	}

}




.mainContents__more {
	display: flex;
	align-items: center;
}

.mainContents__more .lbl {
	font-size: 1.2rem;
	padding-right: 30px;
	opacity: 0;
	transition: 0.5s cubic-bezier(.77,0,.18,1);
	transition-property: opacity, transform;
	display: none;
}

.mainContents__more .icon {
	width: 24px;
	height: 24px;
}

@media screen and (min-width: 1280px) {

	.mainContents__more {
		position: relative;
		height: 24px;
	}

	.main .mainContents__more {
		margin-top: 10px;
	}

	.mainContents__more .icon {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
		transition: transform 0.5s cubic-bezier(.77,0,.18,1);
		stroke-width: 1.3;
	}

	.sub .mainContents__more .icon {
		left: auto;
		right: 20px;
	}

	.mainContents__more .lbl {
		display: block;
		transform: translateX(1em);
	}

	a:hover .mainContents__more .lbl {
		opacity: 1;
		transform: translateX(0);
	}

	.main a:hover .mainContents__more .icon {
		transform: translateX(30px);
	}

}





/* news --------------------------------------------------------------------------------------------------- */

.news {
	margin-bottom: 30px;
	padding: 10px 0 0;
	position: relative;
	z-index: 1;
}

.news::after {
	position: absolute;
	content: "";
	width: calc(100% - 80px);
	height: 100%;
	background: #f7f5f2;
	top: 0;
	right: -25px;
	border-radius: 5px 0 0 5px;
	z-index: -1;
}

.news:last-child {
	margin-bottom: 0;
}

.news-inner {
	display: flex;
	justify-content: space-between;
}

.news-header {

}

.news-header a {
	transition: color .2s ease-in-out;
}

.news__ttl {
	display: flex;
	align-items: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.news__ttl .icon {
	margin-bottom: 10px;
}

.news__ttl + .icon {
	display: none;
}

.news__ttl .lbl {
	font-size: 1.2rem;
	font-weight: bold;
}

.news-body {
	width: calc(100% - 40px);
}

.news-list {
	margin: 10px 0 0;
	border-top: 1px solid rgba(0,0,0,.5);
}

.news-item {
	border-bottom: 1px solid rgba(0,0,0,.1);
}

.news-item:last-child {
	border-bottom: none;
}

.news-item__anchor {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	transition: color .2s ease-in-out;
}

.news-item__anchor .date {
	width: 50px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}

.news-item__anchor .date span {
	display: block;
}

.news-item__anchor .date .year {
	font-size: 1rem;
	font-weight: 600;
}

.news-item__anchor .date .day {
	font-size: 1.5rem;
	margin-top: 5px;
	padding: 5px;
	position: relative;
}

.news-item__anchor .date .day::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: currentColor;
	opacity: .3;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.news-item__anchor .ttl {
	width: calc(100% - 65px);
	font-size: 1.3rem;
	font-weight: bold;
	font-feature-settings: "palt";
	text-align: left;
	line-height: 1.6;
}

.news-item__anchor .ttl .cat {
	font-weight: bold;
}

.news-item__anchor .ttl .cat::after {
	content: '／';
	display: inline-flex;
	justify-content: center;
	width: 1em;
}

/* ie */

.msie .news__ttl {
	max-height: 20em;
}


@media screen and (min-width: 768px) {
	.news::after {
		width: calc(100% - 80px);
		right: -50px;
	}

	.news-item__anchor {
		align-items: center;
	}

	.news-item__anchor .ttl {
		width: calc(100% - 100px);
	}
}

@media screen and (min-width: 1280px) {

	#news .section-body {
		display: flex;
		justify-content: space-between;
	}

	.news {
		width: calc((100% - (var(--wcalc-gap) * 2)) / 3);
		margin: 0;
		padding: 15px 0 0;
	}

	.news::after {
		width: calc(100% - 95px);
		right: 0;
		border-radius: 5px;
	}

	.news-inner {
		display: block;
	}

	.news-header a {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.news-list {
		margin: 15px 0 0;
	}

	.news__ttl {
		justify-content: space-between;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		width: calc(100% - 44px);
	}

	.news__ttl .icon {
		width: 60px;
		height: 36px;
		margin-bottom: 0;
		margin-left: 10px;
		stroke-width: 0.8;
	}

	.news__ttl .icon svg {
		position: relative;
		width: 100%;
		height: 100%;
		z-index: 2;
		color: currentColor;
		transition: color 0.4s ease;
	}

	.news__ttl .icon::before {
		position: absolute;
		content: "";
		width: 1px;
		height: 1px;
		border-radius: 50%;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
		background-color: var(--color-link);
		transform: scale(0);
		transition: 0.6s cubic-bezier(.3,2.5,.3,1);
		transition-property: opacity, transform;
		z-index: 1;
		opacity: 0;
	}

	a:hover .news__ttl .icon {
		color: #fff;
	}

	a:hover .news__ttl .icon::before {
		transform: scale(50);
		opacity: 1;
		transition-duration: 0.8s;
		transition-timing-function: cubic-bezier(.22,1.42,.35,.99);
	}

	.news__ttl .lbl {
		width: calc(100% - 75px);
		text-align: left;
		font-size: 1.5rem;
	}

	.news__ttl + .icon {
		display: inline-block;
		stroke-width: 1.3;
		margin-right: 15px;
	}

	.news-body {
		width: 100%;
	}

	.news-item__anchor {
		padding: 15px;
		transition-property: color, box-shadow;
	}

	a.news-item__anchor:hover {
		box-shadow: 0 3px 10px rgba(0,0,0,.1);
	}
}


/* activity --------------------------------- */

.activity .section-inner {
	position: relative;
	z-index: 1;
}

.activity .section-inner::after {
	position: absolute;
	content: "";
	width: calc(100vw - var(--scrollbar-width));
	height: calc(100% - 25px);
	top: 0;
	left: -25px;
	background: #f7f5f2;
	z-index: -1;
}

.activity-bg-right .section-inner::after {
	inset: 0 auto auto -25px;
}

.activity-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.activity-item.swiper-slide {
	width: calc(50% - 10px);
	height: auto;
}

.activity-item + .activity-item {
	margin-top: 20px;
}



.activity-item a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 8px 8px 20px rgba(0,0,0,.1);
	transition: .2s ease-in-out;
	transition-property: box-shadow, color;
	background-color: #fff;
}

.activity-item a:hover {
	box-shadow: 2px 2px 8px rgba(0,0,0,.15);
}

.activity-item a:hover .activity__img img {
	transform: scale(1.1);
}



.activity-item .activity__img {
	height: 100px;
	background-color: #6581c0;
}

.activity-item .activity__img img {
	width: 100%;
	height: 100%;
	vertical-align: bottom;
	object-fit: cover;
	transition: transform 1s cubic-bezier(.17,.84,.44,1);
}



.activity-item .activity__txt {
	padding: 20px;
	padding-bottom: 30px;
	box-sizing: border-box;
	text-align: left;
	background-color: #fff;
	position: relative;
}

.activity-item .activity__txt > * {
	margin-top: 5px;
}

.activity-item .activity__txt > *:first-child {
	margin-top: 0;
}

.activity-item .activity__ttl {
	font-size: 1.3rem;
	font-weight: bold;
	font-feature-settings: "palt";
	line-height: 1.6;
}

.activity-item .activity__cat {
	opacity: 0.7;
	font-size: 1.2rem;
	line-height: 1.5;
}

.activity-item .activity__date {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 30px;
	right: 20px;
	bottom: 20px;
	font-style: italic;
	font-family: 'Open Sans', sans-serif;

	opacity: 0;
}

.activity-item .activity__date::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #768ec6;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	opacity: 0.5;
	transform: rotate(-45deg);
}

.activity-item .activity__date .month {
	display: block;
	font-size: 1.2rem;
}

.activity-item .activity__date .day {
	display: block;
	font-size: 1.2rem;
	text-align: right;
}

.activity-item:nth-of-type(1),
.activity-item:nth-of-type(4),
.activity-item:nth-of-type(7),
.activity-item:nth-of-type(10),
.activity-item:nth-of-type(13) {
	width: 100%;
}

.activity-item:nth-of-type(1) .activity__img,
.activity-item:nth-of-type(4) .activity__img,
.activity-item:nth-of-type(7) .activity__img,
.activity-item:nth-of-type(10) .activity__img,
.activity-item:nth-of-type(13) .activity__img {
	height: 240px;
}

.activity-item:nth-of-type(1) .activity__ttl,
.activity-item:nth-of-type(4) .activity__ttl,
.activity-item:nth-of-type(7) .activity__ttl,
.activity-item:nth-of-type(10) .activity__ttl,
.activity-item:nth-of-type(13) .activity__ttl {
	font-size: 1.4rem;
}

.activity-item:nth-of-type(1) .activity__txt,
.activity-item:nth-of-type(4) .activity__txt,
.activity-item:nth-of-type(7) .activity__txt,
.activity-item:nth-of-type(10) .activity__txt,
.activity-item:nth-of-type(13) .activity__txt {
	padding-bottom: 60px;
}

.activity-item:nth-of-type(1) .activity__date,
.activity-item:nth-of-type(4) .activity__date,
.activity-item:nth-of-type(7) .activity__date,
.activity-item:nth-of-type(10) .activity__date,
.activity-item:nth-of-type(13) .activity__date {
	opacity: 1;
}

.activity-item:nth-child(n+7) {
	display: none;
}

/* --- */

.activity-swiper.swiper-container {
	overflow: visible !important;
}

.activity-swiper .swiper__btns {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	
	display: flex;
	align-items: flex-end;
	margin: auto;

	display: none;
}

.activity-swiper .swiper__btns-inner {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.activity-swiper .swiper__btns .swiper-button-next,
.activity-swiper .swiper__btns .swiper-button-prev {
	position: relative;
	top: 50%;
	left: auto;
	right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	z-index: 10;
	outline: none;
	background-color: transparent;
	background-image: none;
	color: #3a3737;
	box-shadow: 0 0 0 rgba(133,87,74,0.3), 0 0 0 rgba(133,87,74,0.1);
	transition: 0.2s ease;
	transition-property: opacity, background, box-shadow;
	padding: 3px;
	box-sizing: border-box;
	transform: translateX(7px);
}

.activity-swiper .swiper-button-next::after,
.activity-swiper .swiper-button-prev::after {
	display: none;
}

.activity-swiper .swiper-button-next:hover,
.activity-swiper .swiper-button-prev:hover {

}

.activity-swiper .swiper-button-next.swiper-button-disabled,
.activity-swiper .swiper-button-prev.swiper-button-disabled  {
	opacity: 0.35;
	background-color: transparent;
	box-shadow: none;
}

.activity-swiper .swiper-button-next .icon,
.activity-swiper .swiper-button-prev .icon {
	width: 40px;
	height: 40px;
	stroke-width: 1;
	transition-property: stroke-width, color;
}

.activity-swiper .swiper-button-next:hover .icon,
.activity-swiper .swiper-button-prev:hover .icon {
	stroke-width: 1.8;
}

.activity-swiper .swiper-button-next svg,
.activity-swiper .swiper-button-prev svg {
	width: 100%;
	height: 100%;
}


.activity-swiper .swiper-button-prev,
.activity-swiper .swiper-container-rtl .swiper-button-next {
	border-radius: 5px;
}

.activity-swiper .swiper-button-next,
.activity-swiper .swiper-container-rtl .swiper-button-prev {
	border-radius: 5px;
}


.msie .activity-list {
	display: flex;
	justify-content: space-between;
}

.msie .activity-item {
	margin: 0px 25px 0 0;
}

.msie .activity-item:nth-child(n+6) {
	display: none;
}

.msie .activity-swiper .swiper-button-next::after,
.msie .activity-swiper .swiper-button-prev::after {
	display: none;
}

.msie .activity-item.swiper-slide {
	width: calc(20% - 20px);
}

.msie .activity-item .activity__img img {
	height: auto;
}

.msie .swiper__btns {
	display: none;
}


@media screen and (min-width: 768px) {

	.activity .section-inner::after {
		left: -50px;
	}

	.activity-list::before {
		content: "";
		display: block;
		width: calc(33.33% - 10px);
		order: 2;
	}

	.activity-item.swiper-slide,
	.activity-item:nth-of-type(1),
	.activity-item:nth-of-type(4),
	.activity-item:nth-of-type(7),
	.activity-item:nth-of-type(10),
	.activity-item:nth-of-type(13) {
		width: calc(33.33% - 10px);
	}

	.activity-item + .activity-item {
		margin-top: 0;
	}

	.activity-item:nth-of-type(n + 4) {
		margin-top: 30px;
	}

	.activity-item .activity__img {
		height: 140px !important;
	}

	.activity-item .activity__txt {
		height: calc(100% - 140px);
	}

	.activity-item .activity__date {
		opacity: 1;
	}
}

@media screen and (min-width: 1280px) {

	.activity {
		overflow: hidden;
		margin-bottom: -40px;
	}

	.activity .section-inner::after {
		width: calc(100% - (((100% - (var(--wcalc-gap) * 9)) / 10) * 1) - (var(--wcalc-gap) * 1) + ((100vw - var(--scrollbar-width) - 100%) / 2));
		height: calc(100% - 90px);
		/* left: calc(var(--wcalc-window-side-width) * -1); */
		top: 0;
		left: calc(((100vw - 100%) / 2) * -1 );
		border-radius: 0 5px 5px 0;
	}

	.activity.activity-bg-right .section-inner::after {
		top: 0;
		left: auto;
		right: calc(((100vw - 100%) / 2) * -1 );
	}

	.activity .section-header {
		box-sizing: border-box;
		padding-top: 70px;
		padding-right: calc((((100% - (40px * 9)) / 10) * 1));
	}

	.activity .section-header .more-link {
		position: relative;
		padding-right: 15px;
		z-index: 2;
	}

	.activity .section-header .more-link::after {
		position: absolute;
		content: "";
		width: 1px;
		height: 40px;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		background-color: rgba(0,0,0,.2);
	}

	.activity .section-body {
		
	}

	.activity-list {
		justify-content: inherit;
		flex-wrap: nowrap;
	}

	/* .swiper-slide, */
	.activity-item,
	.activity-item:nth-of-type(1),
	.activity-item:nth-of-type(4) {
		
	}

	.activity-item:nth-child(n + 7) {
		display: block;
	}

	.activity-item + .activity-item {
		margin-top: 0;
	}

	.activity-item .activity__img {
		height: 180px !important;
	}

	.activity-item .activity__txt {
		height: calc(100% - 180px);
	}

	.activity-item .activity__ttl {
		font-size: 1.4rem;
		
		/* line-clamp styles */
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.activity-item .activity__date {
		width: 35px;
		height: 35px;
		bottom: 15px;
	}
	
	.activity-item .activity__date .month {
		font-size: 1.5rem;
	}
	
	.activity-item .activity__date .day {
		font-size: 1.5rem;
	}

	/* --- */

	.activity-swiper.swiper-container {
		margin-top: -50px;
		padding: 50px 0 !important;
	}

	.activity-swiper .swiper__btns {
		display: flex;
		align-items: flex-start;
		top: -12px;
	}

}


/* --------------------------------------------------------------------------------------------------- */
/* pickup                                                                                              */
/* --------------------------------------------------------------------------------------------------- */

.Pickup {
	
}

.Pickup__header {
	
}

.Pickup__body {
	position: relative;
}

.Pickup__body > * {
	margin-top: 20px;
}

.Pickup__body > *:first-child {
	margin-top: 0;
}

@media screen and (min-width: 1280px) {

	.Pickup__body > * {
		margin-top: 40px;
	}

	.Pickup__body > *:first-child {
		margin-top: 0;
	}

	.Pickup__body::after {
		position: absolute;
		content: "";
		top: auto;
		bottom: -30px;
		right: 0;
		left: auto;
		width: calc((((1440px - (var(--wcalc-gap) * 9)) / 10) * 9) + (var(--wcalc-gap) * 8) + ((100vw - var(--scrollbar-width) - 1440px) / 2));
		height: 100%;
		background-color: #f7f5f2;
		border-radius: 5px 0 0 5px;
		z-index: 0;
	}
}


/* --------------------------------------------------------------------------------------------------- */

.PickupList {
	--bannersize: 250px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--bannersize), 1fr));
	align-items: flex-start;
	gap: 20px;
}

.sub.PickupList {
	--bannersize: 140px;
}

@media screen and (min-width: 768px) {
	.PickupList {
		--bannersize: 300px;
	}
	.sub.PickupList {
		--bannersize: 200px;
	}
}

@media screen and (min-width: 1280px) {
	.PickupList {
		gap: 40px;
	}
}

@media screen and (min-width: 1440px) {
	.PickupList {
		--bannersize: 400px;
	}
}

/* --------------------------------------------------------------------------------------------------- */

.PickupBanner {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	transition: .2s ease;
	background-color: #fff;
	box-shadow: 10px 10px 20px rgba(0,0,0,.1);
	transition-property: box-shadow, color, background;
}

.PickupBanner::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid currentColor;
	border-radius: 5px;
	box-sizing: border-box;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.3s ease;
	transition-property: color, opacity;
	pointer-events: none;
}

a.PickupBanner:hover {
	box-shadow: 2px 2px 8px rgba(0,0,0,.15);
}

a.PickupBanner:hover::before {
	color: var(--clor-link);
	opacity: 1;
}

.PickupBanner img {
	width: 100%;
	vertical-align: bottom;
}

.PickupBanner__meta {
	display: none;
	text-align: left;
	padding: 20px;
}

.PickupBanner__meta > * {
	margin-top: 10px;
}

.PickupBanner__meta > *:first-child {
	margin-top: 0;
}

.PickupBanner__ttl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	font-feature-settings: "palt";
}

.PickupBanner__ttl .lbl {
	
}

.PickupBanner__icon {
	position: absolute;
	top: 10px;
	left: auto;
	right: 10px;
	bottom: auto;
	width: 24px;
	height: 24px;
	margin: 0;
	transform: translateX(3px);
	stroke-width: 1.5;
}

.PickupBanner__txt {
	font-size: 1.3rem;
	line-height: 1.7;
	opacity: 0.8;
	text-align: justify;
}


@media screen and (min-width: 1280px) {
	.PickupBanner__meta {
		display: block;
		padding: 25px;
		box-sizing: border-box;
	}

	.PickupBanner__ttl {
		font-size: 1.6rem;
	}

	.PickupBanner__txt {
		
	}

	.PickupBanner__icon {
		top: auto;
		left: auto;
		right: 20px;
		bottom: 20px;
	}

}



/* --------------------------------------------------------------------------------------------------- */
/* download                                                                                            */
/* --------------------------------------------------------------------------------------------------- */

.Download {
	
}

.Download__body {
	
}

.DownloadList {
	--bannersize: 140px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--bannersize), 1fr));
	align-items: flex-start;
	gap: 20px;
}

@media screen and (min-width: 768px) {
	.DownloadList {
		--bannersize: 200px;
	}
}

@media screen and (min-width: 1280px) {
	.DownloadList {
		gap: 40px;
	}
}


.DownloadButton {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	position: relative;
	box-shadow: 10px 10px 20px rgba(0,0,0,.1);
	transition-property: box-shadow, color, background;
}

.DownloadButton::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid currentColor;
	border-radius: 5px;
	box-sizing: border-box;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.3s ease;
	transition-property: opacity;
	pointer-events: none;
}

.DownloadButton img {
	display: block;
	width: 100%;
	border-radius: 5px;
}

a.DownloadButton:hover::before {
	box-shadow: 2px 2px 8px rgba(0,0,0,.15);
}

a.DownloadButton:hover::before {
	color: var(--clor-link);
	opacity: 1;
}

.DownloadButton .icon {
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 2;
	color: #fff;
	background-color: #9d968c;
	padding: 3px;
	border-radius: 20px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
	transition-duration: 0.3s;
	stroke-width: 1.4;
	transition-property: transform, color, background;
	transition-timing-function: cubic-bezier(.3,1,.3,1), ease, ease;
}

a.DownloadButton:hover .icon::after {
	opacity: 1;
}

.DownloadButton svg {
	position: relative;
	z-index: 2;
	transition: inherit;
}

a.DownloadButton:hover .icon {
	transform: translateY(2px);
	color: #fff;
	background-color: var(--color-link);
	transition-timing-function: cubic-bezier(.3,5,.3,1), ease, ease;
}
