
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;

}
img, video {
  max-width: 100%;
  height: auto;
}
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center; /* ここがポイント */
}

/* ハンバーガーがアクティブな時（×表示） */
.hamburger.active span:nth-child(1) {
  transform: rotate(35deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-35deg) translate(7px, -7px);
}

/* ナビ */
.nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  transition: left 0.3s ease;
  z-index: 9998;
  padding-top: 60px;
}

.nav.active {
  left: 0;
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav ul li {
  margin: 20px 0;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

body {
  margin: 0;
  font-family: YakuHanJP_Narrow,"Zen Kaku Gothic New", sans-serif;
}

.contents_wrapper{
  display: flex;
  width: 100%;
  height: 100vh;
}
/* 左コンテンツ */
.video_section{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 50%;
  height: 100%;
}
.video_content{
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}
.video_content::before{
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left をすべて0に */
  /*background: rgb(255 255 255 / 13%);*/
  z-index: 1;
}
.responsive-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}
.video_logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  z-index: 200;
}
.video_sp{
    display: none;
  }

@media(max-width:500px){
  .video_pc{
    display: none;
  }
  .video_sp{
    display: block;
  }
}
.responsive-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}

/* 中央コンテンツ */
.p-home-mv__picture img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_img_01{
  margin: 10px 10px 0 10px;
}
.shoplist_section {
  margin-left: 50%; /* video_sectionの右に配置するため */
  width: 32%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  top:0;
}
.top_lead{
  padding: 100px 0;
  position: relative;
}
.top_lead p{
  margin: 25px auto 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .06em;
}
.sub_title{
  display: flex;
  align-items: center;
  padding:0 10px 15px;
}
.sub_title h2{
  padding-right: 20px;
  font-weight: 700;
}
.recruit_content,.company_content{
  margin: 0px 0 50px;
  padding: 10px;
}
.rec_img img{
  width: 100%;
  height: auto;
}

/*ギャラリー*/
.gallery_content{
  margin: 0 10px 100px;
}
.gallery_content img{
  width: 100%;
}
.gallery_image_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery_image_wrapper{
  translate: none;
  rotate: none; 
  scale: none; 
  transform: translate(0px, 0px); 
  opacity: 1;
}
.gallery_image_wrapper:first-child {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}
.gallery_image_wrapper:nth-child(2) {
  grid-row: 2 / 4;
  grid-column: 1 / 2;
}
.gallery_image_wrappere:nth-child(3) {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.gallery_image_wrapper:nth-child(4) {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
}
.gallery_image_wrapper:nth-child(5) {
  grid-row: 4 /5;
  grid-column: 1 / 3;
  height: 250px;
}
.gallery_image_wrapper{
  display: flex;
}
.gallery_image{
  width: 100%;
  object-fit: cover;
}

/*店舗情報*/
.info_content{
  margin: 0 10px 100px;
}
.info_image{
  width: 100%;
}
.info_image img{
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.info_table_content{
  padding: 0 10px;
}
.info_table{
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid #6c6c6c;
  margin-top: 30px;
  font-weight: 500;
}
.info_table:first-child{
  margin-top: 10px;
}
.info_table dt{
  padding-right: 20px;
  width:120px;
  font-weight: 700;
}
.info_table a{
  text-decoration: none;
  color: #000;
}
.view_more_arrow .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.view_more_arrow:hover .arrow {
  transform: translateX(10px);
}

.view_more_arrow{
  position: relative;
  padding: 0px 10px 2px 0px;
}
.view_more_arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: orange;
  transition: width 0.3s ease;
}
.view_more_arrow:hover::after {
  width: 100%;
}
.map_content{
  margin: 30px 10px 0;
}






.nav_section {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 18%;
  height: 100%;
  overflow-y: auto;
  background-color: var(--color-black);
}

.store {
  margin: 20px 0;
}

.top_lead{
  width: fit-content;
  margin: 0 auto;
}
.top_lead h1 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  
}

