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

.contents-area section {
	margin-bottom: 60px;
}

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

.title-area__ja {
	letter-spacing: 1em;
}

.title-area__en {
	letter-spacing: 0;
}


@media screen and (min-width: 768px) {
	#title-area {
		background-position: center center;
	}
}

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


/* font @serif */
.serif {
	font-family: "FOT-マティス Pro M", MatissePro-M, serif;
}

/* font @sans-serif */
.sans-serif {
	font-family: "Roboto",  sans-serif;
}

/* 大見出し */
.h-section {
	font-size: 2rem;
}

/* 小見出し */
.h-subsection {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.6;
	color: #000;
}

/* 見出しの装飾（中央揃え） */
.h-underline {
	position: relative;
	margin-bottom: 1.2em;
	padding-bottom: 1em;
	text-align: center;
}

.h-underline:before {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	width: 200px;
	height: 1px;
	margin: auto;
	background: currentColor;
	content: "";
	opacity: 0.5;
}

/* 見出しの装飾（左揃え） */
.hsub-underline {
	position: relative;
	padding-bottom: 1.2em;
	margin-bottom: 1.2em;
}

.hsub-underline:before {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: auto;
	display: block;
	width: 200px;
	height: 1px;
	margin: auto;
	background: currentColor;
	content: "";
	opacity: 0.5;
}

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

	.h-section {
		font-size: 3.6rem;
	}

	.h-subsection {
		font-size: 2rem;
	}

}


/* ambulatory-renewal ------------------------------------ */

.ambulatory-renewal-map {
	overflow-x: auto;
	margin: 0px -25px;
	width: auto;
	display: block;
}

.ambulatory-map-wrap {
	background-color: #f7f5f2;
	width: 100%;
	margin: 0 0 0 25px;
	min-width: 800px;
	position: relative;
	border-radius: 5px;
}

.ambulatory-map-wrap:after {
	position: absolute;
	content: "";
	width: 25px;
	height: 100%;
	top: 0px;
	right: -25px;
}

.ambulatory-map-inner {
	padding: 20px;
	box-sizing: border-box;
}

.ambulatory-map h3 {
	display: block;
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
}

.ambulatory-map .map-fig {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.ambulatory-map .map-fig img {
	width: 100%;
}

.ambulatory-map .map__pin{
	width: 30px;
	height: 30px;
	position: absolute;
	opacity: 0;
	transition: .3s ease;
	/*animation: fluffy 1.2s alternate infinite;
	transform-origin: 50% 50%;
	box-shadow: 1px 1px 10px rgba(0,0,0,.15);*/
}

.load .ambulatory-map .map__pin {
	opacity: 1;
}

.ambulatory-map .map__pin .map__anchor {
	display: inline-block;
	width: 100%;
	height: 100%;
	display: flex;
	background-color: #fff;
	border-radius: 100%;
	transform: scale(1.0);
	position: relative;
/*	border: 1px solid transparent;*/
	transition: .3s ease;

	animation: scaleAnimation ease-out .6s infinite alternate;
	animation-fill-mode: forwards;
}

.ambulatory-map .map__pin .map__anchor:hover {
/*	animation-play-state: paused;*/
	animation-duration: .25s;
/*	border-color: var(--color-link);*/
	background-color: var(--color-link);
	color: #fff;
}

.ambulatory-map .map__pin .map__anchor:before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	border-radius: 100%;
	animation: fluffy .6s alternate infinite;
}

.ambulatory-map .map__pin .map__anchor:hover:before {
	border-color: transparent;
	animation-duration: .25s;
}

/*.ambulatory-map .map__pin .map__anchor:after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background-color: transparent;
	z-index: 1;
	border-radius: 100px;
	transition: .3s ease;
}

.ambulatory-map .map__pin .map__anchor:hover:after {
	background-color: rgba(105,140,200,.08);
}*/

.ambulatory-map .map__pin-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	transition: .3s ease;
	position: relative;
	z-index: 2;
}

.ambulatory-map .map__pin .map__anchor .icon svg {
	transition: .3s ease;
}


/* 説明アイコン */

