/* -------------------------- */
/* base
/* -------------------------- */

html{
  scroll-behavior: smooth;
}

body{
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-weight: 100;
  font-size: 1.6rem;
  color: #fff;
  background-color: #1f1f1f; /* これは既にあるので確認 */
  /* background-attachment: fixed; ← これを削除またはコメントアウト */
  font-display: swap;
}

@supports (-webkit-overflow-scrolling: touch) {
  body {
    background: none;
	background-color: #1f1f1f; /* ←この行を追加 */
  }

body:before {
    background-repeat: no-repeat;
    background-position: right;
    background-size: 100%;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
    
    
img{
  width: 100%;
  vertical-align: bottom;
}
a{
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  letter-spacing: 5%;
  line-height: 23px;
  font-display: swap;
}
p{
	margin:0;
	padding:0;
}

ul, li {
    margin: 0;
    padding: 0;
	line-height: 1;
    list-style: none;
}
input{
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance:none;
}
textarea{
  border: 0;
  outline: none;
  resize: none;
}

nav ul {
    list-style: none;     /* リストの「・」を消す */
    margin: 0;
    padding: 0;
    display: flex;        /* 項目を横並びにする（縦並びなら削除） */
}

/* リンクのデザインをリセット */
nav a {
    text-decoration: none; /* 下線を消す */
    color: inherit;        /* 親要素の色を継承させる */
    display: block;        /* クリック範囲を広げるためにブロック化 */
    padding: 10px 15px;    /* 適切な余白を設定（調整してください） */
}

/* ボタンのように見せるためのhover設定（任意） */
nav a:hover {
    opacity: 0.7;
    transition: 0.3s;
}




/* -------------------------- */
/* //base
/* -------------------------- */

/* -------------------------- */
/* 背景動画
/* -------------------------- */

        /* 背景動画のコンテナ */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1; /* コンテンツの背後に配置 */
        }

        /* 動画要素 */
        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover; /* 画面全体をカバー */
        }

        /* オーバーレイ（動画の上に半透明の層を追加する場合） */
        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3); /* 黒の半透明 */
            z-index: -1;
        }

/* -------------------------- */
/* //背景動画
/* -------------------------- */

/* -------------------------- */
/* 共通設定
/* -------------------------- */

/*.back-black{
	background-color: #1f1f1f;
}*/

.section-block{
	max-width: 90%;
	margin: auto;
	padding: 10% 0 0 0;
}

.page-section-block{
	max-width: 90%;
}

.section-title{
	position: relative;
	font-family: "futura-pt-condensed", sans-serif;
	letter-spacing: 0.15em;
	font-weight: lighter;
	font-style: normal;
	margin: 10% 0 0 0;
	font-size: 5.8rem;
	font-display: swap;
}

.section-subtitle{
	position: relative;
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	margin: 10% 0 2% 0;
	font-size: 2.1rem;
    line-height: 1.5em;
	letter-spacing: 0.2em;
	font-display: swap;
}

.section-caption{
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	margin: 0 0 5% 0;
	font-size: 1.5rem;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	font-display: swap;
}

.section-subtitle-en{
	position: relative;
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	margin: 10% 0 2% 0;
	font-size: 2.5rem;
	letter-spacing: 0.07em;
	font-display: swap;
}

.section-caption-en{
	font-family: "futura-pt-condensed", sans-serif;
	font-weight: 400;
    font-style: normal;
	line-height: 2.3rem;
	margin: 0 0 5% 0;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	font-display: swap;
}

/*flex設定*/

