:root {
  --navy: #0f2540;
  --gold: #897d55;
  --cream: #f3f3e0;
  --light_cream: #f8f8f3;
  --gray: #636363;
  --light_gray: #cdcdcd;
}
/*スプラッシュ--------------------*/
@property --r {
  syntax: '<length-percentage>';
  inherits: false;
  initial-value: 0px;
}
/* 2) ベタ塗り＋フルサイズのマスク（中央だけ透明＝穴） */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  pointer-events:  none;
  animation: splashReveal 1.5s ease-out forwards;
  animation-delay: 0.5s;
  /* 穴の中心位置と初期半径（0 = 穴なし） */
  --cx: 50%;
  --cy: 50%;
  --r: 0px;
  /* 白=表示, 透明=穴。半径 --r を使って境界を作る */
  -webkit-mask-image: radial-gradient(circle at var(--cx) var(--cy), transparent var(--r), white calc(var(--r) + 1px));
  mask-image: radial-gradient(circle at var(--cx) var(--cy), transparent var(--r), white calc(var(--r) + 1px));
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
}
/* 3) 穴を拡大 → 最後にフェードアウトして消す */
@keyframes splashReveal {
  0% {
    --r: 0px;
    opacity: 1;
  }
  50% {
    --r: 60vmax;
    opacity: 0;
  } /* 画面対角より十分大きく */
  100% {
    --r: 140vmax;
    opacity: 0;
  }
}
/* 4) トリガー用クラス：付けるとアニメ開始 */
#splash.reveal {
}
/* 動きを減らすユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  #splash.reveal {
    animation: none;
    opacity: 0;
  }
}
/*メインイメージ--------------------*/
#mainImg {
  background-color: var(--navy);
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  padding-top: 60px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
#mainImg > video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← これで「敷き詰め＋はみ出しカット」 */
  object-position: 50% 50%; /* トリミングの中心（左右が切れる時に中央寄せ） */
  display: block;
}
#mainTxt {
  width: 400px;
  position: absolute;
  left: 50%;
  top: calc(50% + 30px);
  transform: translate(-50%, -50%);
  animation-delay: 5000;
  animation: fadeOut 1s 4s forwards; /* 4秒待って1秒で消える */
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
#mainTxt img {}
#mainLogo {
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #mainTxt {
    width: 60%;
    top: calc(50% + 40px);
  }
  #mainImg {
    padding-top: 80px;
  }
  #mainImg {
    aspect-ratio: 2 / 3;
  }
}
/*リード--------------------*/
#lp .readBlock h2 {
  margin-top: 60px;
}
#lp .readBlock {
  display: flex;
  justify-content: center;
  position: relative;
}
#lp .readBlock::after {
  content: '';
  display: block;
  position: absolute;
  width: 480px;
  height: 360px;
  top: 30px;
  left: 80px;
  background: var(--light_cream);
  border-radius: 10px;
  z-index: -1;
}

