@charset "utf-8";
/*
Theme Name: oita-essentials
Theme URI: https://oita-essentials.com/
Version: 1.0
*/

/* common
---------------------------------------------------------------------------*/
:root {
	--color-text-black: #121212;
	--color-text-gray: #8B8C8E;
	--color-bg: #F1F4F8;
	--color-bg-yellow: #FFF8D5;
	--font-serif-jp: 'Yaku Kumi Serif', 'Shippori Mincho', '游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
	--font-serif-en: 'EB Garamond', serif;
	--easeInSine     : cubic-bezier(0.47, 0, 0.745, 0.715);
	--easeOutSine    : cubic-bezier(0.39, 0.575, 0.565, 1);
	--easeInOutSine  : cubic-bezier(0.445, 0.05, 0.55, 0.95);
	--easeInQuad     : cubic-bezier(0.55, 0.085, 0.68, 0.53);
	--easeOutQuad    : cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--easeInOutQuad  : cubic-bezier(0.455, 0.03, 0.515, 0.955);
	--easeInCubic    : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	--easeOutCubic   : cubic-bezier(0.215, 0.61, 0.355, 1);
	--easeInOutCubic : cubic-bezier(0.645, 0.045, 0.355, 1);
	--easeInQuart    : cubic-bezier(0.895, 0.03, 0.685, 0.22);
	--easeOutQuart   : cubic-bezier(0.165, 0.84, 0.44, 1);
	--easeInOutQuart : cubic-bezier(0.76, 0, 0.24, 1);
	--easeInQuint    : cubic-bezier(0.755, 0.05, 0.855, 0.06);
	--easeOutQuint   : cubic-bezier(0.23, 1, 0.32, 1);
	--easeInOutQuint : cubic-bezier(0.86, 0, 0.07, 1);
	--easeInExpo     : cubic-bezier(0.95, 0.05, 0.795, 0.035);
	--easeOutExpo    : cubic-bezier(0.19, 1, 0.22, 1);
	--easeInOutExpo  : cubic-bezier(1, 0, 0, 1);
	--easeInCirc     : cubic-bezier(0.6, 0.04, 0.98, 0.335);
	--easeOutCirc    : cubic-bezier(0.075, 0.82, 0.165, 1);
	--easeInOutCirc  : cubic-bezier(0.785, 0.135, 0.15, 0.86);
	--easeInBack     : cubic-bezier(0.6, -0.28, 0.735, 0.045);
	--easeOutBack    : cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--easeInOutBack  : cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
	overflow-y: scroll;
	background: var(--color-bg) url(img/share/bg-pattern.jpg) repeat;
	color: var(--color-text-black);
	font-size: 14px;
	font-family: var(--font-serif-jp);
	line-height: 1;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none !important;
}

body.noscroll { position: fixed; width: 100%; }

::-moz-selection { background: var(--color-bg); color: var(--color-text-black); }
::selection { background: var(--color-bg); color: var(--color-text-black); }

p { font-size: 14px; line-height: 2; letter-spacing: 0.08em; margin-bottom: 1em; }
p:last-child { margin-bottom: 0 !important; }
address,i { font-style: normal; }
img { max-width: none; }

.block { display: inline-block !important; }
.wide { display: inline-block !important; }
.narrow { display: none !important; }
.nav-sp, .btn-nav { display: none !important; }

/* #loading
------------------------------------*/
#loading-first,
#loading {
	display: block;
	opacity: 1;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
}

#loading {
	display: none;
	opacity: 0;
}

#loading-first {
	background: url(img/share/bg-loading.jpg) repeat left top;
}

.loading-title,
.loading-title .mask {
	overflow: hidden;
	width: 204px;
	height: 24px;
}

.loading-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) !important;
	opacity: 0;
}

.loading-title .mask {
	position: relative;
}

.loading-title img {
	position: absolute;
	top: 0;
	left: 0;
}

.loading-txt {
	position: absolute;
	bottom: 60px;
	left: 60px;
	padding-left: 40px;
	color: var(--color-text-gray);
	font-family: var(--font-serif-en);
	font-size: 16px;
	letter-spacing: 0.03em;
}