.ambulatory-map #icon {
	padding: 20px;
	overflow: hidden;
	background-color: #f7f5f2;
	box-sizing: border-box;
	width: 100%;
	trasition: .3s ease;
}

.ambulatory-map #icon li {
	float: left;
	margin: 0 20px 10px 0;
	list-style: none;
}

.ambulatory-map #icon li img {
	display: inline-block;
	width: 20px;
	margin-right: 5px;
	vertical-align: middle;
	border-radius: 3px;
	overflow: hidden;
}

@keyframes scaleAnimation {
	0% {
		transform: translateY(0) scale(.85);
		box-shadow: 0 0 0 rgba(0,0,0,0.2);
	}
	100% {
		transform: translateY(-5px) scale(1);
		box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
	}
}

@keyframes fluffy {
	0% {
		opacity: .5;
		filter: blur(4px);
	}
	100% {
		opacity: 1;
		filter: blur(0px);
	}
}

@keyframes fluffy-inner {
	0% {
		transform: scale(.85);
	}
	100% {
		transform: scale(1.0);
	}
}


/* anchor position */

/*内視鏡待合室*/
.ambulatory-map .floor--edWaitingroom {
	top: 23%;
	left: 23.5%;
}

/* 内視鏡検査室 */
.ambulatory-map .floor--edroom {
	top: 26%;
	left: 30.2%;
}

/* 待合ホール */
.ambulatory-map .floor--waitingroom {
	top: 41%;
	left: 32%;
}

/* ビッグモニター */
.ambulatory-map .floor--bigmonitor {
	top: 50%;
	right: 48%;
}

/* 患者様の声 掲示板 */
.ambulatory-map .floor--voice {
	top: 26%;
	right: 24%;
}

/* アクアリウム */
.ambulatory-map .floor--aquarium {
	top: 56%;
	right: 37.2%;
}

/* 小児リハ */
.ambulatory-map .floor--pediatricRehabilitation {
	bottom: 20%;
	right: 42%;
}

/* 外来受付 */
.ambulatory-map .floor--outpatientReception {
	top: 60%;
	left: 37%;
}

/* 診察室 */
.ambulatory-map .floor--examinationroom {
	top: 47%;
	left: 25%;
}

/**/

.map-info-wrap {
	background-color: #fff;
	padding: 1.5em 1.5em 2em;
	border-radius: 5px;
}

.map-info-img,
.map-info-txt {
	width: 100%;
}

.map-info-img {
	box-sizing: border-box;
	margin-bottom: 2em;
	position: relative;
}

.map-info-wrap img {
	width: 100%;
}

.map-info-img:before {
	position: absolute;
	inset: 0 auto auto;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #f7f5f2;
	transition: 1s linear .5s;
	z-index: 2;
}

.lightcase-inlineWrap {
	overflow: auto;
}

.lightcase-open .map-info-img:before {
	animation: imgAnm 1s normal forwards cubic-bezier(.65,.05,.36,1) .5s;
}

@keyframes imgAnm {
	0% {
		height: 100%;
	}
	100% {
		height: 0;
	}
}

.map-info-img img {
	display: block;
	filter: brightness(0.5);
	transition: 1s ease 0.25s;
	transition-property: filter;
}

.lightcase-open .map-info-img img {
	filter: brightness(1);
}

/* lightcaseでtransition効かず */
.lightcase-open .map-info-img:before {
/*	transition: 1s cubic-bezier(.65,.05,.36,1) 1.5s;*/
/*	top: 100%;*/
/*	height: 0;*/
}

.map-info-txt {
	color: #000;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: center;
	display: flex;
	flex-direction: column-reverse;
}

.map-info-txt .icon {
/*	border-radius: 100px;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;*/
	margin-bottom: .5em;
	opacity: 0;
	color: var(--color-link);
}

.map-info-txt .map-info-ttl {
	margin-bottom: 1em;
	font-weight: 600;
	font-size: 1.6rem;
	opacity: 0;
}

.map-info-txt .map-info-ttl + p {
	opacity: 0;
	text-align: left;
}

.lightcase-open .map-info-txt .icon {
	animation: txtFadeIn 1s normal forwards cubic-bezier(.17,.84,.44,1) .2s;
}

