@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --pink: #ED0062;
  --ja: "Noto Serif JP", sans-serif;
  --en: "Oswald", sans-serif
}

body {
  color: #ffffff;
  /* RGB */
  background-color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 3.4vw, 1.8rem);
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}

.en {
  font-family: var(--en);
}

.ja {
  font-family: var(--ja);
}

h2,
h3,
h4 {
  font-weight: 400
}

.fuchidori {
  color: #000000;
  text-shadow: 1px 1px 0 #ffffff, -1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff, 1px -1px 0 #ffffff,
    0px 1px 0 #ffffff, 0-1px 0 #ffffff,
    -1px 0 0 #ffffff, 1px 0 0 #ffffff;
  font-family: var(--en)
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pink {
  color: var(--pink);
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.center {
  text-align: center;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.ft_70 {
  font-size: clamp(4.0rem, 10vw, 7.0rem);
}

.ft_40 {
  font-size: clamp(2.0rem, 5.4vw, 4.0rem);
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger,
.fadeInRightTrigger,
.fadeInleftTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
  flex-wrap: wrap;
}

.flex.sp_none {
  display: none;
}

header {
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 60px;
  top: 0;
  background-color: #000000;
}

.header_inner {
  padding-left: 3vw;
  gap: 5%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.header_right {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_inner .logo {
  width: 60px;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin: 0;
  top: 0;
  right: 0;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 17px;
  height: 3px;
  background: #ffffff;
  width: 26px;
}

.ham_btn span:nth-of-type(1) {
  top: 20px;
}

.ham_btn span:nth-of-type(2) {
  top: 28px;
}

.ham_btn span:nth-of-type(3) {
  top: 36px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 25px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 36px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}

.nav_wrap {
  position: fixed;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding: 60px;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  padding: 12px 10vw;
  margin-bottom: 8px;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav_wrap li a span {
  font-size: clamp(2.0rem, 6vw, 2.6rem);
}

.nav_wrap.show {
  right: 0;
}

/* MV */
.MV {
  margin-top: 55px;
  position: relative;
  width: 96%;
  margin: 55px auto 0;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

/* 共通 */
section {
  position: relative;
  padding: 40px 0 80px;
}

.inner {
  width: 96%;
  margin: 0 auto;
}

#top_concept .section_lead {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1vw;
  letter-spacing: 0.01em;
}

#top_concept .content_textWrap {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  word-break: keep-all;
}

.more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  border: 3px solid #ffffff;
  margin: 20px auto;
  color: #ffffff;
  font-size: 1.5rem;
  position: relative;
  padding-right: 20px;
}

.more a::after {
  content: "";
  width: 9px;
  aspect-ratio: 926/1435;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  transform: translateY(-50%)
}

.more_b a {
  border: 3px solid #333333;
  color: #333333;
}

.more_b a::after {
  content: "";
  background-image: url(../img/arrow_b.png);
}

.section_ttl {
  font-size: clamp(5.0rem, 12.7vw, 5.5rem);
  font-weight: 600;
  text-align: left;
}

#top_menu {
  padding-bottom: 0;
}

#top_menu .inner {
  width: 98%;
  margin-right: 0;
  overflow: hidden;
  padding-bottom: 80px;
}

#top_menu .content {
  background-color: #ffffff;
  padding: 40px 20px min(60vw, 400px);
  position: relative;
  z-index: 2;
}

#top_menu .content::after {
  content: "";
  width: 100%;
  height: calc(100% - 6px);
  border: 3px solid #333333;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 0;
}

#top_menu .content .content_textWrap {
  z-index: 2;
  word-break: keep-all;
}

#top_menu .content .content_img {
  position: absolute;
  width: min(110%, 580px);
  bottom: -40px;
  right: -10%;
  z-index: 1;
}

.deco {
  position: absolute;
}

#top_floor {
  padding-top: 0;
}