#lp .readBlock.readBlock2::after {
  content: none;
}
#lp .readBlock {
  display: flex;
}
#lp .readBlock img {
  max-width: 480px;
  border-radius: 10px;
  margin-right: 80px;
}
.readBlockTxt {
  padding-left: 40px;
}
#lp .readBlock.readBlock2 {
justify-content: space-between;
width: 100%
}
.readBlock2 .readBlockTxt {
  padding-right: 40px;
}
#lp .readBlock.readBlock2 img {
margin-right: 0;

}
@media screen and (max-width: 1080px) {
  #lp .readBlock::after {
    display: none;
  }
  #lp .readBlock h2 {
    margin-top: 0;
  }
  #lp .readBlock p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #lp .readBlock img {
    max-width: 100%;
    margin-right: 0;
  }
  #lp .readBlock::after {
    content: '';
    display: block;
    position: absolute;
    width: 240px;
    height: 190px;
    top: 20px;
    left: 80px;
  }
  #lp .readBlock {
    display: block;
  }
  #lp .readBlock h2 {
    font-size: 18px;
    margin-top: 45px;
  }
  .readBlockTxt {
    padding-left: 0;
  }
}
.readBtn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.readBtn li {
  width: 33%;
  margin-bottom: 4px;
  background: #fff;
  overflow: hidden;
}
.readBtn li a {
  transition: 0.5s;
  display: block;
}
.readBtn li a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
/*汎用レイアウト--------------------*/
.pic2Line {
  display: flex;
  justify-content: space-between;
}
.pic2Line img {
  border-radius: 10px;
}
.pic2Line div {
  width: 48%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pic2Line {
    display: block;
    text-align: center;
  }
  .pic2Line div {
    width: 100%;
  }
}
/*汎用リンク--------------------*/
.cardList {
  display: flex;
  justify-content: center;
  column-gap: 60px
}
.cardLink {
  max-width: 240px;
}
.cardL .cardLink {
  max-width: 480px;
}
.card3 {
  flex-wrap: wrap;
}
.cardLeft {
  justify-content: flex-start;
}
.card3 > div {
  width: 30%;
  padding-bottom: 30px;
}
.cardLink a, .cardLink span {
  display: block;
  position: relative;
  text-decoration: none;
}
.cardLink a .cardListImg, .cardLink span .cardListImg {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  transition: 0.5s;
}
.cardLink a .ar16_9, .cardLink span .ar16_9 {
  aspect-ratio: 16 / 9;
}
.cardLink a:hover .cardListImg {
  border-radius: 320px
}
.cardLink a img, .cardLink span img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* はみ出しをトリミングして埋める */
}
.cardLink a .cardTxt::before, .lineLink a::before {
  content: '';
  display: block;
  position: absolute;
  background-color: var(--navy);
  background-image: url("../images/btn_circle_arrow_wht.png");
  background-size: 20px 9px;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
  transition: 0.5s;
}
.cardLink a .cardTxt::before {
  top: -35px;
  right: -35px;
  width: 70px;
  height: 70px;
  border-radius: 70px;
}
.cardLink a:hover .cardTxt::before {
  width: 84px;
  height: 84px;
  border-radius: 84px;
}
.cardTxt {
  position: relative;
}
a .cardTxt h3 {
  text-decoration: none;
  font-size: 18px;
  color: var(--navy);
  padding-top: 30px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 800;
}
a .cardTxt p {
  font-size: 14px;
  color: var(--navy);
  padding-top: 12px;
}
@media screen and (max-width: 1280px) {

.cardList {
  column-gap: 40px
}

}
@media screen and (max-width: 1080px) {
  .card3 > div {
    width: 45%;
  }
}
@media screen and (max-width: 764px) {

.cardList {
  column-gap: 30px
}
  a .cardTxt h3 {
    font-size: 18px;
  }
  a .cardTxt h3 {
    font-size: 18px;
  }

  .cardL > div {
    width: 100%;
  }
  .cardL .cardLink {
    max-width: 90%;
  }
  .cardL .cardLink a .cardListImg, .cardL .cardLink span .cardListImg {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
.cardLink a .cardTxt::before {
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.cardLink a:hover .cardTxt::before {
  width: 60px;
  height: 60px;
  border-radius: 60px;
}
}
@media screen and (max-width: 596px) {  
.cardLink {
  max-width: 180px;
}
.cardLink a .cardListImg, .cardLink span .cardListImg {
  max-width: 180px;
  }
}
@media screen and (max-width: 414px) {  
.cardLink {
  max-width: 150px;
}
.cardLink a .cardListImg, .cardLink span .cardListImg {
  max-width: 150px;
  }
}
.lineLink a {
  display: flex;
  position: relative;
  min-height: 70px;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--light_gray);
  border-top: 1px solid var(--light_gray);
  align-items: center;
  padding-left: 10px
}
.lineLink2 a {
  border-top: none;
}
.lineLink a:hover {
  background-color: var(--light_cream);
}
.lineLink a::before {
  top: calc(50% - 25px);
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.lineLink a:hover::before {
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
}
.btnLink a {
  display: block;
  border-radius: 10px;
  padding: 20px;
  background-color: var(--gold);
  color: #fff;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.5s
}
.btnLink a::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 9px;
  top: calc(50% - 4px);
  right: 10px;
  background-image: url("../images/btn_circle_arrow_wht.png");
  background-repeat: no-repeat;
  background-size: 20px 9px;
}
.btnLink a:hover {
  background-color: var(--gray);
}

.border_lg {
  padding: 20px;
  background: var(--light_cream);
  border-radius: 10px
}
.border_top {
  padding-top: 20px;
  border-top: 1px solid var(--cream)
}

/*汎用装飾--------------------*/

.bg_navy {
  background-color: var(--navy);
}
.bg_cream {
  background-color: var(--cream);
}
.bg_light_cream {
  background-color: var(--light_cream);
}
.bg_white{
background-color: #fff;
}

.border_bold{
border: 1px solid var(--gold);
}

.border_navy{
border: 1px solid var(--navy);
}
.border_light_gray{
border: 1px solid var(--light_gray);
}

.txt_navy{
color: var(--navy)
}
.txt_gold{
color: var(--gold)
}
.mw480{
max-width: 480px;
}
/* 枠 */
.crossfade{
  position: relative;
  width: 480px;
  height: auto;
}

/* 2枚を重ねて、交互にフェード */
.crossfade img:nth-child(2){
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fade 8s infinite ease-in-out;
}
.crossfade img:nth-child(2){ animation-delay: 3s; }

@keyframes fade{
  0%{ opacity: 0; }
  25% { opacity: 1; }
  50% { opacity: 1; }
  75% { opacity: 0; }
}

/* 動きを控える設定のユーザー配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .crossfade img{ animation: none; }
}


/*本文--------------------*/
#lp .restaurant img {
  border-radius: 10px
}
#lp .restaurantName, #lp .resBlack .restaurantName {
  color: var(--gold);
  font-weight: 600;
}
#s01 .restaurantTitle {
  background-image: url("../images/shopmain_01.jpg");
}
#s02 .restaurantTitle {
  background-image: url("../images/shopmain_02.jpg");
}
#s03 .restaurantTitle {
  background-image: url("../images/shopmain_03.jpg");
}
#s04 .restaurantTitle {
  background-image: url("../images/shopmain_04.jpg");
}
#s05 .restaurantTitle {
  background-image: url("../images/shopmain_05.jpg");
}
#s06 .restaurantTitle {
  background-image: url("../images/shopmain_06.jpg");
}
#s07 .restaurantTitle {
  background-image: url("../images/shopmain_07.jpg");
}
.restaurantTitle {
  position: relative;
  width: 100%;
  height: 560px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.restaurantTitle h2 img {
  width: 200px;
  margin-top: 20px;
  margin-left: 20px;
}
.restaurantTitleTxt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.restaurantTitleTxt p {
  color: #fff;
  font-weight: 400;
  font-size: 26px;
  line-height: 2;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9), 0px 0px 10px rgba(0, 0, 0, 0.8);
  display: inline-block;
}
/*縦書き
.restaurantTitleTxt {
  width: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.restaurantTitleTxt p {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #fff;
  font-weight: 400;
  font-size: 26px;
  text-align: left;
  line-height: 2;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9), 0px 0px 10px rgba(0, 0, 0, 0.8);
  display: inline-block;
}*/

