/* 共通
---------------------------------*/
:root {
    --bk-color: #d2b48c;
    --m-color: #333333;
    --b-color: #ffffff;
    --a-color: #5b5b5b;
}
/*アニメーション
---------------------------------*/
#loading {
    display: grid;
    place-items: center;
    transition: all 3s;
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.anime {
    width: 200px;
    height: 200px;
	border-radius: 50%;
}
.loaded {
    opacity: 0;
    visibility: hidden;
}
/*アニメーションここまで
---------------------------------*/
.pc {
    display: block;
}
.sp {
    display: none;
}
.main-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.fade-container {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease;
}
.menu-fade {
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 1s ease;
}
.fade-container.visible,
.menu-fade.visible {
    opacity: 1;
    transform: scale(1);
}
.fade-container.visible,
.menu-fade.visible img {
    transform: scale(1);
}
.menu-fade img {
    object-fit: cover;
    transition: transform 1.2s ease;
}
/* 共通ここまで
---------------------------------*/





/* TopーPC画面
---------------------------------*/
/* ヘッダー
---------------------------------*/
.hamburger-morph {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 1000;
    width: 72px;
    height: 72px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}
.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}
.hamburger-morph__line {
    fill: none;
    stroke: var(--m-color);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}
.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}
.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}
.nav-morph {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}
.nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
}
.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}
.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
.nav-morph__link {
    position: relative;
    display: inline-block;
    padding: 20px;
    font-family: "Marcellus", serif;
    font-weight: bold;
    font-size: 28px;
    color: var(--a-color);
    text-decoration: none;
    overflow: hidden;
}
.nav-morph__item a {
    width: 400px;
    line-height: 0.9;
    border-bottom: 1px solid #333333;
    margin-bottom: 40px;
}
.nav-morph__item a:hover {
    color: var(--m-color);
    font-size: 32px;
}
.nav-morph__item small {
    color: var(--a-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
}
/*ヘッダーここまで
---------------------------------*/

/*メインコンテンツ
---------------------------------*/
/*ファーストビュー
---------------------------------*/
.movie_blk {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0;
}
.movie_blk video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}
.movie_blk h1 {
    color: var(--b-color);
    font-family: "Marcellus", serif;
    font-size: 96px;
    line-height: 0.7;
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
}
.movie_blk span {
    color: var(--b-color);
    font-family: "Marcellus", serif;
    font-size: 36px;
    text-align: center;
    z-index: 1;
    transform: translate(-50%,-50%);
}
/*ファーストビューここまで
---------------------------------*/

