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

/* ==========================================================================
	Reset CSS
========================================================================== */
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)){
	all: unset;
	display: revert;
}
*,*::before,*::after{
	box-sizing: border-box;
}
a, button{
	cursor: revert;
}
ol, ul, menu{
	list-style: none;
}
img{
	vertical-align: top;
	width: 100%;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
input, textarea{
	-webkit-user-select: auto;
	user-select: auto;
}
textarea{
	white-space: revert;
}
meter{
	-webkit-appearance: revert;
	appearance: revert;
}
::placeholder{
	color: unset;
}
:where([hidden]){
	display: none;
}
:where([contenteditable]:not([contenteditable="false"])){
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	line-break: after-white-space;
	-webkit-user-select: auto;
	user-select: auto;
}
:where([draggable="true"]){
	-webkit-user-drag: element;
}


/* ==========================================================================
	Setting CSS
========================================================================== */
:root{
	/* width */
	--wMin: 1240px;
	--wBase:  1200px;
	--w800:  860px;
	--w900:  960px;
	/* color */
	--clrLBlue:  #0071ce;
	--clrRed:    #d41100;
	--clrGray:   #666666;
	--clrLGray:  #e9f1f4;
	--clrBgGray: #d7dcdc;
	/* border */
	--borderBase: 1px solid var(--clrLBlue);
	/* font */
	--fBase: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
	--fEn:   'Montserrat', var(--fBase);
	--fRegular: 400;
	--fMedium: 500;
	--fSemibold: 600;
	--fBold: 700;
	--fBk: 900;
	/* line-height */
	--lineHBase: 100%;
	/* letter-spacing */
	--letterSBase: 0.15rem;
	/* transition */
	--transition03: all 0.3s;
}
html{
	font-size: 62.5%;
}
body{
	background-color: #fff;
	color: #000;
	font-size: 1.4rem;
	font-family: var(--fBase);
	font-weight: 400;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 170%;
}
a{
	color: var(--clrBase);
	text-decoration: none;
	transition: var(--transition03);
}
@media (hover: hover) {a:hover,
	button:hover{
		opacity: .6;
		transition: var(--transition03);
	}
}
@media print, screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width: var(--wMin);
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/*
	表示切替
---------------------------------------------------- */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}

/* ==========================================================================
	common
========================================================================== */
/*
	box
---------------------------------------------------- */
/* wrapper
============================== */
#wrapper{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	width: 100%;
}
/* ctsWrapper
============================== */
#ctsWrapper{
	background-color: #fff;
}
/* ctsArea
============================== */
.ctsArea{
	width: var(--wBase);
	padding: 0 30px 80px 30px;
	margin: 0 auto;
}
/* ボタン
============================== */
.baseBtn{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 180px;
	min-height: 40px;
	font-weight: var(--fSemibold);
	color: #fff;
	padding: 10px 30px  10px 20px;
	background: #000;
}
.baseBtn::after{
	position: absolute;
	top: 50%;
	right: 18px;
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg);
	margin-left: 6px;
	translate: 0 -50%;
	transition: var(--transition03);
}
@media (hover: hover) {
	.baseBtn:hover::after{
		translate: 5px -50%;
	}
}

/* TOPタイトル */
.topTitCmn{
	position: relative;
	width: fit-content;
	font-weight: var(--fBold);
	font-size: 3.2rem;
	letter-spacing: 0.15em;
	margin-inline: auto;
	border-bottom: var(--borderBase);
	margin-bottom: 40px;
	padding-block: 0 3px;
	z-index: 10;
}
/* TOPサブタイトル */
.topTitSubCmn{
	color: var(--clrLBlue);
	font-weight: var(--fBold);
	font-size: 2.6rem;
	line-height: 100%;
	margin-bottom: 25px;
}
/* TOPテキスト見出し */
.topHedTxtCmn{
	font-size: 1.8rem;
	font-weight: var(--fBold);
	margin: -20px 0 25px;
}
/* TOPテキスト */
.topTxtCmn{
	text-align: justify;
	margin-bottom: 40px;
}

