@charset "UTF-8";

/* 共通設定 =============================================================== */

/* 基本リセット（余白調整のため念の為追加） */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
font-family: "Zen Kaku Gothic New", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.8;
background-color: #fff;

margin: 0;
padding: 0;
font-style: normal;
}

@media screen and (min-width: 768px) {
	body {
	background-image: url(../img/Bg.png);
	background-size: 100% auto;
	background-position: center top;
	}
}

small {
	font-size: 11px;
	letter-spacing: 0; }


ul {
list-style: none;
}

img {
width: 100%;
}

p {
margin: 0;
}


.WF2 {
  font-family: "Mohave", sans-serif;
  font-optical-sizing: auto;
/*   font-weight: <weight>; */
  font-style: normal;
}


.WF3 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.mds__img {
  text-align: center;
}

.mds__img img {
  width: auto;
  height: 50px;
}

.mds__txt {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 0 0;
}

.NonActive {
opacity: 0.3 !important;
pointer-events: none !important;
}


/* ============================= */
/* Loading Screen */
/* ============================= */

#loading-screen {
    position: fixed;
    inset: 0;
    background-image: url("../img/Bg.png?ver=260224");
    background-repeat: repeat-y;      /* 縦だけ繰り返す */
    background-size: 100% auto;       /* 横幅いっぱいに伸ばす */
    background-position: top center;  /* 上中央基準 */
    z-index: 9999;
    overflow: hidden;
    transition: opacity 1s ease;
}

/* ローディング内だけに限定 */
#loading-screen .wick1,
#loading-screen .wick2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
}

/* 初期位置（画面外） */
#loading-screen .wick1 {
    left: 50%;
    transform: translate(-350%, -50%);
}

#loading-screen .wick2 {
    left: 50%;
    transform: translate(250%, -50%);
}

/* アニメーション開始 */
.is-loading #loading-screen .wick1 {
    animation: slideFromLeft 2.5s forwards cubic-bezier(0.22,1,0.36,1);
}

.is-loading #loading-screen .wick2 {
    animation: slideFromRight 2.5s forwards cubic-bezier(0.22,1,0.36,1);
}

@keyframes slideFromLeft {
    to {
        transform: translate(-65%, -50%);
    }
}

@keyframes slideFromRight {
    to {
        transform: translate(-35%, -50%);
    }
}

/* 2回目以降 */
.no-animation #loading-screen {
    display: none;
}

/* ===== 中央側のwickを固定位置にする ===== */

.wickUnit .wick1,
.wickUnit .wick2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
}

/* 最終位置を loading と揃える */
.wickUnit .wick1 {
    transform: translate(-65%, -50%);
}

.wickUnit .wick2 {
    transform: translate(-35%, -50%);
}

.bodyTop {
    visibility: hidden;
}

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

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

  /* 中央側 */
  .wickUnit .wick1,
  .wickUnit .wick2 {
    width: 220px;
  }

  /* ローディング側も同じサイズにする */
  #loading-screen .wick1,
  #loading-screen .wick2 {
    width: 220px;
  }


}




/* 振り分け --------------------------------------------------- */

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

	.PC {
	display: none;
	}

}

@media print, screen and (min-width: 768px) {

	.SP {
	display: none;
	}

}



/* コンテナ =============================================================== */

/* --- センターエリア --- */
.CenterBoxWrap {
  display: flex;
  justify-content: center;
  flex-flow: column;
  order: 2;

  /* 背景がないとコンテンツが浮いて見える場合があるため必要に応じて調整 */
  z-index: 2;
}

.CenterBox {

  /* 相対配置の基準にする */

  position: relative;
}


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

	.LeftBoxWrap,
	.RightBoxWrap {
	display: none;
	}

	.Width1 {
	padding: 0 20px;
	}

}


@media print, screen and (min-width: 768px) {

	.LeftBoxWrap,
	.RightBoxWrap {
	display: none;
	}
	
	.Width1 {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 30px;
	}

	
	.CenterBox {
	width: 400px;
	margin: 0 auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	}

}


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

	.LeftBoxWrap .Nav1,
	.RightBoxWrap .Nav2 {
	display: none;
	}

}


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

	.CenterBoxWrap {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);	
	}
	
		.CenterBox {
		box-shadow: none;
		}

    /* コンテナを横いっぱいに広げる */
    .container {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center;
        align-items: flex-start; /* 上揃え */
    }

    /* 左右と中央の共通クラス(UnitWrap)の幅指定をリセット */
    .UnitWrap {
        width: auto !important; 
    }

    /* --- 左側・右側のエリア --- */
    .LeftBoxWrap,
    .RightBoxWrap {
        display: flex !important; /* 以前の display: none を強制上書き */
        flex: 1;                  /* 余った幅をすべて使う（成り行き） */
        height: 100vh;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        justify-content: center;
        align-items: center;
    }

    /* --- 中央のエリア（400px固定） --- */
    .CenterBoxWrap {
        display: flex !important;
        flex: 0 0 400px !important; /* 伸びない、縮まない、400px固定 */
        width: 400px !important;
        order: 2; /* 左右の間に配置 */
        z-index: 2;
    }

    /* 順序の指定 */
    .LeftBoxWrap {
        order: 1;
    }
    
    .RightBoxWrap {
        order: 3;
    }

    /* 内部の画像がはみ出さないように */
    .LeftBox img, .RightBox img {
        max-width: 100%;
        height: auto;
    }



.CenterBox {

  /* 相対配置の基準にする */
  background-color: #fff;
  position: relative;
}

}




/* キービジュアル =============================================================== */

