@charset "UTF-8";
body {
  -webkit-font-smoothing: antialiased;
  position: relative;
  font-family: "Noto Sans JP", Arial, Helvetica, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  margin: 0;
  width: 100%;
  color: #101010;
}

p {
  margin-bottom: 1.7em;
}

.hover_border::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1.25px;
  background: #000000;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

section {
  margin-bottom: 20vh;
}

.hover_box:hover .hover_border::after {
  transform: scale(1, 1);
  transform-origin: left top;
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header_absolute .header_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.single .container ul li {
  position: relative;
  padding-left: 1.4em;
}

.single .container ul li:before {
  content: "";
  display: block;
  background-image: url("../img/navi_mark.svg");
  width: 18px;
  height: 18px;
  margin-right: 64px;
  left: 0;
  position: absolute;
  top: 0.26em;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

ul {
  padding: 0;
}

ul li {
  list-style: none;
}

ul {
  margin: 0;
}

div {
  display: block;
}

img {
  width: 100%;
  height: 100%;
}

/*20250423*/
.h2_1 h2:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url("../img/icn_d2.svg");
}

.more {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 8px;
}

.mail.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 800, "GRAD" 10, "opsz" 24;
}

.mail.material-symbols-outlined {
  font-size: 3em;
  color: #fff;
}

/*ボタン*/
.more {
  background-image: url("../img/arrow_fill.svg");
  transition: 0.3s;
}

.more_blue .more {
  background-image: url("../img/arrow_white.svg");
  transition: 0.3s;
}

.more_wb {
  background-image: url("../img/arrow_white.svg");
  transition: 0.3s;
}

button:hover .more {
  background-image: url("../img/arrow_white.svg");
}

button.more_blue::before {
  background: #fff;
}

button.more_wb::before {
  background: #0D4B8C;
}

button.more_wb span {
  background-image: url("../img/arrow_wb.svg");
  transition: 0.3s;
}

button.more_blue {
  color: #092E4E;
}

#audio button .more {
  background-image: url("../img/arrow_white.svg");
}

#audio button:hover {
  color: #333;
}

#audio button:hover::before {
  background: #fff;
}

#audio button:hover .more {
  background-image: url("../img/arrow_black.svg");
}

#recruit button:hover {
  color: #fff;
}

/* メニュー非表示用 */
.menu-toggle {
  display: none;
}

/*h2*/
.h2_1 h2 {
  display: flex;
  align-items: center;
  font-size: 1em;
}

.h2_1 div {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .h2_1 div {
    font-size: 2.8em;
  }
}

.header_inner {
  margin: 0 0 0 auto;
}

header h1 {
  margin-left: 32px;
}

.nav_contact {
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2ABFB0;
  color: #fff;
  font-weight: bold;
  height: 120px;
}

.nav_contact a {
  color: #fff;
  font-weight: bold;
}

.nav_contact:hover a {
  transform: scale(1.1);
}

.header_wrap {
  margin-left: auto;
}

/* ハンバーガーの見た目 */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  justify-content: center;
  align-items: center;
  position: relative;
  position: absolute;
  right: 20px;
  top: 20px;
}

.hamburger::hover {
  opacity: 0.5;
}

.hamburger {
  display: none;
}

.ham_inner {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* ハンバーガーの線 */
.hamburger span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: 0.3s;
  position: absolute;
}

/* 1本目（上の線） */
.hamburger span:nth-child(1) {
  top: 0;
}

/* 2本目（中央の線） */
.hamburger span:nth-child(2) {
  top: 49%;
  transform: translateY(-50%);
}

/* 3本目（下の線） */
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* チェック時のアニメーション */
.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.menu-toggle:checked + .hamburger span {
  background: #fff;
}

.menu-toggle:checked + .header_inner {
  display: block;
}

/* メニューの表示 */
.menu {
  display: block;
}

.menu a {
  text-decoration: none;
}

.logo_box {
  text-decoration: none;
}

.menu ul li span.nav_d {
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%);
  background-image: url("../img/navi_mark.svg");
  visibility: hidden;
}

.menu .nav_down li a:hover .nav_d {
  visibility: visible;
}

.menu {
  align-items: flex-end;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}

.menu-toggle:checked ~ .menu {
  display: block;
}

/* タブ全体を囲むコンテナの設定 */
.tab-switch {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 auto;
  gap: 5px;
  width: 72%;
}

/* 各タブボタンの設定 */
.tab-switch > label {
  /* タブが均等に幅をとるが、幅を超えると折り返す */
  order: -1;
  /* 上部に表示する */
  position: relative;
  /* 絶対位置指定用の基準 */
  padding: 0.7em 1em;
  /* 上下左右の内側余白 */
  color: #fff;
  /* 文字色 */
  text-align: center;
  /* 文字を中央揃え */
  cursor: pointer;
  /* ポインターを指アイコンに変更 */
  transition: 0.3s all;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  width: 200px;
}

.tab-switch > label.news_label {
  /* タブが均等に幅をとるが、幅を超えると折り返す */
  background-color: #0D4B8C;
}

.tab-switch > label.recruit_label {
  /* タブが均等に幅をとるが、幅を超えると折り返す */
  background-color: #2ABFB0;
}

/* タブボタンのホバーおよび選択状態のスタイル */
.tab-switch > label:hover,
.tab-switch label:has(:checked) {
  background-color: #F2F2F2;
  /* ホバー/選択時の背景色 */
  color: #515151;
  /* ホバー/選択時の文字色 */
  font-weight: bold;
}

/* ラジオボタン自体は非表示 */
.tab-switch input {
  display: none;
  /* 見た目に表示されないようにする */
}

/* タブコンテンツのスタイル */
.tab-switch > div {
  display: none;
  /* 初期状態では非表示 */
  width: 100%;
  /* コンテンツ幅を全体に */
  padding-top: 1em;
}

/* 選択されたタブのコンテンツを表示 */
.tab-switch label:has(:checked) + div {
  display: block;
  /* 選択されたタブに対応するコンテンツを表示 */
}

/*ヘッダー*/
.menu > ul {
  display: flex;
}

header {
  display: flex;
  align-items: center;
  height: 120px;
  position: relative;
  width: 100%;
}

header > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  width: 160px;
  background: #2ABFB0;
  position: absolute;
  right: 0;
  top: 0;
}

.header {
  display: none;
}

header > div:nth-of-type(2) a {
  color: #fff;
  font-weight: bold;
}

header .nav_down > li a:hover {
  color: #2ABFB0;
}

header .nav_down > li {
  margin-right: 2em;
}

header .nav_down li {
  font-size: 1.1em;
  line-height: 2.3;
}

header .nav_upper > li a span {
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2em;
  height: 1.2em;
  font-size: 1.5rem;
}

header .nav_upper > li {
  margin-right: 2em;
}

header .nav_upper > li a {
  display: flex;
  align-items: center;
}

header .nav_upper > li a {
  margin-bottom: 0.2em;
}

header .nav_upper > li:hover a {
  color: #2ABFB0;
}

header .nav_upper > li:hover a span {
  transform: scale(1.2);
}

/*ナビゲーション*/
header .nav_down > li {
  position: relative;
}

.header_wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

/*ドロップダウンリスト*/
.dropdown__lists {
  display: none;
  z-index: 1000;
  width: 100vw;
  position: absolute;
  top: 112px;
  left: 0;
}

.nav_down > li:hover .dropdown__lists {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #004d80;
  height: 60px;
  transition: all 0.3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #003558;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

/*メインビュー*/
#top_hero {
  width: 100%;
  height: calc(100vh - 112px);
  overflow: hidden;
  position: relative;
}
#top_hero h2 {
  position: absolute;
  left: 16px;
  top: 0;
  font-size: 5.2em;
  color: #fff;
  text-shadow: 4px 4px 10px #010101;
}
#top_hero p {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
}

.top_hero {
  margin: 0;
  overflow: hidden;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  width: 100%;
  height: 100%;
}

.top_hero .audio_hero_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.recruit_img {
  position: absolute;
  right: 32px;
  bottom: 20px;
  width: 480px;
  transition: 0.2s ease-out;
  z-index: 10;
}

.recruit_img:hover {
  transform: scale(1.06);
}

/*ヘッダー*/
.align-right {
  text-align: right;
}

/*コンテナ―*/
.container {
  max-width: 80%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

/*フッター*/
footer {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  position: relative;
  width: 100%;
  /*m記入*/
}

footer address {
  margin-top: 5px;
  font-style: normal;
}

footer address > div {
  font-size: 1.7em;
  line-height: 1.7;
  font-weight: bold;
}

.footer_logo {
  width: 250px;
}

footer:before {
  content: "";
  width: 80%;
  height: 8px;
  background-color: #2ABFB0;
  position: absolute;
  top: 0;
}

footer:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  background-image: url(../img/navi_mark.svg);
  top: 4px;
  right: 19%;
  transform: translateY(-50%);
}

.footer_right {
  display: flex;
}

footer nav div > a {
  font-size: 1em;
  line-height: 1.7;
  font-weight: bold;
  color: #2ABFB0;
}

footer nav {
  display: flex;
}

.footer_left,
.footer_r_l,
.footer_right ul {
  width: 180px;
}

.footer_left,
.footer_r_l {
  margin-right: 20px;
}

footer nav > ul {
  min-width: 180px;
}

.footer_inner {
  margin-left: 10%;
  display: flex;
  padding-bottom: 40px;
  margin-right: 20%;
  justify-content: space-between;
}

footer nav ul li a {
  position: relative;
  display: inline-block;
}

footer nav ul li {
  line-height: 1.4;
}

footer nav ul li a {
  font-size: 0.8em;
}

footer address p {
  line-height: 1.4;
}

footer address p span {
  display: block;
}

footer nav a::after {
  background-color: #292929;
  /* 下線の色 */
  bottom: 2px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

.footer_left > div:nth-of-type(1) {
  margin-bottom: 1.5em;
}

.footer_r_l > div:nth-of-type(1),
.footer_r_l > div:nth-of-type(2),
.footer_r_l > div:nth-of-type(3),
.footer_r_l > div:nth-of-type(4) {
  margin-bottom: 1.5em;
}

/* リンクにホバーした際の下線の表示 */
footer nav a:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

/*about*/
#about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about_image {
  width: 50%;
  margin-right: 8%;
}

.about_text {
  max-width: 556px;
}

/**/
#business article {
  width: calc((100% - 40px) / 3);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  /*.bus_text {
      @media screen and (max-width: 600px) {
          font-size: 1.7em;
      }
  }*/
}
#business article:hover .bus_text {
  background-color: #fff;
  color: #0D4B8C;
}
#business article:hover .bus_img {
  opacity: 0.7;
}

#business article:nth-of-type(3n) {
  margin-right: 0;
}

#business_archive article {
  width: calc((100% - 40px) / 3);
  aspect-ratio: 1/1;
  display: flex;
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  #business_archive article .bus_text {
    font-size: 1rem;
  }
}
#business_archive article:hover .bus_text {
  background-color: #fff;
  color: #0D4B8C;
}
#business_archive article:hover .bus_img {
  opacity: 0.7;
}

#business_archive article:nth-of-type(3n) {
  margin-right: 0;
}

#business article a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#business_archive article a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#business_archive h3 {
  margin-bottom: 1.4em;
}

.business_inner {
  background-color: #F2F2F2;
  padding: 3.2%;
}

.business_inner > div {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}

#business article p {
  min-height: 100px;
}

#business .business_inner article:last-of-type {
  margin-right: 0;
}

#business .business_inner:nth-of-type(1) {
  margin-bottom: 5%;
}

#business h3 {
  position: relative;
  text-align: center;
}

#business h3::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 40px;
  height: 1.25px;
  background: #000000;
}

.kenkoimg > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
}
.kenkoimg > div img {
  width: 80%;
  height: auto;
}

/**/
#contact {
  background: #0D4B8C;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 30px;
  height: 320px;
  margin-bottom: 18vh;
}

#contact > div:nth-of-type(1) {
  margin-right: 44px;
}

#contact > div:nth-of-type(2) a {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  flex-direction: column;
  position: relative;
  color: #fff;
}

#contact > div:nth-of-type(2) a .material-symbols-outlined.mail {
  position: relative;
  z-index: 2;
}

#contact > div:nth-of-type(2) a div {
  position: relative;
  z-index: 2;
}

#contact > div:nth-of-type(2) a div {
  font-size: 1.2em;
  font-weight: bold;
}

