@charset "utf-8";

/* リセット	*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {	
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	line-height: 1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, picture, footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	/* smooth scroll css */
	scroll-behavior: smooth;
}
html[lang="ja"] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

ol, ul {
	list-style: none;
}
a{
	color:inherit;
	text-decoration: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
	max-width:100%;
}
*, *:before, *:after {
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* general framework */
html,
body {
	width: 100%;
	height: 100%;
	color:#333;
}
/* main color */
:root {
	--font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--mainRed: #E20A16;
	--mainBeige: #EEE9E6;
	--darkBeige: #E8E0DB;
	--mainGrey: #F3F3F3;
	--subGrey: #e8e8e8;
	--linkColor: #007AFF;
	--colorBlue: #16489D;
	--colorGreen: #009400;
	--colorOrange: #FD6F23;
	--baseBlack: #161616;
	--borderColor: #E8E0DB;
}
html {
	font-size: 62.5%; /* font-sizeは16pxの62.5%の10px */
	color: var(--baseBlack);
}
body {
	font-family: var(--font-family);
	font-weight: 500;
}
/* header */
header {
	width: 100%;
	border-bottom: 1px solid var(--borderColor);
	margin-top: 0;
	top: 0;
	z-index: 100;
	background: rgba(256, 256, 256, 0.8);
}
header.is-animation {
	position: fixed;
}
header #header {
	max-width: 1460px;
	width: calc(100% - 20px);
	margin-inline: auto;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header #header .logo a {
	display: block;
	width: auto;
	margin-right:10px;
}
header #header nav {
	display: flex;
	align-items: center;
}
header #header nav li a {
	transition: .3s;
}
header #header .globalNavi {
	display: flex;
	align-items: center;
	gap: 30px;
	padding-right: 20px;
}
header #header .globalNavi li {
	text-align: center;
	font-weight: bold;
}
header #header .globalNavi a {
	display: block;
	white-space: nowrap;
	line-height: 1;
	&::after {
		content: "\a" attr(data-en) "";
		white-space: pre;
		font-size: min(1.1vw,1.2rem);
		font-weight: normal;
	}
}
header #header .guideLink {
	display: flex;
	align-items: center;
	gap: 10px;
}
header #header .guideLink li a {
	display: block;
	background: #454545;
	border-radius: 50px;
	padding: 10px 20px 10px 50px;
	font-weight: bold;
	color: #FFF;
	position: relative;
	font-size: 1.2rem;
	line-height: 1.4;
	word-break: keep-all;
}
header #header .guideLink li a.calendarLinkBtn::before {
	content: "";
	background: url(/assets/img/common/header_icon_calendar.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0px, -50%);
}
header #header .guideLink li a.schoolLinkBtn::before {
	content: "";
	background: url(/assets/img/common/header_icon_school.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0px, -50%);
}
header #header .guideLink li a::before {
	width: 38px;
	height: 38px;
}
/* text */
a.textLink {
	color: var(--linkColor);
	text-decoration: underline;
}
.centerTxt {
	text-align: center;
}
.redTxt {
	color: var(--mainRed);
}
.content main h2.secTitle {
	color: var(--mainRed);
	font-weight: 900;
	text-align: center;
}
.content main .titleSub {
	color: var(--baseBlack);
	font-weight: bold;
	text-align: center;
	padding-bottom: 40px;
}
.headingRedBdr {
	position: relative;
}
.headingRedBdr::before {
	content: "";
	position: absolute;
	background: var(--mainRed) ;
	background-size: 100% 100%;
	clip-path: inset(0 0 round 10px);
}
.headingRedBdr dt,
.headingRedBdr > div {
	margin-left: 10px;
	line-height: 1;
}
/* slider */
.slider img {
	width: 100%;
	margin-inline: auto;
}
.slider.slick-slider, 
.slider.slick-slider.slick-dotted {
	margin-bottom: 0;
	overflow: hidden;
}
.slider.slick-slider div,
.slider.slick-slider li {
	line-height: 0;
}
.slider .slick-prev,
.slider .slick-next {
	display: block;
	width: 50px;
	height: 50px;
	background: var(--baseBlack);
	border-radius: 50%;
	transition: all .3s ease;
	cursor: pointer;
	z-index: 10000;
	overflow: hidden;
}
.slider .slick-prev::before,
.slider .slick-next::before{
	position:absolute;
	content: "";
	width:10px;
	height:10px;
	border-right: 3px solid #FFF;
	border-top: 3px solid #FFF;
	top:0;
	bottom:0;
	right:0;
	margin:auto;
}
.slider .slick-prev::before {
	left: 24px;
	transform: rotate(225deg);
}
.slider .slick-next::before {
	left: -24px;
	transform:rotate(45deg);
}