.lightcase-open .map-info-txt .map-info-ttl {
	animation: txtFadeIn .6s normal forwards cubic-bezier(.17,.84,.44,1) .4s;
}

.lightcase-open .map-info-txt .map-info-ttl + p {
	animation: txtFadeIn .6s normal forwards cubic-bezier(.17,.84,.44,1) .6s;
}

/*.map-info-txt svg {
	stroke-width: .8;
}*/

@keyframes txtFadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes txtAnm02 {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	100% {
		opacity: .3;
		transform: translateY(0);
	}
}



/* concept */

.ambulatory-concept {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
}

.concept-fig {
	width: 100%;
	margin: 0 auto;
}

.concept-fig-inner {
	display: block;
	width: 100%;
	margin: 0 auto 20px;
	opacity: 0;
	transition: 1s ease;
}

.load .concept-fig-inner {
	opacity: 1;
}

.concept-fig .fig1 {
	width: calc(100% - 30px);
	transition-delay: .2s;
}

.concept-fig .fig2 {
	width: 50%;
	margin-top: -80px;
	margin-left: 0;
	transition-delay: .4s;
	box-shadow: 3px 3px 10px rgba(0,0,0,.08);
}

.concept-fig img {
	width: 100%;
	margin: auto;
}

.concept-txt {
	width: 100%;

	}

.concept-txt--h {
	font-size: 2rem;
	line-height: 1.8;
	margin-bottom: 1.5em;
}

.concept-txt p {
	line-height: 2.0;
	font-size: 1.5rem;
}


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

	.ambulatory-map-wrap {
		width: 100%;
		min-width: 900px;
	}

	.ambulatory-map .map-fig {
		width: 100%;
	}

	.ambulatory-map .map__pin{
		width: 42px;
		height: 42px;
	}

	.ambulatory-map .map__pin-inner .icon.-s svg {
		width: 30px !important;
		height: 30px !important;
	}

	.ambulatory-map #icon li {
		margin-bottom: 0;
	}

	.map-info-wrap {
		padding: 3em;
	}

	.concept-fig {
		width: 85%;
	}

	.concept-fig-inner {
		margin: 0 0 20px auto;
	}

	.concept-fig .fig1 {
		width: calc(100% - 60px);
	}

	.concept-fig .fig2 {
		margin-top: -180px;
	}

	.concept-txt {
		text-align: center;
	}

	.concept-txt p {
		line-height: 2.2;
		font-size: 1.6rem;
	}

}

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

	.ambulatory-map-wrap {
		margin: 0;
	}

	.ambulatory-map-wrap:after {
		display: none;
	}

	.ambulatory-renewal-map {
		margin: 0;
	}

	.ambulatory-map .map-fig {
		width: 75%;
	}

	.ambulatory-map h3 {
		font-size: 2.2rem;
	}

	.map-info-inner {
		display: flex;
		flex-wrap: wrap;
	}

	.map-info-img {
		width: calc(75% - 3em);
		margin-right: 3em;
		margin-bottom: 0;
	}

	.map-info-txt .map-info-ttl {
		font-size: 1.8rem;
	}

	.map-info-txt {
		width: 25%;
		text-align: left;
	}

	.map-info-txt-inner {
		display: flex;
		flex-direction: column;
		height: 100%;
/*		justify-content: flex-end;
		position: relative; */
		justify-content: flex-end;
		position: relative;
	}

	.map-info-txt .icon {
		/*position: absolute;
		top: 0;
		right: 0;
		bottom: auto;
		text-align: right;*/
		margin-bottom: 20px;
	}

	.map-info-txt .icon svg {
		transform: translateX(-10%);
	}

	.map-info-txt p {
		font-size: 1.4rem;
	}

	.concept-txt {
		text-align: left;
	}

	.concept-txt--h {
		font-size: 2.4rem;
	}

	.ambulatory-concept {
		flex-direction: row-reverse;
	}

	.concept-fig {
		width: 60%;
	}

	.concept-txt {
		position: relative;
		z-index: 1;
		width: 60%;
		max-width: 600px;
		padding-top: 120px;
		margin-right: 0;
		margin-left: -100px;
	}

}


/* ambulatory-summary ------------------------------------ */