.flex-rr{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-rp{
  display: flex;
  justify-content: space-between;
}

.flex-wr{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-rl{
  display: flex;
  justify-content: flex-start;
}

.flex-ru{
	display: flex;
    justify-content: flex-start;
}

/*flex設定*/

.questionbtn{
	text-align:left;
	margin: 10% 0 10% 0;
}

.questionbtn a::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 16px;
    background: url('../images/allow.png') center/contain no-repeat;
    margin-left: 8px;
    vertical-align: text-bottom;
}

.questionbtn a {
　display: inline-block; /* これが重要！ */
  margin: auto;
  text-align: center;
  font-family: "diazo-mvb-ex-cond", sans-serif;
  color: #fffdfa;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.questionbtn:hover {
    opacity: 0.2;
	transition: 0.3s;
}

/* -------------------------- */
/* //共通設定
/* -------------------------- */


/* -------------------------- */
/* header
/* -------------------------- */

header{
  width: 90%;
  padding: 4% 4% 4% 4%;
  position: fixed;
  top: 0;
  z-index: 99;
  mix-blend-mode: difference; /* 文字を背景に合わせて反転 */
}

.noscroll {
  height: 100%;
  overflow: hidden;
}

.header_under{
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;    
}

/* ===================================
   ハンバーガーメニュー - PC表示では非表示
=================================== */

.burger-btn {
    display: none; /* PC表示では非表示 */
    position: fixed;
    top: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
    background: transparent;
}

.burger-btn .bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn .bar_top {
    top: 12px;
}

.burger-btn .bar_middle {
    top: 23px;
}

.burger-btn .bar_bottom {
    top: 34px;
}

/* ボタンがアクティブな時（メニューが開いている時） */
.burger-btn.active .bar_top {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.burger-btn.active .bar_middle {
    opacity: 0;
}

.burger-btn.active .bar_bottom {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

/* メニューが開いている時のbody */
body.menu-open {
    overflow: hidden;
}

/*******************ナビゲーションの設定*******************/
/*==ナビゲーション全体の設定*/
nav{
	text-underline-offset: 10px;
	text-decoration-thickness: 1px;
	/*==ナビゲーション全体高さ中央設定*/
	display: flex;
	align-items: center;
	text-align: center;
	mix-blend-mode: difference; /* 文字を背景に合わせて反転 */
}

/*ナビゲーションを横並びに*/
nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
}

/*ナビゲーションを縦中央並びに*/
.center{
    /*==ナビゲーション全体高さ中央設定*/
	display: flex;
	align-items: center;
	text-align: center;
}


/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基店にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	text-align:justify;
	text-align-last:justify;
	font-size: 40px;
	font-weight: 300;
	display: block;
	text-decoration: none;
	mix-blend-mode: difference;
	color: #fff;
	padding: 20px 35px;
	transition: all .3s;
    letter-spacing: 0.3rem;	
}

nav ul li li a{
	padding: 10px 35px;
}

nav ul li::after{
	content: '';
    display: inline-block;
    width: 1px; /* 棒の太さ */
    height: 1.5em; /* テキストの高さに合わせる */
    background-color: #fff; /* 棒の色 */
    margin-left: 0px; /* テキストとの間隔 */
    vertical-align: middle /* 位置調整 */
}

nav ul li a:hover{
	opacity: 20%;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	opacity: 20%;
}

/*==３階層目*/

/*３階層目の位置*/
nav li.has-child ul ul{
	top: 0;
	left: 182px;
	background: #225967;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background: #225967;
}

.shop-img{
  max-width: 300px;
  margin: 18px 0;
  display: flex;
  justify-content: center;
  filter: invert(1); /* 黒を白に反転 */
}


.nav-item{
  font-size: 1.6rem;
  padding: 5px 0px;
  margin-right: 20px;
  letter-spacing: 0.08em;
}

.nav-item:last-of-type{
  margin-right: 0;
}

.nav-item:hover{
  transition: .5s;
  opacity: .3;
  text-decoration: underline;
}



/* -------------------------- */
/* //header
/* -------------------------- */

/*******************ナビゲーションの設定最後尾*******************/


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999999;
	background:#e2dbc5;
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-18%, -70%);
}


/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width:500px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #333;/*線の色*/
	}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
	  fill: #333;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}

/* -------------------------- */
/* ホバー時写真拡大
/* -------------------------- */