.PageTopWicked .KeyVisualUnit {
/* 画面の高さいっぱいに広げる */
height: 100vh;
/* 画像を上下左右中央に配置 */
display: flex;
justify-content: center;
align-items: center;

/* Scrollボタン配置の基準点にする */
position: relative;
margin: auto;
}

.PageInterview .KeyVisualUnit {

}

.PageInterview .KeyVisualUnit .SPTop {
width: 70%;
margin: 20px auto 0 auto;
}

/* キービジュアル画像自体の調整（必要であれば） */
.KeyVisualUnit img {
max-width: 100%;
height: auto;
}

/* --- スクロールボタン 初期状態 --- */
.Scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  /* 初期位置を固定（アニメーション開始前） */
  transform: translate(-50%, 50%);
  z-index: 100;
  opacity: 0; /* 最初は隠す */
  margin-bottom: 0;
  
  /* トランジションでフェードさせるとアニメーションと競合しにくい */
  transition: opacity 1.0s ease;
}

/* JSで付与されるクラス */
.Scroll.is-visible {
  opacity: 1; /* ここで表示させる */
  /* 出現した後に上下アニメーションを開始 */
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* アニメーションの動き */
@keyframes scroll-bounce {
  0%, 100% {
    transform: translate(-50%, 50%);
  }
  50% {
    /* 60%だと動きすぎる場合は数値で調整（例: calc(50% + 10px)） */
    transform: translate(-50%, 65%);
  }
}

/* 2回目以降（JSでbodyに付与） */
.no-animation .Scroll {
  opacity: 1;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.TxtUnit {
position: relative;
}

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

	.Scroll {
	width: 40px;
	}
	
	.PageInterview .KeyVisualUnit {
	padding-top: 30px;
	}

}

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

@keyframes scroll-bounce {
  0%, 100% {
    transform: translate(-50%, 80%);
  }
  50% {
    /* 60%だと動きすぎる場合は数値で調整（例: calc(50% + 10px)） */
    transform: translate(-50%, 60%);
  }
}

	.Scroll {
	margin-bottom: -20px;
	}


}


@media print, screen and (min-width: 768px) {

	.KeyVisualUnit {
	width: 400px;
	}

	.Scroll {
	width: 50px;
	}
	
	.KeyVisualUnit,
	.InterviewUnitWrap {
	background: #fff;
	}

}






/* ループ =============================================================== */

.LoopUnit {
width: 100%;
overflow: hidden;
border-top: 3px solid #000;
border-bottom: 3px solid #000;
}

.LoopUnitPopup {
margin-top: 30px;
width: 100%;
overflow: hidden;
}

/* --- 画像を動かすトラック --- */
.LoopTrack {
  display: flex;          /* 画像を横並びにする */
  width: fit-content;     /* 中身の幅に合わせて広がるようにする */
  
  /* アニメーションの設定 */
  /* 名前 | 1周にかかる時間 | 動き方(一定) | 繰り返し(無限) */
  animation: loopScroll 15s linear infinite;
}

/* --- トラック内の画像設定 --- */
.LoopTrack img {
  /* 必要に応じて画像の高さや隙間を調整してください */
  height: 50px; /* 例：高さを固定 */
  width: auto;   /* 横幅は自動 */
  
  /* 画像が縮まないようにする */
  flex-shrink: 0;
  
  /* 画像の間に隙間を空けたい場合はコメントアウトを外して調整 */
  /* margin-right: 20px; */
}

.LoopUnit1 .LoopTrack img {
  height: 80px;
}

/* --- アニメーションの動きを定義 --- */
@keyframes loopScroll {
  0% {
    transform: translateX(0); /* 初期位置 */
  }
  100% {
    /* 画像2枚で1セットなので、トラック全体の長さの50%（画像1枚分）移動した時点でループさせる */
    transform: translateX(-50%); 
  }
}

/* --- LoopUnit2専用の設定（左から右へ） --- */
.LoopUnit2 .LoopTrack {
  /* 逆方向に動くアニメーションを適用 */
  animation: loopScrollReverse 15s linear infinite;
}

/* --- 逆方向アニメーションの定義 --- */
@keyframes loopScrollReverse {
  0% {
    transform: translateX(-50%); /* 左にずれた状態からスタート */
  }
  100% {
    transform: translateX(0);    /* 右（元の位置）に向かって進む */
  }
}


.ShopUnitIn {
  display: none; /* 最初は閉じる */
  padding: 15px;
  background: #f9f9f9;
}

.ShopName {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  margin: 0;
}

/* Swiperのサイズ調整（任意） */
.SlideunitWrap {
  width: 100%;
  margin-top: 10px;
}
.SlideunitWrap img {
  width: 100%;
  height: auto;
}



/* メインリード =============================================================== */

.MainLeadUnitWrap {
width: 100%;
 padding-top: 80px;
padding-bottom: 40px;
background-image: url("../img/bg_pattern.jpg");
background-repeat: repeat-y;
background-size: 100% auto;
}


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

.MainLeadUnitWrap {
padding-top: 100px;
}

}


/* メニュー =============================================================== */

/* 共通設定：リスト全体のスタイル */

.MenuListWrap {
text-align: center;
}

.MenuListWrap .MdsUnit {
font-size: 22px;
font-weight: 600;
letter-spacing: 0.08em;
}

.MenuList {
display: flex;
justify-content: center;
flex-flow: column;
list-style: none;
padding: 0;
margin: 0;
}

.MenuList li {
margin-top: 15px;
}

