@charset "utf-8";
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*専用cssファイルの読み込み
---------------------------------------------------------------------------*/
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/ :root {
  --primary-color: #fcdb9f; /*土台カラー*/
  --primary-inverse-color: #6a3d14; /*上のprimary-colorの対となる色*/
  --secondary-color: #ed6d30; /*サブまたはアクセントカラー*/
  --secondary-inverse-color: #fff; /*上のsecondary-colorの対となる色*/
  --accent-color: #fbaf4c; /*アクセントカラー*/
  --accent-inverse-color: #fff; /*アクセントカラーの対となる色*/
  --accent-background-color: #fcdb9f; /*アクセントカラーの背景色*/
  --global-space: 20px; /*主に余白の一括管理用*/
}
/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(-30deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
/* 初期状態でテキストを非表示にする */
.fade-in-text {
  visibility: hidden;
}
/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。小さいとタイピングのようにカクカク出ます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.2s linear both;
}
/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-size: 25px; /*基準となるフォントサイズ。*/
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  html, body {
    font-size: 25px; /*基準となるフォントサイズ。*/
  }
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /*フォント種類*/
  -webkit-text-size-adjust: none;
  line-height: 2.5; /*行間*/
  background: var(--primary-color); /*背景色*/
  color: var(--primary-inverse-color); /*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
  overflow-x: hidden;
}
/*リセット他*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav ul {
  list-style: none;
}
nav, ul, li, ol {
  margin: 0;
  padding: 0;
}
section li {
  margin-left: 1rem;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
/*table全般の設定*/
table {
  border-collapse: collapse;
}
/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*videoタグ*/
video {
  max-width: 100%;
}
/*iframeタグ*/
iframe {
  width: 100%;
}
/*他*/
input {
  font-size: 1rem;
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: inherit;
  transition: 0.3s; /*hoverまでにかける時間。0.3秒。*/
}
/*マウスオン時*/
a:hover {
  text-decoration: none;
}
/*スライド　フェードインの設定
---------------------------------------------------------------------------*/
.slideimg {
  transform: translateY(50px);
  transition: 1.5s;
  opacity: 0;
}
.slideimg.anim {
  opacity: 1;
  transform: translateY(0px);
}
/*改行の調整
---------------------------------------------------------------------------*/
.sp_linebreak {
  display: block;
}
@media screen and (min-width:600px) {
  .sp_linebreak {
    display: inline;
  }
}
.sp_linebreak2 {
  display: block;

}

div.logo_bg{
  z-index:-1;
  width: 700px;
  margin: 0;
  position: fixed;
  left: -5vw;
  bottom: 0vh;
}
/*画面幅1200px以下の追加指定*/
@media screen and (max-width:1200px) {
div.logo_bg{display: none;}
} 
.tabeho_fix{
  z-index:-1;	
  position: fixed;
  width: 180px;
  left: 1.5vw;
  top: 1.5vh;
}
/*画面幅910px以下の追加指定*/
@media screen and (max-width:910px) {
.tabeho_fix{display: none;}
} 

.cm_fix{
  z-index:1;	
  position: fixed;
  width: 300px;
  right: 3.5vw;
  bottom: 0vh;
}
.cm_fix img{
	transition : all 0.5s ease 0s;
}
.cm_fix img:hover{
	opacity: 0.8;
	cursor: pointer;
}
/*画面幅910px以下の追加指定*/
@media screen and (max-width:910px) {
.cm_fix{display: none;}
} 
/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
header::before {
  background: url("../images/canvas_bg.jpg") no-repeat center top;
  background-size: 100% 100%;
}
/*このブロック内のcontents*/
header .contents {
  color: #fff; /*文字色*/
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  background-image: url(../images/contents_bg_base.jpg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 10px -10px rgba(239,153,56,0.5);
}
header .contents a {
  color: inherit;
}
/*ロゴ、謳い文句、ロゴ上の装飾画像を囲むボックス*/
header #logo-container {
  flex: min-content;
  padding: 0;
  margin: 0;
  position: relative;
  text-align: center;
  background-image: url(../images/contents_bg_01.jpg);
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
header #logo-container .heart_smoke{
  position: absolute;
  right:10%;
  top:25%;
  animation: vertical 2.5s ease-in-out infinite alternate;
}
header #logo-container .logo-inner{
  background-position: center 0;
  background-size: auto 82%;
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
  padding: 0;
  border-top: solid 1px #fdce7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: background-image 1.5s ease-in-out;
}
header #logo-container .logo-inner.bg-1{
  background-image: url(../images/fv_negi_img2.png);
} 
header #logo-container .logo-inner.bg-2{
  background-image: url(../images/fv_negi_img2-2.png);
}
header #logo-container .logo-inner.bg-3{
  background-image: url(../images/fv_negi_img2-3.png);
}
@keyframes vertical {
    0% { transform:translateY(-10px); }
  100% { transform:translateY(  0px); }
}
header #logo-container .smoKe{
  background-image: url(../images/fv_smoke_img.png);
  background-position: center 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.top_nav{
  margin-top: 1rem;
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: flex-end;
  width: 100%;
}
.top_nav li{
  width: 48%;
}
/*ロゴ画像*/
header .logo img {
  display: block;
  margin: 0 auto;
  width: auto; /*ロゴ画像の幅。お好みで。*/
}