.slider .slick-disabled {
	display: none!important;
}
.slider .slick-prev:hover,
.slider .slick-prev:focus,
.slider .slick-next:hover,
.slider .slick-next:focus {
	color: unset;
	outline: none;
	background: var(--baseBlack);
	opacity: 0.7;
}
.slider .slick-dots {
	bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 5px;
}
.slider .slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 ;
	background: var(--baseBlack);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0.7;
}
.slider .slick-dots li.slick-active {
	background: var(--mainRed);
	opacity: 1;
}
.slider .slick-dots li button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	background-color: transparent;
}
/* content 背景・幅・レイアウト等*/
.content {
	width: 100%;
	z-index: 1;
}
.inner,
.innerSp100 {
	max-width: 1240px;
	width: calc(100% - 40px);
	margin-inline: auto;
}
.innerM {
	max-width: 900px;
	width: calc(100% - 40px);
	margin-inline: auto;
}
.innerS {
	max-width: 840px;
	width: calc(100% - 40px);
	margin-inline: auto;
}
.wrap .mainImg{
	z-index: 0;
}
.wrap .mainImg .innerSp100.lowerPage {
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}
.wrap .mainImg .innerSp100.lowerPage h1 {
	color: var(--mainRed);
	font-weight: 900;
	position: relative;
	white-space: pre;
	&::after {
		content: "\a" attr(data-jp) "";
		position: absolute;
		font-weight: 900;
	}
}
.content main #calendar {
	background: #FFF;
}
.content main #information {
	background: var(--mainGrey);
}
.content main #latestNews {
	background: #FFF;
}
.content main #exhibitionArea {
	background: #FFF;
}
.content main #prologue {
	background: var(--mainBeige);
}
.content main section {
	width: 100%;
}
.content main .whiteBox {
	background: #FFF;
	padding: 60px 40px;
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px rgba(22,22,22,0.2);
}
.content main .latestNewsList {
	text-align: center;
}
.content main .latestNewsList dt {
	color: #FFF;
	background: var(--mainRed);
}
.content main .museumInfo div.iconArea {
	margin-bottom: 20px;
}
.content main .museumInfo div.iconArea div {
	position: relative;
}
.content main .museumInfo div.iconArea .openTime::before {
	background: url(/assets/img/common/icon_open.svg) no-repeat;
}
.content main .museumInfo div.iconArea .closeDay::before {
	background: url(/assets/img/common/icon_closed.svg) no-repeat;
}
.content main .museumInfo div.iconArea>div::before {
	content: "";
	background-size: 100% 100%;
	position: absolute;
	width: 70px;
	height: 70px;
}
.content main .museumInfo div.iconArea .closeDay dl dt {
	display: flex;
	align-items: center;
}
.content main .museumInfo div dl dt {
	font-weight: 600;
}
.content main .museumInfo div dl dd {
	font-weight: 500;
	padding-left: 1em;
	text-indent: -1em;
}
.content main .cautionArea {
	position: relative;
	max-width: 860px;
	width: calc(100% - 40px);
	margin: 25px auto 0;
}
.content main .cautionArea::before,
.content main .iconCaution::before {
	position: absolute;
	content: "";
	background: url(/assets/img/common/icon_caution.svg) no-repeat;
	background-size: 100% 100%;
}
.content main .cautionArea .cautionList li {
	padding-bottom: 10px;
}
.content main .cautionArea .cautionList li:last-child {
	padding-bottom: 0;
}
.content main .figWrap figure img {
	border-radius: 20px;
}