/*営業時間・お知らせ
---------------------------------*/
.time-section {
    width: 100%;
    height: auto;
    margin: 120px 0;
}
.time-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.time-content img {
    display: block;
    width: 72px;
    height: 72px;
    margin-left: 6%;
}
.time-content h2 {
    color: var(--m-color);
    font-size: 28px;
    font-weight: bold;
    font-family: "BIZ UDPMincho", serif;
}
.time-content p {
    color: var(--m-color);
    font-size: 18px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    margin-top: -10px;
}
.time-item {
    margin: -20px 0 0 0;
}
.notice-section {
    width: 40%;
    height: auto;
    margin: -50px 0 0 60px;
    padding: 20px 40px;
}
.notice-section h2 {
    color: var(--m-color);
    font-size: 28px;
    font-weight: bold;
    font-family: "BIZ UDPMincho", serif;
}
.notice-content {
    width: 100%;
    margin-top: 30px;
}
.notice-content p {
    color: var(--m-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    border-bottom: 1px solid #333333;
    margin-bottom: 40px;
    padding-bottom: 10px;
}
.notice-content a,
.m-right  {
    color: var(--m-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    margin-top: 30px;
}
.notice-list a {
    color: var(--m-color);
    font-size: 12px;
    font-family: "BIZ UDPMincho", serif;
    text-align: right;
    float: right;
    border: 1px solid #333333;
    border-radius: 50px;
    padding: 8px 16px;
    opacity: 0.9;
}
.notice-content a:hover {
    font-weight: bold;
    opacity: 1;
}
.notice-list a:hover,
.menu-text a:hover,
.concept-content a:hover,
.concept-content02 a:hover,
.access-text a:hover,
.m-right:hover {
    color: var(--b-color);
    background-color: #333333;
    font-weight: bold;
    opacity: 1;
}
/*営業時間・お知らせここまで
---------------------------------*/

/*メニュー
---------------------------------*/
.menu-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 240px;
    background-color: var(--bk-color);
    margin: -40px 0 0;
    padding: 200px 80px 120px;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
}
.menu-section h2,
.concept-section h2,
.menu-items h2,
.access-text h2 {
    color: var(--b-color);
    font-size: 28px;
    font-weight: bold;
    font-family: "BIZ UDPMincho", serif;
    line-height: 1.5;
    opacity: 1;
}
.menu-section span,
.concept-section span,
.menu-items span,
.access-text span {
    color: var(--b-color);
    font-size: 21px;
    font-family: "BIZ UDPMincho", serif;
    font-weight: bold;
    line-height: 3;
}
.menu-section p,
.concept-section p,
.menu-items p,
.access-text p {
    color: var(--b-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
}
.menu-title p,
.concept-title p,
.access-title p {
    color: var(--b-color);
    font-size: 72px;
    font-family: "BIZ UDPMincho", serif;
    writing-mode: vertical-rl;
    border-left: 10px solid #ffffff;
}
.menu-title {
    margin-top: 4%;
    margin-right: 5%;
}
.menu-items {
    display: flex;
    width: 100%;
    height: auto;
    margin-top: -10px;
}
.menu-img,
.menu-img2,
.menu-img3 {
    width: 34%;
    height: 640px;
}
.menu-img {
    background-image: url(../img/menu2.jpg);
    background-size: cover;
}
.menu-img2 {
    background-image: url(../img/menu5.jpg);
    background-size: cover;
}
.menu-img3 {
    background-image: url(../img/menu7.jpg);
    background-size: cover;
}
.menu-text {
    width: 100%;
    height: 480px;
    background-color: rgba(51,51,51,0.5);
    padding: 80px;
}
.menu-text a,
.access-text a {
    color: var(--b-color);
    font-family: "BIZ UDPMincho", serif;
    border:1px solid #ffffff;
    border-radius: 50px;
    padding: 16px 30px;
    opacity: 0.9;
}
/*メニューここまで
---------------------------------*/

/*コンセプト
---------------------------------*/
.concept-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 240px;
    background-color: var(--bk-color);
    margin: 240px 0 0;
    padding: 240px 80px 120px;
    clip-path: polygon(0% 0%, 100% 100px, 100% 100%, 0% 100%);
}
.concept-section h2 {
    margin-top: -40px;
}
.concept-content {
    display: flex;
    justify-content: space-around;
    margin: 140px 0 40px 0;
}
.concept-content02 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    margin-bottom: 40px;
}
.concept-content img,
.concept-content02 img {
    width: 40%;
    height: auto;
    clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 calc(100% - 20px));
    margin-bottom: 80px;
}
.concept-content02 img {
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}
.concept-content p,
.concept-content02 p {
    color: var(--m-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    margin: 20px 80px 0 0;
}
.concept-content02 p {
    margin: 80px 0 0 10px;
}
.concept-content span,
.concept-content02 span {
    color: var(--m-color);
    font-size: 21px;
    font-family: "BIZ UDPMincho", serif;
    font-weight: bold;
    line-height: 3;
}
.concept-content a,
.concept-content02 a {
    color: var(--m-color);
    font-family: "BIZ UDPMincho", serif;
    border: 1px solid #333333;
    border-radius: 50px;
    padding: 16px 30px;
    opacity: 0.9;
}
.concept-title {
    margin-top: -0.5%;
    margin-right: 5%;
}
.slider {
    width: 100%;
    margin: 0 auto 240px;
}
.slider img {
    width: 100%;
    height: auto;
}
.slider .slick-slide {
    height: auto!important;
    margin: 0 40px;
}
.slider_img {
    margin-top: 40px;
}
/*コンセプトここまで
---------------------------------*/

/*アクセス
---------------------------------*/
.access-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 520px;
    background-color: var(--bk-color);
    margin: -40px 0 0;
    padding: 240px 80px 200px;
    clip-path: polygon(0 150px, 100% 0, 100% 100%, 0 100%);
}
.access-text {
    width: 50%;
    height: auto;
    margin: 20px 80px 0 0;
}
.access-text span {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    padding: 20px 0;
}
.access-title {
    margin-top: 20%;
    margin-right: 7%;
}
/*アクセスここまで
---------------------------------*/
/*メインコンテンツここまで
---------------------------------*/

/*フッター
---------------------------------*/
footer {
    width: 100%;
    height: 400px;
    margin: -40px 0 0;
    padding: 120px 80px 0;
    background-color: #333333;
}
.footer-section {
    display: flex;
    justify-content: space-between;
}
.footer-text p {
    color: #ffffff;
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    margin-top: -20px;
}
.footer-text2 {
    display: flex;
    margin-right: 120px;
}
.footer-text2 a {
    color: var(--b-color);
    display: block;
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
}
.footer-text2 a:hover {
    color: var(--b-color);
    font-weight: bold;
}
.footer-items {
    margin-right: 80px;
}
.footer-text3 {
    color: var(--b-color);
    text-align: right;
    margin:-20px 200px 0 0;
}
/*フッターここまで
---------------------------------*/