/*	品名とテキスト */
.cmnItemTit{
	font-size: 1.8rem;
	font-weight: var(--fBold);
	line-height: 130%;
	margin-top: 20px;
}
.cmnItemTxt{
	font-size: 1.3rem;
	text-align: justify;
	margin-top: 10px;
}

/* ==========================================================================
	header
========================================================================== */
#headerWrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-width: var(--wMin);
	height: 80px;
	background-color: #fff;
	padding: 20px 30px 20px 20px;
	transition: var(--transition05);
	z-index: 9999;
}
.headerLArea{
	display: flex;
}
.headerSubTit{
	font-size: 2.2rem;
	font-weight: var(--fSemibold);
	border-bottom: var(--borderBase);
}
.headerRArea{
	display: flex;
	align-items: flex-end;
	height: 100%;
}
.headerBackBtn{
	position: relative;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: var(--lineHBase);
	color: var(--clrGray);
	padding-right: 16px;
}
.headerBackBtn::after{
	position: absolute;
	top: 50%;
	right: 0;
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--clrGray);
	border-bottom: 1px solid var(--clrGray);
	transform: rotate(-45deg);
	translate: 0 -50%;
	transition: var(--transition03);
}
@media (hover: hover) {
	.headerBackBtn:hover::after{
		translate: 5px -50%;
	}
}
/* ハンバーガーメニュー非表示 */
.headerBtnArea,
.hOpenMenuWrapper{
	display: none;
}

/* ==========================================================================
	kvWrapper
========================================================================== */
#kvWrapper{
	min-height: 700px;
	height: calc(100vh - 80px);
	width: 100%;
}
.kvInBox{
	position: relative;
	height: 100%;
	margin-inline: auto;
}
.kvTit{
	position: absolute;
	bottom: 14%;
	right: 0;
	z-index: 10;
}
.jsSwiperKv{
	height: 100%;
	overflow: hidden;
}
.jsSwiperKv img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ==========================================================================
	readWrapper
========================================================================== */
#readWrapper{
	position: relative;
}
#readWrapper .ctsArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: 80px 120px;
}
.readTxt{
	width: 700px;
	font-size: 1.7rem;
	line-height: 230%;
	text-align: justify;
	margin-bottom: 80px;
}
.readTxt span{
	color: var(--clrRed);
}
.exhibitionList{
	display: flex;
    justify-content: center;
    width: 100%;
    gap: 45px;
}
.exhibitionTxtArea{
	margin: auto 0;
}
.exhibitionTit{
	font-size: 2.2rem;
	font-weight: var(--fBk);
	line-height: 150%;
	margin-bottom: 12px;
}
.exhibitionDate{
	font-size: 1.8rem;
	font-weight: var(--fSemibold);
	line-height: 125%;
	margin-bottom: 23px;
}
.exhibitionDate span{
	font-size: 1.5rem;
	font-weight: var(--fMedium);
}
/* 画像サイズ */
#readWrapper .phBase{
	width: 209px
}
/* .exhibitionBtnのグレーアウト */
p.exhibitionBtn.baseBtn.grayOut{
	background: #9a9a9a;
}
p.exhibitionBtn.baseBtn.grayOut:hover::after{
	translate: 0 -50%;
}