@media screen and (max-width:380px) {
header .logo img {
  width: 80%;
}
}


/*
---------------------------------------------------------------------------*/
.scroll-container {
  position: absolute;
  width: 100px;
  left: calc(50% - 50px);
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*ヘッダーメニュー（大きな画面で見た場合に左側に固定表示されるメニュー）
---------------------------------------------------------------------------*/

/*画面幅1395px以上の追加指定ここまで*/
/*背景画像共通（大きな画面で見た場合に両サイドに見える画像）
---------------------------------------------------------------------------*/
.section::before {
  opacity: 0;
  transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
  content: '';
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section.active::before {
  opacity: 1;
}
.section.inactive::before {
  opacity: 0;
}
/*contents
---------------------------------------------------------------------------*/
.contents {
  color: var(--primary-inverse-color); /*文字色。冒頭のprimary-inverse-colorを読み込む。*/
  padding: var(--global-space); /*ボックス内の余白。冒頭のglobal-spaceを読み込む。*/
  position: relative;
  overflow-x: hidden;
}
/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {
  .contents, #gallery .gallery-box {
    max-width: 560px; /*大きな画面になった場合のコンテンツ幅*/
    margin: 0 auto; /*画面の左右中央に配置*/
    overflow-x: visible;
  }
} /*追加指定ここまで*/
/*h2見出し共通*/
.contents h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.9rem; /*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
  padding: 40px 0px 23px; /*上下、左右への余白*/
  text-align: center; /*テキストをセンタリング*/
  font-weight: 500;
}

/*マーカーを引く*/
.marker {
    font-weight:800;
    background: -webkit-linear-gradient(left, rgb(253,230,77) 50%, transparent 50%);
    background: -moz-linear-gradient(left, rgb(253,230,77) 50%, transparent 50%);
    background: linear-gradient(left, rgb(253,230,77) 50%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 200% .8em; 
    background-position: 100% .5em;
    transition: 2s;
}
.marker.is-active{
    background-position: 0% .5em;
}

/*イントロダクション
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#introduction::before {
  background: url('../images/canvas_bg.jpg') no-repeat center top; /*背景画像の読み込み*/
  background-size: 100% 100%;
}
/*このブロック内のcontents*/
#introduction .contents {
  background-image: url("../images/contents_bg_02.jpg");
  background-position: 0 0;
  height: 100svh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: var(--primary-inverse-color); /*文字色。冒頭のaccent-inverse-colorを読み込む。*/
  box-shadow: 0px 0px 10px -10px rgba(239,153,56,0.5);
}
/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
#introduction .contents {
   height: auto;
   background-size: 100% auto;
   background-color: #f5e8be;
}
} 
#introduction .contents h2 img {
  width: auto;
  height: 300px;
  margin: 3.5rem  0 2rem 0;
}
/*画面幅400px以下の追加指定*/
@media screen and (max-width:400px) {
#introduction .contents h2 img {
  height: 280px;
  margin: 2.5rem  0 1.5rem 0;
}
} 
#introduction .introduction_txt {
padding: 0 1.5rem;
}
/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
#introduction .introduction_txt {
padding: 0 .5rem;
}
} 
/*画面幅400px以下の追加指定*/
@media screen and (max-width:400px) {
#introduction .introduction_txt {
padding: 0 .3rem;
}
} 
#introduction .introduction_txt p {
  margin: 0;
  padding: 0;
  line-height: 2rem;
}
/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
#introduction .introduction_txt p {
font-size: 1rem;
line-height: 2rem;
}
} 
/*画面幅400px以下の追加指定*/
@media screen and (max-width:400px) {
#introduction .introduction_txt p {
font-size: .9rem;
line-height: 1.6rem;
}
} 
#introduction .introduction_txt img {
  margin-top: 1rem;
}