.MenuList li a {
display: flex;
justify-content: center;
align-items: center;
flex-flow: column;
height: 58px; /* 指定の高さ */
background-repeat: no-repeat;
background-position: center;
background-size: 100% auto;
transition: background-image 0.3s ease; /* 切り替えを滑らかにする（任意） */
color: #fff;
text-decoration: none;
text-align: center;
margin-left: auto;
margin-right: auto;
line-height: 1;
}

.MenuList li a span {
display: block;
}

/* 各メニュー個別の設定 */

/* Menu1: 220px */
.MenuList li.Menu1 a { 
width: 220px;
background-image: url("../img/Menu_Bg_1.png");
}

.MenuList li.Menu1 a:hover { 
background-image: url("../img/Menu_Bg_1_On.png");
}

/* Menu2: 180px */
.MenuList li.Menu2 a { 
width: 180px;
background-image: url("../img/Menu_Bg_2.png"); 
}

.MenuList li.Menu2 a:hover { 
background-image: url("../img/Menu_Bg_2_On.png");
}

/* Menu3: 240px */
.MenuList li.Menu3 a { 
width: 240px;
background-image: url("../img/Menu_Bg_3.png");
}

.MenuList li.Menu3 a:hover { 
background-image: url("../img/Menu_Bg_3_On.png");
}

/* Menu4: 190px */
.MenuList li.Menu4 a { 
width: 190px;
background-image: url("../img/Menu_Bg_4.png");
}

.MenuList li.Menu4 a:hover {
background-image: url("../img/Menu_Bg_4_On.png");
}

.MenuList .Mds1 {
font-size: 17px;
letter-spacing: 0.05em;
}

.MenuList .Mds2 {
margin-top: 5px;
font-size: 12px;
font-weight: 600;
letter-spacing: -0.02em;
}



/* メニュー =============================================================== */

    
.LeftBoxWrap .MainPh {
width: 225px;
margin: auto;
}

/* 共通設定：リスト全体のスタイル */

.LocalMenuListWrap {

text-align: center;
}

.LocalMenuListWrap .MdsUnit {
font-size: 22px;
font-weight: 600;
letter-spacing: 0.08em;
}

.LocalMenuList {
display: flex;
justify-content: center;
flex-flow: column;
list-style: none;
padding: 0;
margin: 0;
}

.LocalMenuListWrap .InterviewUnit {

margin-top: 20px;
}

.LocalMenuList li a {
display: flex;
justify-content: center;
align-items: center;
height: 50px; /* 指定の高さ */
background-repeat: no-repeat;
background-position: center;
background-size: 100% auto;
transition: background-image 0.3s ease; /* 切り替えを滑らかにする（任意） */
color: #fff;
text-decoration: none;
text-align: center;
margin-left: auto;
margin-right: auto;
line-height: 1;
}

.LocalMenuList li a span {
display: block;
}

.LocalMenuList li .Nav2 {
margin-left: 12px;
font-weight: 600;
letter-spacing: -0.02em;
}

/* 各メニュー個別の設定 */

/* Menu1: 220px */
.LocalMenuList li.Menu1 a { 
width: 315px;
background-image: url("../img/Nav_1.png");
}

.LocalMenuList li.Menu1 a:hover { 
background-image: url("../img/Nav_1_On.png");
}

/* Menu2: 180px */
.LocalMenuList li.Menu2 a { 
width: 310px;
background-image: url("../img/Nav_2.png"); 
}

.LocalMenuList li.Menu2 a:hover { 
background-image: url("../img/Nav_2_On.png");
}

/* Menu3: 240px */
.LocalMenuList li.Menu3 a { 
width: 307px;
background-image: url("../img/Nav_3.png");
}

.LocalMenuList li.Menu3 a:hover { 
background-image: url("../img/Nav_3_On.png");
}

/* Menu4: 190px */
.LocalMenuList li.Menu4 a { 
width: 285px;
background-image: url("../img/Nav_4.png");
}

.LocalMenuList li.Menu4 a:hover {
background-image: url("../img/Nav_4_On.png");
}

.MenuList .Mds1 {
font-size: 17px;
letter-spacing: 0.05em;
}

.MenuList .Mds2 {
margin-top: 5px;
font-size: 12px;
font-weight: 600;
letter-spacing: -0.02em;
}

.InterviewUnit {
margin: 30px auto 0 auto;
width: 290px;
}

.InterviewUnit .Bannar2 {
margin-top: 5px;
}

.PageInterview .LeftBoxWrap {
opacity: 1 !important;
}

.PageInterview .RightBoxWrap {
opacity: 1 !important;
}




/* コラボレーション アイテムズ =============================================================== */


.ShopList__character {
  will-change: transform;
  transform-origin: center bottom; /* 足元で跳ねてる感じ */
}



.ShopListUnitWrap {
padding-top: 40px;
text-align: center;
background: #fff;
}

.TitleUnit {
color: #fff;
}

#Collabortion .TitleUnit {
width: 300px;
height: 50px;
line-height: 50px;
margin: 0 auto 20px auto;
background-image: url(../img/Mds_Collabo.png);
background-repeat: no-repeat;
background-size: 100% auto;
}

.EntranceCharaTitle {
position: relative; /* キャラクター配置の基準点 */
width: 100%;
margin-top: 10px;   /* キャラクターの高さ分、上に余裕を持たせる */
display: flex;
justify-content: center; /* テキストを中央寄せ */
align-items: flex-end;
overflow: hidden;
}

.EntranceCharaTitle .mds__txt {
margin-bottom: 50px;
}

