@charset "UTF-8";
.sec.hero {
	padding: 0 50px;
	height: calc(100vh - 100px);
	min-height: 700px;
	overflow: hidden;
}
.hero-wrap, .hero-img {
	position: relative;
	height: 100%;
}
.hero-txt {
	position: absolute;
	top: 100px;
	right: 5vw;
	color: #000;
	font-size: clamp(30px,4.5vh,60px);
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 2.2;
}
.hero-txt span {
	display: block;
}
@keyframes scroll {
	0% {
		height: 0;
		top: 0;
	}
	35% {
		height: 100%;
	}
	100% {
		top: 100%;
	}
}


/* NEWS */
.section-head.-news {
	width: 400px;
}
.section-head.-news h2 p.en-B {
	margin: 50px 0 0;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}
.content.-news {
	width: calc(100% - 400px);
	margin-left: 100px;
	margin-right: calc(50% - 50vw);
	border-left: 1px dashed #000;
	overflow: hidden;
}
.news-content-box {
	border-right: 1px dashed #000;
	text-align: right;
	line-height: 1.6;
}
.news-content-box.swiper-slide {
	width: 320px;
}
.news-content-box a {
	position: relative;
	display: block;
	min-height: 472px;
	padding: 5px 20px 20px;
}
.news-img {
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.news-img img {
	transform: scale(1);
}
a:hover .news-img img {
	transform: scale(1.1);
}
.news-date {
	display: block;
	padding: 20px;
	font-size: 12px;
	color: #C8C8C8;
}
.news-txt {
	padding: 0 10px;
	text-align: left;
}
.news-content-box .lnk {
	position: absolute;
	right: 30px;
	bottom: 20px;
}

.news-content-box a:hover .lnk {
	color: #FFF;
	opacity: 1;
}
.news-content-box a:hover .lnk::before {
	top: -50%;
}



/* ABOUT */
.section-head-txt {
	position: absolute;
	top: 55%;
	left: 550px;
	padding-right: 50px;
	font-weight: 700;
	font-size: 18px;
	transform: translateY(-50%);
}

@media (max-width: 950px) {
	.section-head-txt {
		position: inherit;
		top: 0;
		left: 100px;
		width: calc(100% - 100px);
		transform: translateY(0);
	}
}
.content.-about {
	align-items: stretch;
	margin-left: calc(50% - 50vw);
}
.about-content-photo {
	width: 45%;
	overflow: hidden;
}
.about-content-photo.swiper {
	margin-left: 0;
	padding-bottom: 100px;
}
.about-content-txt {
	overflow: hidden;
	width: 55%;
	margin: 0 50px 0 70px;
}
.about-swiper .about-content-txt-photo.swiper.swiper-thumb.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-watch-progress.swiper-thumbs {
	overflow: visible!important;
	transition: transform 0.5s;
}
.about-swiper .swiper-thumb .swiper-slide {
    flex-shrink: 0;
}
.about-content-txt-photo ul li {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.about-content-txt-inner {
	margin: 80px 0 50px;
}
.about-swiper .swiper-fade .swiper-slide {
	 -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}

/* MENU */
#MENU {	
  	overflow: hidden;
  	background: transparent;
  	z-index: 1;
	will-change: padding-top;
}
#MENU.sec {
	padding-bottom: 200px;
	margin: 120px auto;
}
#MENU.bottombar::after {
	content: '';
	position: fixed;
	bottom: 0;
	left: 50%;
	width: calc(100% - 100px);
	height: 50px;
	background: #FFF;
	transform: translateX(-50%);
	z-index: 99;
	animation: fadebar .5s forwards;
}
@keyframes fadebar {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-head.-menu {
	text-align: center;
}
.section-head.-menu h2 {
	padding: 80px 0 0;
	margin: 0 0 150px;
}
.section-head.-menu h2::before,
.section-head.-menu h2::after {
	display: none;
}
.section-head.-menu h2 p.en-B, .section-head.-menu h2 span {
	display: block;
	width: 100%;
}
.section-head.-menu h2 span {
	margin-top: 20px;
	padding-bottom: 70px;
}
.section-head.-menu h2 span::before, .section-head.-menu h2 span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	background: var(--blue);
	transform: translateX(-50%);
}
.section-head.-menu h2 span::after {
	left: calc(50% + 5px);
	background: var(--orange);
}
.menu-bg {
  position: fixed !important;
  top: 50px;
  left: 50%;
  width: calc(100% - 100px);
  height: calc(100vh - 100px);  
  background-size: 120%;
	background-repeat: no-repeat;
  background-position: center top;
  opacity: 0;
	transform: translateX(-50%);
  transition: opacity 0.8s ease;
  z-index: 0;
  pointer-events: none;
  clip-path: inset(0 0 9999px 0);
	will-change: clip-path, background-position, opacity;
}
.menu-bg.active { opacity: 1; }
.menu-bg.absolute-mode {
  position: absolute !important;
  top: 0;
  height: calc(100vh - 100px);
  clip-path: none;
}
.content.-menu {
  	position: relative;
  	width: 55%;
	max-width: 740px;
  	padding: 0 0 120px;
	margin: auto;
	background: #FFF;
	z-index: 1;
}
.content.-menu.-menu-content-1 {
	padding: 10px 0 120px;
}
.menu-content-box-wrap {
	padding: 120px 20px 0;
	margin: 0 50px;
	border-top: 1px dashed #000;
}
.-menu-content-1 .menu-content-box-wrap {
	padding: 0 20px;
	border-top: none;
}
.menu-content-box {
	width: calc(50% - 35px);
}
.menu-content-box a .menu-content-box-photo img {
	transform: scale(1);
	transition: .5s linear;
}
.menu-content-box a:hover .menu-content-box-photo img {
	transform: scale(1.1);
}
.menu-content-box a .menu-content-box-txt {
	opacity: 1;
	transition: .3s linear;
}
.menu-content-box a:hover .menu-content-box-txt {
	opacity: .5;
}
.menu-content-box-photo {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.menu-content-box-txt-title {
	margin: 35px 0;
	font-weight: bold;
	line-height: 1;
}
.menu-content-box-txt-title p.en {
	padding: 0;
	font-size: 25px;
	text-align: center;
}
.menu-content-box-txt-title span {
	display: block;
	margin-top: 12px;
	font-size: 12px;
	letter-spacing: .1em;
	text-align: center;
}
.menu-content-box-txt p {
	text-align: left;
	padding: 0 5%;
}
.content.-menu.-menu-lnk {
	position: relative;
  	padding: 50px 0;
	text-align: center;
}
.-menu-lnk::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: calc(100% - 20px);
	height: 1px;
	border-top: 1px dashed #000;
	transform: translateX(-50%);
}