/* ==========================================================================
	anchorWrapper
========================================================================== */
#anchorWrapper .ctsArea{
	text-align: center;
	padding-bottom: 100px;
}
.anchorTit{
	font-weight: var(--fBold);
	font-family: var(--fEn);
	letter-spacing: 0.2rem;
	font-size: 2.2rem;
	margin-bottom: 50px;
}
.anchorList{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}
.anchorList li{
	width: 100%;
	height: 100%;
	border-left: 1px solid var(--clrGray);
}
.anchorList li:last-child{
	border-right: 1px solid var(--clrGray);
}
.anchorList li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
}
.anchorList li span{
	position: relative;
	display: block;
	padding-right: 30px;
}
.anchorList li span::after{
	position: absolute;
	top: 50%;
	right:  0;
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 1px solid var(--clrGray);
	border-bottom: 1px solid var(--clrGray);
	transform: rotate(45deg);
	translate: 0 -50%;
	transition: var(--transition03);
}
@media (hover: hover) {
	.anchorList li a:hover span::after{
		translate: 0 1px;
	}
}


/* ==========================================================================
	messageWrapper
========================================================================== */
#messageWrapper .ctsArea{
	width: var(--w800);
}
.messageList{
	display: flex;
	flex-direction: column;
	text-align: justify;
	gap: 15px;
	margin: 0 auto;
	padding-block: 0 50px;
}
.messageName{
	font-size: 1.6rem;
	font-weight: var(--fBold);
	line-height: 100%;
	margin-block: 0 7px;
}
.messageNameTxt{
	font-weight: var(--fSemibold);
}
.messageTxt{
	font-weight: var(--fRegular);
	line-height: 200%;
	text-align: justify;
}
.messageSubTit{
	font-size: 1.8rem;
	font-weight: var(--fBold);
	line-height: 100%;
	text-align: left;
}
/* 収蔵品コーナーボタン */
.collectionBtn.baseBtn{
	width:230px;
	margin-top: 60px;
}
/* カラフルパレット詳細はこちら */
#messageWrapper .phBase{
	width: 209px;
}



/* メッセージ動画 */
.movieArea{
	width: fit-content;
	margin-inline: auto;
}

.movieVideo{
	width: 100%;
	height: 738px;
	display: block;
	border: 1px solid #000;
	cursor: pointer;
}


/* ==========================================================================
	eventWrapper
========================================================================== */
#eventWrapper{
	background: var(--clrLGray);
}
#eventWrapper .ctsArea{
	width: var(--w900);
	padding-top: 80px;
}
/* list */
#eventWrapper .list{
	display: flex;
	flex-wrap: wrap;
	gap: 50px 60px;
}
#eventWrapper .list li{
	width: calc((100% - 60px) / 2);
}
/* inquiryArea */
#eventWrapper .inquiryArea{
	display: flex;
	align-items: center;
	width: 100%;
	height: 100px;
	margin-top: 60px;
	border: 1px solid var(--clrGray);
}
#eventWrapper .inquiryArea .cmnItemTit{
	position: relative;
	height: 100%;
	font-size: 1.5rem;
	line-height: 100px;
	margin-top: initial;
	padding: 0 40px;
}
#eventWrapper .inquiryArea .cmnItemTit::after{
	position: absolute;
	content: "";
	display: block;
	background-color: var(--clrGray);
	width: 1px;
	height: calc(100% - 50px);
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#eventWrapper .inquiryArea .cmnItemTxt{
	margin-top: initial;
	padding-left: 40px;
}


/* ==========================================================================
	shopWrapper
========================================================================== */
#shopWrapper .ctsArea{
	padding-top: 80px;
}
#shopWrapper .topTxtCmn .date{
	display: block;
	padding-top: 15px;
}
/* リスト */
#shopWrapper .list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	gap: 60px 0;
}
#shopWrapper .list li{
	width: 340px;
}
/* 価格 */
#shopWrapper .cmnItemTit .price{
	font-weight: var(--fSemibold);
	font-size: 1.4rem;
}
/* 税込み */
#shopWrapper .cmnItemTit .priceTax{
	font-weight: var(--fRegular);
	font-size: 1.2rem;
}


