@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: 24px;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}
*,
::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;
}
/* -------------------- */
/* header               */
/* -------------------- */
.header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    margin: 0px;
    border: 0px;
    z-index: 1;
}
.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;
    z-index: 1;
    font-size: 42px;

  img {
      width: 500px;
  }
}
.header_info {
    font-size: 28px;
    display: block;
}
.header_tel {
    font-size: 38px;
    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;
    font-size: 26px;
}
.header_menu ul {
    display: flex;
    list-style: none;
    padding: 0;
}
.header_menu li {
    margin: 0 10px;

    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: 2px;
    }
}
/* -------------------- */
/* hamburger menu       */
/* -------------------- */
.hamburger-btn {
    display: none;
}
.nav_menu {
    display: none;
}
@media screen and (max-width: 1000px) {
  .header_info {
    display: none; /* 通常メニューは非表示 */
  }
  .header_menu {
    display: none; /* 通常メニューは非表示 */
  }
  .hamburger-btn {
    flex-direction: column;
    justify-content: space-around;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin: 0 50px;
    z-index: 10;
  }
  .hamburger-btn span {
    display: block;
    height: 5px;
    background: var(--color-default);
    border-radius: 3px;
  }
  .hamburger-btn {
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .hamburger-btn span {
    height: 5px;
    background: #333;
    border-radius: 5px;
  }
  .open-icon,
  .close-icon {
    font-size: 64px;
    color: var(--color-default);
    transition: opacity 0.3s ease;
  }

  .nav_menu {
    display: flex;
    position: fixed;
    top: 200px;
    right: -500px; /* 最初は右に隠しておく */
    width: 500px;
    height: 100%;
    transition: right 0.4s ease;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    background: #fff;

    z-index: 5;
  }
  .nav_menu.open {
    right: 0; /* 開いたら表示 */
  }
  .nav_menu ul {
    list-style: none;
  }

  .nav_menu ul li {
    list-style: none;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    
    a {
      display: block;
      color: #333;
      background: #f0f0f0;
      font-size: 42px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      transition: background 0.2s ease;
      transition: all 0.3s ease;
      padding: 15px 40px;
    }
    
    a:hover {
      background: #eaeaea;
      box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    }
  }

  /*----*/
  .close-menu {
    background: transparent;
    border: none;
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
    color: #666;
  }
}
/* -------------------- */
/* Body Contents        */
/* -------------------- */
.video-container {
  width: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.body_navi ul {
    background: #fff;
    display: flex;
    gap: 0px; /* 間隔を調整 */
    justify-content: center;
    list-style: none;
    padding: 20px 0px;
    
    li {
    }
    img {
      width: 100%;
    }
}
.content-body {
  margin-top: 300px;
    width: 100%;
}
.body_topics img {
  width: 100%;
}

.body_topics img {
  width: 100%;
}
.body_instagram img {
  width: 100%;
}

.body_recruitment img {
  width: 100%;
}
/* -------------------- */
/* About Company        */
/* -------------------- */
.body_company{
  margin: 20px;
  font-size: 38px;
}
.c_descript{
}
.c_name{
    img {
      width: 70%;
    }
}
.c_addr{
  margin-left: 50px;
}
.social_navi {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;

  .navi_icon{
    margin: 50px;

    img {
      width: 100px;
    }
  }
}

/* -------------------- */
/* Footer               */
/* -------------------- */
.footer {
  background: var(--color-base);
  color: #fff;
}
.copyright {
  background: var(--color-base);
  color: #fff;
  text-align: center;
  display: block;
  padding: 10px 0;
}
.footer_info {
  background: var(--color-base);
  color: #fff;
  text-align: right;
  display: block;
  margin: 0 10px;
  
a {
  color: inherit; /* 既存のテキストカラーを維持（オプション） */
  text-decoration: none; /* 下線を消す */
}

.arrow_right {
  position: relative;
  padding-right: 30px;
}
}