#contact > div:nth-of-type(2) .c_white_circle {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  transition: width 0.2s, height 0.2s;
  z-index: 0;
}

#contact > div:nth-of-type(2) a:hover .c_white_circle {
  background: #fff;
}

#contact > div:nth-of-type(2) a:hover .material-symbols-outlined.mail {
  color: #0D4B8C;
  font-weight: bold;
}

#contact > div:nth-of-type(2) a:hover div {
  color: #0D4B8C;
  font-weight: bold;
}

#contact > div:nth-of-type(2) a div {
  font-size: 1.2em;
}

#contact > div:nth-of-type(1) > div {
  display: flex;
  font-weight: bold;
}

#contact > div:nth-of-type(1) {
  margin-right: 20%;
}

#contact > div:nth-of-type(1) div div:nth-of-type(1) {
  margin-right: 6px;
}

#contact h2 {
  font-size: 3.2em;
}

/*ニュース一覧*/
.icn {
  color: #fff;
  width: 150px;
  background-color: #0D4B8C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 9999px;
  padding-top: 4px;
  padding-bottom: 4px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 40px;
  margin-left: 40px;
}

#news {
  display: flex;
}

.list_news li a {
  display: flex;
  padding-bottom: 16px;
  padding-top: 16px;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  align-items: center;
  transition: 0.2s ease-out;
}

.list_news_inner > div {
  display: flex;
  align-items: center;
}

.news_title {
  display: flex;
  flex-direction: column;
}

.list_news li a > div {
  display: flex;
}

#news button,
#about button {
  margin-top: 32px;
}

.icn_recruit {
  background-color: #2ABFB0;
}

.icn_event {
  background-color: #C52A06;
}

.icn_tech {
  background-color: #3B3B3B;
}

.icn_ob {
  background-color: #8C0C6F;
}

.date {
  min-width: 110px;
}

.h2_1 {
  margin-bottom: 2.4em;
}

/*採用情報*/
#recruit {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 960px) {
  #recruit {
    flex-direction: column;
  }
}
.recruit_left {
  width: 50%;
  margin-right: 8%;
}

@media screen and (max-width: 960px) {
  .recruit_left {
    width: 100%;
    margin-right: 0%;
  }
}
.recruit_right {
  width: 556px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 960px) {
  .recruit_right {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.recruit_image {
  width: 100%;
  /*margin-right: 8%;*/
}

/*.recruit_wrap {
    position: relative;
}*/
/*.recruit_wrap > div:nth-of-type(1){
    position:static;
	transform:scale(0.9);
}*/
/*.recruit_wrap > div:nth-of-type(2){
    position: absolute;
    width: 100%;
    top:0;
	left:0;
}*/
#recruit .h2_1 {
  color: #0D4B8C;
}

#recruit ul {
  display: flex;
  width: 720px;
  flex-grow: 1;
  flex-flow: row wrap;
  transform: translateX(-10%);
}

#recruit ul li {
  border: 2px solid #0d4b8c;
  width: 30%;
  aspect-ratio: 1/1;
  margin-right: 3%;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#recruit ul li:nth-of-type(3n) {
  margin-right: 0;
}

#recruit > div:nth-of-type(3) {
  display: flex;
  align-items: center;
  width: 100%;
}

#recruit ul li:nth-of-type(1),
#recruit ul li:nth-of-type(2),
#recruit ul li:nth-of-type(3) {
  margin-bottom: 3%;
}

#recruit ul li > div {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 8px;
  box-sizing: border-box;
}

#recruit ul li > div:nth-of-type(1) {
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: #0d4b8c;
  font-size: 1.5vw;
  line-height: 1.2;
  flex-direction: column;
}

#recruit ul li > div:nth-of-type(2) {
  background: #0D4B8C;
  justify-content: center;
  color: #fff;
  padding: 8%;
  box-sizing: border-box;
  width: calc(100% + 4px);
}

#recruit ul li > div:nth-of-type(2) div {
  color: #2abfb0;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
}

.number_rec {
  position: absolute;
  top: 4px;
  left: 4px;
  font-weight: bold;
}

#recruit ul li:last-of-type {
  border: none;
}

#recruit button {
  border-color: #0D4B8C;
  color: #0D4B8C;
}

.rec_subtitle p {
  /*background-color: #0D4B8C;*/
  color: #0D4B8C;
  font-size: 2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 4px;
  margin-bottom: 0;
  display: inline-block;
}

/*オーディオ機器*/
#audio {
  position: relative;
  height: 720px;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

@media screen and (max-height: 480px) {
  #audio {
    height: 100vh;
  }
}
#audio h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.2em;
  z-index: 3;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  overflow: hidden;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#audio h2 span {
  display: block;
  position: relative;
  overflow: hidden;
}

#audio h2 span {
  opacity: 0;
  transition: 0.2s;
  transition-delay: 0.3s;
}

.active#audio h2 span {
  opacity: 1;
}

#audio h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translate(-110%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

#audio.active h2::before {
  transform: translate(0, 0);
}

.audio_onpa {
  width: 32%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#audio .bg_audio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.2em;
  width: 120%;
  height: 120vw;
  transition: 0.8s;
  border-radius: 50%;
}

#audio.active .bg_audio {
  width: 0;
  height: 0;
}

#audio button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  transition: opacity cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: 0.6s;
  opacity: 0;
}

#audio.active button {
  opacity: 1;
}

.bg_audio {
  background-image: linear-gradient(to left, #ff00ff, #0D4B8C, #00ffff);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg_audio > div:nth-of-type(1) {
  width: 50%;
  max-width: 600px;
}

.mike_1 > div {
  position: absolute;
  height: 500px;
  right: 8.8%;
  z-index: 1;
  bottom: 100px;
  transform: translateY(120px) scale(19deg);
  opacity: 0;
}

.active .mike_1 > div {
  animation: mike1 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.6s;
}

.mike_1 h3 {
  position: relative;
  color: #fff;
  width: 200px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 16%;
  bottom: 33%;
  z-index: 10;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  overflow: hidden;
}

.mike_1 h3 span {
  display: block;
  position: relative;
  overflow: hidden;
}

.mike_1 h3 span {
  opacity: 0;
  transition: 0.2s;
  transition-delay: 0.3s;
}

.active .mike_1 h3 span {
  opacity: 1;
}

.mike_1 h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translate(-110%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: 0.6s;
}

.active h3::before {
  transform: translate(0, 0);
}

.mike_2 h3 span {
  display: block;
  position: relative;
  overflow: hidden;
}

.mike_2 h3 span {
  opacity: 0;
  transition: 0.2s;
  transition-delay: 0.3s;
}

.active .mike_2 h3 span {
  opacity: 1;
}

.mike_2 h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translate(-110%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: 0.6s;
}

.active .mike_2 h3::before {
  transform: translate(0, 0);
}

.mike_2 > div {
  position: absolute;
  height: 400px;
  left: 8%;
  bottom: 164px;
  opacity: 0;
  z-index: 1;
}

.active .mike_2 > div {
  animation: mike2 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.6s;
}

.mike_2 h3 {
  color: #fff;
  width: 280px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10%;
  top: 34%;
  overflow: hidden;
  z-index: 10;
}

.au_subtitle {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 1.8em;
  text-align: left;
  z-index: 3;
  color: #fff;
}

/*
.au_subtitle::before {
    content:'';
	position:absolute;
	width:100%;
	height:108%;
	background:#fff;
	transform:translateX(0);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    transition-delay: 0.6s;
}
.active .au_subtitle::before {
    transform:translateX(100%);
}*/
.au_subtitle span {
  display: block;
  line-height: 0.9;
  font-size: 2.8em;
  font-weight: 100;
  font-family: "Cairo Play", sans-serif;
}

/*工場見学*/
#factory {
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
  background: #092E4E;
}

#factory h2 {
  position: absolute;
  color: #fff;
  font-size: 3.2em;
  top: 50%;
  left: 50%;
  z-index: 10;
  min-width: 400px;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 8px black;
}
@media screen and (max-width: 600px) {
  #factory h2 {
    min-width: auto;
    font-size: 9vw;
  }
}

#factory p {
  position: absolute;
  color: #fff;
  max-width: 320px;
  right: 8%;
  top: 64%;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  #factory p {
    right: 50%;
    transform: translateX(50%);
    min-width: 88%;
  }
}

#factory button {
  position: absolute;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  right: 16px;
  bottom: 16px;
  z-index: 10;
}

#factory button:hover {
  color: #092E4E;
}

#factory button:hover span {
  background-image: url("../img/arrow_wb.svg");
}