/* #top */
#top .wrap .mainImg{
	z-index: 1;
	margin-bottom: 0;
	position: relative;
}
#top .wrap .mainImg h1 span {
	position: absolute;
	display: block;
	background: var(--mainRed);
	font-weight: bold;
	color: #FFF;
	z-index: 2;
}
#top .content {
	background: var(--mainBeige);
}

#top #prologue .museumInfo div.iconArea dl dt span,
#top #prologue .museumInfo div.iconArea dl dd {
	font-weight: 500;
}
#top #information .informationList li {
	border-bottom: 1px solid var(--borderColor);
}
#top #information .informationList li:last-child {
	border-bottom: none;
}
/* #exhibition */
#exhibition main p.mainTxt {
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
}
#exhibition .content main #photoArea h2.secTitle {
	color: var(--colorBlue);
}
#exhibition main section .figArea h3 {
	z-index: 2;
}
#exhibition main #photoArea .figArea h3 {
	background: var(--colorBlue);
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align:center;
}
#exhibition main #photoArea .figArea h3 .corners {
	width: max-content;
	margin: auto;
}
#exhibition main #photoArea .figArea h3 .shootingRegulation img {
	width: 26px;
	margin-right: 6px;
}
#exhibition main #photoArea .figArea h3 .shootingRegulation img:last-child {
	margin-right: 0;
}
#exhibition .content main #courtyard h2.secTitle {
	color: var(--colorGreen);
}
#exhibition main #courtyard .figArea h3 {
	background: var(--colorGreen);
}
#exhibition .content main #specialVenue h2.secTitle {
	color: var(--colorOrange);
}
#exhibition main #specialVenue .figArea h3 {
	background: var(--colorOrange);
}
#exhibition main .areaWrap {
	background:var(--mainGrey);
	padding: 50px 0 100px;
}
#exhibition main .areaWrap .boxWrap {
	max-width: 1240px;
	width: 100%;
	margin-inline: auto;
}
#exhibition main .areaGuide .areaAttention .shooting,
#exhibition main .areaGuide .areaAttention .otherAttention {
	display: flex;
	align-items: center;
}
#exhibition main .areaGuide .areaAttention p {
	font-weight: bold;
	text-align: left;
}
#exhibition main .areaGuide .areaAttention .otherAttention p {
	text-align: left;
}
#exhibition main .figArea {
	position: relative;
}
#exhibition main .figArea h3 {
	width: 78%;
	background: var(--mainRed);
	text-align: center;
	font-weight: bold;
	padding: 10px;
	position: absolute;
	color: #FFFFFF;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
#exhibition main .slider .slick-dots {
	bottom: 10px;
}
#exhibition main #photoArea .slider .slick-dots li.slick-active {
	background: var(--colorBlue);
}
#exhibition main #courtyard .slider .slick-dots li.slick-active {
	background: var(--colorGreen);
}
#exhibition main #specialVenue .slider .slick-dots li.slick-active {
	background: var(--colorOrange);
}
/* #shop */
#shop main #prologue .innerM {
	position: relative;
	margin-top: -40px;
	z-index: 2;
}
#shop main .whiteBox .shopInfo div dl {
	display: flex
}
#shop main .whiteBox .paymentInfo .paymentList li {
	text-indent: -1em;
	padding-left: 1em;
	font-weight: 600;
}
#shop main .whiteBox div dl dt,
#shop main .whiteBox div dl dd {
	font-weight: 900;
}
#shop main .whiteBox div dl dd span {
	font-weight: 500;
}
#shop main .whiteBox div dl dd span.txtIndent {
	padding-left: 1em;
	text-indent: -1em;
	display: block;
}
#shop main .gridboxWrap .gridBox h2 {
	text-align: center;
	font-weight: 900;
}
#shop main .gridboxWrap .gridBox .gridImg {
	display: flex;
	margin-inline: auto;
	justify-content: center;
}
#shop main .gridboxWrap .gridBox .gridImg.peroLogo figure {
	width: 100px;
}
#shop main .gridboxWrap .gridBox .gridImg.peroLogo figure img {
	width: 100%;
}
#shop main .gridboxWrap .gridBox .gridImg.rider {
	max-width: 300px;
	gap: 20px;
}
#shop main .gridboxWrap .gridBox .gridImg.rider figure figcaption {
	font-size: 1.2rem;
	text-align: right;
	padding-top: 5px;
}
#shop main .gridboxWrap .gridBox .gridTxt ul li {
	text-indent: -1em;
	padding-left: 1em;
}