.ShopList__header {
  position: relative; /* キャラクター配置の基準点 */
  width: 100%;
   padding-top: 40px;
  padding-bottom: 20px; /* テキストと線の間の余白 */
  margin-top: 10px;   /* キャラクターの高さ分、上に余裕を持たせる */
  border-bottom: 4px solid #333; /* 下の太い黒線 */
  display: flex;
  justify-content: center; /* テキストを中央寄せ */
  align-items: flex-end;
  overflow: hidden;
}

.ShopList__title .Title1 {
display: block;
font-size: 26px;
line-height: 1;
font-weight: 600;
letter-spacing: 0.05em;
padding: 0 0;
margin: 0;
}

.ShopList__title .Title2 {
display: block;
font-size: 12px;
line-height: 1;
font-weight: 600;
padding: 0 0;
margin: 5px 0 0 0;
}

/* キャラクター配置用スタイル */
.ShopList__character {
  position: absolute;
  bottom: -20px;      /* 黒線のすぐ上に配置 */
  left: 10%;        /* 画像のように左側に置く場合（調整可） */
  width: auto;
  height: 120px;    /* キャラクターのサイズに合わせて調整 */
}

.ShopList__character img {
  height: 100%;
  width: auto;
  display: block;
}







.SHopListUnit .ShopName {
padding-left: 80px;
text-align: left;
}

.CollaboText { font-size: 16px; line-height: 1.6; padding: 20px 20px 0 20px; font-weight:500; }

/* 全体コンテナ */
.ShopList,
.PopupUnit,
.SpecialUnit,
.NoveltyUnit {

  margin: 0 auto;
}

/* アコーディオン各項目 */
.ShopItem {
  border-bottom: 1px solid #999;
}

/* クリック部分（親要素） */
.ShopItem__summary {
  display: flex;
  align-items: center;
  padding: 5px 20px 5px 110px; /* 左側に大きな余白 */
  height: 50px;
  cursor: pointer;
  list-style: none; /* デフォルトの矢印を消す */
  transition: background 0.3s ease;
}

/* Safari用のデフォルト矢印消し */
.ShopItem__summary::-webkit-details-marker {
  display: none;
}

.ShopItem__content {
padding-bottom: 40px;
}

/* 階数表示 */
.ShopItem__floor {
  width: 45px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* 店舗名 */
.ShopItem__name {
  text-align: left;
  font-size: 1.0rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-right: auto; /* 右側のアイコンを端へ押し出す */
}

/* 右側のアイコン設定 */
.ShopItem__icon {
  width: 24px; /* アイコンのサイズに合わせて調整してください */
  height: 24px;
  background-image: url("../img/Icon_Plus.png"); /* プラスアイコンのパス */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  
  /* 回転させる必要がなければ transition は削除してもOK */
  transition: background-image 0.2s ease; 
}

/* --- 開いている時のスタイル --- */
.ShopItem[open] .ShopItem__icon {
  /* マイナスアイコンに差し替え */
  background-image: url("../img/Icon_Minus.png");
  
  /* 以前の回転指定が残っていると画像が逆さまになるので、リセットします */
  transform: none;
}

/* 補足テキスト：行間を極限まで詰める */
.ShopItem__name .kyoki {
	font-family: "Zen Kaku Gothic New", sans-serif;
    display: block;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.0;
}


.ShopItem__content .item-img {
height: 260px;
}

.ShopItem .ShopItem__summary {
position: relative;
padding-left: 105px; /* 画像の横幅(85px) + 余白(10px+10px) 程度 */

}

.ShopItem[open] .ShopItem__summary {
  background-image: linear-gradient(to right, #f3cce0 0%, #bce4ae 100%);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 10px;
}

.ShopItem#item1 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_1.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item2 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_2.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item3 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_3.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}


.ShopItem#item4 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_4.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item5 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_5.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item6 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_6.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item7 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_7.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item8 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_8.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item9 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_9.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item10 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_10.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem#item11 .ShopItem__summary::before {
content: "";
position: absolute;
left: 10px;
top: 45px;
transform: translateY(-50%); /* 垂直中央揃え */
width: 85px;
height: 85px; /* 必要に応じて調整 */
background-image: url(../img/Shop_Thumb_11.png);
background-repeat: no-repeat;
background-size: contain;
z-index: 1; /* グラデーションより上にくるように */
}

.ShopItem__content .item-info {
padding-left: 30px;
padding-right: 30px;
}

.ShopItem__content .item-info .name {
font-size: 16px;
font-weight: 600;
}

.ShopItem__content .item-info .price {
font-size: 14px;
}

.ShopItem__content .item-info .desc {
font-size: 14px;
text-align: left;
}

.ShopItem__content .ShopInfo {
margin-top: 25px;
}

.ShopItem__content .ShopInfo a {
display: inline-block;
width: 320px;
height: 30px;
border-radius: 50px;
border: 1px solid #000;
line-height: 32px;
font-size: 18px;
color: #000;
text-decoration: none;
font-weight: 600;
}


/* Swiper全体のコンテナ設定 */
.SlideunitWrap {
  padding: 20px 0;
  width: 100%;
  overflow: hidden; /* 全体は隠す */
  position: relative;
}

/* スライドを囲むラッパーの設定 */
.SlideunitWrap .swiper-wrapper {
  /* 左側に余白を作ることで、1枚目を左端に寄せ、右側だけ次が見えるようにする */
align-items: stretch;
box-sizing: border-box;
}

/* スライドの幅調整 */
.SlideunitWrap .swiper-slide {
width: 65%;
height: auto;
text-align: center;
}

/* 矢印のカスタマイズ（画像にする場合） */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px; /* 標準の矢印サイズ */
  color: #000;    /* 矢印の色 */
}