.bg_factory {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_factory {
  position: absolute;
  z-index: 5;
  display: block;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
  transform: scale(0.5);
  box-shadow: inset 15px 25px 25px rgba(0, 0, 0, 0.5), inset -15px -25px 25px rgba(0, 0, 0, 0.5);
}

.img_factory > span {
  box-shadow: inset 15px 25px 25px rgba(0, 0, 0, 0.5), inset -15px -25px 25px rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.circle_1_fac {
  background: #092E4E;
  position: absolute;
  z-index: 1;
  display: block;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 4;
}

.circle_2_fac {
  background: linear-gradient(to left, #092E4E, #30B6A8);
  position: absolute;
  display: block;
  width: 500px;
  height: 500px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 3;
}

.circle_3_fac {
  position: absolute;
  display: block;
  width: 700px;
  height: 700px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.circle_4_fac {
  position: absolute;
  display: block;
  width: 800px;
  height: 800px;
  transform: scale(0.5);
}

/*アニメーション*/
.active .img_factory {
  animation: scale 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.active .circle_1_fac {
  animation: scaleRotate 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.active .circle_2_fac {
  animation: scaleRotate2 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.active .circle_3_fac {
  animation: scaleRotate 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.active .circle_4_fac {
  animation: scale 0.7s cubic-bezier(0.33, 1, 0.68, 1) both;
}

/*アニメーション*/
.circle_4_fac > span {
  background: linear-gradient(45deg, #ED1E79, #2ABFB0);
  padding: 2px;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.circle_4_fac > span::before {
  position: absolute;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #092E4E;
  /* 内側の背景色 */
  margin: 2px;
  /* ボーダーの幅と一致させる */
}

.fv {
  display: flex;
  font-size: 10em;
  position: absolute;
  top: 40%;
  z-index: 5;
  white-space: nowrap;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000;
  width: 100%;
  opacity: 0.5;
  font-family: Arial;
}

.fv span {
  color: transparent;
  -webkit-text-stroke: 0.6px #FFF;
  text-stroke: 0.6px #FFF;
  text-shadow: none;
}

/*認証*/
#authentication {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18vh;
}

#authentication .icn_d {
  width: 100px;
  margin-right: 32px;
}

#authentication .icn_d img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

#authentication .icn_d img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

#authentication > div {
  display: flex;
}

#authentication > div:nth-of-type(1) p {
  display: flex;
  margin-right: 32px;
}

#authentication > div p {
  max-width: 200px;
  font-size: 1em;
  color: #434343;
}

/**/
.bus_text {
  background-color: #0D4B8C;
  color: #fff;
  padding: 6px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  font-weight: bold;
}

.bus_text > div {
  min-height: 174.41px;
}

.bus_img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-grow: 1;
  transition: 0.5s;
}

#audio_images article a:hover .bus_img {
  transform: scale(1.2);
}

.bus_img img {
  -o-object-fit: cover;
     object-fit: cover;
}

#business h3 {
  line-height: 3;
  margin-bottom: 24px;
}

#business .material-symbols-outlined {
  align-self: flex-end;
  font-size: 3em;
}

/*ページトップ*/
.page_top_btn {
  width: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 16px;
  right: 8px;
  z-index: 1000;
}

.page_top_btn div {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 0.8em;
  white-space: nowrap;
}

/*アニメーション*/
@keyframes scale {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes op1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes op04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes op0 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes op010 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  75% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
@keyframes op0102 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes mike1 {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mike2 {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale2 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleRotate {
  0% {
    transform: scale(0.8) rotate(0);
  }
  100% {
    transform: scale(1) rotate(60deg);
  }
}
@keyframes scaleRotate2 {
  0% {
    transform: scale(0.8) rotate(0);
  }
  100% {
    transform: scale(1) rotate(180deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(60deg);
  }
}
@keyframes red {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes infiniteRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes a_top {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slider_top {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*0605移動*/
/*ホバー*/
#business article a:hover .material-symbols-outlined {
  color: #2ABFB0;
}

.list_news li a:hover {
  background-color: #F5F5F5;
}

#recruit .h2_1 div {
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke;
}

#contact > div:nth-of-type(2) a:hover .c_white_circle {
  width: 120%;
  height: 120%;
  transition: width 0.2s, height 0.2s;
}

header.open .nav_contact a {
  color: transparent;
  /* テキストを見えなくする */
  position: relative;
}

.material-symbols-outlined.mail_header {
  color: #fff;
  font-weight: bold;
  background-color: #2ABFB0;
  padding: 10px;
  border-radius: 50%;
}

.copy {
  background: #2ABFB0;
  color: #fff;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 0.7em;
}

/*0507*/
/*ボタン*/
.btn_23 {
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 200px;
  height: 50px;
  font-weight: bold;
  border: 2px solid #333;
  color: #333;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-clip: border-box;
  background-color: #fff;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.btn_23::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
  border-radius: 0;
}

.btn_23:hover::before {
  transform: translateX(0);
}

.btn_23:hover {
  color: #fff;
}

.logo_box {
  letter-spacing: 0.05em;
  display: flex;
  font-size: 0.9em;
  align-items: center;
}

.logo_box > div {
  height: 0.9em;
  margin-bottom: 4px;
  margin-right: 8px;
}

.block,
.none {
  transition: opacity 0.2s ease, visibility 0.2s ease;
  opacity: 0;
  visibility: hidden;
}

.block.active,
.none.active {
  opacity: 1;
  visibility: visible;
}

.qr {
  width: 320px;
  height: 320px;
}

.fv {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
  display: flex;
}

.fv span {
  transform: translateY(120px);
  opacity: 0;
  transition: 0.6s;
}

.fv span:nth-of-type(1) {
  transition-delay: 0.2s;
}

.fv span:nth-of-type(2) {
  transition-delay: 0.22s;
}

.fv span:nth-of-type(3) {
  transition-delay: 0.24s;
}

.fv span:nth-of-type(4) {
  transition-delay: 0.26s;
}

.fv span:nth-of-type(5) {
  transition-delay: 0.28s;
}

.fv span:nth-of-type(6) {
  transition-delay: 0.3s;
}

.fv span:nth-of-type(7) {
  transition-delay: 0.32s;
}

.fv span:nth-of-type(8) {
  transition-delay: 0.34s;
}

.fv span:nth-of-type(9) {
  transition-delay: 0.36s;
}

.fv span:nth-of-type(10) {
  transition-delay: 0.38s;
}

.fv span:nth-of-type(11) {
  transition-delay: 0.4s;
}

.fv span:nth-of-type(12) {
  transition-delay: 0.42s;
}

.fv span:nth-of-type(13) {
  transition-delay: 0.44s;
}

.fv span:nth-of-type(14) {
  transition-delay: 0.46s;
}

.fv span:nth-of-type(15) {
  transition-delay: 0.48s;
}

.fv span:nth-of-type(16) {
  transition-delay: 0.5s;
}

.fv span:nth-of-type(17) {
  transition-delay: 0.52s;
}

.fv span:nth-of-type(18) {
  transition-delay: 0.54s;
}

.fv span:nth-of-type(19) {
  transition-delay: 0.56s;
}

.fv span:nth-of-type(20) {
  transition-delay: 0.58s;
}

.fv span:nth-of-type(21) {
  transition-delay: 0.6s;
}

.active .fv span {
  transform: translateY(0);
  opacity: 1;
}

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*レスポンシブ*/
@media screen and (max-width: 1480px) {
  footer {
    flex-direction: column;
  }
}
@media screen and (max-width: 1400px) {
  section {
    margin-bottom: 10vh;
  }
  .list_news_inner {
    flex-direction: column;
  }
  .icn_news,
  .icn_recruit,
  .icn_event {
    margin-left: 16px;
    margin-right: 0;
  }
  .business_inner {
    flex-direction: column;
  }
  .bus_img {
    height: auto;
  }
  .bus_img img {
    width: 100%;
  }
  #news {
    flex-direction: column;
  }
  .tab-switch {
    width: 100%;
  }
  .news_title {
    flex-direction: row;
    justify-content: space-between;
  }
  /*工場見学*/
  .img_factory {
    width: 120px;
    height: 120px;
  }
  .circle_2_fac {
    width: 300px;
    height: 300px;
  }
  .circle_1_fac {
    width: 250px;
    height: 250px;
  }
  .circle_3_fac {
    width: 400px;
    height: 400px;
  }
  .circle_4_fac {
    width: 600px;
    height: 600px;
  }
}
/*メインビュー*/
#top_hero {
  margin-bottom: 6vh;
}

#bannar {
  margin-bottom: 6vh;
}

@media screen and (max-width: 1400px) {
  .material-symbols-outlined.mail_header:hover {
    color: #0D4B8C;
    background-color: #fff;
  }
  .container {
    max-width: 85%;
    margin-left: 5%;
    margin-right: 10%;
  }
  .page_top_btn {
    width: 7.8vw;
    height: 7.8vw;
  }
  .page_top_btn div {
    font-size: 0.5em;
  }
  .au_subtitle {
    position: absolute;
    bottom: auto;
    top: 16px;
  }
  #contact {
    margin-bottom: 6vh;
  }
  .block p {
    font-size: 1vw;
  }
  .footer_inner {
    flex-direction: column;
  }
  #authentication > div {
    margin-bottom: 16px;
  }
  footer nav {
    margin-left: 0;
    margin-top: 56px;
  }
  #recruit ul li > div:nth-of-type(2) div {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 960px) {
  #authentication > div:nth-of-type(1) p {
    margin-right: 0;
  }
}
@media screen and (max-width: 1400px) {
  #business article {
    width: 31.5%;
  }
  .business_inner > div {
    justify-content: flex-start;
  }
  #business .business_inner > div article:nth-of-type(3n) {
    margin-right: 0;
  }
  #business article {
    margin-right: 2.7%;
  }
  #business .business_inner article:nth-of-type(1),
  #business .business_inner article:nth-of-type(2),
  #business .business_inner article:nth-of-type(3) {
    margin-bottom: 2.7%;
  }
  header .nav_down > li {
    margin-right: 1em;
  }
}
/*メディアクエリ　1200px*/
@media screen and (max-width: 1280px) {
  header .nav_down > li:last-of-type a:hover {
    color: #0D4B8C;
  }
  header li a {
    color: #fff;
  }
  header .nav_upper li a {
    margin-left: 1rem;
    color: #fff;
  }
  header .nav_down li a {
    padding-left: 5%;
    color: #fff;
  }
  header .nav_down li a:hover {
    color: #0D4B8C;
    background-color: #fff;
  }
  header li a {
    color: #fff;
  }
  /*header .nav_upper li a {
      margin-left: 5%;
      color: #fff;
  }*/
  header .nav_down li a {
    padding-left: 5%;
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
  }
  header .nav_down li a:hover {
    color: #0D4B8C;
    background-color: #fff;
  }
  .nav_contact {
    width: auto;
    display: block;
    height: auto;
    background: none;
    padding-left: 5%;
    margin-top: 4.8vh;
  }
  .nav_contact a {
    font-weight: normal;
  }
  /*header*/
  header {
    height: 60px;
  }
  .material-symbols-outlined.mail_header {
    color: #fff;
    font-weight: bold;
    background-color: #2ABFB0;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .nav_upper li a {
    font-size: 1.2rem;
    width: 100%;
  }
  #top_hero {
    height: calc(100vh - 60px);
  }
}
@media screen and (max-width: 1280px) and (max-width: 960px) {
  #top_hero {
    height: calc(100vh - 0px);
  }
}
@media screen and (max-width: 1280px) {
  .header_wrap {
    background: #0D4B8C;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: -100%;
    z-index: 10000;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    visibility: hidden;
    padding-top: 6rem;
    box-sizing: border-box;
    /*padding-top: 23vh;*/
    height: 100%;
    overflow: auto;
  }
  header h1 {
    position: relative;
    z-index: 10001;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    margin-left: 16px;
  }
  .open header h1 {
    margin-left: 5%;
  }
  header .nav_down li {
    font-size: 3.4vh;
    line-height: 2.6;
    margin-right: 0;
  }
  .open h1 {
    position: fixed;
    top: 0;
    font-size: 2.8em;
    margin-top: 1rem;
    transform: none;
    background-color: #0D4B8C;
  }
  .open .logo_box {
    color: #fff;
    font-size: 1.5rem;
  }
  header .nav_upper {
    width: 100%;
    margin-top: 3%;
    margin-left: 5%;
  }
  header .nav_down > li:last-of-type {
    position: static;
    transform: none;
    background-color: transparent;
    height: auto;
    width: auto;
    color: inherit;
    display: block;
  }
  header .nav_down > li a {
    transition: 0.2s ease-out;
  }
  header .menu {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    align-items: flex-start;
  }
  .open .hamburger {
    position: fixed;
  }
  .open .header_wrap {
    visibility: visible;
    top: 0;
  }
  .open .logo_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .open .logo_box > div {
    height: 0.9em;
    margin-bottom: 8px;
  }
  header .nav_down > li:last-of-type a:hover {
    color: #0D4B8C;
  }
  .menu ul li span.nav_d {
    display: none;
  }
  .hamburger {
    display: block;
    z-index: 10001;
  }
  header {
    display: block;
  }
  .menu > ul {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  #recruit ul li {
    width: 43%;
  }
  #recruit ul li:nth-of-type(3n) {
    margin-right: 3%;
  }
  #recruit ul li:nth-of-type(4) {
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 1200px) {
  #about {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .about_image {
    margin-right: 0;
    width: 100%;
  }
  .about_text {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
/*メディアクエリ　1200px*/
@media screen and (max-width: 960px) {
  #top_hero h2 {
    font-size: 6vw;
  }
  #authentication {
    flex-direction: column;
    margin-bottom: 6vh;
  }
  #top_hero h2 {
    top: 50%;
    transform: translateY(-70%);
  }
  #contact {
    flex-direction: column;
  }
  #contact > div:nth-of-type(1) {
    margin-bottom: 24px;
    margin-right: 0;
  }
  .tab-switch > label {
    width: 30%;
  }
  .recruit_img {
    width: 60%;
  }
  #factory {
    height: 100vh;
  }
  .footer_right {
    flex-direction: column;
  }
  #contact > div:nth-of-type(1) > div {
    display: flex;
    justify-content: center;
  }
  .au_subtitle {
    font-size: 80%;
  }
  .mike_1 > div {
    height: 400px;
    right: 0;
    bottom: 30px;
  }
  /*0605*/
}
@media screen and (max-width: 960px) and (max-height: 480px) {
  .mike_1 > div {
    height: 300px;
  }
}
@media screen and (max-width: 960px) {
  .mike_1 > div img {
    width: auto !important;
    height: 100%;
  }
  .mike_2 > div {
    height: 280px;
    left: 0%;
    top: 120px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 960px) and (max-height: 480px) {
  .mike_2 > div {
    height: 240px;
  }
}
@media screen and (max-width: 960px) {
  .mike_2 > div img {
    width: auto !important;
    height: 100%;
  }
  .mike_2 h3 {
    top: 22%;
  }
  .mike_1 h3 {
    bottom: 16%;
  }
}
@media screen and (max-width: 960px) and (max-height: 480px) {
  .mike_1 h3 {
    bottom: 23%;
  }
}
@media screen and (max-width: 960px) {
  .recruit_img {
    right: 16px;
    bottom: 16px;
  }
  #recruit > div:nth-of-type(3) {
    flex-direction: column;
  }
  .recruit_wrap > div:nth-of-type(1),
  .recruit_wrap > div:nth-of-type(2) {
    top: 0;
    transform: none;
  }
  #recruit ul {
    width: 100%;
    transform: none;
    justify-content: space-between;
    margin-bottom: 56px;
  }
  #recruit ul li {
    width: 48%;
    margin-right: 0;
  }
  .recruit_wrap {
    width: 100%;
  }
  #recruit .h2_1 {
    position: static;
  }
  .rec_subtitle {
    width: 100%;
  }
  #recruit ul li > div:nth-of-type(1) {
    font-size: 4vw;
  }
  #recruit ul li > div:nth-of-type(2) {
    padding: 4%;
  }
  #recruit ul li > div:nth-of-type(2) div {
    font-size: 3.6vw;
    line-height: 1.1;
  }
  #recruit ul li {
    width: 48%;
    margin-right: 0;
    aspect-ratio: 1/1;
  }
  #recruit ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  .block p {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 600px) {
  #business article {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4%;
  }
  #business .business_inner article:nth-of-type(1),
  #business .business_inner article:nth-of-type(2),
  #business .business_inner article:nth-of-type(3) {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 500px) {
  .open h1 {
    font-size: 2em;
  }
  .news_title {
    flex-direction: column;
  }
  #news button {
    margin-top: 0;
    margin-bottom: 32px;
    width: 200px;
  }
  .rec_subtitle p {
    font-size: 4vw;
  }
  .rec_subtitle p:nth-of-type(1) {
    font-size: 6vw;
  }
  .footer_left,
  .footer_r_l {
    min-width: 108px;
  }
  .mike_1 > div {
    height: 240px;
    top: 56%;
  }
  .mike_2 > div {
    height: 240px;
    top: 60px;
  }
  .mike_2 h3 {
    top: 30%;
    font-size: 0.8em;
  }
  .mike_1 h3 {
    bottom: 24%;
    font-size: 0.8em;
  }
  .logo_box {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*基礎デザイン*/
.h3_1 {
  background-image: linear-gradient(to right, #0f538f, #2ABFB0);
  color: #fff;
  border-radius: 0 9999px 9999px 0;
  width: 70%;
  min-height: 48px;
  padding: 4px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 1.7em;
  box-sizing: border-box;
}

.h2_2:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url(../img/icn_d2.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.h2_2 {
  display: flex;
  align-items: center;
  font-size: 1.7em;
  margin-bottom: 0.7em;
  line-height: 1.2;
}

.h3_2 {
  padding: 8px;
  padding-left: 0;
}

.h3_2 {
  color: #2ABFB0;
  border-bottom: 2px dotted #2ABFB0;
}

.h3_3 {
  height: 48px;
  display: flex;
  align-items: center;
  width: 300px;
}

.h3_3 span:nth-of-type(1) {
  width: 48px;
  height: 48px;
  background-color: #2ABFB0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h3_3 span:nth-of-type(2) {
  flex-grow: 1;
  background-color: #ecf9f8;
}

.h3_3 span:nth-of-type(2) {
  flex-grow: 1;
  background-color: #ecf9f8;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 12px;
  box-sizing: border-box;
}

.list_d li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url(../img/icn_d2.svg);
}

.list_d li {
  display: flex;
}

.list_d li {
  margin-bottom: 6px;
}

.img_col {
  display: flex;
  width: 60%;
  height: 200px;
}

.img_col > div {
  width: 50%;
}

.img_col > div:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 3px #ccc;
  padding: 32px;
  box-sizing: border-box;
}

.img_col > div:nth-of-type(1) img {
  -o-object-fit: cover;
     object-fit: cover;
}

.page_nav {
  background-color: #F2F2F2;
  padding: 4%;
  margin-bottom: 10vh;
}

.page_nav ul {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}

.page_nav ul {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}

.page_nav ul li {
  width: calc(25% - 1rem);
  height: 3rem;
  display: flex;
  align-items: center;
  position: relative;
}

@keyframes borderWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.page_nav ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: #666666;
  width: 100%;
}