#loading-first .loading-txt {
	color: #FFFFFF;
	opacity: 0;
}

.loading-txt i {
	display: block;
	position: absolute;
	top: -4px;
	left: 0;
	width: 24px;
	height: 24px;
	transform-origin: center center;
	animation: spin .8s infinite var(--easeInOutQuad);
}

.loading-txt i img {
	display: block;
	animation: spin .8s infinite linear;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* link
------------------------------------*/
a { color: var(--color-text-black); text-decoration: none; transition: .15s ease-out; -webkit-transform: translateZ(0); }
.hover { cursor: pointer; transition: .15s ease-out; }
a:hover,.hover:hover { text-decoration: none; opacity: 0.75; }

.line { display: inline-block; position: relative; padding-bottom: 1px; line-height: 1; }
.line:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--color-text-black);
	width: 100%;
	height: 1px;
}

/* font
------------------------------------*/
.modal-about-inner .txt p,
.modal-about-inner .contact,
.modal-description .inner h1,
.modal-description .inner p,
.modal-description-inner .url a {
	transform-origin: left top;
	transform: scaleX(1.04);
	width: 96%;
	letter-spacing: 0.02em;
}

.slider-top article h2 strong,
#spotContents.single > h1 {
	transform: scaleX(1.04);
}

.slider-top article h2 strong {
	transform-origin: right top;
}

body.screen .slider-top article h2 strong {
	transform-origin: left top;
}


/* #wrap
---------------------------------------------------------------------------*/
#wrap {
	overflow: auto;
	min-width: 1240px;
	height: auto;
	padding-left: max(18vw, 260px);
}

body.top #wrap,
body.screen #wrap,
body.spot-single #wrap {
	overflow: hidden;
	height: 100vh;
	padding-left: 0;
}

/* header
---------------------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: clamp(260px, 18vw, 28.9vh);
	height: 100vh;
	margin: 0;
	padding: 0;
	opacity: 0;
	z-index: 10;
}

header img.white {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .3s linear;
}

body.top header img.gray,
body.screen header img.gray {
	opacity: 0;
}

body.top header img.white,
body.screen header img.white {
	opacity: 1;
}

header .logo a {
	opacity: 1 !important;
}

header .logo-jp {
	position: absolute;
	top: clamp(160px, 11.1vw, 17.7vh);
	left: max(2.8vw, 41px);
}

header .logo-jp img {
	width: clamp(37px, 2.6vw, 4.1vh);
}

header .logo-en {
	position: absolute;
	top: clamp(72px, 4.9vw, 8vh);
	left: max(3vw, 43px);
}

header .logo-en img {
	width: clamp(103px, 7.2vw, 11.4vh);
}

body.top header .logo-jp,
body.top header .logo-en,
body.screen header .logo-jp,
body.screen header .logo-en {
	pointer-events: none;
}

header .logo-sub {
	position: absolute;
	bottom: clamp(40px, 2.8vw, 4.4vh);
	left: max(3.1vw, 45px);
	font-size: 0;
}

header .logo-sub img {
	width: clamp(104px, 7.2vw, 11.5vh);
}

header .nav {
	position: absolute;
	bottom: clamp(110px, 7.6vw, 12.2vh);
	left: max(3.1vw, 45px);
	margin-left: -10px;
}

header .gnav {
	margin: 0 0 25px 0;
}

header .gnav li button {
	position: relative;
	padding: 10px;
	color: var(--color-text-gray);
	font-family: var(--font-serif-en);
	font-size: clamp(15px, 1vw, 1.6vh);
	letter-spacing: 0.03em;
	text-align: left;
	white-space: nowrap;
}

header .nav-category li {
	position: relative;
	letter-spacing: 0.02em;
	text-transform: capitalize;
	white-space: nowrap;
}

header .nav-category li.all {
	margin-top: 15px;
	text-transform: none;
}

header .nav-category li a {
	display: inline-block;
	padding: 10px 10px 12px;
	color: var(--color-text-gray);
}

.nav-category li strong {
	display: block;
	margin-bottom: 12px;
	font-size: clamp(14px, 1vw, 1.5vh);
	letter-spacing: 0.04em;
}

header .nav-category li.all strong {
	display: none;
}

.nav-category li em {
	font-family: var(--font-serif-en);
	font-size: clamp(18px, 1.3vw, 1.8vh);
}

body.top header .gnav li button,
body.top header .nav-category li a {
	color: #FFFFFF;
}

header .gnav li button:after,
header .nav-category li a:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 9px;
	right: 10px;
	background-color: var(--color-text-gray);
	width: 0;
	height: 1px;
	opacity: 0.8;
	transition: .15s ease-out;
}

header .nav-category li a:after {
	bottom: 11px;
}

body.top header .gnav li button:after,
body.top header .nav-category li a:after {
	background-color: #FFFFFF;
	opacity: 0.5;
}

header .gnav li button:after,
header .nav-category li.current a:after {
	width: calc(100% - 20px);
	left: 10px;
}

@media (max-height: 800px) {
	header .logo-en {
		top: 60px;
	}
	header .logo-jp {
		top: 130px;
	}
	header .gnav {
		margin-bottom: 18px;
	}
	header .nav {
		bottom: 100px;
	}
	.nav-category li strong {
		margin-bottom: 10px;
		font-size: 13px;
	}
	.nav-category li em {
		font-size: 17px;
	}
}


/* footer
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	margin: 0;
	padding: 90px 0 clamp(40px, 2.8vw, 4.4vh);
	opacity: 0;
}

.copyright {
	color: var(--color-text-gray);
	font-family: var(--font-serif-en);
	font-size: 12px;
	letter-spacing: 0.04em;
}


/* contents
---------------------------------------------------------------------------*/
#mainContents {
	display: block;
	width: 100%;
	min-height: calc(100vh - 150px);
	margin: 0;
	padding: clamp(70px, 4.86vw, 7.8vh);
	text-align: left;
}