/* 矢印を画像の中心（アイテム画像の上など）に配置したい場合の調整 */
.swiper-button-prev { left: 5px; }
.swiper-button-next { right: 5px; }

/* 矢印共通設定 */
.swiper-button-prev,
.swiper-button-next {
  width: 30px;  /* 画像の横幅に合わせて調整 */
  height: 30px; /* 画像の縦幅に合わせて調整 */
  margin-top: -20px; /* 上下中央寄せの微調整（高さの半分） */
  z-index: 10;
transition: opacity 0.3s, visibility 0.3s;
  opacity: 1;
  pointer-events: auto;     /* 通常時はクリック可能 */
}

/* デフォルトの矢印アイコンを消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* 左矢印の画像設定 */
.swiper-button-prev {
  background: url('../img/Slide_Allow_Prev.png') no-repeat center center / contain;
  left: 10px;
}

/* 右矢印の画像設定 */
.swiper-button-next {
  background: url('../img/Slide_Allow_Next.png') no-repeat center center / contain;
  right: 10px;
}

/* 矢印が画像に被る場合、不透明度などで調整 */
.swiper-button-disabled {
opacity: 0 !important;       /* 完全に消す */
  pointer-events: none;        /* クリックできないようにする */
  visibility: hidden; /* 念のため visibility も追加 */
}


/* ===== Swiper矢印JS制御用 ===== */
.SlideunitWrap .swiper-button-prev,
.SlideunitWrap .swiper-button-next {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.SlideunitWrap .swiper-button-prev.is-show,
.SlideunitWrap .swiper-button-next.is-show {
  opacity: 1;
  pointer-events: auto;
}


.swiper-button-next, .swiper-button-prev {
top: 35% !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
left: 60px !important;
}


.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 60px !important;
    left: auto;
}



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


}

@media print, screen and (min-width: 768px) {


}

@media print, screen and (min-width: 1250px) {


}



/* ノベルティ =============================================================== */

.NoveltyUnit .ItemUnitWrap {
position: relative;
}

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


}

@media print, screen and (min-width: 768px) {


}







/* MENU（SP） =============================================================== */




.PageTop {
/* 既存のコードに加えて */
  display: none; /* 最初は存在自体を消しておく */
  position: fixed;
  bottom: 10px; /* 下からの距離 */
  right: 10px;  /* 右からの距離 */
  z-index: 100; /* 最前面に表示 */
  
  /* ボタンのサイズ（画像の大きさに合わせて調整してください） */
  width: 80px;  
  height: 80px;

  /* 中央寄せの基準 */
  display: flex;
  justify-content: center;
  align-items: center;
  
  cursor: pointer;
  transition: opacity 0.5s, visibility 0.5s;
  
  /* 初期状態：隠す */
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* 隠れているときはクリック無効 */
}

/* 表示用のクラス（JSで付与） */
.PageTop.is-show {
display: flex; /* 表示が必要な時だけflexにする */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --- 画像の重ね合わせ設定 --- */
.PageTop img {
  position: absolute; /* 重ね合わせるために絶対配置 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 完全な中央配置 */
}

/* --- 1. 手前のアイコン (Btn_PageTop1) --- */
.PageTop__icon {
  z-index: 2; /* 背景より手前に表示 */
  color: #fff;
}

/* --- 2. 背景のギザギザ (Btn_PageTop2) --- */
.PageTop__bg {
  z-index: 1; /* アイコンより奥に表示 */
  width: 100%; /* 親要素いっぱいのサイズ */
  height: auto;
  
  /* 回転アニメーションの設定 */
  /* translate(-50%, -50%) を維持したまま回転させるため、ここだけ記述が特殊になります */
  animation: rotateBg 10s linear infinite; 
}

/* --- 回転アニメーション定義 --- */
@keyframes rotateBg {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}




/* SHOP INDEX =============================================================== */

/* --- ベースの動き --- */
.ShopListUnitWrap {
  position: relative;
}

.PopLead {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.1s;
  position: absolute;
  z-index: 10;
}

.PopLead.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* --- スマホ・タブレット共通 --- */
@media only screen and (max-width: 1249px) {
  .ShopListWrap {
    margin-top: 30px;
  }
}


  .RightBoxWrap {
    text-align: center;
  }

  /* SHOP INDEX タイトル */
  .RightBoxWrap .MdsUnit {
    width: 220px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 3px solid #333;
    margin-bottom: 0;
  }

  .RightBoxWrap .RightBox {
    width: 220px;
  }

  .RightBoxWrap .ShopList {
    display: block;
    width: 100%;
    padding-left: 0;
    margin: 0;
    list-style: none;
  }

  /* 各行（li）：高さを統一するための設定 */
  .RightBoxWrap .ShopList li {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s;
    /* ★全ての行の高さをここで固定（中身に合わせて数値を微調整してください） */
    min-height: 45px; 
  }

  .RightBoxWrap .ShopList li:hover {
    background-color: #fff;
  }

  /* フロア数：垂直中央揃え */
  .RightBoxWrap .ShopList li span {
    display: flex;
    align-items: center;      /* ★垂直方向の中央 */
    justify-content: flex-end; /* 右寄せ */
    width: 55px;
    padding-right: 15px;
    font-family: "Mohave", sans-serif;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* 店名リンク：垂直中央揃え */
  .RightBoxWrap .ShopList li a {
    display: flex;
    flex-direction: column;   /* 店名と補足を縦に並べる */
    justify-content: center;  /* ★垂直方向の中央 */
    flex: 1;
    padding: 5px 0;           /* 全体の高さに影響しないようpaddingを縮小 */
    text-align: left;
    text-decoration: none;
    color: #333;
    font-family: "Young Serif", serif;
    font-weight: bold;
    line-height: 1.1; /* ★1.2から1.1に（店名と( )の隙間がより狭くなります） */
    padding: 2px 0;   /* ★上下の余白をさらに削る */
  }

	.PageInterview .RightBoxWrap .ShopList li a {
    padding: 5px 0 5px 20px; 	
	}

  /* 補足テキスト：行間を極限まで詰める */
  .RightBoxWrap .ShopList li a .kyoki {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
    display: block;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.1;
    margin-top: 1px;
  }

  .RightBoxWrap .ShopList li:hover a {
    opacity: 0.8;
  }



/* ポップアップ =============================================================== */

.SectionUnit {
text-align: center;
}

.PopupText {
font-size: 16px;
line-height: 1.6;

font-weight: 500;
}

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

.PopupText {font-size: 15px; }

}

#Popup .TitleUnit {
width: 220px;
height: 50px;
line-height: 50px;
margin: 0 auto 20px auto;
background-image: url(../img/Mds_Popup.png);
background-repeat: no-repeat;
background-size: 100% auto;
}