.ambulatory-summary {
	
}

.ambulatory-summary__section {
	
}

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

	.ambulatory-summary {
		display: flex !important;
		justify-content: space-between;
	}

	.ambulatory-summary__section {
		width: calc(50% - 20px) !important;
		margin-bottom: 0 !important;
	}

}

.section__ttl {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
}

.section__ttl .icon {
	margin-right: 15px;
}

.section__ttl svg {
	stroke-width: 1.4;
}

.section__ttl .lbl {
	
}

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

	.section__ttl {
		font-size: 2.2rem;
	}

	.section__ttl .icon {
		
	}

	.section__ttl .lbl {
		
	}

}



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

.contents-area .news-list li {
	line-height: 1.6;
}

.contents-area .news-list li a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 15px 0;
	font-size: inherit;
}

.contents-area .news-list li time {
	width: 100%;
	margin-bottom: 5px;
	font-family: 'Open Sans', sans-serif;
}

.contents-area .news-list li .ttl {
	width: 100%;
	font-weight: bold;
}

.contents-area .news-list li .cat {
	position: absolute;
	font-weight: normal;
	left: 6em;
	width: auto;
}

.contents-area .news-list li .cat + .ttl {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.contents-area .news-list li a {
		flex-direction: row;
	}
	
	.contents-area .news-list li time {
		width: 140px;
		margin-bottom: 0;
		flex-grow: 0;
		flex-shrink: 0;
	}
	.contents-area .news-list li .cat {
		position: relative;
		left: auto;
		width: auto;
		font-weight: bold;
		margin-right: 1em;
		padding-right: 1em;
		border-right: 1px solid rgba(0,0,0,0.2);
	}
	.contents-area .news-list li .cat + .ttl {
		flex: 1;
	}
}

/* consultation --------------------------------- */

#contents-area .outline h4 {
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
	font-size: 1.6rem;
	font-weight: bold;
}

#contents-area .outline h4:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	border: 5px solid var(--color-link);
	border-radius: 50%;
}

#contents-area .outline dl {
	line-height: 1.8;
	margin-bottom: 1em;
}

#contents-area .outline dl div {
	border-top: 1px solid #d9d9d9;
	display: flex;
	padding: 15px 0;
}

#contents-area .outline dl div:last-child {
	margin-bottom: 0;
}

#contents-area .outline dt {
	width: 70px;
	letter-spacing: 1em;
}

#contents-area .outline dd {
	width: calc(100% - 70px);
}

@media screen and (min-width: 768px) {
	#contents-area .outline dt {
		width: 140px;
	}
	
	#contents-area .outline dd {
		width: calc(100% - 140px);
	}
}


/* lower-list --------------------------------- */

#contents-area .lower-list {
	
}

#contents-area .lower-list li {
	width: 100%;
	margin: 0 0 10px;
}


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

	#contents-area .lower-list:after {
		content: '';
		display: block;
		width: calc(50% - 5px);
	}

	#contents-area .lower-list li {
		width: calc(50% - 5px);
	}
}


@media screen and (min-width: 1280px) {
	#contents-area .lower-list li {
		width: calc(25% - 10px);
	}

	#contents-area .lower-list:before,
	#contents-area .lower-list:after {
		content: '';
		display: block;
		width: calc(25% - 10px);
		order: 1;
	}
}





/* time-table ---------------------------------------------------------------- */

.time-table {
	position: relative;
}

@media screen and (min-width: 768px) {
	.time-table {
		position: static;
	}
}

.time-table section {
	width: 100%;
	margin-bottom: 0;
}