/* #access */
#access main .accessInfoWrap {
	margin-bottom: 40px;
}
#access main .accessInfoWrap:last-child {
	margin-bottom: 0;
}
#access main h2 {
	font-weight: bold;
}
#access main h2 span {
	margin-left: 10px;
}
#access main .accessInfoWrap dt {
	font-weight: bold;
}
#access main ul.accessInfoList li {
	position: relative;
}
#access main ul.accessInfoList li:last-child {
	padding-bottom: 0;
}
#access main ul.accessInfoList li::before {
	content: "";
	background-size: 100% 100%;
	position: absolute;
	width: 40px;
	height: 40px;
	left: 0;
	top: 0;
}
#access main ul.accessInfoList li.iconWalk::before {
	background: url(/assets/img/access/icon_walk.svg) no-repeat;
}
#access main ul.accessInfoList li.iconBus::before {
	background: url(/assets/img/access/icon_bus.svg) no-repeat;
}
#access main ul.accessInfoList li.iconTaxi::before {
	background: url(/assets/img/access/icon_taxi.svg) no-repeat;
}
#access main ul.accessInfoList li.iconBus span {
	padding-top: 10px;
	display: block;
}
#access main .iconCaution {
	position: relative;
	margin-top: 20px;
}
#access main .accessInfoWrap .boxWrap .whiteBox dl.headingRedBdr dt,
#access main .accessInfoWrap.En .boxWrap .whiteBox dl.headingRedBdr dt {
	line-height: 1.2;
}
/* #guide */
#guide main #prologue h2 {
	text-align: center;
	font-weight: bold;
}
#guide main #prologue h2>span {
	display: block;
	width: fit-content;
	margin-inline: auto;
}
#guide main #prologue h2 span.forVisitor {
	color: #FFF;
	background: var(--mainRed);
}
#guide main #prologue h2 span.threeWishes {
	color: var(--mainRed);
}
#guide main .centerIcon {
	width: fit-content;
	margin: 0 auto 10px;
}
#guide main #prologue .requestInfoWrap .boxWrap .whiteBox figure {
	width: fit-content;
	margin-inline: auto;
}
#guide main #prologue .requestInfoWrap .boxWrap .whiteBox dt {
	text-align: center;
	font-weight: bold;
}
#guide main #prologue .requestInfoWrap dl.wishList .ruleList li {
	text-indent: -1em;
	padding-left: 1em;
}
#guide main #prologue h3,
#guide main #floorMap h3 {
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
#guide main #prologue .reservePoints {
	background: var(--darkBeige);
	margin: 20px auto;
	border-radius: 20px;
}
#guide main #prologue .reservePoints .boxWrap .whiteBox span.fontS {
	display: block;
	line-height: 1.4;
	padding-left: 1em;
	text-indent: -1em;
}
#guide main #floorMap .floorInfoWrap .whiteBox .iconCaution p {
	font-weight: bold;
}
#guide main #floorMap .floorInfoWrap .whiteBox .iconCaution::before {
	top: 50%;
	left: 0;
	transform: translate(0px, -50%);
}
#guide main #floorMap .shootGuideWrap {
	background: var(--mainGrey);
}
#guide main #floorMap .shootGuideWrap .shootGuideList li {
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 20px;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li:first-child {
	font-weight: 600;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li:last-child {
	margin-bottom: 0;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li dl {
	text-indent: 0;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li dt {
	position: relative;
	background: #454545;
	color: #FFF;
	line-height: 1;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li dt::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(10px, -50%);
}
#guide main #floorMap .shootGuideWrap .shootGuideList li dt.iconPhoto::before {
	background: url(/assets/img/guide/icon_photo.svg) no-repeat;
	background-size: 100% 100%;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li dt.iconMovie::before {
	background: url(/assets/img/guide/icon_video.svg) no-repeat;
	background-size: 100% 100%;
}
#guide main #floorMap .shootGuideWrap .shootGuideList li dd {
	padding-left: 10px;
}
#guide main #floorMap .floorInfoWrap .attentionLeft {
	text-align: right;
}
#guide main #faq,
#guide main #forVisitors {
	background: var(--mainBeige);
}
#guide main #faq .faqCateWrap {
	margin-bottom: 40px;
}
#guide main #faq .faqCateWrap h3 {
	font-weight: bold;
	margin-bottom: 20px;
}
#guide main #faq .faqCateWrap h3 span {
	margin-left: 10px;
}
#guide main #faq .faqCateWrap p {
	font-weight: bold;
	line-height: 1;
	margin: 20px 0;
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail {
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(22,22,22,0.2);
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail:last-child {
	margin-bottom: 0;
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dt,
#guide main #faq .faqCateWrap .faqWrap .faqDetail dd {
	position: relative;
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dt {
	font-weight: bold;
	color: var(--mainRed);
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dd {
	display: none;
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dt::before {
	content: "";
	background: url(/assets/img/guide/icon_Q.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	width: 30px;
	height: 36px;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dt::after {
	content: "";
	background: url(/assets/img/guide/icon_open.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	width: 26px;
	height: 26px;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dt.on::after {
	background: url(/assets/img/guide/icon_close.svg) no-repeat;
	background-size: 100% 100%;
}
#guide main #faq .faqCateWrap .faqWrap .faqDetail dd::before {
	content: "";
	background: url(/assets/img/guide/icon_A.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	width: 30px;
	height: 26px;
	left: 0;
	top: 0;
}
#guide main #contact .contactWrap {
	margin-bottom: 40px;
}
#guide main #contact .contactWrap:last-child {
	margin-bottom: 0;
}
#guide main #contact .contactWrap dt {
	font-weight: bold;
}
#guide main #forVisitors .forVisitorsList {
	margin-bottom: 40px;
}
#guide main #forVisitors .forVisitorsList dt {
	font-weight: bold;
	margin-bottom: 10px;
}
#guide main #forVisitors .forVisitorsList dd {
	line-height: 1.2;
	margin-bottom: 10px;
}
#guide main #forVisitors .forVisitorsList dd:last-child {
	margin-bottom: 0;
}
#guide main #forVisitors .forVisitorsList dd.shootDetail {
	display: flex;
}
#guide main #forVisitors .forVisitorsList dd.shootDetail span {
	display: block;
	line-height: 1.6;
}
#guide main #forVisitors .forVisitorsList dd ul li {
	line-height: 1.6;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 10px;
}

