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

#title-area {
	background: url(../images/main_image.jpg) 50% center no-repeat;
	background-size: cover;
}

#contents-area #feature-list {

}

#contents-area #feature-list .multi {
	display: block;
	width: 100%;
}

#contents-area #feature-list h4 {
	margin-bottom: 20px;
	padding-top: 20px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	color: var(--color-link);
	border-top: 1px solid rgba(0, 0, 0, 0.3);
}

#contents-area #feature-list li {
	margin-bottom: 15px;
	padding-top: 15px;
	line-height: 1.8;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#contents-area #feature-list li:last-child {
	margin-bottom: 0;
}

#contents-area #feature-list li:before {
	content: "";
	display: inline-block;
	width: 1.0rem;
	height: 1.0rem;
	border-radius: 50%;
	background: #666;
	margin-right: 3px;
	box-sizing: border-box;
}

#contents-area #feature-list li span {
	font-size: 1.2rem;
	color: #F05C9E;
}

#contents-area #feature-list .attention {
	position: relative;
	margin-top: 10px;
	padding: 15px;
	font-size: 1.2rem;
	border-radius: 25px;
	background-color: #EFEDE4;
}

#contents-area #feature-list .attention:before {
	position: absolute;
	top: -5px;
	left: 30px;
	content: "";
	width: 10px;
	height: 10px;
	background-color: #EFEDE4;
	display: block;
	transform: rotate(-45deg);
}

#contents-area #attention li {
	margin-bottom: 10px;
	color: #F05C9E;
	font-size: 1.2rem;
}

#contents-area #photo-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 40px;
}

#contents-area #photo-list li {
	width: calc(50% - 10px);
	margin-bottom: 20px;
}

#contents-area .lower-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#contents-area .lower-list li {
	width: 100%;
}


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

	#contents-area .lower-list li {
		width: calc(33.33% - 10px);
		margin: 0 0 15px;
	}
}

@media screen and (min-width: 1280px) {
	#contents-area #feature-list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	#contents-area #feature-list section {
		width: calc(33.33% - 20px);
	}

	#contents-area #photo-list li {
		width: calc(33.333% - 20px);
		margin-bottom: 30px;
	}

	#contents-area #photo-list:before,
	#contents-area #photo-list:after {
		content: '';
		display: block;
		width: calc(33.333% - 20px);
		order: 1;
	}

	#contents-area .lower-list li {
		width: calc(33.333% - 20px);
		margin: 0 0 10px;
	}
}



.medimesseBanner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	top: -40px;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #6d6d6f;
	opacity: 0;
	transform: translateY(30px);
}

.domContentLoaded .medimesseBanner {
	opacity: 1;
	transform: translateY(0);
	transition: 1s cubic-bezier(.17,.84,.44,1) 1s;
	transition-property: opacity, transform;
}

.medimesseBanner + * {
	margin-top: 40px;
}

.medimesseBanner__anchor {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
	border-radius: 8px;
	position: relative;
	transition: .2s ease;
	background-color: #fff;
	box-shadow: 10px 10px 20px rgba(0,0,0,0.05);
	transition-property: box-shadow, color, background;
	color: inherit;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-feature-settings: "palt";
}

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

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

a.medimesseBanner__anchor:hover::before {
	color: var(--clor-link);
}

.medimesseBanner__anchor > * {
	margin: 0;
}

@media screen and (min-width: 1280px) {
	.medimesseBanner__anchor {
		padding: 50px;
	}
	
	a.medimesseBanner__anchor::before {
		--bgw:  1000px;
		--bgh:  500px;
		background-image: url(../images/medimesse_bg.png);
		background-repeat: repeat-x;
		background-position: center;
		background-size: var(--bgw) 100%;
		mix-blend-mode: multiply;
		opacity: 0.2;
		animation: medimesseBannerBg 30s linear infinite;
	}
	
	a.medimesseBanner__anchor:hover::before {
		opacity: 1;
	}
}

@keyframes medimesseBannerBg {
	0% {
		background-position: 0 center;
	}
	100% {
		background-position: var(--bgw) center;
	}
}


.medimesseBanner__img {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 30px;
}

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


.medimesseBanner__body {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.medimesseBanner__body > * {
	margin: 0;
}

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


.medimesseBanner__ttl {
	font-size: 120%;
}

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


.medimesseBanner__txt {
	text-align: left;
}

.medimesseBanner__txt .ib {
	display: inline;
}

.medimesseBanner__txt .imp {
	color: var(--color-accent);
}

@media screen and (min-width: 768px) {
	.medimesseBanner__txt {
		text-align: center;
	}
	.medimesseBanner__txt .ib {
		display: inline-block;
	}
}


.medimesseBanner__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	margin: auto;
}

.medimesseBanner__btn .lbl {
	transition: 0.5s cubic-bezier(.77,0,.18,1);
	transition-property: opacity, transform;
}

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

.medimesseBanner__btn svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.3;
}

@media screen and (min-width: 1280px) {
	
	.medimesseBanner__btn .lbl {
		display: block;
		padding-right: 30px;
		opacity: 0;
		transform: translateX(1em);
	}
	
	.medimesseBanner__btn .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.5;
	}
	
	a:hover .medimesseBanner__btn .lbl {
		opacity: 1;
		transform: translateX(0);
	}
	
	a:hover .medimesseBanner__btn .icon {
		transform: translateX(7em);
	}
}