.floor .deco {
  top: calc(-5vw + -80px);
  width: 100%;
  height: 200vw;
  background-image: url(../img/floor_bg.png);
  background-size: cover;
  background-position: top right;
  z-index: 0;
}

#top_floor .inner {
  position: relative;
  z-index: 2;
}

#top_floor .section_ttl .sheer {
  opacity: 0.2;
}

#top_floor .section_ttl span.ft_20 {
  font-size: 2.0rem;
  font-weight: 500;
}

#top_floor .content_itemWrap {
  gap: 35px;
  padding-bottom: 40px;
}

#top_floor .content_item {
  position: relative;
}

#top_floor .content_itemWrap h3 {
  font-size: min(8.6vw, 6.3rem);
  font-weight: 700;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
}

#top_gallery .section_ttl {
  display: inline-block;
  position: relative;
  padding: 0 12px;
}

#top_gallery .section_ttl::before,
#top_gallery .section_ttl::after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: var(--pink);
  position: absolute;
  top: 50%;
  right: 100%;
}

#top_gallery .section_ttl::after {
  right: auto;
  left: 100%;
}

.top_slide .slide {
  margin-left: 5vw;
}

#top_gallery .more a {
  margin-top: 40px;
}

footer {
  background-image: url(../img/sp_footer_bg.png);
  background-size: cover;
  background-position: top;
  padding-top: 40px;
}

.footer_logo a {
  display: inline-block;
  width: 124px;
  margin: 0;
}

footer dl.flex {
  width: 90%;
  max-width: 600px;
  margin-bottom: 40px;
  margin: 40px auto;
  font-weight: 500;
  gap: 0;
}

dl dt {
  padding: 20px 4px 4px;
  color: #848484;
  border-bottom: 1px solid #848484;
}

dl dd {
  padding: 4px;
}

dl a {
  color: #ffffff;
}

.map {
  height: min(80vw, 450px);
}

.map iframe {
  height: 100%;
  display: block;
}

.cr {
  padding: 4px 0;
  font-size: 1.2rem;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
}

#go_top {
  width: 40px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex.sp_none {
    display: flex;
  }

  .flex.pc_none {
    display: none;
  }

  .flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .inner_1169 {
    max-width: 1169px;
  }

  .inner_1196 {
    max-width: 1196px;
  }

  header {
    z-index: 10;
    width: 100%;
    height: 100px;
  }

  .header_inner {
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 2%;
    padding: 0 2vw;
  }

  .header_inner .logo {
    width: 100%;
    padding: 0;
    max-width: 90px;
  }

  .header_right {
    width: calc(100% - 160px);
    max-width: 860px;
    height: 100%;
    gap: 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
  }

  .header_tel a {
    width: 183px;
    display: inline-block;
  }

  .pc_nav {
    width: 100%;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .pc_nav ul li a {
    color: #ffffff;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 1.0rem;
  }

  .pc_nav ul li a span {
    font-size: 1.5rem;
  }

  #top_concept .content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }

  #top_concept .content_img {
    width: 50%;
  }

  #top_concept .content_textWrap {
    width: 50%;
    word-break: keep-all;
  }

  #top_menu .inner {
    width: 100%;
    max-width: 1280px;
    padding-left: 10%;
    margin: 0 auto;
  }

  #top_menu .content {
    padding-bottom: 40px;
    align-items: center;
  }

  #top_menu .content .content_textWrap {
    width: 40%;
  }

  #top_menu .content .content_img {
    position: static;
    width: 60%;
    margin-top: -8vw;
  }

  #top_menu .content::after {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
  }

  #top_floor .inner {
    max-width: 1196px;
  }

  #top_floor .content_itemWrap {
    gap: 20px;
    margin-bottom: 40px;
  }

  #top_floor .deco {
    width: 100%;
    height: min(90vw, 1100px);
    background-image: url(../img/floor_bg.png);
    background-size: cover;
    background-position: bottom right;
  }

  .top_slide {
    max-width: 1280px;
    margin: 40px auto;
  }

  .top_slide .slide {
    margin-left: 30px;
    width: 280px;
  }

  footer {
    background-image: url(../img/footer_bg.png);
    padding-top: 80px;
  }

  .footer_info {
    width: 100%;
    display: flex;
    max-width: 1196px;
    margin: 80px auto;
  }

  .footer_info dl.flex {
    flex-direction: column;
    margin: 0;
  }

  .description-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 10px;
  }

  .description-item dt {
    color: #ffffff;
    border-bottom: none;
    width: 120px;
    padding: 0;
  }

  .description-item dd {
    width: calc(100% - 120px);
  }

  .footer_info .map {
    width: 50%;
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }
}