.restaurantTitle p .indent {
  display: inline-block;
  text-indent: -0.5em
}
@media screen and (max-width: 767px) {
  #lp .restaurantTitle {
    height: 420px;
  }
  .restaurantTitle h2 img {
    width: 160px;
  }
  #lp .restaurantTitleTxt p {
    font-size: 20px;
  }
}
.restaurantRead {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between
}
.restaurantRead .chef {
  margin-top: -60px;
  z-index: 1;
  width: 360px;
  margin-left: 20px;
  margin-right: 40px;
  text-align: right
}
.restaurantRead .chef p.caption {
  text-align: right
}
.restaurantRead .chefImg {
  display: flex;
  justify-content: space-between;
}
.restaurantRead .chef.chefSolo {
  width: 180px;
  max-width: 180px;
  min-width: 180px;
}
.restaurantRead .chefSolo .chefImg {
  justify-content: flex-end;
}
.restaurantRead .chefImg img {
  width: 49.5%;
}
.restaurantRead .chefSolo .chefImg img {
  width: 100%;
}
.menuBlock {
  display: flex;
  justify-content: space-between;
}
.menuBlock .menuImg {
  margin-left: 20px;
  width: 480px;
}
.menuBlock .menuImg img {
  width: 480px;
  max-width: 480px;
}
.restaurantRead h3 {
  font-size: 24px;
  text-align: left;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .restaurantRead {
    display: block;
    position: relative;
  }
  .restaurantRead .chef {
    margin-top: 40px;
    z-index: 2;
    width: 100%;
    margin-left: 0;
  }
  .restaurantRead .chefImg {
    display: flex;
    justify-content: space-between;
  }
  .restaurantRead .chefImg img {
    width: 49.5%;
  }
  .restaurantRead .chef.chefSolo{
  width: 100%;
  max-width:100%;
  }
  .restaurantRead .chefSolo .chefImg{
  justify-content:flex-start;
  }
  .restaurantRead .chefSolo .chefImg img {
    width: 49.5%;
  }
  .restaurantRead .chef p.caption{
  text-align: left;
  }
  .menuBlock {
    display: block;
  }
  .menuBlock .menuImg {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
.menuBlock .menuImg img {
    width: 100%;
    max-width: 100%;
  }
.restaurantRead h3 {
font-size: 20px
  }
}
.movieLink a.movie{
display: block;
position: relative;
width: 100%;
height: auto;
background-color: var(--navy);
border-radius: 10px;
}
.movieLink a.movie p{
display: block;
position: absolute;
width: calc( 100% - 40px);
text-align: right;
bottom: 10px;
left: 0;
color: #fff;
text-shadow: 0 0 4px rgba(0,0,0,0.9);
}

.movieLink a.movie::before{
  content: '';
  display: block;
  position: absolute;
  background-color: var(--navy);
  background-image: url("../images/btn_circle_arrow_wht.png");
  background-size: 20px 9px;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
  transition: 0.5s;
}
.movieLink a.movie::before {
  bottom: -35px;
  right: -35px;
  width: 70px;
  height: 70px;
  border-radius: 70px;
}
.movieLink a.movie:hover::before {
  width: 84px;
  height: 84px;
  border-radius: 84px;
}
.movieLink a.movie img{
border-radius: 10px;
}
.movieLink a.movie:hover img{
opacity: 0.5;
}

.movieLink .miniBtn a{
 display: inline-block;
 border: 1px solid var(--navy);
 width: auto;
  border-radius: 30px;
  padding: 4px 40px 4px 20px;
  color: var(--navy);
  position: relative;
  text-align: center;
  text-decoration: none;
background-image: url("../images/btn_circle_arrow.png");
background-size: auto;
background-position: right 10px center;
background-repeat: no-repeat;
transition: 0.5s
}
.movieLink .miniBtn a:hover{
background-position: right 5px center;
background-color: var(--light_cream);
}
.movieBlock{
  position: fixed;
  inset: 0;
  background: var(--navy);
}
.movieBlock video,
.youtube-16-9{
position: absolute;
top: 50%;
left: 0;
width: 100%;
max-width: 100%;
max-height: 100%;
height: auto;
transform: translateY(-50%);
max-width: 100%;
}

/*yotube--------------------*/
.youtube-16-9 {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
}

/* === Video Popup Modal === */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;                 /* 初期は非表示（HTML内に置いておく） */
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.video-modal-backdrop.is-open { display: flex; }


.video-modal__body {
  width: 100%;
  aspect-ratio: 16 / 9;          /* 16:9固定 */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.video-modal__iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-modal__close {
  position: absolute;
  top: -12px; right: -12px;
  width: 40px; height: 40px;
  border: 0; border-radius: 999px;
  background: #fff; color: #111; cursor: pointer;
  font-size: 20px; line-height: 40px; text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
@media (max-width: 480px) {
  .video-modal__close { top: -10px; right: -10px; width: 36px; height: 36px; line-height: 36px; font-size: 18px; }
}
.video-modal-backdrop {
}

.video-modal {
  position: fixed;          /* ← 本体を画面基準で配置 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(95vw, 960px);
}