.page_nav ul li:hover::before {
  animation: borderWidth 0.3s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.page_nav ul li:hover ::before {
  animation: borderWidth 0.3s cubic-bezier(0.33, 1, 0.68, 1) both;
}
.page_nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #010101;
}
.page_nav ul li a:hover {
  color: #2ABFB0;
}

.page_nav ul li:nth-of-type(4n) {
  margin-right: 0px;
}

.page_nav ul li::after {
  content: "";
  display: block;
  background-image: url("../img/arrow_green.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 960px) {
  .page_nav ul li a {
    font-size: 1em;
  }
  .page_nav ul li {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 480px) {
  .page_nav ul li {
    width: 100%;
  }
}
/*
  table {
      border-collapse: collapse;
      width: 100%;
      text-align: center;
    }

   th, td {
    border: 1px solid #fff;
    padding: 10px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
	min-width:88px;
}

   .tbl-r04 th {
      background-color: #2ABFB0;
      color: white;
    }
  .tbl-r04 tbody{
	display:flex;
    }
   .tbl-r04 tbody tr{
	display:flex;
	flex-direction:column;
    }
    /* 奇数行の背景色 */
/*
   .tbl-r04 tbody tr td:nth-child(odd) {
      background-color:#ecf9f8;
    }

    /* 偶数行の背景色 */
/*
   .tbl-r04 tbody tr td:nth-child(even) {
      background-color:#d1f1ee;
    }

  .tbl-r05 tbody{
	display:flex;
    }

  .tbl-r05 tbody{
	display:flex;
	  justify-content: center;
    }
  .tbl-r05 th {
      background-color:#636363;
      color:#fff;
    }
  .tbl-r05 td{
      background-color:#F0F0F0;
    }
    .tbl-r06 tbody tr {
		display:flex;
        flex-direction: column;
        padding-top: 8px;
        padding-bottom: 8px;
    }
.tbl-r06 tbody tr{
	flex-direction:row;
    }
.tbl-r06 th{
    width:20%;
}
.tbl-r06 td{
    width:80%;
}
.tbl-r06 th, .tbl-r06 td {
    justify-content: flex-start;
}
.tbl-r06 th{
    border-bottom:2px solid #010101;
}
.tbl-r06 td{
    border-bottom:2px solid #e8e8e8;
}
.tbl-r06 tbody{
	flex-direction: column;
}
*/
#history ul li {
  display: flex;
  padding-bottom: 28px;
  position: relative;
  height: 56px;
}

#history ul li div:nth-of-type(1) {
  display: flex;
  margin-right: 88px;
}

#history ul li::before {
  content: "";
  display: block;
  background-image: url("../img/navi_mark.svg");
  width: 24px;
  height: 24px;
  margin-right: 64px;
}

#history ul li::after {
  content: "";
  display: block;
  background-color: #2ABFB0;
  width: 2px;
  height: 100%;
  left: 11.5px;
  bottom: 99%;
  margin-right: 56px;
  position: absolute;
}

#history ul li:first-of-type::after {
  display: none;
}

/*
@media (max-width: 800px) {
	 tbody{
		flex-direction:column;
	}
	.tbl-r04 tbody td{
		background-color:#d1f1ee;
	}
	.tbl-r06 tbody tr {
    flex-direction: column;
}
	.tbl-r06 td {
    width: 100%;
}
th, td {
    border: 1px solid #fff;
    padding: 10px;
    height: 16px;
    display: flex;
}
.tbl-r06 th {
    border-bottom: none;
	padding-bottom:0;
}
*/
@media (max-width: 800px) {
  .img_col {
    width: 100%;
  }
  #history ul li div:nth-of-type(1) {
    flex-direction: column;
  }
  #history ul li div:nth-of-type(1) {
    margin-right: 0;
  }
  #history ul li > div > div:nth-of-type(1) {
    line-height: 2;
  }
  #history ul li::before {
    margin-right: 32px;
  }
  .h3_1 {
    width: 100%;
  }
  .h3_3 {
    width: 100%;
  }
  .page_nav {
    padding: 4% 10% 4% 6%;
  }
  .h3_2 {
    width: 100%;
  }
  #history ul li {
    height: auto;
  }
}
@media (max-width: 600px) {
  .img_col {
    flex-direction: column;
    height: auto;
  }
  .img_col > div {
    width: 100%;
  }
  .img_col > div:nth-of-type(1) {
    height: 280px;
  }
  #authentication > div p {
    max-width: 50%;
  }
}
/*採用トップ*/
button {
  cursor: pointer;
}

#r_message {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.message_image {
  width: 48.5%;
  height: 400px;
}

.message_image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.message_text {
  width: 48.5%;
  background-image: linear-gradient(to right, #0f538f, #2ABFB0);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2%;
  margin-bottom: 2%;
}
.message_text div {
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 1210px) {
  .message_text div {
    font-size: 1.8rem;
  }
}
#r_department .inner {
  background-image: linear-gradient(to right, #0f538f, #2ABFB0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 12%;
}

#r_department .inner div {
  display: flex;
  flex-flow: row wrap;
}

#r_department {
  margin-bottom: 10vh;
}
@media screen and (max-width: 1400px) {
  #r_department .inner {
    height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
#r_department .inner div .rd_col {
  aspect-ratio: 1/1;
  background: #fff;
  font-size: 1.4vw;
  box-sizing: border-box;
  font-weight: bold;
  border: 1px solid #0D4B8C;
  position: relative;
  width: 23.8%;
  margin-right: 1.6%;
  margin-bottom: 1.6%;
}
#r_department .inner div .rd_col a:hover {
  color: #fff;
}
#r_department .inner div .rd_col a:hover .more {
  background-image: url("../img/arrow_white.svg");
}
#r_department .inner div .rd_col:hover {
  background-color: #0D4B8C;
}
@media screen and (max-width: 1400px) {
  #r_department .inner div .rd_col {
    width: 22.5%;
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 960px) {
  #r_department .inner div .rd_col {
    width: 48%;
    font-size: 4vw;
  }
}
#r_department .inner div .rd_col:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1400px) {
  #r_department .inner div .rd_col:nth-of-type(4n) {
    margin-right: 1.6%;
  }
}
@media screen and (max-width: 1400px) {
  #r_department .inner div .rd_col:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1400px) {
  #r_department .inner div .rd_col:nth-of-type(9),
  #r_department .inner div .rd_col:nth-of-type(10) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 800px) {
  #r_department .inner div .rd_col:nth-of-type(9),
  #r_department .inner div .rd_col:nth-of-type(10) {
    margin-bottom: 1.6%;
  }
}
@media screen and (max-width: 1400px) {
  #r_department .inner div .rd_col:nth-of-type(11),
  #r_department .inner div .rd_col:nth-of-type(12) {
    margin-bottom: 0;
  }
}

.rd_col a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0D4B8C;
  flex-direction: column;
}

.rd_col .more {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 32px;
  height: 32px;
}

#r_term {
  margin-bottom: 10vh;
}
#r_term .r_term_col {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 600px) {
  #r_term .r_term_col {
    flex-flow: row wrap;
  }
}
#r_term .r_term_col button {
  width: 48.5%;
  height: 120px;
  margin-bottom: 3%;
  border: 1px solid #0D4B8C;
  background-color: #fff;
  color: #0D4B8C;
  font-size: 2.4em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #r_term .r_term_col button {
    font-size: 1.8em;
    width: 100%;
  }
}
#r_term .r_term_col:nth-of-type(1) button:hover {
  background-color: #0D4B8C;
  color: #fff;
}

.nav_button div {
  height: 88%;
  aspect-ratio: 1/1;
  transform: scale(0.9);
}
.nav_button:hover div {
  transform: scale(1);
}

#r_news button {
  margin-left: auto;
  margin-top: 2em;
}

.r_inquiry_btn {
  width: 320px;
  background-color: #0D4B8C;
  color: #fff;
  font-size: 1.6em;
  border: none;
  padding: 6px;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  margin-bottom: 10vh;
}

@media screen and (max-width: 480px) {
  .r_inquiry_btn {
    font-size: 1.4em;
  }
}
.rec_tab {
  position: absolute;
  z-index: 1000;
  right: 0;
  bottom: 3%;
}

.rec_tab_n {
  background-color: #fff;
  width: 5%;
  height: 100px;
  width: 160px;
  border-radius: 9999px 0 0 9999px;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 0.4em;
  transform: translateX(28px);
}
.rec_tab_n a {
  color: #0D4B8C;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  transform: translateX(24px);
}
.rec_tab_n:hover {
  transform: translateX(0);
}

.rec_tab_c {
  background-color: #0D4B8C;
  width: 5%;
  height: 100px;
  width: 160px;
  border-radius: 9999px 0 0 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.4em;
  transform: translateX(28px);
}
.rec_tab_c:hover {
  transform: translateX(0);
}
.rec_tab_c a {
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  transform: translateX(24px);
}

#top_recruit h2 {
  bottom: 1em;
  top: auto;
  left: 1em;
  text-shadow: none;
  position: absolute;
}