/*フェアメニューで共通で使用するもの
---------------------------------------------------------------------------*/
.menu_outline {
  margin: 0;
  padding: 0;
}
.menu_outline h2.lineup {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  background-image: url(../images/h2_lineup_bg.png);
  background-color: #fabc63;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  text-align: center;
}

.menu_outline h2.side_menu{
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  background-image: url(../images/menu02_h2_bg.png);
  background-color: #fabc63;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size:auto 350px;
  text-align: center;
}

.menu_outline h2.lineup img{
  margin: 0 auto;
  width: 50%;
  padding: 5rem 0 0;
}
.menu_outline h2.side_menu img{
  margin: 0 auto;
  width: 50%;
  padding: 3rem 0 1rem;
}

@media screen and (min-width: 600px){
  .menu_outline h2.side_menu,
  .menu_outline h2.lineup {
  max-width:560px;
  overflow-x: visible;
  margin: 0 auto;
}
}
.menu_outline .contents {
  background-image: url("../images/contents_bg_base.jpg");
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: repeat-y;
  color: var(--accent-inverse-color);
  box-shadow: 0px 0px 10px -10px rgba(239,153,56,0.5);
}
.menu_outline .contents .contents_inner {
  margin: 1rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.menu_outline .contents .contents_inner h3 {
  text-align: center;
  color: var(--secondary-color);
  order:2;
  width: 100%;
  margin-top: -3rem;
  margin-bottom: 0;
}
.menu_outline .contents .contents_inner h3.negi_cheese{
  order:1;
  text-align: left;
  margin-top: 3rem;
}
.menu_outline .contents .contents_inner picture{
   order:1;
   width: 100%;
}
.menu_outline .contents .contents_inner.negi_cheese picture{
  order:2;
  margin-top: -2.5em;
}
.menu_outline .contents .contents_inner .contents_txt {
  order:3;
  width: 100%;
  padding: 1.5rem;
  line-height: 1.7rem;
  color: var(--primary-inverse-color);
}
.menu_outline .contents .contents_inner .contents_txt.negi_cheese {
 padding-bottom: 0rem;
}

.menu_outline .contents .contents_inner .moviebox{
   order:3;
   width: 100%;
   text-align: center;
   padding: 0;
   margin: 0;
}
.menu_outline .contents .contents_inner .moviebox img{
  width: 85%;
}
/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
.menu_outline .contents .contents_inner .moviebox img{
width: 100%;
}
} 
.menu_outline .contents .contents_inner .moviebox a{
 transition : all 0.5s ease 0s;
}
.menu_outline .contents .contents_inner .moviebox a:hover{
  opacity: .7;
}

/*ラインナップ　メインメニュー（menu_01ブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#menu_01::before {
  background: url("../images/canvas_bg2.jpg") no-repeat center top; /*背景画像の読み込み*/
  background-size: 100% 100%;
}
#menu_01 .contents{
background-size: 100% auto;
background-repeat: repeat-y;
background-image: url("../images/menu01_bg.png"), linear-gradient(167deg, #fabc63, #fac369);
}

#menu_outline_top.menu_outline .contents .contents_inner .contents_txt {
  padding: 1rem 1rem 2rem;
}
/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
#menu_outline_top.menu_outline .contents .contents_inner .contents_txt {
padding:.4rem .4rem .8rem;
}
} 

/*サイドメニュー（menu_02ブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#menu_02::before {
  background: url("../images/canvas_bg3.jpg") no-repeat center top; /*背景画像の読み込み*/
  background-size: 100% 100%;
}
#menu_02 .contents{
background-size: 100% auto;
background-repeat: repeat-y;
background-image: url("../images/contents_bg_06.jpg");
padding-top: 2rem;
border-radius: 0 0 1.5rem 1.5rem;
}