.p-home-company__picture:first-child {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}
.p-home-contents {
  padding: 0 10px;
}
.p-home-company__paragraph {
  margin: 12px 0 0;
  font-size: .875rem;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: .02em;
  text-align: justify;
}
.c-textLink {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #333;
}
.c-textLink__texts {
  position: relative;
  display: flex;
  align-items: center;
}



/* 右コンテンツ */
.nav_content {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 18%;
  height: 100%;
  overflow-y: auto;
  background-color: #333;
}
.l-fixNav__linkContainer {
  position: relative;
}
.l-fixNav__pictureContainer {
  position: relative;
  height: 200px;
  min-height: 112px;
}
.l-fixNav__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.l-fixNav__pictures {
  height: 100%;
  transition: filter .5s;
}
.l-fixNav__pictures::before{
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left をすべて0に */
  background: rgb(224 224 224 / 31%);
  z-index: 1;
}
.l-fixNav__picture {
  display: flex;
  height: 100%;
}
.l-fixNav__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.l-fixNav__instagramLink {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 5;
}

.l-fixNav__footerLinkList {
  display: flex;
  flex-wrap: wrap;
  gap: 1vh 0;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 2vh 0;
  margin: 0;
  background-color: #333;
}
.l-fixNav__footerLinkItem {
  width: 50%;
  text-align: center;
  list-style: none;
}
.l-fixNav__footerLink {
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity .5s;
}
.l-fixNav__footerLink a{
  text-decoration: none;
  transition: opacity .5s;
}
/*.newslist li a {
  color: cornflowerblue;
  text-decoration: none;
}

.newslist{
  list-style: none;
  padding: 0;
}*/

/* 店舗情報 */
.store_info {
  width: 100%;
  height: 100%;
  position: relative;
}
.store_info img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1);
}




/* 店舗一覧 */
.store_content{
  margin: 0 10px;
}
.store-card {
  height: 300px;
  overflow: hidden;
  position: relative;
  margin: 0 0 140px;
}

.store-img-loop {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 共通設定 */
.store-img-loop img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0;
  transform: scale(1);
}

/* A: 拡大フェードイン→アウト */
.img-a {
  animation-name: zoomInFade;
  z-index: 1;
}

/* B: 縮小フェードイン→アウト（タイミングずらす） */
.img-b {
  animation-name: zoomOutFade;
  animation-delay: 4s;
  z-index: 0;
}
.fade-trigger{
  position: relative;
}
/* 店舗名 */
.store-name {
  position: absolute;
  bottom: 110px;
  right: 0px;
  width:200px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 0px;
  font-size: 1rem;
  letter-spacing: .6rem;
  /* アニメーション初期状態（左にずらして透明） */
  opacity: 0;
  transform: translatey(30px);
  transition: all 0.6s ease-out;
  z-index: 999;
}

/* 表示されたとき */
.fade-trigger.visible .store-name {
  opacity: 1;
  transform: translateX(0);
}

/* 拡大してフェードアウト */
@keyframes zoomInFade {
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 1; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.08); }
  90%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1); }
}

/* 縮小してフェードアウト */
@keyframes zoomOutFade {
  0%   { opacity: 0; transform: scale(1.08); }
  10%  { opacity: 1; transform: scale(1.08); }
  50%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}
3

.store-img-loop img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0;
  transform: scale(1);
}

/* A: 拡大フェードイン→アウト */
.company_img_a {
  animation-name: zoomInFade;
  z-index: 1;
}

/* B: 縮小フェードイン→アウト（タイミングずらす） */
.company_img_b {
  animation-name: zoomInFade;
  animation-delay: 4s;
  z-index: 0;
}
.company_img_c{
  animation-name: zoomInFade;
  animation-delay: 8s;
  z-index: 0;
}
.fade-trigger{
  position: relative;
}

/* 拡大してフェードアウト */
@keyframes zoomInFade {
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 1; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.08); }
  90%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1); }
}

