:root {
  --navy: #0f2540;
  --gold: #897d55;
  --cream: #f3f3e0;
  --light_cream: #f8f8f3;
  --gray: #636363;
  --light_gray: #e9e9e1;
  --lp: #0b3185;
  --cream: #f3f3e0;
}
/*スプラッシュ--------------------*/
@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;
  }
}
/*メインイメージ--------------------*/

/*リード--------------------*/
#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%;
  }
}
/*2つのボックス*/
.menuBox{
	padding:  0 ;
	border: 1px solid #004b94;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
}
@media screen and (max-width: 767px){
.menuBox{
padding: 0 20px;
}
}

menuBoxBor{
	border-bottom:1px solid #004b94;
	padding: 30px 0;
	}

.menuList{
 display: flex;
}
@media screen and (max-width: 768px) {
 .menuList{
  flex-direction: column;
 }
}
@media screen and (max-width: 768px) {
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}
}
.menuList li{
	margin:0 auto 0;
	max-width:460px;
	text-align:left;
}
/*汎用リンク--------------------*/
.cardList {
  display: flex;
  justify-content: center;
  column-gap: 60px
}
.cardLink {
}
.cardL .cardLink {
  max-width: 480px;
}
.card3 {
  flex-wrap: wrap;
}
.cardLeft {
  justify-content: flex-start;
}
.card3 > div {
  width: calc(33% - 40px);
  padding-bottom: 30px;
}
.cardLink a, .cardLink span {
  display: block;
  position: relative;
  text-decoration: none;
}
.cardLink a .cardListImg, .cardLink span .cardListImg {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  width: 100%;
  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;
}
.cardTxt h3 {
  text-decoration: none;
  font-size: 18px;
  color: var(--lp);
  padding-top: 30px;
  font-family: 'Zen Old Mincho', serif;
}
.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: 1180px) {
  .card3 > div {
    width: calc(50% - 40px);
  }
  .cardList{
  justify-content: flex-start;
  }
}
@media screen and (max-width: 764px) {
  .card3 > div {
    width: 100%;
  }
  .cardList{
  justify-content: center;
  }
.cardList {
  column-gap: 30px
}
.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;
}
}
.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);
}
.btnBlock{
max-width: 480px;
margin-left: auto;
margin-right: auto;
}
.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_light_gray {
  background-color: var(--light_gray);
}
.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)
}
.txt_lp{
color: var(--lp)
}
.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; }
}


/*本文--------------------*/
.secMain{
width: 100%;
height: 400px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
border-radius: 20px;
}
@media screen and (max-width: 764px) {
.secMain{
height: 300px;
}
}
.sec01{
background-image: url("../images/area_main_pc01.jpg");
}
.sec02{
background-image: url("../images/area_main_pc02.jpg");
}
.sec03{
background-image: url("../images/area_main_pc03.jpg");
}
.sec04{
background-image: url("../images/area_main_pc04.jpg");
}
.sec05{
background-image: url("../images/area_main_pc05.jpg");
}

.chefPic{
width: 240px;
height: 240px;
border-radius: 240px;
overflow: hidden;
margin-left: auto;
margin-right: auto;
}

#lp .restaurant img {
  border-radius: 10px
}

.menuBlock {
  display: flex;
  justify-content: space-between;
}
.menuBlock .menuImg {
  margin-left: 40px;
  width: 480px;
}
.menuBlock .menuImg img {
  width: 480px;
  max-width: 480px;
}
.menuBlock h4{
color: var(--lp);
}
.restaurantRead h3 {
  font-size: 24px;
  text-align: left;
  line-height: 1.4;
}
@media screen and (max-width: 1180px) {
  .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
  }
}


