@charset "UTF-8";

/************************************************
 ブラウザリセット
************************************************ */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  width: 100%;
}

table,
caption,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0px;
  font-weight: normal;
  text-align: left;
  empty-cells: show;
}

ol,
ul,
li {
  list-style: none;
}

img {
  border: none;
  vertical-align: top;
}

.wrap {
  overflow: hidden;
}

/************************************************
 00 pre-loader
************************************************ */

/* プリローダー全体の白背景オーバーレイ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999; /* サイト上の最前面に表示 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease; /* フェードアウト用 */
}

/* プログレスバーの外枠 */
.progressbar-container {
  width: 150px;
  height: 2px;
  background-color: #ccc;
  overflow: hidden;
}

/* プログレスバー本体。初期幅0からJSで伸ばす */
.progressbar {
  width: 0%;
  height: 100%;
  background-color: #000; 
  transition: width 3s linear; /* 3秒で徐々に100%に */
}

/************************************************
 01 main
************************************************ */

.main {
  background-image: url(../img/white_bg.webp);
  background-size: 50%;
  padding: 8% 8% 80px;
}

.main__title {
  position: absolute;
  right: 8%;
  top: 6%;
  z-index: 2;
}

.main__title img {
  width: 18vw;
}

.slider {
  overflow: hidden;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

.slider-item {
  font-size: 0;
  height: 100%;
}

.slider-item img {
  width: 100%;
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both; /* ズームアニメーション */
}

/* ズームアニメーション */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/************************************************
 02 side
************************************************ */
.side {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0 0 0;
  background-image: url(../img/green_bg.webp);
  background-size: 45%;
}
.side__heading {
  position: relative;
  color: #ffffff;
  margin-bottom: 40px;
}
.side__heading h2 {
  margin-bottom: 8px;  
}
.side__heading h2::before {
  content: '';
  background-image: url(../img/side_title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-right: 44px;
  padding-top: 8px;
}
.side__heading:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 30px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: #ffffff 1px solid;
  border-bottom: #ffffff 1px solid;
}
.side__heading p {
  font-size: 0.8rem;  
}

/* menu design */
.side__menu {
	margin: 0 auto 16px;
	width: 290px;
	color: #ffffff;
}
.side__menu dl {
	display: flex;
  margin-top: 20px;
  flex-flow: row wrap;
  gap: 24px 0;
  justify-content: space-around;
}
.centerLine {
  letter-spacing: -0.5em;
  margin-right: 4px;
}
.side__menu p {
  margin: 12px 8px 0 0;
  text-align: right;
}
.side__button {
  display: inline-block;
  width: 300px;
  margin: 0px auto;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.8));
}
.side__instagram {
  margin: auto 0;
  height: 45px;
  line-height: 66px;
  font-size: 1.2rem;
  display: block;
}
.wall_bg {
  background-image: url(../img/white_bg.webp);
}

/************************************************
 03 greed
************************************************ */