/* BLOG */
.blog-content-box {
	position: relative;
	width: 50%;
}
.blog-content-box::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 10vw);
	background: var(--blue);
	opacity: .2;
	transition: .5s linear;
}
.blog-content-box:last-child::before {
	opacity: .4;
}
.blog-content-box:hover::before {
	opacity: .6;
}
.blog-content-box a {
	position: relative;
	display: block;
	padding: 0 7vw;
	z-index: 1;
}
.blog-content-box-photo {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.blog-content-box a img {
	transform: scale(1);
}
.blog-content-box a:hover img {
	transform: scale(1.12);
}
.blog-content-box-txt h3 {
	position: relative;
	margin: 50px 0;
	padding: 20px 0;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	letter-spacing: .05em;
	line-height: 1;
}
.blog-content-box-txt h3::before, 
.blog-content-box-txt h3::after {
	content: '';
	position: absolute;
	top: 0;
	width: 10px;
	height: 100%;
	border: 1px solid #000;
}
.blog-content-box-txt h3::before {
	left: 0;
	border-right: none;
}
.blog-content-box-txt h3::after {
	right: 0;
	border-left: none;
}
.blog-content-box-link {
	padding: 50px 0;
	text-align: center;
}


/* ABOUT-SHOP */
.section-head.-about-shop {
	width: 550px;
	margin-bottom: 0;
}
.section-head-about-shop-txt {
	margin: 70px 0 100px 100px;
}
.section-head-about-shop-txt ul {
	margin-bottom: 50px;
}
.section-head-about-shop-txt ul li {
	margin-bottom: 10px;
	font-size: 18px;
}
.section-head-about-shop-txt ul li .en,
.section-head-about-shop-txt ul li.en {
	font-weight: 400;
}
.section-head-about-shop-txt ul li p {
	font-size: 80%;
}
.content.-about-shop {
	width: calc(95% - 550px);
	padding-right: 50px;
}
.calendarBox {
	width: calc(50% - 10px);
	min-width: 220px;
	font-weight: 900;
	border: 1px solid #000;
	line-height: 1;
}
.calendarBox button, .holiday-titles, .holiday-title {
	display: none!important;
}
.other-month {
    display: none !important;
}
.other-month + div {
    background: transparent;
    border: none;
}
.month-header {
	padding: 15px 0 20px 1.5vw;
	text-align: left;
}
table.xo-month, table.month-dayname {
	width: 100%;
}
table.xo-month thead {
	background: rgba(33,53,85,.2);
}
table.xo-month thead th {
	width: calc(100% / 7);
	padding: 20px 0;
	vertical-align: middle;
	font-weight: 900;
}
table.xo-month thead th.sunday {
	color: var(--orange);
}
table.xo-month thead th.saturday {
	color: var(--blue);
}
.month-dayname td { 
	width: calc(100% / 7);
	vertical-align: middle;
	text-align: center;
}
.holiday-all {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	padding: 20px 0;
}
#ABOUT-SHOP .lnkbtn {
	position: absolute;
	left: 150px;
	bottom: 100px;
}

@media (max-width: 1220px) {
	.calendarBox {
		width: 100%;
		margin-bottom: 20px;
		min-width: initial;
	}
	.month-header {
		padding: 12px 0 12px 1.5vw;
	}
	table.xo-month thead th {
		padding: 12px 0;
	}
	.holiday-all {
		padding: 12px 0;
	}
}