/* 下層共通 */
.MV_under .U_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
  font-size: min(8.3vw, 6.1rem);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}

.MV_under .U_ttl span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
}

/* 料理 */
#menu-01 .inner {
  background-color: #EEEEEE;
  color: #000000;
  padding: 40px 0;
}

#menu-01 .inner p {
  font-size: 1.4rem;
}

#menu-01 h3 {
  width: 90%;
  max-width: 885px;
  margin: 0 auto;
  background-color: #000000;
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  border-radius: 11px;
  text-align: center;
}

#menu-01 .content {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 885px;
}

.menu {
  margin: 40px auto 0;
  text-align: left;
  max-width: 400px;
}

#menu-01 h4 {
  color: var(--pink);
  font-size: clamp(2.8rem, 8vw, 3.4rem);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 1.8rem;
}

.food {
  margin-top: 80px;
}

.food p {
  text-align: center;
}

#menu-01 .food .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0px 40px;
  margin-top: 40px;
  padding-bottom: 40px;
}

#menu-01 .food .menu-item {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

#floor-01.floor .deco {
  top: 40px;
  height: 120vw;
}

#floor-01 .inner {
  position: relative;
  z-index: 2;
  font-size: clamp(1.6rem, 4.1vw, 1.8rem);
}

#floor-01 .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#floor-01 .content_01 .content_textWrap {
  padding-top: 7vw;
  gap: 80px;
}

#floor-01 .item_wrap.row {
  flex-wrap: nowrap;
  gap: 20px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}

#floor-01 .item_wrap .item {
  width: 100%;
  padding: 8px;
  border: 1px solid #ffffff;
}

#floor-01 .content_01 .content_img {
  width: 50%;
  margin: 0 0 0 auto;
}

#floor-01 .content_itemWrap .content_item {
  padding: 40px 0 60px;
  border-bottom: 1px dotted #ffffff;
}

#floor-01 .content_itemWrap .content_body {
  gap: 8px;
}

#floor-01 .content_itemWrap h3 {
  width: min(54.6vw, 366px);
}

#floor-01 .content_itemWrap .content_item:nth-of-type(2) h3 {
  width: min(71.6vw, 479px);
  margin: 0 0 0 auto;
}

#floor-01 .content_itemWrap .content_item:nth-of-type(3) h3 {
  width: min(38.6vw, 255px);
}

#floor-01 .content_itemWrap .content_img {
  width: 75%;
}

#floor-01 .content_itemWrap .content_item:nth-of-type(2) .content_img {
  margin: 0 0 0 auto;
}

#floor-01 .content_lead {
  font-size: min(8.2vw, 3.6rem);
  line-height: 1;
  font-weight: 600;
  text-align: left;
  word-break: keep-all;
}

#floor-01 .content_lead .ft_70 {
  font-size: min(16.2vw, 7.0rem);
}

#floor-01 .content_itemWrap .item_wrap {
  gap: 4px;
}