/* ==========================================================================
	topicsWrapper
========================================================================== */
.topicsList li{
	display: flex;
	border-bottom: 1px solid var(--clrGray);
}
.topicsList li:first-of-type{
	border-top: 1px solid var(--clrGray);
}
.topicsDate{
	min-width: 190px;
	font-family: var(--fEn);
	font-weight: var(--fSemibold);
	padding: 21px 70px 21px 25px;
}
.topicsTxt{
	font-weight: var(--fRegular);
	padding: 21px 25px 21px 0;
}
.topicsTxt span{
	font-weight: var(--fBold);
}
.topicsNotes{
	display: flex;
	flex-direction: column;
	font-size: 1.2rem;
	text-align: justify;
	gap: 5px;
	margin-top: 13px;
	padding-left: 1em;
}
.topicsNotes li{
	position: relative;
	padding-left: 0.8em;
}
.topicsNotes li::after{
	content: " ";
	display: block;
	position: absolute;
	width: 3px;
	background-color: #000000;
	top: 0.6em;
	left: 0;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
#topicsWrapper .link{
	color: var(--clrLBlue);
	text-decoration: underline;
}
#topicsWrapper .link:hover{
	text-decoration: none;
}

/* ==========================================================================
	footer
========================================================================== */
#footerWrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	color: #fff;
	padding: 0 30px;
	margin-top: auto;
	background-color: #000;
}
.footerCopy{
	font-family: var(--fEn);
	font-size: 1.2rem;
}