/* #message */
#message main .messageWrap {
	margin-bottom: 60px;
}
#message main .messageWrap .messages {
	margin-bottom: 40px;
}
#message main .messageWrap .messages p {
	margin-bottom: 20px;
}
#message main .messageWrap:last-child,
#message main .messageWrap .messages p:last-child {
	margin-bottom: 0;
}

/* #information お知らせ詳細ページ */
#information .informationMainArea h1 {
	text-align: center;
	color: var(--baseBlack);
	white-space: normal;
	font-weight: 600;
	line-height: 1.6;
}
#information .informationMainArea picture {
	width: fit-content;
	margin-inline: auto;
}
#information .informationMainArea .fontSmallDate {
	text-align: center;
	font-weight: 400;
}
#information .termBox {
	background: var(--mainGrey);
	margin-top: 20px;
}
#information .termBox dl {
	margin-top: 20px;
}
#information .termBox dl:first-child {
	margin-top: 0!important;
}
#information .termBox dl dt {
	font-weight: 900;
	line-height: 1.2;
}
#information .termBox dl dd {
	font-weight: 600;
}
#information .termBox dl dd a.textLink {
	font-weight: 300;
}
#information .termBox p.infoAttention {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.6;
	margin-top: 20px;
}
#information #prologue h2 {
	text-align: center;
	font-weight: 600;
	line-height: 1.6;
}
#information .content main #prologue {
	border-radius: unset;
}
#information .content main #prologue ol.informationDetail>li h3 {
	color: var(--mainRed);
	font-weight: 900;
	line-height: 1.4;
}
#information .content main #prologue .informationDetail picture {
	max-width: 700px;
	width: fit-content;
	margin-inline: auto;
}
#information .content main #prologue ol.informationDetail>li ul {
	margin-top: 20px;
}
#information .content main #prologue ol.informationDetail>li ul li {
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 10px;
}
#information .content main #prologue ol.informationDetail>li ul li:last-child {
	margin-bottom: 0;
}
#information a.textLink.blankIcon {
	position: relative;
}
#information a.textLink.blankIcon::after {
	content: "";
	width:14px;
	height: 13px;
	background: url(/assets/img/common/icon_blank_blue.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: -20px;
	top: 51%;
	transform: translate(0px, -50%);
}
/* btn */
.content main .linkBtn {
	display: block;
	background: var(--mainRed);
	border-radius: 100px;
	font-weight: bold;
	color: #FFF;
	position: relative;
	text-align: center;
}
.content main .linkBtn.iconSchool {
	text-align: left;
}
.content main .linkBtn.iconSchool::before {
	content: "";
	background: url(/assets/img/common/btn_icon_school.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0px, -50%);
}
.content main .linkBtn::after {
	content: "";
	width: 28px;
	height: 28px;
	background: url(/assets/img/common/arrow_window.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
}
.content main .linkBtn.iconSchool::after {
	background: url(/assets/img/common/arrow_menu.svg) no-repeat;
}
.content main .linkBtn.iconSchool span.fontS {
	font-weight: 400;
	line-height: 1;
	display: block;
}

/* footer */
#footer {
	border-top: 1px solid var(--borderColor);
}
#footer .footerLogoArea {
	max-width: 1460px;
	width: calc(100% - 20px);
	margin-inline: auto;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#footer .footerLogoArea .footerLogoWrap {
	display: flex;
	align-items: center;
	gap: 16px;
}
#footer .footerLogoArea .footerLogoWrap .footerAdress p {
	font-weight: bold;
	font-size: 1.4rem;
}
#footer .footerLogoArea .snsLink {
	display: flex;
	align-items: center;
}
#footer .footerCopy {
	background: var(--mainRed);
}
#footer .footerCopy p {
	text-align: center;
	color: #FFF;
	padding: 5px 0;
	font-size: 1rem;
}
@media screen and (max-width: 767px) {
	:root {
		/* コンテンツ幅 */
		--contWid : 100%;
		--line-height: 1.5;
	}	
}

/* general */
@media screen and (min-width: 768px) {
	.pcNone {
		display: none;
	}
}
@media screen and (max-width: 1180px) and (min-width: 768px) {
	header #header .logo a {
		width: auto;
	}
	header #header .globalNavi {
		gap: 15px;
		padding-right: 10px;
	}
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
	header #header .guideLink li a {
		background: unset;
		border: none;
		padding: 0 0 0 27px;
		color: #454545;
		font-size: 1rem;
		line-height: 1.1;
	}
	header #header .guideLink li a::before {
		width: 25px;
		height: 25px;
	}
	header #header .guideLink li a.calendarLinkBtn::before {
		background: url(/assets/img/common/header_icon_calendar_sp.svg) no-repeat;
		left: 0;
	}
	header #header .guideLink li a.schoolLinkBtn::before {
		background: url(/assets/img/common/header_icon_school_sp.svg) no-repeat;
		left: 0;
	}
}
@media screen and (max-width: 767px) {
	.spNone {
		display: none;
	}
}