.PopupUnit {
width: 100%;
padding: 50px 0;

}

.PopupUnitWrap {
background: #ffffdc;
}

.PopupUnitInIn {
width: 320px;
margin: 25px auto 0 auto;
padding: 20px 0;
background: #fff;
border-top: 2px solid #000;
border-bottom: 2px solid #000;
}

.PopupUnitInMds {
font-size: 18px;
font-weight: 600;
line-height: 1;
}

.PopupUnit .Container {
margin-top: 20px;
}

.PopupUnitInFloor {
display: inline-block;
margin-top: 12px;
padding: 3px 3px 1px 3px;
font-size: 15px;
line-height: 1;
border: 1px solid #000;
font-weight: 600;
letter-spacing: 0.08em;
}

.PopupText { margin-top: 30px; }
.PopupText h3 { font-size: 18px; font-weight: bold; margin-bottom: 15px; line-height: 1.5; }
.PopupText p { font-size: 14px; line-height: 1.6; padding: 0 20px; }

.PopupUnitInDay {
margin-top: 12px;
font-weight: 600;
font-size: 22px;
letter-spacing: 0.08em;
line-height: 1;
}




/* エントランス =============================================================== */

.SpecialUnitWrap {
  background-image: url("../img/bg_special.jpg");
  background-repeat: repeat;
  background-size: contain;
}

.SpecialUnit {
  width: 100%;
  padding: 50px 0;
}

#Special .TitleUnit {
width: 300px;
height: 50px;
line-height: 50px;
margin: 0 auto 20px auto;
background-image: url(../img/Mds_ENtrance.png);
background-repeat: no-repeat;
background-size: 100% auto;
}


/* 上部エリア */
.SpecUnit__Top {
margin-bottom: 30px;
  line-height: 0;
  font-size: 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  }

.SpecUnit__Top img {
  width: 100%;
  height: auto;
  display: block; }

/* 中段エリア */
.SpecUnit__Middle {
  background-color: #c8c8c8;
  position: relative;
  z-index: 1;
  padding: 20px 0; 
  text-align: center;}

.SpecUnit__Inner {
  color: #ff0000;
  font-weight: bold;
  line-height: 1.6;
  font-size: 15px;}

.SpecUnit__Inner p {
  margin: 0;}

/* 下部エリア */
.SpecUnit__Bottom {
  width: 100%;
  line-height: 0;
  font-size: 0;}

.SpecUnit__Bottom img {
  width: 100%;
  height: auto;
  display: block;}

.SpecialText { margin-top: 30px; padding: 0 20px;}
.SpecialText h3 { font-size: 18px; font-weight: bold; margin-bottom: 15px; line-height: 1.5; }
.SpecialText p { line-height: 1.6; font-weight: 500; font-size: 16px; }

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

.SpecialText p {font-size: 15px; }

}



/* ノベルティ =============================================================== */

.NoveltyUnitWrap {
	background: linear-gradient(to bottom, #e1d4d0 0%, #bbe2ad 100%);
	background-repeat: no-repeat;
	background-size: 100% 83%;
	background-color: #fff;
}

.NoveltyUnit {
	width: 100%;
	padding: 80px 0 0 0;
}

#Novelty .TitleUnit {
width: 300px;
height: 50px;
line-height: 50px;
margin: 0 auto 20px auto;
background-image: url(../img/Mds_ENtrance.png);
background-repeat: no-repeat;
background-size: 100% auto;
}


.NoveltyDisplay {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 30px auto;}

.HandwritingBadge {
  position: absolute;
  top: -20px;
  left: 0px;
  z-index: 10;}

.NoveltyUnit .Point1 {
width: 88px;
margin-top: 20px;
}

/* アニメーションの定義 */
@keyframes bounce-y {
  0%, 100% {
    transform: translateY(0); /* 開始と終了の地点0*/
    animation-timing-function: ease-out; /* 上に上がるときは滑らかに */
  }
  50% {
    transform: translateY(-15px); /* 跳ねる高さ（数値を変えると高さが変わります） */
    animation-timing-function: ease-in; /* 下がるときは加速 */
  }
}

/* 画像を包んでいるクラスに適用 */
.NoveltyUnit .Point1 {
  display: inline-block; /* transformを有効にするため */
  animation: bounce-y 1.5s infinite; /* 2秒周期で無限に繰り返す */
}