#floor-01 .content_itemWrap .item {
  width: auto;
  margin: 0 auto 0 0;
  padding: 4px 20px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #floor-01.floor .deco {
    height: min(90vw, 900px);
    background-position: bottom right;
  }

  #floor-01 .content_01 {
    padding-top: 5vw;
    gap: 8vw;
  }

  #floor-01 .content_01 .content_textWrap {
    width: 70%;
  }

  #floor-01 .content_01 .content_img {
    width: 30%;
  }

  #floor-01 .content_01 p {
    width: 90%;
    margin: 0 auto;
  }

  #floor-01 .content_itemWrap .content_body {
    gap: 30px;
    align-items: flex-end;
  }

  #floor-01 .content_itemWrap .content_textWrap {
    width: 60%;
    padding-bottom: 40px;
  }

  #floor-01 .content_itemWrap .content_img {
    width: 40%;
  }

  #floor-01 .content_itemWrap .content_item:nth-of-type(2) .content_body {
    flex-direction: row-reverse;
  }
}

#concept-01 {
  padding-bottom: 0;
}

#concept-01 .deco {
  top: 40px;
  width: 100%;
  height: 120vw;
  background-image: url(../img/floor_bg.png);
  background-size: cover;
  background-position: top right;
  z-index: 0;
}

#concept-01 .inner {
  position: relative;
  font-size: clamp(1.6rem, 4.1vw, 1.8rem);
  gap: 40px;
  display: flex;
  flex-direction: column;
  max-width: 960px;
}

#concept-01 .section_lead {
  gap: 0;
  line-height: 1.2;
  padding-top: 40px;
}

#concept-01 .section_lead .ft_40 {
  font-size: min(9.3vw, 4.0rem);
}

#concept-01 .section_lead .ft_70 {
  font-size: min(16.2vw, 7.0rem);
}

#concept-01 .content_imgWrap.flex {
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 40px;
}

#concept-01 .content_img {
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 40px;
}

#concept-01 .content_imgWrap .content_img:nth-of-type(2) {
  margin-top: 5vw;
}

#concept-01 .content_pointWrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: min(20vw, 140px);
}

#concept-01 .content_point {
  background: linear-gradient(90deg, rgba(237, 0, 98, 1) 0%, rgba(0, 0, 0, 1) 80%);
  position: relative;
  font-size: min(5.4vw, 2.5rem);
  padding: 12px 10px;
}

#concept-01 .content_point>div {
  position: absolute;
  font-family: var(--en);
  font-size: 3.3rem;
  top: 0;
  transform: translateY(-50%);
}

#concept-01 .catch {
  font-size: clamp(2.0rem, 5.3vw, 3.2rem);
  font-weight: 700;
  word-break: keep-all;
  padding-bottom: 20px;
}

#concept-01 .catch-content_img {
  width: 100%;
  height: 425px;
  background-image: url(../img/concept_img05.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #concept-01 .deco {
    height: min(90vw, 900px);
    background-position: bottom right;
  }

  #concept-01 .inner {
    gap: 60px;
  }

  #concept-01 .section_lead {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
  }

  #concept-01 .section_lead .ft_40 {
    font-size: min(4vw, 5.8rem);
  }

  #concept-01 .section_lead .ft_70 {
    font-size: min(10vw, 10.3rem);
  }

  #concept-01 .content_point {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  #concept-01 .content_point>div {
    position: static;
    width: max(100px, 30%);
    transform: none;
  }

  #concept-01 .catch {
    font-size: clamp(2.0rem, 5.3vw, 3.2rem);
    font-weight: 700;
    word-break: keep-all;
    padding-bottom: 20px;
  }
}

#gallery-01 .content_imgWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

#access-01 p {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin: 0 auto 10px;
}

#access-01 p::before {
  content: "";
  width: clamp(15px, 4vw, 23px);
  aspect-ratio: 1729/2520;
  background-image: url(../img/train.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #access-01 p {
    font-size: 2.2rem;
  }

  #access-01 .map {
    height: 550px;
  }
}