@media screen and (max-width:812px){
	/* ==========================================================================
		Setting CSS
	========================================================================== */
	:root{
		/* width */
		--wMin:  100%;
		--wBase: 100%;
		--w900:  100%;
		--w800:  100%;
		--w500:  500px;
		/* height */
		--hHeader:       60px;
		--hHeaderScroll: 40px;
		/* line-height */
		--lineHBase: 180%;
		/* letter-spacing */
		--letterSBase: 0.15rem;
	}
	body{
		-webkit-text-size-adjust: 100%;
		font-size: 1.4rem;
	}
	p{
		line-height: 150%;
	}
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	br.sp{
		display: inline-block;
	}

	/* ==========================================================================
		common
	========================================================================== */
	/*
		box
	---------------------------------------------------- */
	/* ctsArea
	============================== */
	.ctsArea{
		max-width: var(--w500);
		padding: 0 20px 40px 20px;
	}

	/* ボタン */
	.baseBtn{
		width: 100%;
		font-size: 1.3rem;
		padding: 10px 15px;
	}
	.baseBtn::after{
		right: 12px;
		margin-left: 0;
		width: 11px;
		height: 11px;
	}
	/* TOPタイトル */
	.topTitCmn{
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	/* TOPサブタイトル */
	.topTitSubCmn{
		font-size: 1.8rem;
		line-height: 140%;
		margin-bottom: 8px;
	}
	/* TOPテキスト見出し */
	.topHedTxtCmn{
		font-size: 1.6rem;
		margin: -6px 0 15px;
	}
	/* TOPテキスト */
	.topTxtCmn{
		margin-bottom: 25px;
	}

	/*	品名とテキスト */
	.cmnItemTit{
		font-size: 1.5rem;
		margin-top: 10px;
	}
	.cmnItemTxt{
		font-size: 1.2rem;
		line-height: 140%;
		margin-top: 10px;
	}


	/* ==========================================================================
		header
	========================================================================== */
	#headerWrapper{
		height: 60px;
		min-width: initial;
		padding: 0;
	}
	.headerLArea{
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.headerLogo{
		max-width: 85px;
		margin-left: 17px;
	}
	.headerSubTit{
		font-size: 1.4rem;
		margin-bottom: 3px;
		translate: -13px;
	}
	/* ホームページへ戻るボタンを非表示 */
	.headerRArea{
		display: none;
	}
	.headerBtnArea{
		flex-direction: column;
		z-index: 999999999;
	}
	.headerBtnArea .baseBtn{
		display: none;
	}
	.headerMenuBtn{
		position: relative;
		display: block;
		height: 60px;
		aspect-ratio: 1 / 1;
		background: #000;
	}
	.headerMenuBtn.jsBtnMenu.jsOpen{
		z-index: 999999999;
	}
	.headerMenuBtn::before,
	.headerMenuBtn span,
	.headerMenuBtn::after{
		position: absolute;
		left: 50%;
		translate: -50%;
		content: "";
		display: block;
		width: 24px;
		height: 1px;
		transition: all 0.3s;
	}
	.headerMenuBtn::before{
		top: calc(50% - 9px);
		background-color: var(--clrLBlue);
	}
	.headerMenuBtn span{
		top: 50%;
		background: var(--clrLBlue);
	}
	.headerMenuBtn::after{
		top: calc(50% + 9px);
		background-color: var(--clrLBlue);
	}
	.headerMenuBtn.jsOpen::before{
		top: 50%;
		right: 50%;
		transform: rotate(45deg);
	}
	.headerMenuBtn.jsOpen span{
		display: none;
	}
	.headerMenuBtn.jsOpen::after{
		top: 50%;
		right: 50%;
		transform: rotate(-45deg);
	}
	.headerBtnArea,
	.hOpenMenuWrapper{
		display: contents;
	}

	/*
		Menu
	-----------------------------------------------------------------------------------------------*/
	.hOpenMenuWrapper.jsOpen {
		display: block;
		opacity: 1;
		min-width: calc(100% - 20px);
		height: fit-content;
		overflow-y: scroll;
	}
	.hOpenMenuWrapper{
		position: fixed;
		top: 50px;
		left: 50%;
		display: none;
		opacity: 0;
		width: calc(100% - 40px);
		margin: 0 auto;
		transform: translateX(-50%);
		border-radius: 30px;
		z-index: 999999;
		background-color: var(--clrDeepYellow);
		transition: all .3s;
	}
	.hOpenMenuCts{
		max-width: 500px;
		padding: 35px 20px 20px;
		margin-inline: auto;
	}
	.menuBtnArea{
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
	.menuAnchorList{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 35px;
	}
	.menuAnchorList li{
		color: #fff;
		font-size: 1.6rem;
	}
	.headerBackBtn{
		color: #fff;
		font-size: 1.4rem;
		text-align: center;
		padding-right: 0;
		margin-top: 30px;
	}
	.headerBackBtn::after{
		display: none;
	}
	/* メニュー透過背景 */
	.menuBg{
		width: 100%;
		min-width: 1200px;
		height: 100vh;
		background-color: rgb(0 0 0 / .6);
		position: fixed;
		top: 0;
		left: 0;
		backdrop-filter: blur(3px);
		z-index: 100;
	}

	/* ==========================================================================
		kvWrapper
	========================================================================== */
	#kvWrapper{
		height: calc(100vh - 60px);
		min-height: 500px;
	}
	.kvTit{
		right: auto;
		left: 0;
	}

	/* ==========================================================================
		readWrapper
	========================================================================== */
	#readWrapper .ctsArea{
		padding-block: 40px 60px;
	}
	.readTxt{
		width: 100%;
		font-size: 1.5rem;
		line-height: 200%;
		margin-bottom: 35px;
	}
	.exhibitionList{
		gap: 20px;
	}/* 画像サイズ */
	#readWrapper .phBase{
		width: 100%;
		max-width: 180px;
	}
	.exhibitionTxtArea{
		width: 100%;
	}
	.exhibitionTit{
		font-size: 1.7rem;
	}
	.exhibitionDate{
		font-size: 1.4rem;
		letter-spacing: .01em;
		line-height: 150%;
		margin-bottom: 16px;
	}
	/* 日付のみ小さく */
	.exhibitionDate span{
		font-size: 1.1rem;
	}
	.exhibitionBtn{
		max-width: 180px;
	}

	/* ==========================================================================
		anchorWrapper
	========================================================================== */
	#anchorWrapper .ctsArea{
		padding-bottom: 50px;
	}
	.anchorTit{
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	.anchorList{
		flex-wrap: wrap;
		height: auto;
	}
	.anchorList li{
		width: calc(100% / 2);
		padding-block: 15px;
		border-bottom: 1px solid var(--clrGray);
		border-left: none;
	}
	.anchorList li a{
		font-size: 1.4rem;
	}
	.anchorList li span::after{
		right: 5px;
	}
	.anchorList li:nth-child(odd){
		border-right: 1px solid var(--clrGray);
	}
	.anchorList li:last-child{
		border-bottom: none;
		border-right: none;
	}
	.anchorList li:nth-child(3){
		border-bottom: none;
	}


	/* ==========================================================================
		messageWrapper
	========================================================================== */
	.messageList {
		gap: 15px;
		padding-block: 0 30px;
	}
	.messageList li{
		flex-direction: column;
		gap: 12px;
		padding-block: 0 25px;
	}
	.messageSubTit{
		width: 100%;
	}
	.messageList li:not(:first-of-type) .messageSubTit{
		padding-block: 25px 0;
	}
	.messageList li:first-of-type .messageTxt{
		padding-block: 0;
	}
	.messageTxt{
		line-height: 160%;
	}
	.messagePhArea{
		width: 100%;
	}
	.messageName{
		margin-block: 0 7px;
	}
	.messageNameTxt{
		line-height: 140%;
	}
	.messageNameTxt span{
		display: none;
	}
	/* 収蔵品コーナーボタン */
	.collectionBtn.baseBtn {
	    margin-bottom: 40px;
	}
	/* メッセージ動画 */
	.movieVideo {
	    max-width: 320px;
	    height: auto;
	}

	/* ==========================================================================
		eventWrapper
	========================================================================== */

	#eventWrapper .ctsArea{
		padding-top: 40px;
	}
	/* list
	============================== */
	#eventWrapper .list{
		gap: 30px 15px;
	}
	#eventWrapper .list li{
		width: calc((100% - 15px) / 2);
	}
	/* inquiryArea
	============================== */
	#eventWrapper .inquiryArea{
		flex-direction: column;
		margin-top: 40px;
		height: 100%;
	}
	#eventWrapper .inquiryArea .cmnItemTit{
		width: 100%;
		text-align: center;
		line-height: 100%;
		margin-top: initial;
		padding: 25px 0;
	}
	#eventWrapper .inquiryArea .cmnItemTit::after{
		width: calc(100% - 40px);
		height: 1px;
		top: initial;
		bottom: 0;
		right: 50%;
		transform: translateX(50%);
	}
	#eventWrapper .inquiryArea .cmnItemTxt{
		margin-top: initial;
		padding: 25px 0;
	}


	/* ==========================================================================
		shopWrapper
	========================================================================== */
	#shopWrapper .ctsArea{
		padding-bottom: 50px;
	}
	#shopWrapper .list{
		flex-wrap: wrap;
		gap: 30px 15px;
	}
	#shopWrapper .list li{
		width: calc((100% - 15px)/2);
	}


	/* ==========================================================================
		topicsWrapper
	========================================================================== */
	#topicsWrapper .ctsArea{
		padding-block: 40px;
	}
	.topicsList li{
		flex-direction: column;
		padding: 12px 0;
	}
	.topicsDate{
		padding: 0;
		margin-bottom: 15px;
	}
	.topicsTxt{
		padding: 0;
	}
	.topicsNotes{
		font-size: 1.2rem;
		padding: initial;
		line-height: 130%;
	}
	.topicsNotes span{
		display: none;
	}


	/* ==========================================================================
		footerWrapper
	========================================================================== */
	#footerWrapper{
		height: 80px;
		font-size: 1.2rem;
	}
}