body.top #mainContents,
body.screen #mainContents,
body.spot-single #mainContents {
	min-height: 100vh;
	padding: 0;
}

.contents {
	opacity: 0;
}


/* .wp-pagenavi
---------------------------------------------------------------------------*/
.wp-pagenavi {
	overflow: hidden;
	margin: 140px 0 0;
	font-family: var(--font-serif-en);
	font-size: 17px;
	text-align: center;
}

.wp-pagenavi,
.wp-pagenavi a {
	color: var(--color-text-gray);
}

.wp-pagenavi .extend {
	margin: 0 10px;
}

.wp-pagenavi a {
	margin: 0 5px;
	padding: 5px;
}

.wp-pagenavi .current {
	display: inline-block;
	border-bottom: 1px solid var(--color-text-black);
	margin: 0 10px;
	padding: 5px 0 0;
	color: var(--color-text-black);
}


/* page top
---------------------------------------------------------------------------*/

/* .top-spot
------------------------------------*/
.top-spot {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
}

body.top .top-spot,
body.screen .top-spot {
	z-index: 0;
	pointer-events: auto;
	/*opacity: 1;*/
}

.top-spot .mask {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.15);
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.slider-top {
	position: relative;
	z-index: 0;
}

.slider-top,
.slider-top .slick-list,
.slider-top .slick-track {
	width: 100% !important;
	height: 100vh !important;
}

.slider-top article {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	opacity: 0;
}

.slider-top article:first-of-type {
	position: relative !important;
	opacity: 1 !important;
}

.slider-top article.zindex {
	z-index: 1001 !important;
}

.slider-top article figure {
	height: 100%;
}

.slider-top article figure picture {
	display: block !important;
	width: 100%;
	height: 100%;
}

.slider-top article .figcaption {
	position: absolute;
	top: clamp(52px, 3.6vw, 5.8vh);
	right: clamp(45px, 3.1vw, 5vh);
	color: #FFFFFF;
	font-family: var(--font-serif-en);
	font-size: clamp(12px, 0.8vw, 1.3vh);
	letter-spacing: 0.04em;
	white-space: nowrap;
	z-index: 1;
}

.slider-top article img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.slider-top article .title {
	position: absolute;
	bottom: 0;
	right: 0;
}