#menu_outline_bottom.menu_outline .contents .contents_inner .contents_txt:not(.lastbox) {
  padding: 1rem 1rem 3rem;
}
#menu_outline_bottom.menu_outline .contents .contents_inner .contents_txt.lastbox {
  padding-bottom: 1rem;
}

/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
#menu_outline_bottom.menu_outline .contents .contents_inner .contents_txt {
line-height: 1.6rem;
 padding: .5rem .5rem 3rem;
}

} 
/*画面幅400px以下の追加指定*/
@media screen and (max-width:400px) {
#introduction .introduction_txt {
padding: 0 .3rem;
}
} 

/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {
  font-size: .5rem;
}
footer {
  font-size: 0.8rem; /*文字サイズ80%*/
  text-align: center; /*内容をセンタリング*/
}
/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
  display: none;
}
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menubar a {
  display: block;
  text-decoration: none;
}
/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
  display: block;
}
.small-screen #menubar.display-block {
  display: block;
}
/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
  display: none;
}
/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 90px 10vw 50px; /*ブロック内の余白。上、左右、下への順番。*/
  background: var(--secondary-color); /*背景色。css冒頭のsecondary-colorを読み込みます。*/
  color: var(--secondary-inverse-color); /*文字色。css冒頭のsecondary-inverse-colorを読み込みます。*/
  animation: opa1 1s both; /*opa1を実行する。1sは1秒の事。*/
}
/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
  border: 1px solid var(--secondary-inverse-color); /*枠線の幅、線種、varは色の事でcss冒頭のsecondary-inverse-colorを読み込みます。*/
  margin: 1rem 0; /*メニューの外側に空けるスペース。上下、左右への順番。*/
  border-radius: 5px; /*角を丸くする指定*/
  line-height: 1rem;
}
.small-screen #menubar a {
  color: inherit;
  padding: 1rem; /*メニュー内の余白。上下、左右へ。*/
}
/*マウスオン時*/
.small-screen #menubar a:hover {
  color: var(--secondary-color); /*文字色。css冒頭のsecondary-colorを読み込みます。*/
  background: var(--secondary-inverse-color); /*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
  animation: opa1 0s 0.2s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0px; /*右からの配置場所指定*/
  top: 0px; /*上からの配置場所指定*/
  padding: 16px 14px; /*上下、左右への余白*/
  width: 46px; /*幅（３本バーが出ている場合の幅になります）*/
  height: 46px; /*高さ*/
  display: flex; /*flexボックスを使う指定*/
  flex-direction: column; /*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
  justify-content: space-between; /*並びかたの種類の指定*/
  transform: scale(2); /*デフォルトで準備したサイズの２倍。お好みで。*/
  transform-origin: right top;
  mix-blend-mode: exclusion;
}
/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s; /*アニメーションにかける時間。0.3秒。*/
  border-top: 1px solid #11fa00; /*線の幅、線種、色*/
}
/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
/*  background:#11fa00; */
}
/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center; /*変形の起点。センターに。*/
  width: 20px; /*バーの幅*/
}
/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.8px, 5px); /*回転45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3.8px, -5px); /*回転-45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  display: none; /*２本目は使わないので非表示にする*/
}
/*Youtube埋め込み
---------------------------------------------------------------------------*/
.movie{
  width: 95%;
  height: 275px;
  margin: 0 auto;
  position: relative;
	order:3;
}
.movie-inner{
  display: block;    
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.movie-inner img{
	transition : all 0.5s ease 0s;
}
.movie-inner img:hover{
	cursor: pointer;
	opacity: .8;
}
.thumb{
  width: 100%;
  max-width: 100%;
}
.movie-player{
  position: relative;
  z-index: 10;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.l {
  text-align: left !important;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.look {
  display: inline-block;
  padding: 0px 10px;
  background: #000;
  border: 1px solid #fff;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}
.small {
  font-size: 0.75em;
}
.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}
.color-check, .color-check a {
  color: var(--accent-color);
}
.pc {
  display: none;
}
.dn {
  display: none !important;
}
.block {
  display: block !important;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
} /*画面幅900px以上の追加指定ここまで*/