/*お知らせページネーション・ぱんくず*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  margin-top: 40px;
  margin-bottom: 10vh;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
  background-color: #f5f5f5;
  margin-right: 0.7em;
  color: #4F4F4F;
}

.wp-pagenavi span,
.wp-pagenavi a {
  padding: 10px;
  border-radius: 50%;
}

.next {
  width: auto;
  background-color: transparent;
}

.current {
  background-color: #4F4F4F;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
  margin-right: 0.7em;
}

/*お知らせ詳細ページ*/
.img_full {
  width: 100%;
  height: 400px;
}
.img_full img {
  -o-object-fit: cover;
     object-fit: cover;
}

.img_right {
  display: flex;
  overflow: hidden;
  height: 400px;
  gap: 5.6%;
}
.img_right div {
  width: 50%;
  overflow: hidden;
}
.img_right div img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img_right p {
  width: 50%;
  flex-grow: 1;
}

.img_left {
  display: flex;
  overflow: hidden;
  height: 400px;
  gap: 5.6%;
}
.img_left div {
  width: 50%;
  overflow: hidden;
}
.img_left div img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img_left p {
  width: 50%;
  flex-grow: 1;
}

.img_two {
  display: flex;
  height: 400px;
  overflow: hidden;
  gap: 3%;
}
.img_two div {
  width: 50%;
  overflow: hidden;
}
.img_two div img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.h2_3 {
  width: 100%;
  color: #2ABFB0;
  font-size: 1.4em;
  border-top: 2px dotted #239E94;
  margin-bottom: 1em;
}

#news_detail {
  width: 100%;
  float: left;
}

#news_detail .date {
  color: #2ABFB0;
  font-weight: bold;
  line-height: 1.2;
}

/*ぱんくずリスト*/
.breadcrumb {
  margin-left: 32px;
}

@media screen and (max-width: 1400px) {
  .breadcrumb {
    margin-left: 5%;
  }
}
.breadcrumb ul {
  display: flex;
  margin-bottom: 1.7em;
}

.breadcrumb ul li {
  padding-right: 32px;
  position: relative;
  font-size: 0.9rem;
}

.breadcrumb ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: solid 1px #585757;
  border-right: solid 1px #585757;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-62%);
}

.breadcrumb ul li:last-of-type::before {
  display: none;
}

.breadcrumb ul li a {
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .audio_cats .breadcrumb ul,
  .audio .breadcrumb ul {
    flex-direction: column;
  }
  .audio_cats .breadcrumb ul li::before,
  .audio .breadcrumb ul li::before {
    right: auto;
    left: 0;
  }
  .audio_cats .breadcrumb ul li:last-of-type::before,
  .audio .breadcrumb ul li:last-of-type::before {
    display: block;
  }
  .audio_cats .breadcrumb ul li:first-child::before,
  .audio .breadcrumb ul li:first-child::before {
    display: none;
  }
  .audio_cats .breadcrumb ul li:not(:first-of-type),
  .audio .breadcrumb ul li:not(:first-of-type) {
    padding-left: 1.5em;
  }
}
/*技術情報一覧*/
#business_archive .inner {
  display: flex;
  background-color: #F2F2F2;
  padding: 3.2%;
  flex-flow: row wrap;
  justify-content: center;
}

#business_archive section {
  margin-bottom: 1.7em;
}

#business_detail #navi ul li {
  width: 120px;
  height: 120px;
  margin-right: 20px;
}

#business_detail #navi ul li:last-of-type {
  margin-right: 0;
}

#business_detail #navi ul li a {
  width: 100%;
  height: 100%;
}

#business_detail #navi ul {
  display: flex;
  justify-content: flex-end;
}

#business_detail #navi ul li img {
  -o-object-fit: cover;
     object-fit: cover;
}

#business_detail h2 {
  line-height: 1.7;
  margin-bottom: 1.4%;
}

#business_detail h2 {
  font-size: 2em;
  border-bottom: 3px dotted #ccc;
}

#business_detail h3 {
  margin-bottom: 1rem;
}

#business_detail .icn {
  margin-left: 0;
}

#business_detail .inner {
  display: flex;
  margin-bottom: 1.4%;
  min-height: 400px;
  gap: 3.6%;
}

#business_detail .inner figure {
  width: 50%;
  margin: 0;
}

#business_detail .inner div {
  width: 50%;
}

.pdf_btn {
  background-color: #3B3B3B;
  color: #fff;
  display: flex;
  padding: 12px;
  justify-content: space-between;
  font-weight: bold;
  width: 320px;
  align-items: center;
}

/*
.tbl-r07{
	text-align:left;
	table{
		height:100%;
		text-align:left;
		border-spacing:0;
	tbody{
		display:block;
		height:100%;
		tr{
			display:flex;
			flex-direction:column;
			height:100%;
			justify-content: space-between;
		}
			th,td {
    height: auto;
    display: block;
	border:none;
	padding:0;
		}
		}	
}
}
/*技術情報詳細　ギャラリー*/
#navi .swiper-wrapper {
  display: flex;
}

#navi .swiper-wrapper .swiper-slide a > div {
  width: 110px;
  height: 110px;
  margin-right: 1em;
  border: 1px solid #ccc;
}

#navi .swiper-wrapper .swiper-slide p {
  line-height: 2;
}

#navi .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
}

#main {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#main img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

/*
.tbl_r08{
	margin:0;
	table{
		text-align:left;
	}
	tr{
		display:flex;
		th{
			width:40%;
			display:block;
		}
		td{
			display:block;
		}
	}

}*/
.concept_exception {
  background-color: #F2F2F2;
  padding: 5%;
}

/*オーディオ機器*/
#business_description small {
  color: #2ABFB0;
  font-size: 0.5em;
  font-weight: bold;
}

#audio_images {
  margin-bottom: 10vh;
  background-color: #000;
  padding-top: 8%;
  padding-bottom: 8%;
}

#audio_table {
  margin-bottom: 10vh;
}

#audio_images article {
  width: 23.5%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  margin-right: 2%;
  margin-bottom: 2%;
  overflow: hidden;
}

#audio_images article a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

#audio_images article a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 76%, #3B3B3B);
  z-index: 1000;
}

#audio_images .bus_text {
  background: transparent;
  text-align: left;
  padding: 8px;
  position: absolute;
  bottom: 0;
  z-index: 1001;
}

#audio_images article:nth-of-type(4n) {
  margin-right: 0;
}

#audio_images .inner {
  display: flex;
  flex-flow: row wrap;
}

#audio_detail_images #main {
  width: 44%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 960px) {
  #audio_detail_images #main {
    width: 100%;
    height: 400px;
  }
}

#audio_detail_images h2 {
  font-size: 2em;
  border-bottom: 3px dotted #ccc;
  line-height: 1.7;
  margin-bottom: 1.4%;
}

#audio_detail_images {
  margin-bottom: 10vh;
}

#audio_detail_images .icn {
  margin-left: 0;
}

#audio_detail_images #navi ul li a {
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
}

#audio_detail_images #navi ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: auto;
}

#audio_detail_images #navi ul li div {
  width: 100%;
  height: 100%;
}

#audio_detail_images .inner {
  display: flex;
  gap: 3%;
}

#navi ul li p {
  line-height: 2;
}

#audio_detail_images .inner {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 960px) {
  #audio_detail_images .inner {
    flex-direction: column;
  }
}

/*swiper*/
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
}

.swiper-button-prev {
  transform: translate(-56px, -28px);
}

.swiper-button-next {
  transform: translate(56px, -28px);
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 32px;
  width: 32px;
  margin: auto;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url("../img/arrow_fill_left.svg");
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/arrow_fill.svg);
}

/* 画像サイズ調整 */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
  left: 0;
  width: 100%;
}

/**/
.pdf_g_btn {
  background-color: #2ABFB0;
  color: #fff;
  display: flex;
  padding: 4px;
  justify-content: space-between;
  font-weight: bold;
  width: 100px;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
}

#audio_detail_table {
  margin-bottom: 10vh;
}

#audio_detail_table .tbl-r05 {
  margin-bottom: 8vh;
}

.swiper-pagination-bullet-active {
  background: #2ABFB0;
}

/*事業内容*/
#business_description .listLinks_1 .more {
  background-image: url("../img/arrow_fill_green.svg");
}

.listLinks_1 {
  width: 50%;
  flex-grow: 1;
}
.listLinks_1 li {
  border-bottom: 1px solid #d0d0d0;
}

.listLinks_1 a {
  min-height: 100px;
  opacity: 1;
  transition: opacity 0.3s ease;
  align-items: center;
  display: flex;
  text-decoration: none;
}
.listLinks_1 a .bus_title {
  display: flex;
  align-items: center;
  font-size: 1.4em;
  font-weight: bold;
}
.listLinks_1 a .more {
  position: static;
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 1em;
}

.listLinks_1 a:hover {
  background-color: #F5F5F5;
  color: #2ABFB0;
}

.listLinks_2 .more {
  background-image: url("../img/arrow_fill_green.svg");
}

.listLinks_2 {
  width: 50%;
  flex-grow: 1;
}
.listLinks_2 li {
  border-bottom: 1px solid #d0d0d0;
}

.listLinks_2 a:hover {
  background-color: #F5F5F5;
  color: #2ABFB0;
}

.listLinks_2 a {
  min-height: 100px;
  opacity: 1;
  transition: opacity 0.3s ease;
  align-items: center;
  display: flex;
  text-decoration: none;
}
.listLinks_2 a .bus_title {
  display: flex;
  align-items: center;
  font-size: 1.4em;
  font-weight: bold;
}
.listLinks_2 a .more {
  position: static;
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 1em;
}

.gallery {
  position: relative;
  height: 500px;
  width: 500px;
  overflow: hidden;
  margin-right: 6em;
}

.gallery img {
  position: absolute;
  height: 150%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery_inner {
  display: flex;
  margin-bottom: 7.2em;
}

.list_Links {
  margin-left: 6em;
  flex-grow: 1;
}

.gallery-right {
  margin-left: 6em;
  margin-right: 0;
}

.h2_4 {
  font-size: 1.5em;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  margin-bottom: 1em;
}

/*aタグ　text-decoration:none*/
.nav_contact a {
  text-decoration: none;
}

.pdf_btn {
  text-decoration: none;
}

.bus_text h4 {
  text-decoration: none;
}

#business_archive article a {
  text-decoration: none;
}

.list_news li a {
  text-decoration: none;
}

.rd_col a {
  text-decoration: none;
}

footer a {
  text-decoration: none;
}

h.rd_col a .more {
  text-decoration: none;
  background-image: url("../img/arrow_blue.svg");
}

.rec_tab_n a {
  text-decoration: none;
}

.rec_tab_c a {
  text-decoration: none;
}

#r_department .rd_col::hover a .more {
  background-image: url("../img/arrow_white.svg");
}

#business article a {
  text-decoration: none;
}

.business_inner h3 a {
  text-decoration: none;
  color: #010101;
}

/**/
.factoryview .swiper {
  clip-path: inset(0 100% 0 100%);
  width: 100%;
  /*height: 72vh;*/
  transform-origin: center;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.factoryview .active .swiper {
  clip-path: inset(0 0 0 0);
}

.factoryview video {
  clip-path: inset(0 100% 0 100%);
  width: 100%;
  height: 72vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.factoryview .active video {
  clip-path: inset(0 0 0 0);
}

/*社長あいさつ*/
#head {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#head > div {
  width: 48%;
}
@media screen and (max-width: 1000px) {
  #head > div {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #head {
    flex-direction: column;
  }
}

.seijitsu {
  width: 20%;
}
.seijitsu img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.head_comment {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .head_comment {
    width: 100%;
  }
}

.comment {
  width: 80%;
  margin: 0 auto;
  align-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .comment {
    margin: 0;
  }
}
.comment strong {
  font-size: 1.6em;
  margin-bottom: 1em;
  display: block;
}

.h3_5 {
  font-size: 1.6em;
  margin-bottom: 1em;
}

/*たからグループ*/
.group_image {
  display: flex;
  gap: 20px;
}

.group_image > div {
  width: 50%;
}

.group_col p {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
  flex-grow: 1;
}

.group_col p::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 4px;
  background-color: #2ABFB0;
  left: 0;
}

.group_col {
  padding-bottom: 6vh;
  display: flex;
  gap: 2%;
  border-bottom: #ccc;
  position: relative;
}

.group_col::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%) rotate(45deg);
  background-color: #ccc;
  width: 8px;
  height: 8px;
}

#takara_group .group_col:last-of-type::before {
  content: none;
}

.group_col > iframe {
  width: 50%;
  height: 400px;
}