.slider-top article h2 {
	display: none;
	text-align: right;
	white-space: nowrap;
	z-index: 2;
	opacity: 0;
}

.slider-top article h2 a {
	display: inline-block;
	padding: 35px clamp(45px, 3.1vw, 5vh) clamp(40px, 2.8vw, 4.4vh);
	color: #FFFFFF;
}

.slider-top article h2 a i {
	display: inline-block;
	background: url(img/share/btn-arrow-white.svg) no-repeat;
	width: 28px;
	height: 28px;
	margin-bottom: 18px;
}

.slider-top article h2 strong {
	display: block;
	font-size: clamp(17px, 1.2vw, 1.9vh);
	letter-spacing: 0.02em;
}

.slider-top article h2 strong span {
	display: inline-block;
	position: relative;
	padding-bottom: 4px;
}

.slider-top article h2 strong span:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,0.6);
	width: 0;
	height: 1px;
	transition: .15s ease-out;
}

.slider-top article.active h2 strong span:after {
	width: 100%;
	transition: .6s var(--easeInOutQuint);
}

.slider-top article.active h2 a.on strong span:after {
	transition: .15s ease-out;
}

.slider-top article.active h2 a:hover strong span:after {
	left: inherit;
	right: 0;
	width: 0;
	transition: .15s ease-out;
}

.slider-top article h2 em {
	display: block;
	margin: max(1vw, 15px) 1px 0 1px;
	font-family: var(--font-serif-en);
	font-size: clamp(16px, 1.1vw, 1.8vh);
	letter-spacing: 0.02em;
}

/* .modal-about
------------------------------------*/
.modal-about {
	display: none;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.modal-about::-webkit-scrollbar { width: 0px; }
.modal-abou::-webkit-scrollbar-track { background: none; }
.modal-about::-webkit-scrollbar-thumb { background: none; }

.modal-about-bg {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0;
}

.modal-about-close {
	position: fixed;
	top: 0;
	right: 0;
	padding: 60px 75px;
	z-index: 2;
	opacity: 0;
}

.modal-about-inner {
	display: flex;
	align-items: flex-end;
	position: relative;
	width: 100%;
	min-height: 100%;
	padding: 160px 80px 75px;
	color: #FFFFFF;
	z-index: 1;
	opacity: 0;
}

.modal-about-inner > div {
	width: 385px;
}

.modal-about-inner .txt {
	margin-bottom: 70px;
}

.modal-about-inner .txt h2 {
	margin-bottom: 34px;
	font-family: var(--font-serif-en);
	font-size: 17px;
	letter-spacing: 0.02em;
}

.modal-about-inner .txt p {
	font-size: 15px;
	line-height: 2.1;
	letter-spacing: -0.05em;
	text-align: justify;
}

.modal-about-inner .contact {
	letter-spacing: 0.02em;
}

.modal-about-inner .contact h2 {
	margin: 0 0 22px;
	font-size: 16px;
}

.modal-about-inner .contact h3 {
	margin-bottom: 15px;
	font-size: 17px;
}

.modal-about-inner .contact address {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.6;
}

.modal-about-inner .contact dl {
	display: flex;
	margin-bottom: 5px;
}

.modal-about-inner .contact dl:last-of-type {
	margin-bottom: 0;
}

.modal-about-inner .contact dl,
.modal-about-inner .contact dl p {
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.modal-about-inner .contact dt {
	width: 56px;
	min-width: 56px;
}


/* page screen
---------------------------------------------------------------------------*/
body.screen,
body.screen a {
	pointer-events: none;
}

body.screen {
	overflow: hidden;
}

body.screen #wrap {
	min-width: auto;
}

body.screen header {
	position: relative;
	height: auto;
	z-index: 2;
}

body.screen header .logo-jp {
	position: fixed;
	top: 16.7vh;
	right: max(7.8vw, 112px);
	left: auto;
	z-index: 2;
	opacity: 0;
}

body.screen header .logo-jp img {
	width: max(3.8vw, 54px);
}

body.screen header .logo-en {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	/*margin-top: 1vw;*/
	z-index: 2;
	opacity: 0;
}

body.screen header .logo-en img {
	width: max(13.6vw, 196px);
}

body.screen header .nav {
	display: none;
}

body.screen .logo-sub {
	position: fixed;
	bottom: 5.5vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	opacity: 0;
}

body.screen .logo-sub img {
	width: max(10vw, 147px);
}

body.screen .slider-top article h2 {
	position: absolute;
	top: 0;
	left: 0;
	right: inherit;
	text-align: left;
}

body.screen .slider-top article h2 a {
	padding: max(3.9vw, 57px) 0 0 max(3.9vw, 57px);
}

body.screen .slider-top article h2 strong {
	font-size: max(1.4vw, 21px);
}

body.screen .slider-top article h2 em {
	margin-top: max(1.3vw, 19px);
	font-size: max(1.4vw, 21px);
	text-align: left;
	opacity: 0.9;
}

body.screen .slider-top article .figcaption {
	top: initial;
	bottom: 5.5vh;
	right: initial;
	left: max(3.9vw, 57px);
}


/* page spot
---------------------------------------------------------------------------*/

/* .spot-list
------------------------------------*/
.spot-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: clamp(51px, 4vw, 5.7vh) clamp(51px, 4vw, 5.7vh);
}

