@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  opacity: 1;
  transition: .3s;
}

a:hover {
  opacity: .6;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px); /* 下からスライドインなど任意で */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  body {
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

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

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


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

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  left: 10px;
  top: 20px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #999999;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  transform: translateX(-100%);
  transition: all 0.6s;
  height: 100vh;
  padding: 30px 20px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

header {
  height: 100vh;
  padding: 30px 20px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.head_nav li {
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  text-orientation: upright; 
  letter-spacing: .1em;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}

.head_insta {
  position: absolute;
  left: 20px;
  bottom: 30px;
}

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

  header {
    background: transparent;
  }

}


/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

footer {
  width: 100%;
  background: #020202;
  padding: 108px 0;
}

.foot_cont img {
  max-width: 267px;
  margin-left: 180px;
}

.foot_txt {
  margin-right: 70px;
}

.foot_txt p:first-child {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 3px;
}

.foot_txt p:last-child {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 3px;
  margin-top: 20px;
}

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

  .foot_cont {
    display: block !important;
    text-align: center;
  }

  .foot_cont img {
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }

  .foot_txt {
    display: inline-block;
    margin-right: 0;
  }
  
}

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

  footer {
    padding: 60px 0;
  }

  .foot_cont img {
    max-width: 200px;
  }

  .foot_txt p:first-child {
    font-size: 1.2rem;
  }

  .foot_txt p:last-child {
    font-size: 1rem;
  }

}

/*---------------------------------------------------------------------------------------------

コンテンツ

---------------------------------------------------------------------------------------------*/

.mv_area {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_mv.webp") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.mv_cont {
  width: 90%;
  margin: auto;
}

.mv_image {
  max-width: 650px;
  width: 55%;
}

.mv_text {
  width: 35%;
  margin-left: 90px;
}

.mv_text img {
  max-width: 267px;
  display: block;
  margin: auto;
}

.mv_text h1 {
  font-size: 3.6rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .4em;
  margin: auto;
  margin-top: 40px;
}

.mv_text p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 5px;
}

.about_area {
  color: #FFF;
  width: 100%;
  height: 100vh;
  background: url("../img/bg_about.webp") no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 150px;
}

.about_cont {
  display: none;
}

.about_head {
  font-size: 4.2rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
  letter-spacing: .2em;
  margin-left: 70px;  
}

.about_read {
  font-size: 1.6rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 2.5; 
}

.sushi {
  width: 100%;
  height: 100%;
  padding: 215px 0;
}

.sushi_cont {
  max-width: 1035px;
  margin: auto;
  margin-bottom: 170px;
}

.main_sushi01 {
  width: 100%;
  margin-bottom: 85px;
}

.main_sushi01 img {
  max-width: 784px;
}

.main_sushi01 img.about_txt_image {
  max-width: 116px;
  width: 80%;
}

.main_head {
  display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.main_copy {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
}

.main_copy p:first-child {
  font-size: 1.8rem;
  letter-spacing: .2em;
}

.main_copy p:last-child {
  font-size: 4.2rem;
  letter-spacing: .2em;
}

.main_sushi02 img {
  max-width: 442px;
}

.main_text2 {
  max-width: 500px;
}

.main_text2 h3 {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.main_text2 p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 3px;
}

.sushi-slider-viewport {
  width: 100%;
  overflow: hidden;
  margin-top: 85px;
}

.sushi-swiper .swiper-slide{
  aspect-ratio: 1 / 1;   /* これで正方形 */
  display: flex;         /* 中身をフィットさせやすく */
}

.sushi-swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 画像をトリミングして正方形にフィット */
  display: block;
}

.shop {
  width: 100%;
  height: 100%;
  background: url("../img/bg_shop.webp") no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 200px 0 100px 0;
}

.shop_tit {
  color: #FFF;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 5px;
  margin-bottom: 80px;
  text-align: center;
}

.shop_box {
  max-width: 910px;
  width: 90%;
  margin: auto;
  margin-bottom: 40px;
}

.shop_img {
  max-width: 527px;
  width: 55%;
}

.shop_info {
  color: #FFF;
  margin-left: 60px;
}

.shop_name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 3px;
}

.shop_contact {
  font-size: 2rem;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 3px;
}

.shop_access {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
  margin-top: 20px;
}

.shop_sns {
  display: block;
  width: 30px;
  margin-top: 40px;
}

.map-wrap {
  max-width: 910px;
  margin: auto;
  margin-bottom: 100px;
}

.pc_main_txt {
    width: 70%;
    margin: auto;
}

@media (max-height: 800px) {

  .mv_area {
    height: 100%;

  }

  .about_area {
    height: 100%;
    padding-bottom: 80px;
  }

}

@media screen and (max-width: 1200px) {
  .about_cont {
    width: 90%;
    margin: auto;
    display: block !important;
  }

  .about_area {
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about_head {
    font-size: 3rem;
    margin: auto;
    margin-bottom: 50px;
  }

  .about_read {
    writing-mode: initial;
    font-size: 1.4rem;
    text-align: center;
  }

  .pc_main_txt {
    display: none;
  }
}


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

  .mv_image {
    width: 40%;
  }

  .mv_text {
    width: 55%;
    margin-left: 5%;
  }

  .none {
    display: none;
  }

  .main_sushi01 {
    width: 90%;
    margin: auto;
    margin-bottom: 85px;
  }

  .main_sushi01 img {
    width: 60%;
  }

  .main_sushi02 {
    width: 90%;
    margin: auto;
  }

  .main_sushi02 img {
    width: 30%;
  }

  .main_text2 h3 {
    font-size: 2rem;
    line-height: 40px;
  }

  .main_text2 p {
    font-size: 1.4rem;
  }

}

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

  .mv_area {
    height: 100%;
    padding: 40px 0;
  }

  .mv_cont {
    flex-flow: column-reverse;
  }

  .mv_text {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .mv_text img {
    max-width: 200px;
  }

  .mv_text h1 {
    font-size: 3rem;
  }

  .mv_text p {
    letter-spacing: 0;
    text-align: left;
  }

  .mv_image {
    width: 100%;
  }

  .about_area {
    height: 100%;
    padding: 50px 0;
  }

  .about_read {
    text-align: left;
  }
  
  .sushi-slider-viewport {
    padding-inline: clamp(16px, 5vw, 32px);
  }

  .sushi {
    padding: 100px 0;
  }

  .main_sushi01 {
    display: block !important;
    margin-bottom: 50px;
  }

  .main_head {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .main_copy {
    margin: auto;
  }

  .main_copy p:first-child {
    font-size: 1.3rem;
  }

  .main_copy p:last-child {
    font-size: 3rem;
  }

  .main_text {
    margin-bottom: 30px;
  }

  .main_sushi01 img {
    width: 100%;
  }

  .main_sushi02 {
    flex-flow: column-reverse;
  }

  .main_text2 h3 {
    font-size: 1.8rem;
  }

  .main_sushi02 img {
    width: 80%;
  }

  .main_text2 {
    width: 100%;
    margin-bottom: 30px;
  }

  .shop_box {
    display: block;
  }

  .shop_img {
    width: 100%;
  }

  .shop_info {
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
  }

  .shop_tit {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .shop_name {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .shop_contact {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .shop_access {
    font-size: 1.5rem;
  }

  .map-wrap {
    width: 90%;
    margin-bottom: 60px;
  }

  iframe {
    height: 200px !important;
  }

  .sushi_cont {
    margin-bottom: 80px;
  }

  .main_sushi01 img.about_txt_image {
    max-width: 90px;
    width: 50%;
    display: block;
    margin: auto;
  }

}