.greed {
  text-align: center;
  margin: 0 auto;
  padding: 120px 0 80px;
}
.greed_slug {
  margin-top: -10px;
}
.greed__heading {
  margin-bottom: 40px;
}
.greed__heading h2::before {
  content: '';
  background-image: url(../img/greed_title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-right: 32px;
  padding-top: 13px;
}
.greed__heading h2::after {
  content: '';
  background-image: url(../img/greed_title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-left: 24px;
  margin-left: 12px;
  padding-top: 13px;
}
.greed__heading h2 {
  margin: 2px 0 0px;
}
.greed__heading p {
  font-size: 12px;
}

.greed__contents {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 0;
}
.greed__contents .greed__box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 20px;
}
.greed__contents .greed__box-img {
  margin-left: 0;
  position: relative;
}
.greed__contents .greed__box-img img {
  max-width: 480px;
  object-fit: cover;
}
.greed__contents .greed__box-img h3 {
  text-align: left;
  color: #ffffff;
  position: absolute;
  bottom: 30%;
  right: 7%;
  font-size: 12px;
}
.greed__contents .greed__box-text {
  margin: auto 0;
  width: 400px;
  padding: 32px;
}
.greed__contents .greed__box p {
  text-align: justify;
  font-size: 1.2rem;
}
.greed__contents .greed__box .name {
  text-align: right;
}
.greed__contents {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.greed__img {
  margin: 0 0 0 6%;
  position: relative;
}
.greed__img h3 {
  text-align: left;
  color: #ffffff;
  position: absolute;
  bottom: 30%;
  right: 4%;
  font-size: 1.4vw;
}
.greed__img img {
  width: 44vw;
}
.greed__description {
  margin: auto;
  filter: drop-shadow(1px 1px 1px rgba(160, 160, 160, 0.8));
}
.greed__description img {
  width: 40vw;
}

/************************************************
 04 grandmenu
************************************************ */

.grandmenu {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 80px;
}
.grandmenu__heading p {
  margin-bottom: 40px;
}
.grandmenu__heading h2::before {
  content: '';
  background-image: url(../img/grandmenu_title_icon_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-right: 64px;
}
.grandmenu__heading h2::after {
  content: '';
  background-image: url(../img/grandmenu_title_icon_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-left: 64px;
  margin-left: 16px;
}
.grandmenu__heading p {
  font-size: 12px;
}
.grandmenu__container {
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  width: 96%;
}
.grandmenu__item {
  width: calc(100%/3);
}
.grandmenu__item img {
  width: 100%;
  margin-bottom: 16px;
}
.grandmenu__item h3 {
  font-size: 1.4em;
  margin-bottom: 16px;
  line-height: 32px;
}
.grandmenu__item p {
  font-size: 1.2em;
}
.grandmenu__item-vertical {
  text-align: justify;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  margin: 32px auto 0;
  height: 252px;
  font-size: 1em;
  line-height: 27px;
  letter-spacing: 2px;
}

/************************************************
 05 access
************************************************ */

.access {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 40px;
}
.access__heading p {
  margin-bottom: 40px;
}
.access__heading h2::before {
  content: '';
  background-image: url(../img/access_title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-right: 48px;
  padding-top: 8px;
}
.access__heading h2::after {
  content: '';
  background-image: url(../img/access_title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  padding-left: 36px;
  margin-left: 16px;
  padding-top: 8px;
}
.access__heading p {
  font-size: 12px;
}
.access .container {
  position: relative;
}
.access__container {
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  margin: 0 auto 40px;
  width: 100%;
  overflow: hidden;
}
.access__item {
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px -5px #999;
}
.access__container img {
  width: 90%;
  margin: 0 auto;
  padding: 5% 0 0 0;
}
.access__item p {
  text-align: justify;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  margin: 32px auto;
  height: 180px;
  font-size: 1em;
  line-height: 27px;
  letter-spacing: 2px;
}

.access .swiper-button-prev {
  left: 29vw;
}
.access .swiper-button-next {
  right: 29vw;
}

.access__container .active {
  opacity: 1 !important;
}
.access__container .swiper-slide-prev,.access__container .swiper-slide-next {
  opacity: 0.5 !important;
}
.access .swiper-button-disabled {
  opacity: 0 !important;
}

.access__information {
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 46%;
}
.access__information-line {
  padding: 2px 0;
  border-top: dotted 1px #000000;
  border-bottom: dotted 1px #000000;
  width: 30vw;
}
.access__information p {
  padding: 16px;
  text-align: left;
  line-height: 1.8;
  border-top: dotted 1px #000000;
  border-bottom: dotted 1px #000000;
}
.access__information img {
  width: 135px;
}

/************************************************
 06 access
************************************************ */

.gallery {
  margin: 40px 0 0;
  padding: 0 0 80px 0;
  height: auto;
}
/* ==========================
  タブ
========================== */

.bl_tabContainer {
  margin-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0px 0px 15px -5px #999;
}
/* タブリスト */
.bl_tabList {
  display: flex;
  justify-content: space-between;
}
.bl_tabList li {
  width: 50%;
}
.bl_tabList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  color: #000000 !important;
  padding: 24px 10px;
  transition: 0.3s;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
}
.bl_tabList li a.active {
  background-color: #000000;
  color: #ffffff !important;
  cursor: text;
}
/* タブコンテンツ */
.bl_tabContent > div {
  background-color: #fff;
  padding: 16px;
  display: none;
}
.bl_tabContent > div.active {
  display: block;
}
.bl_tabContent > div > * + * {
  margin-top: 10px;
}

.gallery__inside::before {
  font: var(--fa-font-solid);
  content: "\f015";
  vertical-align: middle;
  padding-right: 8px;
}
.gallery__dishes::before {
  font: var(--fa-font-solid);
  content: "\f03e";
  vertical-align: middle;
  padding-right: 8px;
  padding-top: 2px;
}

.gallery .container {
  position: relative;
}
.gallery__container {
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  margin: 24px auto;
  width: 88%;
  overflow: hidden;
}
.gallery__item {
  width: calc(100%/3);
}
.gallery__container img {
  width: 100%;
  margin: 0 auto;
  padding: 5% 0 0 0;
}
.gallery__item p {
  text-align: left;
  margin: 8px 0 0 0;
  font-size: 1em;
}

.swiper-button-next, .swiper-button-prev {
  color: #c9c5c5 !important;
}

/************************************************
 07 footer
************************************************ */

.footer {
  text-align: center;
  margin: 0 auto;
}
.schedule {
  color: #ffffff;
  padding: 48px 0;
  background-image: url(../img/green_bg.webp);
  background-size: 45%;
}
.schedule__heading {
  position: relative;
  color: #ffffff;
}
.schedule__heading h2 {
  margin-bottom: 16px;  
}
.schedule__heading h2::before {
  content: '';
  background-image: url(../img/schedule_title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  vertical-align: middle;
  padding-right: 40px;
  padding-top: 8px;
}
.schedule__table table {
  margin: 24px auto;
}
.schedule__table th,.schedule__table td {
  padding: 24px 12px;
  border: dotted 1px #ffffff;
  text-align: center;
}
.schedule__note {
  line-height: 1.8;
}
.schedule__note a {
  line-height: 1.8;
  color: #ffffff;
}
.copyright {
  padding: 24px 0;
  color: #000000;
  text-align: center;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}


.float:hover {
  transform: translateY(-5px);
}

/*----------------------------
PC and Tablet
----------------------------*/

@media screen and (min-width:768px) and ( max-width:1024px) {
  .grandmenu__item-vertical {
    height: 256px;
    font-size: 1.0em;
  }
  .gallery__item p {
    font-size: 14px;
  }
  .access__item p {
    height: 160px;
    font-size: 1.0em;
  }
  .access .swiper-button-prev {
    left: 28vw;
  }
  .access .swiper-button-next {
    right: 28vw;
  }
  .access__information {
    max-width: 70%;
    gap: 1rem;
    justify-content: center;
  }
  .access__information-line {
    width: 40vw;
  }
}

/*----------------------------
Tablet
----------------------------*/


@media screen and ( max-width:767px) {

  body {
    letter-spacing: 2.65px;
  }
  .main {
    padding: 8% 8% 35px;
  }
  .main__title {
    right: 6%;
    top: 2%;
  }
  .main__title img {
    width: 24vw;
  }
  .slick-slide img {
    height: 80vh;
    object-fit: cover;
  }
  .swiper-slide__item img {
    width: 80vw;
  }
  h2 {
    font-weight: normal;
  }
  .side__menu {
    font-size: 0.85em;
  }
  .side__menu dl {
    gap: 19px 0;
  }
  .greed {
    padding: 120px 0 184px;
  }
  .greed__contents .greed__box-img h3 {
    top: 50%;
    right: 5%;
    font-size: 12px;
  }
  .greed__contents .greed__box {
    width: 100%;
    padding: 2%;
    box-sizing: border-box;
    position: relative;
    height: 900px;
  }
  .greed__contents .greed__box-img {
    position: static;
  }  
  .greed__contents .greed__box-img img {
    width: 96%;
  }  
  .greed__contents .greed__box-text {
    position: absolute;
    bottom: -10%;
    margin: 0 auto;
    /* width: 84%; */
    max-height: 420px;
    height: auto;
    z-index: 100;
    display: table-cell;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 10px #999;
  }
  .greed__contents .greed__box-text p {
    font-size: 3vw;
  }
  .grandmenu {
    padding: 20px 0 20px;
  }
  .grandmenu__container {
    display: block;
    gap: 0rem;
    margin: 0 auto;
  }
  .grandmenu__item {
    width: 100%;
    margin-bottom: 32px;
  }
  .grandmenu__item img {
    width: 90%;
    margin-bottom: 16px;
  }
  .grandmenu__item-vertical {
    margin: 24px auto;
    height: 224px;
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 26px;
  }
  .access__container {
    width: 80%;
    overflow: hidden;
  }
  .access .swiper-button-prev {
    left: 2vw !important;
  }
  .access .swiper-button-next {
    right: 2vw !important;
  }
  .access__item p {
    font-size: 13px;
    height: 24vh;
  }
  .access__information {
    gap: 0rem;
    max-width: 92%;
    justify-content: normal;
  }
  .access__information-line {
    width: 50vw;
    font-size: 3.5vw;
    width: 70%;
  }
  .access__information p {
    padding: 25px 8px;
    font-size: 0.8rem;
    line-height: 21px;
    letter-spacing: 0.5px;
  }
  
  .access__information-map {
    width: 30%;
  }
  .access__information img {
    width: 100%;
  }
  .bl_tabList li a {
    font-size: 16px;
  }
  .gallery__container {
    width: 93%;
  }
  .gallery__item p {
    font-size: 16px;
  }
  .bl_tabContainer {
    margin-top: 30px;
    width: 95%;
  }
  .swiper-button-next {
    right: -3% !important;
  }
  .swiper-button-prev {
    left: -3% !important;
  }
  .swiper-pagination-bullet-active {
    background:  #13584f!important;
  }
  .schedule__note,.copyright {
    font-size: 0.7em;
  }

}

/*----------------------------
Tablet and SP
----------------------------*/


@media screen and (min-width:430px) and ( max-width:767px) {
  .greed__contents .greed__box-text p {
    font-size: 12px;
  }
    .grandmenu__item img {
    width: 60%;
}
  .access__item p {
    height: 37vh;
  }
  .greed__contents .greed__box-text {
          max-height: 258px;
        line-height: 26px;
        bottom:0;
      }

          .greed {
        padding: 120px 0 84px;
    }
}
@media only screen and (max-width: 430px){
  .greed {
    padding: 120px 0;
  }
  .greed__contents .greed__box-img h3 {
    top: 40%;
    right: 5%;
    font-size: 12px;
  }
  .greed__contents .greed__box-text {
    bottom: 0%;
    width: 84%;
  }
  .greed__contents .greed__box-text p {
    font-size: 3.6vw;
  }
}