.spot-list article {
	opacity: 0;
}

.spot-list article figure img {
	width: 100%;
}


/* page spot single
---------------------------------------------------------------------------*/
body.spot-single header,
body.spot-single footer {
	display: none;
}

.modal-spot-close {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	z-index: 2;
}

.modal-spot-close,
.modal-description-close {
	display: block;
	padding: 34px;
}

#spotContents.single > h1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 11px;
	position: fixed;
	top: 32px;
	left: 24px;
	font-size: 17px;
	letter-spacing: 0.1em;
	z-index: 1;
}

#spotContents.single > h1 > div,
#spotContents.single > h1 > span {
	white-space: nowrap;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#spotContents.single > h1 strong {
	margin-bottom: -6px;
}

#spotContents.single > h1 em {
	padding-top: 4px;
}

#spotContents.single > h1 span {
	display: block;
	margin-top: 2px;
	font-family: var(--font-serif-en);
	font-size: 14px;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.btn-description {
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 26px 28px;
	font-family: var(--font-serif-en);
	font-size: 19px;
	letter-spacing: 0.02em;
	white-space: nowrap;
	z-index: 2;
	opacity: 0;
}

.btn-description > span {
	display: block;
	position: relative;
}

.btn-description > span > span {
	display: block;
}

.btn-description > span > span > span {
	display: block;
	padding: 3px 6px 4px 7px;
}

.btn-description .white {
	overflow: hidden;
	background-color: #1C2F47;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	color: #FFFFFF;
}

.btn-description span strong {
	display: inline-block;
	font-family: var(--font-serif-jp);
	font-size: 14px;
	transform: translateY(-1px);
}

/* .modal-description
------------------------------------*/
.modal-description {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	background-color: var(--color-bg-yellow);
	width: 980px;
	height: 100vh;
	z-index: 10;
	opacity: 0;
}

.modal-description-close {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 11;
	opacity: 0;
}

.modal-description-inner {
	overflow-y: scroll;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-height: 100%;
}

.modal-description-inner::-webkit-scrollbar { width: 1px; }
.modal-description-inner::-webkit-scrollbar-track { border-radius: 0; background: var(--color-bg-yellow); }
.modal-description-inner::-webkit-scrollbar-thumb { border-radius: 0; background: var(--color-text-gray); }

.modal-description-inner > div {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 120px 100px 50px 50px;
}

.modal-description .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 390px;
	opacity: 0;
}

.modal-description .inner .txt {
	width: 100%;
}

.modal-description .inner h1 {
	margin-bottom: 20px;
	font-size: 19px;
	line-height: 1.7;
	letter-spacing: 0.04em;
}

.modal-description .inner p {
	margin-bottom: 13px;
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: -0.04em;
	text-align: justify;
}

.modal-description .inner.en {
	font-family: var(--font-serif-en);
}

.modal-description .inner.en h1 {
	margin-bottom: 23px;
	font-size: 21px;
	line-height: 1.5;
	letter-spacing: 0;
}