.group_col > div {
  width: 100%;
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 800px) {
  .group_col > div {
    flex-direction: column;
  }
}

.group_col > div > div {
  width: 50%;
}

.group_col > div > div > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*部署紹介*/
.department_col {
  padding-bottom: 2em;
  margin-bottom: 2em;
  position: relative;
}
.department_col::after {
  content: "";
  position: absolute;
  height: 1px;
  width: calc(100% + 9vw);
  left: 0;
  background-color: #ccc;
  bottom: 0;
}

.department_col img {
  -o-object-fit: cover;
     object-fit: cover;
}

.department_col > div {
  display: flex;
  gap: 32px;
}

.department_col > div > div {
  width: 50%;
  height: 400px;
}

.department_col > div > p {
  width: 100%;
  /*@media screen and (max-width: 800px) {
      width: 100%;
  }*/
}

@media screen and (max-width: 800px) {
  .department_col > div {
    flex-direction: column;
  }
  .department_col > div > div {
    width: 100%;
  }
  .group_image > div {
    width: 100%;
  }
}
.head_img img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*工場見学*/
.factoryview header a {
  color: #fff;
}

.factoryview .breadcrumb {
  color: #fff;
}
.factoryview .breadcrumb a {
  color: #fff;
}
.factoryview .breadcrumb ul li::before {
  border-color: #fff;
}

.factoryview h2 {
  color: #fff;
}

.factoryview #flow h2,
.factoryview #mike h2,
.factoryview #amusement h2,
.factoryview #lack h2 {
  color: #fff;
  opacity: 0;
  transform: translateX(-32px);
  transition: 0.8s;
  margin-bottom: 20px;
}

.factoryview #flow.active h2,
.factoryview #mike.active h2,
.factoryview #amusement.active h2,
.factoryview #lack.active h2 {
  opacity: 1;
  transform: translateX(0);
}

.h2_5 small {
  color: #2ABFB0;
  font-weight: bold;
}

.factory_image {
  position: absolute;
}

.factory_image_1 {
  width: 320px;
  height: 320px;
  right: 192px;
  top: -12px;
  opacity: 0.2;
}

.factory_image_1 {
  animation: infiniteRotate 7s linear infinite both;
}

.factory_image_2 {
  width: 320px;
  height: 92px;
  right: 48px;
  top: 292px;
  opacity: 0.2;
}

.factory_image_2 {
  animation: infiniteRotate 5s linear infinite both;
}

.factory_image_3 {
  width: 240px;
  height: 140px;
  right: 290px;
  top: 320px;
  opacity: 0.2;
}

.factory_image_3 {
  animation: infiniteRotate 7s reverse linear infinite both;
}

.factory_image_4 {
  left: 280px;
  width: 200px;
  height: 200px;
  bottom: 0;
  opacity: 0.2;
}

.factory_image_4 {
  animation: infiniteRotate 5s linear infinite both;
}

.factory_image_5 {
  left: 490px;
  width: 100px;
  height: 100px;
  bottom: 132px;
  opacity: 0.2;
}

.factory_image_5 {
  animation: infiniteRotate 7s reverse linear infinite both;
}

.factory_image_6 {
  right: 50%;
  transform: translateX(50%);
  height: 300vh;
  top: 50vh;
  /*@media screen and (max-width: 1280px) {
      height: 280vh;
  }*/
}
@media screen and (max-width: 680px) {
  .factory_image_6 {
    height: 250vh;
  }
}

/*
.factory_images::before{
	content:'';
	position:absolute;
	height:100%;
	width:100px;
	background-color:#A5A5A5;
	right:50%;
	transform:translateX(50%);
	top:8%;
	z-index:0;
}*/
#factory_hero {
  margin-bottom: 0;
  height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.h2_5 {
  color: #fff;
  font-weight: bold;
}

#factory_hero h2 {
  font-size: 3.6em;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  #factory_hero h2 {
    font-size: 12vw;
  }
}
#factory_hero h2 span {
  display: block;
}

.factoryview .container {
  position: relative;
}

/**/
#visualizer {
  display: block;
  margin: 0 auto;
}

#canvas {
  display: block;
}

input {
  margin-top: 20px;
}

/*20250616*/
#audio_detail_images #navi {
  position: relative;
  width: 100%;
}
#audio_detail_images #navi .wrapper {
  display: flex;
  flex-flow: row wrap;
}
#audio_detail_images #navi .wrapper .slide {
  width: calc((100% - 80px) / 5);
  margin-right: 20px;
}
@media screen and (max-width: 960px) {
  #audio_detail_images #navi .wrapper .slide {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 600px) {
  #audio_detail_images #navi .wrapper .slide {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 500px) {
  #audio_detail_images #navi .wrapper .slide {
    width: 100%;
    margin-right: 0;
  }
}
#audio_detail_images #navi .wrapper .slide a {
  display: block;
}
#audio_detail_images #navi .wrapper .slide a div {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ccc;
}
#audio_detail_images #navi .wrapper .slide:nth-of-type(5n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  #audio_detail_images #navi .wrapper .slide:nth-of-type(5n) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  #audio_detail_images #navi .wrapper .slide:nth-of-type(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  #audio_detail_images #navi .wrapper .slide:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  #audio_detail_images #navi .wrapper .slide:nth-of-type(3n) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  #audio_detail_images #navi .wrapper .slide:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  #audio_detail_images #navi .wrapper .slide:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  #audio_detail_images #main {
    margin-bottom: 1.7em;
  }
}

#top_recruit {
  margin-bottom: 11vh;
}

#top_recruit {
  width: 100%;
  height: calc(100vh - 112px);
  overflow: hidden;
  position: relative;
}
#top_recruit .top_hero {
  background-image: url("../img/recruit_top.png");
  background-position: center center;
  background-repeat: no-repeat;
}
#top_recruit h2 {
  position: absolute;
  left: 16px;
  top: auto;
  bottom: 16px;
  font-size: 5.2em;
  color: #fff;
  text-shadow: 2px 2px 5px #010101;
}

/*20250616*/
.factoryview {
  background-color: #2D2D2D;
}

.factoryview footer ul li a {
  color: #fff;
}

.factoryview footer address {
  color: #fff;
}

.factoryview .bg_factory {
  position: absolute;
  height: 80vh;
  z-index: -1;
  top: -2%;
  left: 0;
  opacity: 0.15;
}

.factoryview .circle_1_fac {
  background: #2D2D2D;
}

.factoryview .circle_4_fac > span::before {
  background: #2D2D2D;
}

#flow {
  margin-top: 4%;
  /*height:100vh;*/
}

/*20250617*/
.page_top_btn {
  text-decoration: none;
}

.factoryview footer ul li a::after {
  background-color: #fff;
}

footer a {
  position: relative;
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

footer .footer_left > div > a {
  display: inline-block;
}

footer .footer_left > div > a::after {
  background-color: #2ABFB0;
}

footer .footer_right > div > div > a::after {
  background-color: #2ABFB0;
}

footer .footer_right > div > div > a {
  display: inline-block;
}

.factoryview .page_top_btn {
  color: #fff;
}

#contact a {
  text-decoration: none;
}

.h3_2 {
  margin-bottom: 1.7em;
}

#head p,
#policy p {
  margin-bottom: 1.7em;
}

.r_inquiry_btn {
  border: 2px solid #0D4B8C;
  box-sizing: border-box;
  padding: 6px;
}
.r_inquiry_btn:hover {
  color: #0D4B8C;
  background-color: #fff;
  border: 2px solid #0D4B8C;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1280px) {
  .factoryview .swiper {
    height: 50vh;
  }
  .factoryview video {
    height: 50vh;
  }
}
@media screen and (max-width: 960px) {
  .factoryview .swiper {
    height: 70vh;
  }
  .factoryview video {
    height: 30vh;
  }
  /*.factory_image_6 {
      height: 200vh;
  }*/
}
@media screen and (max-width: 480px) {
  .factoryview .swiper {
    height: 80vh;
  }
  /*.factoryview  video {
      height: 30vh;
  }*/
}
@media screen and (max-width: 500px) {
  .logo_box > div {
    margin-bottom: 4px;
  }
}
.message_text {
  padding: 3% 4%;
  box-sizing: border-box;
}

@media screen and (max-width: 960px) {
  #r_message {
    flex-direction: column;
  }
  .message_image {
    width: 100%;
    height: 400px;
  }
  .message_text {
    width: 100%;
  }
}
#top_audio {
  width: 100%;
  margin-bottom: 0;
  background-color: #000;
  position: relative;
  height: 100vh;
}
#top_audio .top_hero {
  position: relative;
}
.catalog {
  width: 30%;
}

.catalog_txt {
  width: 42%;
}

#audio_catalog .inner {
  max-width: 72%;
  margin: 0 auto;
}

#audio_catalog .inner .catalog_col {
  display: flex;
  align-items: center;
  gap: 8%;
  margin-bottom: 32px;
}

.h3_4 {
  font-size: 1.4em;
  border-bottom: 1px solid #6F6F6F;
  line-height: 1.8;
}

.catalog_txt small {
  font-size: 1em;
  color: #8C8C8C;
}

.catalog_txt .pdf_btn {
  margin-top: 24px;
}

.pdf_icn {
  height: 100%;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf_btn:hover {
  opacity: 0.8;
}

.audio header {
  position: absolute;
  color: #fff;
  z-index: 1000;
}
.audio header a {
  color: #fff;
}

.audio .breadcrumb {
  position: absolute;
  top: 112px;
  color: #fff;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .audio .breadcrumb {
    top: 50px;
  }
}
.audio .breadcrumb ul li::before {
  border-color: #fff;
}
.audio .breadcrumb ul li a {
  color: #fff;
}

@keyframes fuwafuwa01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}
#r_department .inner .department_image {
  position: absolute;
  z-index: 0;
  width: 660px;
  right: 2%;
  bottom: -10%;
  opacity: 0.7;
}

#r_department .inner div:nth-of-type(1) {
  position: relative;
  z-index: 1000;
}

.hamburger span {
  color: #fff;
}

#top_audio h2 {
  font-size: 5.2em;
  color: #fff;
  text-shadow: 4px 4px 10px #010101;
  margin-left: 16px;
  position: absolute;
  z-index: 300;
  bottom: 0;
}

/*20250619*/
.tbl_rec table {
  width: 100%;
}

.tbl_rec table tr th {
  background-color: #2ABFB0;
  border: 1px solid #fff;
  color: #fff;
  width: 33.333%;
  font-size: 1.2em;
}

.tbl_rec table tr td {
  border: 1px solid #6F6F6F;
  width: 66.66666%;
}

.tbl_rec table tr:nth-of-type(odd) td {
  background-color: #F2F2F2;
}

.tbl_rec table tr:first-of-type th {
  border-top: 1px solid #2ABFB0;
}

.tbl_rec table tr:last-of-type th {
  border-bottom: 1px solid #2ABFB0;
}

.footer_r_l ul li:nth-of-type(1) {
  font-size: 1em;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 2;
}

.factoryview .footer_r_l ul li:nth-of-type(1) {
  color: #fff;
}

.footer_r_l ul li:nth-of-type(5) {
  font-size: 1em;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 2;
}

.factoryview .footer_r_l ul li:nth-of-type(6) {
  color: #fff;
}

/**/
.full_iframe {
  width: 100%;
  height: 400px;
}

address p {
  margin-bottom: 0;
}

.audio .hamburger span {
  background: #fff;
}

.copy {
  margin-bottom: 0;
}

/*aタグスタイル*/
header a {
  cursor: pointer;
  color: #010101;
}

.list_news a {
  cursor: pointer;
  color: #010101;
}

footer a {
  cursor: pointer;
  color: #010101;
}

.breadcrumb a {
  cursor: pointer;
  color: #010101;
}

.nav-links a {
  cursor: pointer;
  color: #010101;
}

.page_top_btn {
  cursor: pointer;
  color: #010101;
}

#navi .slide a {
  cursor: pointer;
  color: #010101;
}

#business_description a {
  cursor: pointer;
  color: #010101;
}

.list_news p {
  margin-bottom: 0;
}

/* olのスタイル */
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  /* デフォルトの数字を非表示に */
  counter-reset: li;
  margin-bottom: 1.7em;
}

/* ol内のliのスタイル */
ol li {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 60px;
  display: flex;
  align-items: center;
  background: #ecf9f8;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  font-weight: bold;
}