.time-table h4 {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.time-table h4 span {
	display: block;
	font-size: 1.1rem;
}

.time-table p {
	margin: 30px 0;
	font-size: 1.2rem;
}

@media screen and (min-width: 1280px) {
	.time-table h4 {
		font-size: 2.0rem;
	}
}


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

.time-table__table-outer {
	overflow-x: auto;
	margin: 0 -25px 40px;
}

@media screen and (min-width: 768px) {
	.time-table__table-outer {
		margin: 0 0 40px;
	}
}

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

.time-table__table {
	position: relative;
	margin: 0;
	margin-left: 25px;
	width: 100%;
	min-width: 700px;
	border-collapse: separate;
	margin-top: 40px;
	font-size: 1.2rem;
}

.time-table__table:after {
	position: absolute;
	content: '';
	width: 25px;
	height: 100%;
	top: 0;
	right: -25px;
}

.time-table__table:first-child {
	margin-top: 0;
}

.time-table__table tr {
	box-sizing: border-box;
}

.time-table__table th,
.time-table__table td {
	text-align: center;
	line-height: 1.6;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.time-table__table th {
	height: 40px;
	font-weight: bold;
	background-color: rgb(242, 242, 242);
}

.time-table__table th:first-child {
	border-left: 1px solid #ddd;
}

.time-table__table th.outpatient span {
	font-size: 1.1rem;
	display: inline-block;
	margin-left: 15px;
}

.time-table__table td {
	width: 10%;
	height: 40px;
	padding: 3px;
	box-sizing: border-box;
}

.time-table__table td > * {
	margin: 8px 5px;
	line-height: 1.4;
}

.time-table__table td a {
	display: inline-block;
	padding: 3px 0;
	border-bottom: 1px solid currentColor;
	text-decoration: none;
}

.time-table__table td a span {
	display: block;
	font-size: 1rem;
}

.time-table__table td a:hover {
	text-decoration: none;
	color: var(--color-link);
}


.time-table__table .subject {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	z-index: 1;
	width: 10%;
	padding: 5px;
}

.time-table__table .subject:last-child {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.time-table__table .subject .note {
	font-weight: normal;
	font-size: 1.2rem;
}

.time-table__table .thead th {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	height: 40px;
	border: 1px solid #ddd;
	border-left: none;
}

.time-table__table .thead:last-child th {
	border-top: none;
}

.time-table__table .thead th:first-child {
	border-left: 1px solid #ddd;
}

.time-table__table .thead th:last-child {
	
}

.time-table__table .subject:last-child {
	border-bottom: none;
}

.time-table__table tr:first-child > *:first-child {
	border-radius: 8px 0 0 0;
}

.time-table__table tr:first-child > *:last-child {
	border-radius: 0 8px 0 0;
}

.time-table__table .last th:first-child,
.time-table__table tr:last-child > th:first-child {
	/*border-radius: 0 0 0 8px;*/
}

.time-table__table tr:last-child > *:last-child {
	/*border-radius: 0 0 8px 0;*/
}

.time-table__table > *:last-child tr:last-child > th:first-child {
	border-radius: 0 0 0 8px;
}

.time-table__table > *:last-child tr:last-child > *:last-child {
	border-radius: 0 0 8px 0;
}


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

	.time-table__table {
		position: static;
		min-width: 100%;
		margin: 0;
	}

	.time-table__table:after {
		content: none;
	}

}

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

	.time-table__table {
		font-size: 1.3rem;
	}

	.time-table__table th,
	.time-table__table td {
		font-size: 1.3rem;
	}

	.time-table__table td a {
		cursor: help;
	}

}

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

	.time-table__table tr,
	.time-table__table td {
		transition: background 0.05s ease-in-out;
	}

	.time-table__table tr:hover {
		background-color: #698cc80f;
		font-weight: bold;
	}

	.time-table__table .hover {
		background-color: #698cc80f;
	}

}





/* popup window --------------------------------- */

.spots .spot {
	pointer-events: none;
	opacity: 0;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	height: auto;
	max-height: calc(100vh - 100px);
	padding: 20px;
	font-size: 0.9em;
	background-color: #fff;
	overflow-x: visible;
	overflow-y: auto;
	z-index: 9999;
	border-radius: 15px 15px 0 0;
	transition: opacity 0.2s ease-in-out;
}


.spots .spot.-show {
	opacity: 1;
	pointer-events: auto;
}