.NoveltyText { margin-bottom: 30px; padding: 0 20px; }
.NoveltyText h3 { font-size: 18px; font-weight: bold; margin-bottom: 15px; line-height: 1.5; }
.NoveltyText p { line-height: 1.6; font-weight: 500; font-size: 16px; }

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

.NoveltyText p { font-size: 15px; }

}


.NoveltyFooter {
  position: relative;
  margin-top: 20px;
  padding-bottom: 40px; }

.FooterChara {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;}


/* インタビュー =============================================================== */

.Interview_NavList {
display: flex;
margin-left: 0;
padding-left: 0;
width: 100%;
}

.Interview_NavList li {
width: calc(100% / 4);
}

.Interview_NavList li a {
display: block;
width: 100%;
line-height: 1;
}

.Interview_NavList li img {
width: 100%;
}

.InterviewLead {
padding: 30px 40px;
text-align: left;
}

.InterviewLead .Lead1 {
font-size: 12px;
}

.InterviewLead .Lead2 {
font-size: 17px;
font-weight: 700;
}

.InterviewLead .LeadName {
font-size: 30px;
font-weight: 500;
}

.InterviewLead .LeadName.NameLong {
font-size: 28px;
letter-spacing: -0.1em;
font-weight: 500;
}

.InterviewLead .LeadName span {
font-size: 20px;
}

.InterviewLeadUnit dt,
.InterviewLeadUnit dd {
position: relative;
margin-left: 0;
padding-left: 0;
}

.InterviewLeadUnit dt:before {
content: 'Q';
display: inline-block;
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
font-family: "Young Serif", serif;
font-weight: 500;
color: #000;
}

.InterviewLeadUnit dl {
margin-bottom: 25px;
}

.InterviewLeadUnit dt {
padding-left: 20px;
font-size: 14px;
font-weight: 500;
color: #fff;
line-height: 1.6;
}

.InterviewLeadUnit dd {
padding-left: 20px;
font-size: 14px;

line-height: 1.6;
}

.marker-text {
display: inline;
line-height: 1.4;
padding: 0 .15em;
background: linear-gradient(#000 0 0) no-repeat;
background-size: 100% 1.2em;
background-position: 0 75%;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}

.InterviewLeadUnit dd:before {
content: 'A';
display: inline-block;
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
font-family: "Young Serif", serif;
font-weight: 500;
color: #000;
}

.PageInterview .TitleWrap .Title {
width: 65%;
margin: 0 auto 15px auto;
}

.PageInterview .TitleWrap .Lead1 {
padding: 0 40px;
font-size: 22px;
line-height: 1.4;
text-align: center;
font-weight: 500;
}

.PageInterview .TitleWrap .Ph {
margin: 30px 0 0 0;
line-height: 1;
}

.PageInterview .Interview_NavList {
margin: 0;
}

.PageInterview #Interview1 .InterviewLead {
background-image: url(../img/Interview_Mitsuki.png);
background-position: 92% 20px;
background-repeat: no-repeat;
}

.PageInterview #Interview2 .InterviewLead {
background-image: url(../img/Interview_Shimizu.png);
background-position: 92% 20px;
background-repeat: no-repeat;
}

.PageInterview #Interview3 .InterviewLead {
background-image: url(../img/Interview_Kemio.png);
background-position: 92% 40px;
background-repeat: no-repeat;
}

.PageInterview #Interview4 .InterviewLead {
background-image: url(../img/Interview_Yuriyan.png);
background-position: 92% 40px;
background-repeat: no-repeat;
}

.InterviewSectionUnit {
background-image: linear-gradient(to right, #f3cce0 0%, #bce4ae 100%);
background-repeat: no-repeat;
background-position: left top;
background-size: 100% 3px;
}

#Interview3 .InterviewPh,
#Interview4 .InterviewPh {
width: 210px;
}

#Interview1 .InterviewPh,
#Interview2 .InterviewPh {
padding-top: 60px;
}

#Interview3 .InterviewLead,
#Interview4 .InterviewLead {
padding-top: 60px;
}

.InterviewUnitWrap {
position: relative; /* 子要素の基準として設定（必須ではないですが推奨） */
width: 100%;
}

.InterviewUniNavWrap {
position: fixed;
bottom: 0;    /* 画面下からの距離 */
left: 50%;
transform: translateX(-50%); /* 中央寄せ */

z-index: 100;
opacity: 1;
  pointer-events: auto;

  transition: opacity 0.3s ease;
}

/* 表示・非表示を切り替えるためのクラス */
.is-hidden {
  opacity: 0;
  pointer-events: none;
    pointer-events: none; /* クリックもできないようにする */
}

.InterviewUniNav {
display: flex;
align-items: center;
height: 60px; /* アーチの分、高さを少し広げると余裕が出ます */
position: relative;
/* 背景などの設定はそのまま
background-image: linear-gradient(to right, #f3cce0 0%, #bce4ae 100%);
background-size: 100% 100px; 
background-repeat: no-repeat; */
padding-top: 40px;
}

.InterviewUniNavList {
  display: flex;
  justify-content: center;
  width: calc(100% - 80px);
  margin: 10px 0 0 0;
  padding: 0 50px 0 30px;
  list-style: none;
}

/* 親要素：白い円の画像サイズに依存させる */
.NoveltyPhoto {
    position: relative;
    display: inline-block; /* または block で margin: 0 auto; */
    line-height: 0;
}

/* 土台の白い円 */
.BaseCircle {
    width: 100%;
    height: auto;
    display: block;
}