/* 1. 親要素 (枠) の設定 */
.img-container {
  /* 画像を中央に配置*/
  margin: auto;
  /* 枠のサイズを定義 */
  width: 60%;
  /* 枠からはみ出た部分を非表示にする (重要!) */
  overflow: hidden;
  /* 見やすいように影を付けるなど */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 2. 画像自体の設定 */
.img-container img {
  /* 親要素の幅に合わせて初期サイズを設定 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠に合わせて画像をトリミング */

  /* 変化を滑らかにするための設定 (アニメーション時間) */
  transition: transform 0.3s ease;
}

/* 3. マウスオーバー時の設定 (拡大処理) */
.img-container:hover img {
  /* 1.2倍に拡大する */
  transform: scale(1.2);
}

/* -------------------------- */
/* //ホバー時写真拡大
/* -------------------------- */


/* -------------------------- */
/* TOPスライド
/* -------------------------- */

/**************ショップスライドショー設定**************/
	
.slider{
	/*スライドショーの位置の起点とするためposition:relative;をつける*/
	position: relative;
	/*z-indexの値の小さくして背景に回す*/
	z-index: -1;
	width: 100%;
}

.slider-item{
	/*各スライダー全体の横幅を画面の横幅いっぱい 100% にする*/
	width: 100%;
	/*背景画像をリピートしない*/
	background-repeat: no-repeat;
    /*背景画像の位置を中央に*/
	background-position: center;
	/*背景画像が.slider-item全体を覆い表示*/
	/*background-size: cover;*/
	margin: 0px;
}

.top-video{
	opacity: 0;
}

/**************各ページスライドショー設定**************/
	
.top-slider{
	/*スライドショーの位置の起点とするためposition:relative;をつける*/
	position: relative;
	/*z-indexの値の小さくして背景に回す*/
	z-index: -1;
	/*スライダー全体の縦幅を画面の高さいっぱい 100vh にする*/
	width: 100%;
}

.top-slider-item{
	/*各スライダー全体の横幅を画面の横幅いっぱい 100% にする*/
	width: 100%;
	/*背景画像をリピートしない*/
	background-repeat: no-repeat;
    /*背景画像の位置を中央に*/
	background-position: center;
	/*背景画像が.slider-item全体を覆い表示*/
	/*background-size: cover;*/
	margin: 200px 10px 0 10px;
}

/*ドットナビゲーションの設定*/

.slick-dots{
	display: none;
}

.slick-dots li{
	display: none;
}

.slick-dots button{
	display: none;
}

.slick-dots .slick-active button{
	display: none;
}

/**************スライドショー設定終了**************/

/* -------------------------- */
/* //TOP スライド
/* -------------------------- */



/* -------------------------- */
/* ABOUT
/* -------------------------- */

.block-1{
	margin: 0 0 0 0;
}

.block-2{
	max-width: 100%;
	margin: auto;
}

/* Video */

        .video-container {
            width: 500px;
            height: 500px;
            position: relative;
            background-color: #000;
            overflow: hidden;
            cursor: pointer;
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 再生/一時停止アイコン */
        .play-pause-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .video-container:hover .play-pause-icon {
            opacity: 1;
        }

        .play-pause-icon::after {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #fff;
            margin-left: 5px;
        }

        .video-container.playing .play-pause-icon::after {
            border-width: 0 10px;
            border-color: transparent #fff;
            width: 8px;
            height: 30px;
            border-style: double;
            margin-left: 0;
        }

/* Video */

/* About-Video */

        .about-video-container {
            width: 900px;
            height: 500px;
            position: relative;
            background-color: #000;
            overflow: hidden;
            cursor: pointer;
        }

/* About-Video */

.about-task{
	margin: 10% 0 0 0;
}

.about-task-pic{
	margin: 0 1% 0 0;
}

.about-task-pic:last-of-type{
	margin: 0 0 0 0;
}

.about-caption{
	font-family: "futura-pt-condensed", sans-serif;
	font-weight: 400;
    font-style: normal;
	line-height: 2.3rem;
	margin: 5% 0 5% 0;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

/* -------------------------- */
/* //ABOUT
/* -------------------------- */

/* -------------------------- */
/* SAMPLE PAGE
/* -------------------------- */

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 縦横の間隔 */
}

.container .item {
    width: calc((100% - 20px) / 2);
}

.sample-list{
	width: calc(100% / 5); 
}

/* -------------------------- */
/* //SAMPLE PAGE
/* -------------------------- */


/* -------------------------- */
/* MIDDLE
/* -------------------------- */

.middle_back{
	height: 80vh;
	margin: 5% auto -5% auto;
}

.middle-video-container {
	 opacity: 0;
     width: 100%;
     height: 80vh;
     position: relative;
     background-color: #000;
     overflow: hidden;
     cursor: pointer;
}

/* -------------------------- */
/* //MIDDLE
/* -------------------------- */

/* -------------------------- */
/* COMPANY
/* -------------------------- */

#map-grayscale {
	height: 500px;
    width: 500px;
    filter: grayscale(100%);
}

/*COMPANY PAGE*/
/* 会社概要ページのスタイル */
.company-info {
  padding: 60px 20px;
  /*background-color: #f9f9f9;*/
}

.company-section {
  margin: 10% auto 0% auto;
}

.company-info .company-section {
  max-width: 900px;
  margin: 0 auto;
}

/* 会社情報テーブル */
.company-table {
  font-family: "kinuta-maruminfuji-stdn", serif;
  width: 100%;
  letter-spacing: 0.2em;
  line-height: 170%;
  border-collapse: collapse;
  /*background-color: #fff;*/
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-table tr {
  border-bottom: 1px solid #e0e0e0;
  height: 30px;
}

.company-table th {
  width: 30%;
  padding: 20px;
  /*background-color: #f5f5f5;*/
  font-weight: bold;
  text-align: left;
  color: #fff;
  vertical-align: top;
}

.company-table td {
  padding: 20px;
  color: #fff;
  line-height: 1.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 15px;
  }
  
  .company-table th {
    background-color: #f0f0f0;
    border-bottom: none;
    padding-bottom: 10px;
  }
  
  .company-table td {
    padding-top: 10px;
    border-bottom: 1px solid #e0e0e0;
  }
}

/* -------------------------- */
/* //COMPANY
/* -------------------------- */

/* -------------------------- */
/* Contact
/* -------------------------- */

/* Contact page */

#contactform {
	height: 1200px;
    width: 100%;
}