@media screen and (min-width: 768px) {
	
	.spots .spot {
		position: absolute;
		left: 0;
		top: 0;
		bottom: auto;
		width: 480px;
		max-height: none;
		margin-bottom: 20px;
		padding: 0;
		border-radius: 5px;
		background-color: transparent;
		overflow: visible;
		
	}
	
	.spots .spot::after {
		display: none;
		position: absolute;
		left: auto;
		right: auto;
		top: auto;
		bottom: -10px;
		width: 20px;
		height: 20px;
		margin: auto;
		z-index: 1;
		background-color: #fff;
		box-sizing: border-box;
		clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0 50%);
		content: "";
	}
	
	@supports(--css: variables) {
		.spots .spot {
			--arrowleft: 0;
			--arrowtop: 0;
		}
		.spots .spot::after {
			display: block;
			left: var(--arrowleft);
		}
	}
}

@media screen and (min-width: 1280px) {
	.spots .spot {
		transition-property: opacity, transform;
		transition-timing-function: cubic-bezier(.22,.61,.36,1);
		transform: translateY(-15px);
	}
	
	.spots .spot.-show {
		transform: translateY(0);
	}
}

.spots .spot__inner {
	display: flex;
	align-items: flex-start;
	padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
	.spots .spot__inner {
		position: absolute;
		top: auto;
		bottom: 0;
		padding: 20px;
		background-color: #fff;
		border-radius: 5px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	}
}

.spots .spot__ttl {
	border: none;
	margin-bottom: 40px;
	padding: 0;
	font-size: 2rem;
	font-weight: normal;
	color: #000;
	line-height: 2.4rem;
	background: none;
}

.spots .spot__ttl span {
	display: inline-block;
	margin: 5px 0;
	font-size: 1.2rem;
	font-weight: bold;
}

.spots .spot figure {
	width: 80px;
	margin-right: 20px;
	background: #dfdfdf;
	line-height: 0;
}

.spots .spot figure img {
	width: 100%;
}

.spots .spot .spot__body {
	width: calc(100% - 80px);
}

.spots .spot p {
	margin-top: 20px;
	line-height: 1.8rem;
}

.spots .spot dl {
	font-size: 1.2rem;
	line-height: 1.8;
}

.spots .spot dt {
	width: auto;
	float: none;
	margin: 10px 0 0 0;
	font-weight: bold;
	color: #000;
	letter-spacing: normal;
}

.spots .spot dd {
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
}


.spot__body {
	
}



@media screen and (min-width: 768px) {
	
	.spots .spot__ttl {
		border: none;
		margin-bottom: 40px;
		padding: 0;
		font-size: 2.4rem;
		font-weight: normal;
		color: #000;
		line-height: 2.4rem;
		background: none;
	}
	
	.spots .spot__ttl span {
		font-size: 1.3rem;
		font-weight: bold;
	}
	
	.spots .spot figure {
		float: left;
		width: 120px;
		margin-right: 20px;
		background: #dfdfdf;
		line-height: 0;
	}
	
	.spots .spot figure img {
		width: 100%;
	}
	
	.spots .spot .spot__body {
		float: right;
		width: 295px;
	}
	
	.spots .spot p {
		margin-top: 20px;
		line-height: 1.8rem;
	}
	
	.spots .spot dl {
		font-size: 1.3rem;
		line-height: 2.0rem;
	}
	
	.spots .spot dt {
		width: auto;
		float: none;
		margin: 10px 0 0 0;
		font-weight: bold;
		color: #000;
		letter-spacing: normal;
		width: 100% !important;
	}
	
	.spots .spot dd {
		margin: 0;
		padding: 0;
		font-size: 1.2rem;
		width: 100% !important;
	}
}


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

.spots__overlay {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.1);
	z-index: 100;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.spots__overlay.-show {
	opacity: 1;
	pointer-events: auto;
}

@media screen and (min-width: 1280px) {
	.spots__overlay {
		height: 0;
		width: 0;
	}
}


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


.spots__close {
	position: fixed;
	right: 20px;
	background-color: #222;
	width: 36px;
	height: 36px;
	top: auto;
	bottom: auto;
	z-index: 9999;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
}

.spots__close.-show {
	opacity: 1;
	pointer-events: auto
}

.spots__close .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	stroke-width: 1.5;
}

@media screen and (min-width: 768px) {
	.spots__close {
		position: absolute;
		right: auto;
		left: auto;
	}
}

@media screen and (min-width: 1280px) {
	.spots__close {
		display: none !important;
	}
}