/* TopーSP画面
---------------------------------*/
@media screen and (max-width:480px) {
/* 共通部分
---------------------------------*/
.pc {
    display: none;
}
.sp {
    display: block;
}
/* 共通部分ここまで
---------------------------------*/

/* ヘッダー
---------------------------------*/
.hamburger-morph {
    top: 5px;
    right: 5px;
    z-index: 1000;
    width: 60px;
    height: 60px;
}
.nav-morph__item a {
    width: 150px;
    font-size: 24px;
    margin-bottom: 20px;
}
.nav-morph__item small {
    font-size: 12px;
}
/*ヘッダーここまで
---------------------------------*/

/*メインコンテンツ
---------------------------------*/
/*ファーストビュー
---------------------------------*/
.movie_blk h1 {
    font-size: 48px;
    line-height: 0.8;
}
.movie_blk span {
    font-size: 20px;
}
/*ファーストビューここまで
---------------------------------*/

/*営業時間・お知らせ
---------------------------------*/
.time-section {
    margin: 80px 0;
}
.time-content {
    flex-direction: column;
}
.time-content img {
    width: 36px;
    height: 36px;
    margin-left: 10%;
}
.time-content h2 {
    font-size: 24px;
    margin: -10px 20px 0;
}
.time-content p {
    font-size: 15px;
    margin: 20px 0 0 -40px;
}
.time-item {
    margin: -20px 0 0 80px;
}
.notice-section {
    width: 100%;
    height: auto;
    margin: 80px 0 0 60px;
    padding: 20px 40px;
}
.notice-section h2 {
    font-size: 24px;
    margin-left: -60px;
}
.notice-content {
    margin-left: -20px;
}
.notice-content p {
    font-size: 15px;
}
.notice-content a,
.m-right  {
    font-size: 15px;
    margin-top: 30px;
}
.notice-list a {
    float: left;
    font-size: 14px;
    margin: 20px 0 0 -20px;
    padding: 8px 16px;
    opacity: 0.9;
}
/*営業時間・お知らせここまで
---------------------------------*/

/*メニュー
---------------------------------*/
.menu-section {
    margin: 40px 0 0;
    padding: 120px 40px 120px;
}
.menu-section h2,
.concept-section h2,
.menu-items h2,
.access-text h2 {
    font-size: 21px;
}
.menu-section span,
.concept-section span,
.menu-items span,
.access-text span {
    font-size: 14px;
    line-height: 1;
}
.menu-section p,
.concept-section p,
.menu-items p,
.access-text p {
    font-size: 14px;
    line-height: 2;
    margin-top: 20px;
}
.menu-title p,
.concept-title p,
.access-title p {
    font-size: 48px;
    border-left: 5px solid #ffffff;
}
.menu-title {
    margin-top: 38%;
    margin-right: -40px;
}
.menu-items {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
}
.menu-img,
.menu-img2,
.menu-img3 {
    width: 100%;
    height: 480px;
}
.menu-img {
    background-image: url(../img/menu2.jpg);
    background-size: cover;
}
.menu-img2 {
    background-image: url(../img/menu5.jpg);
    background-size: cover;
}
.menu-img3 {
    background-image: url(../img/menu7.jpg);
    background-size: cover;
}
.menu-text {
    width: 100%;
    height: 480px;
    background-color: rgba(51,51,51,0.5);
    padding: 40px;
}
.menu-text a,
.access-text a {
    padding: 16px 30px;
    opacity: 1;
}
/*メニューここまで
---------------------------------*/

/*コンセプト
---------------------------------*/
.concept-section {
    height: 420px;
    margin: 120px 0 0;
    padding: 120px 40px 120px;
}
.concept-section h2 {
    margin-top: 0;
}
.concept-content {
    flex-direction: column;
    margin: 80px 0;
}
.concept-content02 {
    flex-direction: column;
    margin: 80px 0;
}
.concept-content img,
.concept-content02 img {
    width: 100%;
    margin-bottom: 40px;
}
.concept-content p,
.concept-content02 p {
    font-size: 14px;
    margin: 0 40px;
}
.concept-content02 p {
    margin: 0 40px;
}
.concept-content span,
.concept-content02 span {
    font-size: 21px;
}
.concept-content a,
.concept-content02 a {
    opacity: 1;
}
.concept-title {
    margin-top: 72%;
    margin-right: -40px;
}
.slider {
    width: 100%;
    margin: 0 auto 120px;
}
.slider img {
    width: 100%;
    height: auto;
}
.slider .slick-slide {
    height: auto!important;
    margin: 0 10px;
}
.slider_img {
    margin-top: 20px;
}
/*コンセプトここまで
---------------------------------*/

/*アクセス
---------------------------------*/
.access-section {
    height: 540px;
    margin: -40px 0 0;
    padding: 180px 40px 200px;
}
.access-text {
    width: 100%;
    height: auto;
    margin: 20px 0 0 0;
}
.access-text span {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 20px;
}
.access-title {
    margin-top: 450px;
    margin-right: -15px;
}
/*アクセスここまで
---------------------------------*/
/*メインコンテンツここまで
---------------------------------*/

/*フッター
---------------------------------*/
footer {
    height: 320px;
    padding: 120px 40px 0;
}
.footer-text p {
    color: #ffffff;
    font-size: 12px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    margin-top: -20px;
}
.footer-text2 {
    display: flex;
    flex-direction: column;
    margin-top: -20px;
    margin-right: 0;
}
.footer-text2 a {
    color: var(--b-color);
    display: block;
    font-size: 12px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
}
.footer-items {
    margin-right: 60px;
}
.footer-text3 {
    color: var(--b-color);
    font-size: 10px;
    text-align: center;
    margin: 0 20px 0 0;
}
/*フッターここまで
---------------------------------*/
}