/* -------------------------- */
/* //Contact
/* -------------------------- */

/* -------------------------- */
/* Recruit
/* -------------------------- */


.recruit-title{
	display: flex;
    align-items: center;
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	margin: 10% 0 2% 0;
	font-size: 2.5rem;
	letter-spacing: 0.1em;
}

.recruit-title::before {
  content: "";
  width: 4px;
  height: 1.2em; /* テキストより少し高めに */
  background-color: #fff;
  margin-right: 10px;
  flex-shrink: 0; /* 縮まないように */
}

.recruit-subtitle{
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	line-height: 2.3rem;
	margin: 0 0 0.5% 0;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}
			  
.recruit-caption{
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	line-height: 2.3rem;
	margin: 0 0 3% 0;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

/* Recruit Page */

.circled-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid white;
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.number-txt{
	text-align: center;
	margin: auto;
    font-size: 0.8rem;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
}

/* -------------------------- */
/* //Recruit
/* -------------------------- */

/* -------------------------- */
/* Footer
/* -------------------------- */

.footer{
	max-width: 90%;
	text-align: center;
	align-items: end;
}

.footer-left{
	align-items: flex-end;
	text-align: left;
	width: 33%;
}

.footer-left .center:hover{
	transition: .5s;
    opacity: .2;
}

.footer-center{
	align-items: flex-end;
	text-align: center;
	width: 33%;
}

.footer-right{
  font-family: "yu-gothic-pr6n", sans-serif;
  align-items: flex-end;
  align-self: flex-end !important; /* !importantを追加 */
  text-align: right;
  width: 33%;
  display: flex; /* これを追加 */
  flex-direction: column; /* これを追加 */
  justify-content: flex-end; /* これを追加 */
}

.footer-menu{
	font-size: 1.0rem;
	margin: 0;
}

.footer-nav{
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
    font-style: normal;
	line-height: 2.3rem;
	font-display: swap;
}

.sns-icon{
	margin: 1% auto 0 auto;
}

.copyright{
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-size: 1.2rem;
  margin: 1% 0 0 0;
  text-align: center;
  letter-spacing: 0.3em;
  color: #fff;
　font-display: swap;
}


/* -------------------------- */
/* //Footer
/* -------------------------- */


/* -------------------------- */
/* CSS animation
/* -------------------------- */

.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
	from{
		opacity: 0;	
        transform: translateY(100px);
	}
	
	to {
		opacity: 1;
        transform: translateY(0px);
	}
}

/* -------------------------- */
/* //CSS animation
/* -------------------------- */

/* ===================================
   タブレット対応（461px〜1024px）
=================================== */