.modal-description .inner.en p {
	font-size: 14px;
	line-height: 1.65;
	letter-spacing: 0;
	text-align: left;
}

.modal-description .inner.en p em {
	font-style: italic;
}

.modal-description-inner .url {
	align-self: flex-end;
	width: 100%;
	margin-top: 60px;
	font-family: var(--font-serif-en);
	font-size: 15px;
	letter-spacing: 0.02em;
}

.modal-description-inner .url > div:not(:last-of-type) {
	margin-bottom: 18px;
}

.modal-description-inner .url a {
	display: inline-block;
	width: auto;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

/* .spot-gallery
------------------------------------*/
.spot-gallery {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.slider-gallery .slick-track,
.slider-gallery .inner {
	width: 100% !important;
  height: 100vh !important;
}

.slider-gallery .slick-arrow {
	position: fixed;
	bottom: 0;
	width: 66px;
	height: 104px;
	text-indent: -9999px;
	z-index: 10;
	outline: none;
	transition: .15s ease-out;
}

.slider-gallery .slick-arrow:hover {
	opacity: 0.75;
}

.slider-gallery .slick-arrow:before {
	display: block;
	content: '';
	position: absolute;
	top: 30px;
	width: 23px;
	height: 42px;
}

.slider-gallery .slick-prev { right: 63px; }
.slider-gallery .slick-prev:before {
	background: url(img/share/cursor-left.svg?250619) no-repeat left top / 100% auto;
	left: 26px;
}

.slider-gallery .slick-next { right: 0; }
.slider-gallery .slick-next:before {
	background: url(img/share/cursor-right.svg?250619) no-repeat left top / 100% auto;
	right: 30px;
}

.slider-gallery .inner {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
}

.slider-gallery .slick-current {
	cursor: url(img/share/ico-zoom.svg) 0 10, auto !important;
}

.slider-gallery .inner figure {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: calc(100% - max(21.5vw, 396px));
	height: 100%;
	max-height: calc(100% - 44px);
}

.slider-gallery .inner img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	-webkit-backface-visibility: hidden;
}

.slider-gallery .inner figcaption {
	position: absolute;
	top: 0;
	left: calc(100% + 17px);
	color: var(--color-text-gray);
	font-family: var(--font-serif-en);
	font-size: 10px;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transform-origin: left top;
  transform: rotate(90deg);
}

.slider-gallery .slick-dots {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	padding: 44px 56px;
	z-index: 11;
}

.slider-gallery .slick-dots li {
	position: relative;
	width: 20px;
	height: 26px;
}

.slider-gallery .slick-dots li:first-of-type:last-of-type {
	opacity: 0 !important;
}

.slider-gallery .slick-dots button {
	position: relative;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	transition: .15s ease-out;
}

.slider-gallery .slick-dots button:before,
.slider-gallery .slick-dots button:after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) !important;
	background: #D9D9D9;
	border-radius: 50%;
	width: 6px;
	height: 6px;
	transition: .1s ease-out;
}

.slider-gallery .slick-dots button:before {
	background: var(--color-bg);
	border: 2px solid var(--color-text-black);
	width: 6px;
	height: 6px;
	z-index: 1;
	opacity: 0;
}

.slider-gallery .slick-dots button:after {
	z-index: 0;
}

.slider-gallery .slick-dots button:hover:before,
.slider-gallery .slick-dots .slick-active button:before {
	width: 10px;
	height: 10px;
	opacity: 1;
}

.slider-gallery .slick-dots button:hover:after,
.slider-gallery .slick-dots .slick-active button:after {
	width: 0;
	height: 0;
	opacity: 0;
}


/* page error
---------------------------------------------------------------------------*/
.error-contents {
	position: relative;
	height: calc(100vh - 300px);
}

.error-contents > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

.error-contents h1 {
	margin-bottom: 25px;
	font-family: var(--font-serif-en);
	font-size: 31px;
	letter-spacing: 0.01em;
}

.error-contents p {
	letter-spacing: 0.02em;
}

.error-contents p a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}


/* print
---------------------------------------------------------------------------*/
@media print {

}