@charset "utf-8";
/* ==================== */
/* style.css            */
/* ==================== */
/* -------------------- */
/* variable declaration */
/* -------------------- */
:root {
    /* color */
    --color-default: #333;
    --color-base: #2E3B2D;
    --color-base2: #EE2929;
    --color-border: #ccc;
    --color-bg: #eee;
    --color-blue: #0099ff;
    --color-light-green: #1abc9c;
    --color-bg-yellow: #ffb;
    --color-red: #c30d23;
    --color-pink: #ee8293;
    --color-orange: #F15D30;
    --color-link: #ff9500;
    --color-navy: #002d7d;
    --color-white: #ffffff;
}

html,body {
  font-size: 38px;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
  width: 100%;
}
*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}
/* タブレット向け (最大幅: 1024px) */
@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}

/* スマホ向け (最大幅: 768px) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* -------------------- */
/* header               */
/* -------------------- */
.header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    margin: 0px;
    border: 0px;
    z-index: 1;
    height: 250px;
}
.site-top {
    background: var(--color-base);
    color: #fff;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    height: 10px;
}
.header_top {
    background: #fff;
    box-shadow: 0 0 .5em rgb(0,0,0,.1);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 10px;
    z-index: 1;
    font-size: 42px;
}
.header_top img {
    height: 150px;
    width: auto;
}
.header_tel {
    font-size: 42px;
    text-decoration: none; /* 下線を消す */
    color: inherit; /* 既存のテキストカラーを維持（オプション） */
}
.header_tel:hover {
  /* 透明度を上げることで、画像の色を薄く見せる。*/
  opacity:0.5;
  /* リンクをホバーしたときのカーソルにする。*/
  cursor: pointer;

}
.header_tel:active{
  /* 要素を若干下に下げることで、押した感じを出す。*/
  /* 今いる位置から相対的に3px下に配置する。*/
  position: relative;
  top: 3px;

}
.header_menu {
    background: #fff;
    box-shadow: 0 0 .5em rgb(0,0,0,.1);
    height: 100px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.header_menu ul {
    display: flex;
    list-style: none;
    padding: 0;
}
.header_menu li {
    margin-right: 50px; /* 項目間の間隔を調整 */

    a {
        color: inherit;
        text-decoration: none; /* 下線を消す */
        transition: color 0.3s ease; /* なめらかな変化 */
    }
    a:hover {
        color: rgba(0, 0, 0, 0.5); /* 半透明で薄くする */
    }

    a:active{
      /* 要素を若干下に下げることで、押した感じを出す。*/
      /* 今いる位置から相対的に3px下に配置する。*/
      position: relative;
      top: 3px;
    }
}
/*============
nav
=============*/
nav {
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
.header_info_sm {
    display: none;
}
/* タブレット向け (最大幅: 1024px) */
@media (max-width: 1024px) {
    .header_menu li {
        margin-right: 40px;
    }
}
/* スマホ向け (最大幅: 768px) */
@media (max-width: 768px) {
    .header_info {
        display: none;
    }
    .1header_menu {
        display: none;
    }
    .header_info_sm {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
     }
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
}

/* -------------------- */
/* Body Contents        */
/* -------------------- */
.content-body{
   width: 100%;
   top: 200px
}
@keyframes slide {
    0% { transform: translateX(0); }
    55% { transform: translateX(-100vw); }
    100% { transform: translateX(-200vw); }
}
.video-slider {
    width: 100%;
}
.video-track {
  display: flex;
  width: 300%; /* 3本分 */
  animation: slide 15s infinite;
}
.video-track video {
  aspect-ratio: 21 / 9;
  width: 100%; /* または固定サイズにする場合は任意の幅 */
  overflow: hidden;
  object-position: bottom;

}
.body_navi{
    text-align: center;
    background: #fff;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
    
}
.body_navi ul {
    display: flex;
    list-style-type: none;
    width: 100%;
}

.body_navi img {
  width: 100%;
}
/* タブレット向け (最大幅: 1024px) */
@media (max-width: 1024px) {
    .body_navi img {
      width: 100%;
    }
}

/* スマホ向け (最大幅: 768px) */
@media (max-width: 768px) {
    .body_navi img {
      width: 100%;
    }
}
.body_topics img {
  width: 100%;
}
.body_instagram {
    text-align: center;
    background: #fff;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 30px 0px;
}
.body_instagram h1 {
    font-size: 40px;
}
.body_instagram ul {
    display: flex;
    list-style-type: none;
}

.body_instagram li {
    margin-right: 10px; /* 項目間の間隔を調整 */
}
.body_instagram img {
  width: 200px;
}
/* タブレット向け (最大幅: 1024px) */
@media (max-width: 1024px) {
    .body_instagram img {
      width: 150px;
    }
}

/* スマホ向け (最大幅: 768px) */
@media (max-width: 768px) {
    .body_instagram img {
      width: 150px;
    }
}
.body_recruitment img {
  width: 100%;
}
.body_company {
  display: flex;
  
  .social_navi {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    
    .navi_icon{
      margin: 25px;
  
      img {
        width: 50px;
      }
    }
  }

  .c_info {
    background: #fff;
    margin: 30px 0;
  
    img {
      margin: 0;
      padding: 0 10px;
      width: 450px;
    }

    .c_descript {
      padding: 0 30px;
      font-size: 18px;
    }

    .c_shop {
      width: 50%;
      padding: 0 50px;
      font-size: 18px;
    }

    .c_addr {
      padding: 0 20px;
      font-size: 18px;
    }
  }
}
/* スマホ向け (最大幅: 768px) */
@media (max-width: 768px) {
  .body_company {
    display: block;
  
    .social_navi {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      width: 100%;
      
      .navi_icon{
        margin: 25px;
    
        img {
          width: 50px;
        }
      }
    }
  }
}

/* -------------------- */
/* Footer               */
/* -------------------- */
.footer {
  padding: 0 20px;
  position: fixed;
  margin: 0;
  border: 0;
  background: var(--color-base);
  color: #fff;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  height: 30px;
  line-height: 30px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  z-index: 1;
  bottom: 0;
  font-size: 0.8rem;
  
  .copyright {
    background: var(--color-base);
    color: #fff;
    display: block;
    width: 90px;
  }
  .footer_info {
      background: var(--color-base);
      color: #fff;
      display: block;
      margin: 0 10px;
      
    a {
      color: inherit; /* 既存のテキストカラーを維持（オプション） */
      text-decoration: none; /* 下線を消す */
    }

	.arrow_right {
	  position: relative;
	  padding-right: 30px;
	}
	.arrow_right::before {
	  content: "";
	  position: absolute;
	  right: 20px;
	  top: 0;
	  bottom: 0;
	  margin: auto;
	  width: 6px;
	  height: 6px;
	  border-radius: 2px;
	  border-left: 2px solid #fff;
	  border-bottom: 2px solid #fff;
	  transform: rotate(-135deg);
	  box-sizing: content-box;
	  transition: 0.6s cubic-bezier;
	}
  }
}

.footerSm {
  display: none; /* PCでは非表示 */
}

/* スマホ向け (最大幅: 768px) */
@media (max-width: 768px) {
  .footer {
    display: none; /* PCでは非表示 */
  }

  .footerSm {
    padding: 0 20px;
    position: fixed;
    margin: 0;
    background: var(--color-base);
    color: #fff;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    line-height: 20px;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    z-index: 1;
    bottom: 0;

  flex-direction: column; /* 縦方向に並べる */
  gap: 10px; /* 各要素の間隔 */

    .copyright {
        background: var(--color-base);
        color: #fff;
        display: block;
    }
    .footer_info {
        background: var(--color-base);
        color: #fff;
        display: block;
        margin: 0 10px;
        
      a {
        color: inherit; /* 既存のテキストカラーを維持（オプション） */
        text-decoration: none; /* 下線を消す */
      }
    }
  }
}