@media screen and (min-width: 501px) and (max-width: 1024px) {
    
    /* ハンバーガーボタンを表示 */
    .burger-btn {
        display: block;
    }
    
    /* header の調整 */
    header {
        width: 90%;
        padding: 3% 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* ナビゲーションメニュー */
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background-color: rgba(31, 31, 31, 0.98);
        transition: right 0.3s ease;
        z-index: 98;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .header-nav.active {
        right: 0;
    }
    
    /* グローバルナビゲーション */
    nav {
        width: 100%;
        mix-blend-mode: normal;
    }
    
    .globalNav {
        flex-direction: column;
        padding: 100px 20px 20px;
    }
    
    .globalNav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .globalNav li::after {
        display: none; /* 区切り線を非表示 */
    }
    
    .globalNav li a {
        display: block;
        width: 100%;
        padding: 22px 25px;
        text-align: left;
        font-size: 28px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 0.2em;
        mix-blend-mode: normal;
    }
    
    .globalNav li a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        opacity: 1;
        padding-left: 30px;
    }
    
    /* メニューが開いている時の背景オーバーレイ */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 97;
        animation: fadeIn 0.3s ease;
    }
	
	.shop-img {
    max-width: 300px;
    margin: 30px 0;
}
    
}

/* ----------------------------------------------------------------スマホ版 レスポンシブ 500px */

@media screen and (max-width:500px){
	
/* flex設定 */
	.flex-rr{
	display:flex;
    flex-flow: column;
	}
	
	.flex-sp{
	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
	}

	/* ← ここに以下を追加 */
	.block-1, .block-2 {
		width: 100%;
		margin: 0 0 0 0;  /* 右側のマージンを0に */
	}
	
	/* COMPANY セクションの修正 */
	#map-grayscale {
		margin: 5% auto;
		height: 300px;
		width: 100%;
		max-width: 400px;
		filter: grayscale(100%);
	}
	
/* 共通設定 */
.section-title{
	margin: 30% 0 0 0;
}
    
/* 画面固定関連＋非表示要素 */
	
	.last_illust{
	width: 100%;
	margin: auto auto -5% auto;
    z-index: 0;
    }
 
	
/* -------------------------- */
/* sp-header
/* -------------------------- */