/* カルーセルコンテナ：白い円の真上に重なる */
.NoveltyCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 個々のアイテム：上下左右中央に配置 */
.CarouselItem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* 円より一回り小さく配置（お好みで調整） */
    opacity: 0;
    animation: fadeCarousel 12s infinite; /* 3枚の場合 */
}

/* アニメーションのタイミング調整（3枚の場合） */
.CarouselItem:nth-child(1) { animation-delay: 0s; }
.CarouselItem:nth-child(2) { animation-delay: 4s; }
.CarouselItem:nth-child(3) { animation-delay: 8s; }

/* フェード切り替えのアニメーション */
@keyframes fadeCarousel {
    0% { opacity: 0; }
    5% { opacity: 1; }   /* ふわっと出現 */
    30% { opacity: 1; }  /* 表示維持 */
    35% { opacity: 0; }  /* ふわっと消える */
    100% { opacity: 0; }
}
.sp-only {
  display: none; /* 通常はSP用を隠す */
}

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

	.PageInterview .Main_SP {
	display: block;	
	}

	.PageInterview .Main_SP2,
	.PageInterview .Main_PC {
	display: none;
	}

}


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

	.InterviewUniNavList {
	  width: calc(100% - 60px);
	  margin: 10px 0 0 0;
	  padding: 0 40px 0 20px;
	}

	.PageInterview .TitleWrap .Lead1 {
	font-size: 18px;
	}
	
	.PageInterview .pc-only {
	display: none;
	}
	
	.sp-only {
	  display: block; /* 通常はSP用を隠す */
	}
	
	.PageInterview .TitleWrap .Title {
	    margin: 0 auto 10px auto;
	}

	.PageInterview .TitleWrap .Ph {
	margin: 15px 0 0 0;
	}

}


@media print, screen and (min-width: 768px) {

	.PageInterview .KeyVisualUnit {
	padding-top: 50px;
	}

	.PageInterview .Main_PC {
	display: block;	
	}

	.PageInterview .Main_SP2,
	.PageInterview .Main_SP {
	display: none;
	}

}



.InterviewUniNavList li {
  width: calc(100% / 4);
  position: relative; /* 子要素の基準点にする */
}

.InterviewUniNavList li a {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;    /* 中央揃え */

  text-decoration: none;
  position: relative;
  height: 100px; /* エリアの高さ確保 */
}

.InterviewUniNavList li a:hover .Name {
color: #000;
}

.InterviewUniNavList li a:hover .Icon_Ph img  {
  border: 2px solid #000; /* 画像の周りの白いフチ */
}

.PageInterviewTop {
position: absolute;
right: 10px;
top: 8px;
width: 14px;
}

/* --- 画像の設定 --- */
.InterviewUniNavList .Icon_Ph {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 2px;
  width: 60px;  /* 画像サイズ指定 */
  height: 60px;
}

.InterviewUniNavList .Icon_Ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* 完全な円形 */
  border: 2px solid #fff; /* 画像の周りの白いフチ */
  box-sizing: border-box;
}

/* --- 名前の設定 --- */
.InterviewUniNavList .Name {
  position: absolute;
  top: -20px; /* 画像より上に配置（調整してください） */
  left: 50%;
  transform: translateX(-50%); /* 左右中央配置 */
  width: 100px; /* 文字が折り返さないよう広めに */
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #fff; /* 文字色 */
  margin: 0;
  z-index: 3;

  pointer-events: none; /* 文字の上でもクリックがリンクに反応するように */
}

#Interview3 .Lead1,
#Interview4 .Lead1 {
margin-top: 20px;
}



/* 「さん」の文字サイズ調整（JS適用後も効くように調整が必要ですが、基本設定として） */
.Name span {
  font-size: 0.8em;
}


.FootBannarArea {
margin-top: 30px;
margin-bottom: 30px;
}

.FootBannar1 {
padding: 0 30px;
}

.FootBannar2 {
margin-top: 15px;
}

.Point1, .FooterChara {
  will-change: transform;
}

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

.InterviewUniNavWrap,
.InterviewUniNav {
width: 100%;
}


}


@media print, screen and (min-width: 768px) {

.InterviewUniNavWrap,
.InterviewUniNav {
width: 400px;
}

}




/* フッター =============================================================== */

.PageFooter {
	color: #fff;
background: #fff;
}

.PageFooter .laforet_Copyright {
color: #000;
text-align: center;
margin-bottom: 15px;
}

.PageFooter__SocialLinks {
	display: flex;
	gap: 28px;
	justify-content: center;
	padding: 0;
	margin: 0 0 25px 0;
	list-style: none;}

.PageFooter__SocialLinks a {
	text-decoration: none;}

.Icon {
	display: inline-block;
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background: #000;
	background-repeat: no-repeat;
	background-position: center;}

.Icon.-instagram {
    background-image: url('../img/Icon_Instagram.svg');
    background-size: 50%;}

.Icon.-x {
    background-image: url('../img/Icon_X.svg');
    background-size: 45%;}

.Icon.-facebook {
    background-image: url('../img/Icon_Facebook.svg');
    background-size: 30%;}

.Icon.-line {
    background-image: url('../img/Icon_Line.svg');
    background-size: 60%;}

.laforet__Logo img {
	margin: 0 auto 20px auto;
	display: block;
	width: 120px;}

.PageFooter__Logo {
	width: 100%;
	padding: 30px 0;
	background-color: #000;}

.PageFooter__Logo img {
	margin: 0 auto;
	display: block;
	width: 80px;}

.PageFooter__Copyright {
	display: block;
	margin-top: 15px;
	font-size: 11px;
	text-align: center;}