/* 2つ目以降のliにmargin-topを指定 */
ol li:not(:last-child) {
  margin-bottom: 1.7em;
}

/* 数字のスタイル */
ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 100%;
  background-color: #2ABFB0;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  left: 0;
}

/*20250620*/
.kanren li {
  list-style: none;
  width: calc((100% - 100px) / 5);
  aspect-ratio: 1/1;
  position: relative;
  border: 1px solid #DBDBDB;
}

.kanren li div:nth-of-type(3) {
  padding: 20px;
}

.kanren li div dl dd {
  margin-bottom: 0.4em;
}

.txt_kanren {
  position: absolute;
  bottom: 0;
  right: 0;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
  /*width: 172px;
  padding-bottom: 3%;
  padding-right: 3%;
  height: 4em;*/
}

.pages {
  display: none;
}

#news_list {
  margin-bottom: 4vh;
}

.nextpostslink {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
  background-color: #f5f5f5;
  margin-right: 0.7em;
  color: #4F4F4F;
}

.previouspostslink {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
  background-color: #f5f5f5;
  margin-right: 0.7em;
  color: #4F4F4F;
}

.wp-block-list {
  margin-bottom: 1.7em;
}

.tbl_rec table tr td {
  padding: 2%;
}

/*form*/
.wpcf7-form-control-wrap .wpcf7-text {
  border: 2px solid #2ABFB0;
  background-color: #CEF3EF;
  width: 100%;
  min-height: 2.5em;
  border-radius: 8px;
}

.wpcf7-textarea {
  border: 2px solid #2ABFB0;
  background-color: #CEF3EF;
  width: 100%;
  border-radius: 8px;
}

.wpcf7-submit {
  width: 320px;
  background-color: #0D4B8C;
  color: #fff;
  font-size: 1.6em;
  border: none;
  padding: 6px;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  margin-bottom: 10vh;
  border: 2px solid #0D4B8C;
  cursor: pointer;
}
.wpcf7-submit:hover {
  color: #0D4B8C;
  background-color: #fff;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
}

/**/
#business_description a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

#business_description a div:nth-of-type(2) {
  padding-top: 2%;
  padding-bottom: 2%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#business_description a div:nth-of-type(2) .more {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  background-repeat: no-repeat;
  background-position: right;
}

#business_description ul {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 3.2em;
}
@media screen and (max-width: 1280px) {
  #business_description ul {
    gap: 3%;
  }
}

#business_description li {
  width: calc((100% - 32px) / 3);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin-right: 16px;
  flex-shrink: 0;
  margin-bottom: 2%;
}
@media screen and (max-width: 1280px) {
  #business_description li {
    width: 48.5%;
    margin-right: 0;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 800px) {
  #business_description li {
    width: 100%;
  }
}

.tbl-outline table {
  margin-bottom: 6vh;
}

.tbl-history {
  margin-bottom: 6vh;
}

/*0623*/
#business_description ul li a div {
  overflow: hidden;
}

#business_description ul li a img {
  transform: scale(1);
  transition: 0.3s;
}

#business_description ul li a:hover img {
  transform: scale(1.2);
}

#business_description ul li a:hover .more {
  background-image: url("../img/arrow_green_circle.svg");
}

/**/
.kanren {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.kanren li div dl {
  margin-left: 0;
  text-align: left;
}

.kanren li div dl dt {
  margin-left: 0;
  font-weight: bold;
}

.kanren li div dl dd {
  margin-left: 0;
  font-size: 0.9em;
}

/*モーダル*/
div#glayLayer {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: black;
  filter: alpha(opacity=70);
  opacity: 0.8;
}

#overLayer {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 960px) {
  #overLayer {
    height: 50%;
  }
}
@media screen and (max-width: 748px) {
  #overLayer {
    height: 40%;
  }
}
@media screen and (max-width: 600px) {
  #overLayer {
    height: auto;
    width: 72%;
  }
}

#overLayer div {
  width: 100%;
  height: 100%;
}

#glayLayer > span {
  width: 64px;
  height: 64px;
  position: absolute;
  right: 50%;
  top: 10vh;
  transform: translateX(450px);
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  #glayLayer > span {
    transform: translateX(340px);
    top: 20vh;
  }
}
@media screen and (max-width: 748px) {
  #glayLayer > span {
    transform: translateX(280px);
    top: 24vh;
  }
}
@media screen and (max-width: 600px) {
  #glayLayer > span {
    transform: translateX(50%);
  }
}

#glayLayer > span span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

#glayLayer span span::before,
#glayLayer span span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  /* 棒の幅（太さ） */
  height: 60px;
  /* 棒の高さ */
  background: #fff;
}

#glayLayer span span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#glayLayer span span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tbl_rec table {
  border: 1px solid #000;
  border-collapse: collapse;
}

.tbl_rec table tr {
  border: 1px solid #000;
}

.tbl_rec table tr th {
  display: table-cell;
  border: 1px solid #fff;
}

.tbl_rec table tr td {
  display: table-cell;
}

#business_archive .inner {
  flex-flow: row wrap;
}

@media screen and (max-width: 960px) {
  #business_archive article {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 500px) {
  #business_archive article {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  #business_archive article:not(:last-child) {
    margin-bottom: 4%;
  }
}

@media screen and (max-width: 1280px) {
  #business_detail .inner {
    flex-direction: column;
  }
  #business_detail .inner div {
    width: 100%;
    margin-bottom: 3%;
  }
  #main {
    height: 400px;
    width: 100%;
  }
  #business_detail #navi ul {
    justify-content: flex-start;
    margin-bottom: 3%;
  }
  #business_detail #main {
    margin-bottom: 0;
  }
  .kanren li {
    width: calc((100% - 80px) / 4);
  }
  .kanren li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.txt_kanren > div:nth-of-type(1) {
  padding-bottom: 4px;
  text-align: right;
}

.txt_kanren > div:nth-of-type(2) {
  text-align: justify;
}

.img_kanren {
  width: 100%;
  height: 100%;
}
.img_kanren img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*0624*/
.list_green li {
  padding-left: 1em;
}

.list_green li {
  position: relative;
}

.list_green li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #2ABFB0;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(45deg);
}

@media screen and (max-width: 800px) {
  #audio_images article {
    width: 49%;
  }
}

@media screen and (max-width: 800px) {
  #audio_images article:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 1400px) {
  #audio_images .bus_text h4 {
    font-size: 1.4vw;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  #audio_images .bus_text h4 {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 800px) {
  .catalog_col {
    flex-direction: column;
  }
  .catalog_txt {
    width: 100%;
  }
  .catalog {
    width: 60%;
  }
  .catalog_txt .h3_4 {
    font-size: 1.7em;
  }
  .catalog_txt .pdf_btn {
    margin-top: 20px;
  }
  #audio_catalog .inner .catalog_col {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 600px) {
  .catalog_txt .h3_4 {
    font-size: 1em;
  }
  .pdf_btn {
    width: 80%;
  }
}
@media screen and (max-width: 960px) {
  #top_audio h2 {
    font-size: 8vw;
  }
  #top_recruit h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1600px) {
  .m1600 {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  #top_recruit h2 span {
    display: block;
  }
  .rec_tab_n {
    width: 100%;
    height: 8vh;
  }
  .rec_tab_c {
    width: 100%;
    height: 8vh;
  }
  .rec_tab {
    width: 164px;
  }
}
@media screen and (max-width: 960px) {
  header .nav_down li {
    font-size: 1.2rem;
  }
}
.factoryview .hamburger span {
  background-color: #fff;
}

.factoryview .h2_5 {
  z-index: 1000;
}

#factory_hero {
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 960px) {
  #factory_hero {
    overflow: hidden;
  }
}

.head .sign .wp-block-image .alignright {
  display: block;
  width: 300px;
  margin-right: 0;
  margin-left: auto;
  float: none;
}

.head .sign .wp-block-image {
  display: block;
}

.head > .wp-block-group__inner-container {
  display: flex;
  gap: 6%;
}
@media screen and (max-width: 960px) {
  .head > .wp-block-group__inner-container {
    flex-direction: column;
  }
}

.head_img .wp-block-group__inner-container {
  height: 100%;
}

.head_img .wp-block-group__inner-container .wp-block-image {
  height: 100%;
}

.head_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
}

.takara_group iframe {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .takara_group iframe {
    width: 100%;
    height: 200px;
  }
}

@media screen and (max-width: 960px) {
  .group_col .wp-block-gallery {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .group_col > div > div {
    width: 100%;
  }
}

/**/
#r_message h2 {
  margin-bottom: 1em;
}

#r_department .rd_col .more {
  background-image: url("../img/arrow_blue.svg");
}

#r_department .inner::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/room_1.svg);
  background-repeat: no-repeat;
  background-position: right 2% bottom 1%;
  background-size: 28%;
  opacity: 0.6;
}

@media screen and (max-width: 960px) {
  #r_department .inner::before {
    background-size: 46%;
  }
}
#contact a {
  color: #fff;
}

footer address a {
  color: #010101;
}

.factoryview footer address a {
  color: #fff;
}

.head strong {
  margin-bottom: 1em;
  display: block;
}

#r_department .rd_col a {
  padding: 3%;
}

.takara_group h3 {
  margin-bottom: 1em;
  margin-top: 6vh;
}

.takara_group .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained .group_col:last-child::before {
  display: none;
}

@media screen and (max-width: 960px) {
  #r_department .inner div .rd_col:nth-of-type(9),
  #r_department .inner div .rd_col:nth-of-type(10) {
    margin-bottom: 1.6%;
  }
}
/*0702*/
#factory h2 > span {
  display: block;
}
@media screen and (max-width: 600px) {
  #factory h2 > span span {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .bg_factory {
    opacity: 0.4;
  }
}
@media screen and (max-width: 1280px) {
  .nav_contact a {
    display: flex;
    align-items: center;
    font-weight: bold;
  }
  .nav_contact a p {
    margin-bottom: 0;
    margin-left: 0.5em;
  }
}
#audio_images .h2_2 {
  color: #fff;
}

/*0703*/
.catalog_col_inner {
  display: flex;
  gap: 2%;
  overflow-x: scroll;
  margin-bottom: 10vh;
}

.catalog_col_inner > div {
  width: 320px;
  height: 100%;
  flex-shrink: 0;
}

#audio_catalog .pdf_btn {
  margin: 0 auto;
}

#audio_catalog #main {
  width: 400px;
  height: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  #audio_catalog #main {
    width: 80%;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  #audio_catalog #main img {
    position: relative;
    height: auto;
  }
}

#audio_catalog #navi ul li {
  width: 88px;
}
@media screen and (max-width: 500px) {
  #audio_catalog #navi ul li {
    width: calc(50% - 8px);
  }
}

#audio_catalog #navi ul {
  display: inline-flex;
  gap: 16px;
  margin-top: 16px;
  flex-flow: row wrap;
}
@media screen and (max-width: 500px) {
  #audio_catalog #navi ul {
    max-width: 80%;
  }
}

#audio_images {
  margin-bottom: 0;
}

/*0704*/
.loop {
  overflow: hidden;
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 50%;
  transform: translateY(50%);
  z-index: -1;
  opacity: 0.7;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

.loop__box {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__item {
  width: 50vw;
  height: 28vw;
  margin-right: 8px;
  border-radius: 32px;
  overflow: hidden;
}

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#audio_catalog .container {
  position: relative;
}

#audio_catalog {
  position: relative;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

#audio_catalog .h2_2 {
  position: absolute;
  top: 30%;
  left: 16px;
}
@media screen and (max-width: 1280px) {
  #audio_catalog .h2_2 {
    position: relative;
    top: auto;
    left: auto;
    margin-left: 10%;
  }
}
@media screen and (max-width: 500px) {
  #audio_catalog .h2_2 {
    font-size: 5.6vw;
  }
}

.audio .btn_23 {
  width: 400px;
  height: 88px;
  font-size: 1.4em;
  justify-content: flex-start;
  border-color: #2ABFB0;
  color: #2ABFB0;
  padding: 1.4%;
  /*@media screen and (max-width: 960px) {
      width: 80%;
  }*/
}
@media screen and (max-width: 500px) {
  .audio .btn_23 {
    width: 100%;
  }
}
.audio .btn_23 div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.audio .btn_23 div p {
  margin-bottom: 0;
}
.audio .btn_23 div small {
  font-size: 0.7em;
  font-weight: normal;
}
.audio .btn_23 div small:nth-of-type(1) {
  font-size: 1.2em;
  font-weight: bold;
}
.audio .btn_23:hover {
  color: #fff;
}
.audio .btn_23:hover .more {
  background-image: url("../img/arrow_white.svg");
}