/* 縮小してフェードアウト */
@keyframes zoomOutFade {
  0%   { opacity: 0; transform: scale(1.08); }
  10%  { opacity: 1; transform: scale(1.08); }
  50%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}


.company_grid_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列構成 */
  gap: 8px;
}

/* 最初の画像を2列分に拡張 */
.company_grid.wide {
  grid-column: 1 / 3; /* 1列目から3列目（＝2列分） */
}

.company_grid {
  overflow: hidden; 
  aspect-ratio: unset;/* 高さ揃えたいなら */
}

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


.recruit_img{
  height: 200px;
  position: relative;
  overflow: hidden;
}


.view-more-animated {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 20px 10px 2px;
   
}

.view-more-animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: orange;
  transition: width 0.3s ease;
}

.view-more-animated:hover::after {
  width: 100%;
}

.view-more-animated .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.view-more-animated:hover .arrow {
  transform: translateX(5px);
}


.contact_content{
  background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url("../assets/img/top/Sunkaku_01.jpg");
  background-size:  cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
  margin: 0 10px 10px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 2.3;
  text-align: center;
  padding: 50px 30px;
  color: #fff;
}

.contact_title{
  font-size: 20px;
  font-weight: 600;
}
.contact_title_wrapper{
  margin-bottom: 20px;
}
.contact_more{
  color: #fff;
}
.contact_text{
  font-size: .8rem;
}

.top_lead_back{
  background-image: url("../assets/img/back_img_1.png");
  width: 300px;
  position: absolute;
  top:0;
  right: 30px;
}

.history_content{
  margin: 0 10px 50px;
}
.history_wrapper{
  display: flex;
  align-items: center;
  gap:50px;
}
.history_shop_img{
  width: 30%;
}
.history_shop_img img{
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.valuse_content{
  margin: 0 10px 80px;
  text-align: justify;
  position: relative;
}
.valuse_img{
  width: 100%;
}
.valuse_title{
  background-image: url("../assets/img/top/company_img.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  text-align: center;
  color: #fff;
  z-index: 100;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}

.valuse_content p{
  padding: 0 10px;
  line-height: 2;
  margin-top: 12px;
}
.info_table dd img{
  height: 40px;
}


.footer_content{
  padding: 50px 0 20px;
  background-color: #333;
  text-align: center;
}
.footer_content img{
  width: 140px;
}

@media screen and (max-width: 1200px) {
  .contents_wrapper {
    flex-direction: column;
    height: auto;
  }

  .video_section {
    position: relative;
    width: 100%;
    height: auto;
  }

  .responsive-video {
    height: 100vh;
  }

  .shoplist_section {
    margin-left: 0;
    width: 100%;
    height: auto;
  }
  .recruit_img{
   height: 300px;
  }
  .nav_section,
  .nav_content {
    display: none;
  }

  .store-card {
    height: 300px;
  }
  .store-name{
    right: 0px;
    padding: 15px 0px;
    font-size: 1rem;
    letter-spacing: .6rem;
  }
  .top_lead {
    padding: 60px 20px;
  }

  .top_lead h1 {
    font-size: 1.2em;
    text-align: left;
  }

  .top_lead p {
    font-size: 0.95rem;
  }

  .sub_title {
    gap: 4px;
    padding: 0 10px 10px;
  }

  .contact_content {
    padding: 80px 20px;
    font-size: 0.85rem;
    line-height: 1.8;
    height: auto;
  }
}


@media(max-width:500px){
  .history_wrapper{
    gap:20px;
  }
  .valuse_title{
    font-size: 20px;
  }
}
/*.floating-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
 overflow: hidden;
  z-index: 0;
}
.floating-item {
  position: absolute;
  will-change: transform, opacity;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}*/
.store_slider_content{
  height: 100vh;
  margin: 0;
}
.left_img_filter::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #00000082;
  z-index: 10;
}