header{
  width: 100%;
  padding: 5% 5%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

.header_under{
  width: 0%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;    
}
	
    
/* ハンバーガーボタン */
.burger-btn{
  display: block;
  position: fixed;
  top: 5%;
  right: 5%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 100;
  background: transparent;
}

.bar{
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.bar_top{
  top: 12px;
}

.bar_middle{
  top: 23px;
}

.bar_bottom{
  top: 34px;
}
    
.burger-btn.active .bar_top{
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
    
.burger-btn.active .bar_middle{
  opacity: 0;
}
    
.burger-btn.active .bar_bottom{
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.shop-img {
    max-width: 200px;
    margin: 30px 0;
}

/* ハンバーガーメニューが開いたときのスタイル */
.header-nav{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(31, 31, 31, 0.98);
  z-index: 98;
  overflow-y: auto;
  padding-top: 100px;
}

.header-nav.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* グローバルナビゲーション */
nav {
    width: 100%;
    mix-blend-mode: normal;
}

.globalNav {
    flex-direction: column;
    width: 100%;
    padding: 0;
}

.globalNav li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.globalNav li::after {
    display: none; /* 区切り線を非表示 */
}

.globalNav li a {
    display: block;
    width: 100%;
    padding: 25px 30px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.2em;
    mix-blend-mode: normal;
}

.globalNav li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

/* メニューが開いている時の背景オーバーレイ */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 97;
    animation: fadeIn 0.3s ease;
}

/* -------------------------- */
/* //sp-header
/* -------------------------- */
	
/**************スライドショー枠設定**************/

/*.border{
	display: none;
}
	
/**************スライドショー枠設定完了**************/

/**************スライドショー設定**************/
	
.slider{
	/*スライドショーの位置の起点とするためposition:relative;をつける*/
	position: relative;
	/*z-indexの値の小さくして背景に回す*/
	z-index: -1;
	width: 100%;
}
	
	.slider .slick-slider{
		margin: 0 10px;
	}

.slider-item{
	/*各スライダー全体の横幅を画面の横幅いっぱい 100% にする*/
	width: 100%;
	/*各スライダー全体の縦幅を画面の高さいっぱい 100vh にする*/
	height: 10vh;
	/*背景画像をリピートしない*/
	background-repeat: no-repeat;
    /*背景画像の位置を中央に*/
	background-position: center;
	/*背景画像が.slider-item全体を覆い表示*/
	/*background-size: cover;*/
}

/*ドットナビゲーションの設定*/

.slick-dots{
	display: none;
}

.slick-dots li{
	display: none;
}

.slick-dots button{
	display: none;
}

.slick-dots .slick-active button{
	display: none;
}

/**************スライドショー設定終了**************/
	
/* Video */

        .video-container {
            width: 400px;
			max-width: 100%;
            height: 400px;
        }
	
/* -------------------------- */
/* Map
/* -------------------------- */
	
/* Map（スマホ版の中に追加） */
#map-grayscale {
	margin: 5% auto;
	height: 400px;
	width: 400px;
	max-width: 100%;
	filter: grayscale(100%);
}

#map-grayscale iframe {
	width: 100%;
	height: 100%;
}
	
/* -------------------------- */
/* /Map
/* -------------------------- */
	
/* -------------------------- */
/* TOP-video
/* -------------------------- */	
	
	.top-video{
		height: 100vh;
		opacity: 0;
	}

/* -------------------------- */
/* /TOP-video
/* -------------------------- */
	
/* -------------------------- */
/* スライダー非表示
/* -------------------------- */

	.TOP-slider{
		display: none;
	}

/* -------------------------- */
/* /スライダー非表示
/* -------------------------- */

/* -------------------------- */
/* カーソル
/* -------------------------- */

	.cursor{
		display: none;
	}
	
/* -------------------------- */
/* //カーソル
/* -------------------------- */


/* -------------------------- */
/* ホバー時写真拡大
/* -------------------------- */

/* 1. 親要素 (枠) の設定 */
.img-container {
  /* 画像を中央に配置*/
  margin: auto;
  width: 90%;
}
	
/* -------------------------- */
/* //各ページボタンセクション
/* -------------------------- */
	
.footer-menu{
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
}

.copyright{
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-size: 0.8rem;
  margin: 2% 0 0 0;
  text-align: center;
  letter-spacing: 0.3em;
  color: #fff;
　font-display: swap;
}
	
/* -------------------------- */
/* ABOUT
/* -------------------------- */

/* About-Video */

        .about-video-container {
            width: 400px;
            height: 400px;
            position: relative;
            background-color: #000;
            overflow: hidden;
            cursor: pointer;
        }

/* About-Video */

/* -------------------------- */
/* //ABOUT
/* -------------------------- */

/* -------------------------- */
/* SAMPLE PAGE
/* -------------------------- */

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 縦横の間隔 */
}

.container .item {
    width: calc((100% - 20px) / 2);
}

.sample-list{
	width: calc(100% / 2); 
}

/* -------------------------- */
/* //SAMPLE PAGE
/* -------------------------- */
	
/* -------------------------- */
/* CONTACT PAGE
/* -------------------------- */

#contactform {
	height: 2200px;
    width: 100%;
}
	
/* -------------------------- */
/* //CONTACT PAGE
/* -------------------------- */
	
/* -------------------------- */
/* COMPANY PAGE
/* -------------------------- */
	
    
    .company-table {
        font-size: 1.4rem;
        width: 100%;
        display: block;
    }
    
    .company-table tbody {
        display: block;
        width: 100%;
    }
    
    .company-table tr {
		height: 100px;
        width: 100%;
        margin-bottom: 100px;
        border-bottom: none;
        padding-bottom: 20px;
    }
    
    .company-table tr:last-child {
        border-bottom: none;
    }
    
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: left;
    }
    
    .company-table th {
        background-color: transparent;
        font-size: 1.3rem;
		margin-top: 50px;
        padding-bottom: 8px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
    }
    
    .company-table td {
        font-size: 1.4rem;
        padding-top: 5px;
        line-height: 1.8;
    }
/* -------------------------- */
/* COMPANY PAGE
/* -------------------------- */

}

/* ===================================
   アニメーション
=================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}