.audio .btn_23 .more {
  right: 4%;
  background-image: url("../img/arrow_fill_green.svg");
}

.audio .btn_23::before {
  background-image: linear-gradient(to left, #2ABFB0, #0D4B8C);
}

@media screen and (max-width: 900px) {
  .tbl_ksg table tr {
    display: flex;
    flex-direction: column-reverse;
  }
}

/*0917*/
#catalog_download {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-flow: row wrap;
}
@media screen and (max-width: 960px) {
  #catalog_download {
    width: 85%;
    margin-left: 5%;
    margin-right: 10%;
  }
}

#audio_catalog #navi {
  display: flex;
  justify-content: center;
}

.tbl_rec {
  margin-bottom: 8vh;
}

#business_description p {
  margin-bottom: 0;
}

#business_description article {
  position: relative;
  height: 100%;
}

#business_description article a {
  margin-bottom: 0;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
#business_description article a .more {
  position: absolute;
  right: 4%;
}

#business_archive .inner article:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 1400px) {
  #business_archive article {
    width: 31.5%;
    margin-right: 2.75%;
  }
  #business_archive .inner article:nth-of-type(3) {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  #business_archive article {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4%;
  }
  /*.bus_text {
      font-size: 1.7em;
  }*/
}
#business_detail {
  margin-bottom: 4vh;
}

.page_nav h3 {
  font-size: 1.5em;
  margin-top: 1em;
}

.alignright {
  clear: both;
}

@media screen and (max-width: 600px) {
  .kanren li {
    width: calc((100% - 40px) / 2);
  }
}
.caption {
  color: #fff;
  font-size: 1.5em;
}

.audio_hero_img {
  position: absolute;
}
@media screen and (max-width: 960px) {
  .audio_hero_img img {
    height: 100vh;
  }
}

.audio_hero_img.img1 {
  opacity: 1;
  z-index: 6;
  animation: op0102 2.5s cubic-bezier(0.68, -0.01, 0.58, 1) both;
}

.audio_hero_img.img2 {
  z-index: 5;
  opacity: 0;
  animation: op1 1s 1.6s cubic-bezier(0.68, -0.01, 0.58, 1) both;
}

.audio_hero_img.img3 {
  z-index: 6;
  opacity: 0;
  animation: op010 1s 2.3s cubic-bezier(1, 0.01, 0.83, 0.97) both;
}

@media screen and (max-width: 748px) {
  #audio_detail_images #navi .slide a {
    text-decoration: none;
  }
}
#audio {
  background-color: #010101;
}

#audio .swiper {
  opacity: 0.4;
}

#top_audio .top_hero .swiper {
  height: 400px;
  z-index: 10;
  transform: translateY(10%);
  opacity: 0.4;
  animation: op04 0.8s 3.2s cubic-bezier(0.68, -0.01, 0.58, 1) both;
}

/*20251212*/
#r_message {
  justify-content: center;
  margin-bottom: 12vh;
}

.message_text {
  width: 80%;
}

@media screen and (max-width: 960px) {
  .message_text {
    width: 100%;
  }
}
#top_recruit {
  margin-bottom: 12vh;
}

/*16:51*/
.department_col > div {
  gap: 0;
  flex-direction: column;
}

.department_col > div > div {
  width: 100%;
  height: auto;
}

.imgset > div {
  display: flex;
  flex-flow: row wrap;
}

.imgset figure {
  width: 24%;
  margin-right: 1.333333%;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgset figure:last-of-type {
  margin-right: 0;
}

.imgset figure img {
  height: 100%;
}

@media screen and (max-width: 960px) {
  .imgset figure {
    width: 49%;
    margin-right: 2%;
  }
  .imgset figure:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .imgset figure {
    width: 100%;
    margin-right: 0;
  }
}
/*20251215*/
#business_description ul li a div:nth-of-type(1) {
  height: 280px;
}

#business_description li:nth-of-type(3n) {
  margin-right: 0;
}

#business_description ul li a img {
  -o-object-fit: cover;
     object-fit: cover;
}

.imgset figure:nth-of-type(4n) {
  margin-right: 0;
}

/*20251218*/
#recruit > div:nth-of-type(3) {
  margin-left: 10%;
  box-sizing: border-box;
}

/*#recruit button {
    margin-left:8%;
}*/
#recruit .h2_1 {
  left: 10%;
}

.rec_subtitle {
  /*left:10%;*/
  margin-bottom: 1em;
}

@media screen and (max-width: 1280px) {
  #recruit > div:nth-of-type(3) {
    margin-left: 0;
  }
  #recruit .h2_1 {
    left: 0;
  }
  .rec_subtitle {
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .rec_subtitle {
    left: 0;
    top: 78%;
  }
}
/*20251219*/
.tab-switch {
  align-items: flex-start;
}

.factoryview .footer_r_l ul li:nth-of-type(5) {
  color: #fff;
}

/*工場見学　ラック組み立て削除用*/
/*.factory_image_6 {
    height: 300vh;
}

@media screen and (max-width: 1400px) {
    .factory_image_6 {
        height: 262.5vh;
    }
}

@media screen and (max-width: 1280px) {
    .factory_image_6 {
        height: 172vh;
    }
}*/
/*スライダー*/
#top_hero .Swiper2 .swiper {
  height: 100%;
}

#top_hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

#top_hero #canvas {
  position: absolute;
  z-index: 100;
  top: 1rem;
  right: 1rem;
}

#top_hero h2 {
  z-index: 100;
  left: 4%;
  bottom: 5%;
  top: auto;
  color: #fff;
  text-shadow: 2px 2px 12px #010101;
}

.eng {
  font-size: 0.63em;
  display: flex;
}

.ja {
  font-size: 0.64em;
}

@media screen and (max-width: 480px) {
  .eng {
    font-size: 0.9em;
    display: flex;
  }
  .ja {
    font-size: 0.9em;
  }
}
#top_hero .Swiper2 .swiper-slide {
  clip-path: inset(0 100% 0 0);
  transition: clip-path cubic-bezier(0.1, 1.1, 0.1, 1.1) ease;
}

#top_hero .Swiper2 .swiper-slide-active {
  clip-path: inset(0 0 0 0);
  z-index: 2;
}

#top_hero .Swiper2 .swiper-slide-active img {
  animation: slider_top 4s linear both;
}

#top_hero .Swiper2 .swiper-slide-prev,
#top_hero .Swiper2 .swiper-slide-next {
  clip-path: inset(0 0 0 0);
  z-index: 1;
}

@keyframes title_translate {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  4% {
    opacity: 1;
    transform: translateY(0);
  }
  96% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes title_translate_main {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
/*@keyframes visibility {
    0% {
        visibility: visible;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}*/
@keyframes visibility3 {
  0%, 33% {
    visibility: visible;
  }
  33.01%, 100% {
    visibility: hidden;
  }
}
@keyframes visibility3_2 {
  0%, 33% {
    visibility: hidden;
  }
  33.01%, 66% {
    visibility: visible;
  }
  66.01%, 100% {
    visibility: hidden;
  }
}
@keyframes visibility3_3 {
  0%, 66% {
    visibility: hidden;
  }
  66.01%, 100% {
    visibility: visible;
  }
}
.eng span {
  animation: title_translate 3.2s infinite both;
}

.h2_wrapper {
  position: relative;
}

/*#top_hero .title_1 {
    position: absolute;
    animation: visibility 9.6s infinite both;
}
#top_hero .title_2 {
    position: absolute;
    animation: visibility 9.6s infinite both;
}

#top_hero .title_3 {
    animation: visibility 9.6s infinite reverse both;
}*/
#top_hero .title_1 {
  position: absolute;
  animation: visibility3 9.6s infinite both;
}

#top_hero .title_2 {
  position: absolute;
  animation: visibility3_2 9.6s infinite both;
}

#top_hero .title_3 {
  animation: visibility3_3 9.6s infinite both;
}

.eng span:nth-of-type(2) {
  animation-delay: 0.05s;
}

.eng span:nth-of-type(3) {
  animation-delay: 0.1s;
}

.eng span:nth-of-type(4) {
  animation-delay: 0.15s;
}

.eng span:nth-of-type(5) {
  animation-delay: 0.2s;
}

.eng span:nth-of-type(6) {
  animation-delay: 0.25s;
}

.eng span:nth-of-type(7) {
  animation-delay: 0.3s;
}

.eng span:nth-of-type(8) {
  animation-delay: 0.35s;
}

.eng span:nth-of-type(9) {
  animation-delay: 0.4s;
}

.eng span:nth-of-type(10) {
  animation-delay: 0.45s;
}

.eng span:nth-of-type(11) {
  animation-delay: 0.5s;
}

.eng span:nth-of-type(12) {
  animation-delay: 0.55s;
}

.eng span:nth-of-type(13) {
  animation-delay: 0.6s;
}

.eng span:nth-of-type(14) {
  animation-delay: 0.65s;
}

.eng span:nth-of-type(15) {
  animation-delay: 0.7s;
}

.eng span:nth-of-type(16) {
  animation-delay: 0.75s;
}

.eng span:nth-of-type(17) {
  animation-delay: 0.8s;
}

.eng span:nth-of-type(18) {
  animation-delay: 0.85s;
}

.eng span:nth-of-type(19) {
  animation-delay: 0.9s;
}

.eng span:nth-of-type(20) {
  animation-delay: 0.95s;
}

.eng span:nth-of-type(21) {
  animation-delay: 1s;
}

.eng span:nth-of-type(22) {
  animation-delay: 1.05s;
}

.eng span:nth-of-type(23) {
  animation-delay: 1.1s;
}

.eng span:nth-of-type(24) {
  animation-delay: 1.15s;
}

.eng span:nth-of-type(25) {
  animation-delay: 1.2s;
}

.eng span:nth-of-type(26) {
  animation-delay: 1.25s;
}

.eng span:nth-of-type(27) {
  animation-delay: 1.3s;
}

.eng span:nth-of-type(28) {
  animation-delay: 1.35s;
}

.eng span:nth-of-type(29) {
  animation-delay: 1.4s;
}

.eng span:nth-of-type(30) {
  animation-delay: 1.45s;
}

.eng span:nth-of-type(31) {
  animation-delay: 1.5s;
}

.eng span:nth-of-type(32) {
  animation-delay: 1.55s;
}

.eng span:nth-of-type(33) {
  animation-delay: 1.6s;
}

.eng span:nth-of-type(34) {
  animation-delay: 1.65s;
}

.eng span:nth-of-type(35) {
  animation-delay: 1.7s;
}

.eng span:nth-of-type(36) {
  animation-delay: 1.75s;
}

.eng span:nth-of-type(37) {
  animation-delay: 1.8s;
}

.eng span:nth-of-type(38) {
  animation-delay: 1.85s;
}

.eng span:nth-of-type(39) {
  animation-delay: 1.9s;
}

.eng span:nth-of-type(40) {
  animation-delay: 1.95s;
}

.eng span:nth-of-type(41) {
  animation-delay: 2s;
}

.eng span:nth-of-type(42) {
  animation-delay: 2.05s;
}

.eng span:nth-of-type(43) {
  animation-delay: 2.1s;
}

.eng span:nth-of-type(44) {
  animation-delay: 2.15s;
}

.eng span:nth-of-type(45) {
  animation-delay: 2.2s;
}

.eng span:nth-of-type(46) {
  animation-delay: 2.25s;
}

.eng span:nth-of-type(47) {
  animation-delay: 2.3s;
}

.eng span:nth-of-type(48) {
  animation-delay: 2.35s;
}

.eng span:nth-of-type(49) {
  animation-delay: 2.4s;
}

.eng span:nth-of-type(50) {
  animation-delay: 2.45s;
}

#top_hero .title_1 .ja {
  animation: title_translate_main 3.2s infinite 0.1s both;
}

#top_hero .title_2 .ja {
  animation: title_translate_main 3.2s infinite 3.3s both;
}

#top_hero .title_3 .ja {
  animation: title_translate_main 3.2s infinite 6.5s both;
}

.ja {
  display: inline-block;
}

.display01 {
  display: block;
}

.display02 {
  display: none;
}

@media screen and (max-width: 680px) {
  .display01 {
    display: none;
  }
  .display02 {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */