@charset "UTF-8";
/*
  style.css -> SCSS(_modules/_responsive.scss) 変換手順（日本語コメント）

  目的:
  - 既存の `style.css` に書かれたレスポンシブ（主に `@media screen and (max-width: 768px)`）のルールを
    プロジェクト共通のレスポンシブ mixin / 変数 (`_var.scss`) を使って整理・一元化します。

  全体方針（安全・保守的）:
  1. 既存ルールをそのまま上書きしない。まずは `@include for-mobile` / `@include for-tablet` の
     テンプレートを用意して、段階的に既存のセレクタを移行する。
  2. フォントサイズや padding、width 等は既に `_var.scss` に定義されている `$fs-*` / `$pad-*` を再利用。
     無ければ新たに追加する（最小限に留める）。
  3. 影響範囲が大きいヒーローサイズ（17rem 等）や一回しか使われない値は変数化を保留。
  4. 置換は厳密一致のみで行い、calc() や三角関数などの式は触らない。

  工程（作業手順）:
  A. `scss/_modules/_var.scss` を確認し、必要な $fs / $pad が無ければ追記する。
     - 例: $fs-5_5: 5.5rem; $fs-1_75: 1.75rem; $pad-3px: 3px;
  B. `style.css` の `@media screen and (max-width: 768px)` 内のルールを抽出し、
     それぞれ `@include for-mobile { ... }` ブロックに移す（移行は段階的に）。
  C. 同様に tablet / WQHD / fhd / 4k 用のルールは `@include for-tablet` / `@include for-wqhd` 等に分割。
  D. 既に `_modules` 内で変数化されている箇所はそのまま維持し、重複置換は避ける。
  E. 変更後、`npx sass scss/style.scss scss/style.css` でコンパイル確認。
  F. ブラウザで数ページの見た目確認。大きな差分が出た場合は個別セレクタを優先してロールバックまたは微調整。

  注意点:
  - `position: absolute` と絶対配置の値（left/top/bottom/right）は、画面幅に応じて動くことが多く、
    一律変数化は避け、個別に `for-mobile` 内で調整する。
  - 画像の背景ポジション（background-position-x 等）はモバイル時の位置調整を明示的に記述する。

  以下は `style.css` にあった代表的なセレクタに対して、プロジェクトの mixin/変数を使った
  サンプル（テンプレート）です。ファイル内の既存ルールを置換する際にそのままコピーして使えます。
*/
nav {
  position: absolute;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 50px;
  background: #101010;
  opacity: 0.5;
  color: azure;
}
@media screen and (max-width: 600px) {
  nav {
    flex-direction: column;
    justify-content: normal;
    opacity: 1;
  }
  nav #nav-logo {
    width: 100%;
    text-align: center;
  }
}

header {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
}
header .OR-txt {
  position: absolute;
  left: 3.3%;
  bottom: 13.5%;
  line-height: 6rem;
  color: azure;
  text-shadow: #101010 0 0 10px;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  header .OR-txt {
    left: 1%;
    bottom: 0;
    line-height: 2.5rem;
    overflow-x: hidden;
  }
}
header .OR-txt h1 {
  font-size: 5.5rem;
}
@media screen and (max-width: 600px) {
  header .OR-txt h1 {
    font-size: 1.75rem;
  }
}

.title-mark {
  display: block;
  background-color: #ff701e;
  margin-right: 1.5%;
  width: 50px;
  height: 50px;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@media screen and (max-width: 600px) {
  .title-mark {
    width: 25px;
    height: 25px;
  }
}
.title-mark::after {
  content: "";
  position: absolute;
  background: #ffffff;
  height: 15.5884572681px;
  width: 14px;
  top: 17px;
  left: 21px;
}
@media screen and (max-width: 600px) {
  .title-mark::after {
    width: 7px;
    height: 7.7942286341px;
    top: 8.5px;
    left: 10.5px;
  }
}

.jp-subt {
  width: 30%;
  color: #ff701e;
  font-size: 1.95rem;
  margin: 1% 0 0 1.75%;
}
@media screen and (max-width: 600px) {
  .jp-subt {
    width: auto;
    font-size: 1rem;
  }
}

.slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  background: #fff;
}
.slider div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .slider div {
    background-position-x: center;
  }
}

.thumb-set {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: 74.5%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .thumb-set {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
}
.thumb-set .thumb {
  border-radius: 10px;
  background: white;
  height: 348px;
}
@media screen and (max-width: 600px) {
  .thumb-set .thumb {
    height: 160px;
  }
}

html {
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
}

#wpadminbar {
  display: none;
}

body {
  background: #ffffff;
  background-size: contain;
  width: 100%;
  max-width: 100%;
  height: auto;
  font-family: montserrat, Verdana, Geneva, Tahoma, sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
}

.pc-br {
  display: block;
}
@media screen and (max-width: 600px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-br {
    display: block;
  }
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (orientation: portrait) {
  .menu {
    background: rgba(15, 15, 15, 0);
  }
}
@media screen and (max-width: 600px) {
  .menu {
    left: unset;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: none;
    opacity: 1;
    transform: translateX(100vw);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media screen and (max-width: 600px) {
  .menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: -1;
    pointer-events: none;
    transition: background 0.3s;
    transition-delay: 0.6s;
  }
}
@media screen and (max-width: 600px) {
  .menu.open {
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media screen and (max-width: 600px) {
  .menu.open::before {
    background: #efefef;
    transition-delay: 0s;
  }
}
@media screen and (max-width: 600px) {
  .menu.open #nav-logo {
    opacity: 1;
    transition-delay: 0.3s;
  }
}
.menu.hide-logo #nav-logo {
  display: none;
}
.menu .nav-logo-img {
  display: block;
  object-fit: cover;
  max-height: 40px;
  height: 60%;
}
.menu .logo-white-outline {
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 0 #fff) drop-shadow(0 0 0 #fff) drop-shadow(0 0 1px #fff);
}
.menu.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .menu.is-visible {
    height: 0;
  }
}
.menu.is-hide {
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .menu.is-hide {
    display: none;
  }
}
.menu #nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  z-index: 1;
  width: 120px;
  margin: 0 16px 0 0;
  background: transparent;
  opacity: 1;
  transition: none;
}
@media screen and (orientation: portrait) {
  .menu #nav-logo {
    width: 10%;
  }
}
@media screen and (max-width: 600px) {
  .menu #nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 10001;
    width: 8%;
    margin: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.8s;
    transition-delay: 0s;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
.menu a#logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu .hamburger {
  display: none;
}
@media screen and (max-width: 600px) {
  .menu .hamburger {
    z-index: 99999;
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    width: auto;
    margin-top: 0;
    cursor: pointer;
  }
  .menu .hamburger.open {
    z-index: 10003;
  }
  .menu .hamburger span {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #101010;
    margin: 5px 0;
    transition: 0.4s;
  }
  .menu .hamburger span:nth-child(1) {
    top: 9px;
  }
  .menu .hamburger span:nth-child(2) {
    top: 17px;
  }
  .menu .hamburger span:nth-child(3) {
    top: 25px;
  }
  .menu .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .menu .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
.menu .menu-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  height: 50px;
  margin: 0;
  padding: 0;
  background: none;
  list-style-type: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
}
@media screen and (max-width: 600px) {
  .menu .menu-list {
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(60px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list.menu-list--open {
    width: 50%;
    text-align: center;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list.menu-list--open li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }
}
.menu .menu-list li {
  display: flex;
  align-items: center;
  min-width: 80px;
  height: 50px;
  margin-right: 18px;
  padding: 0;
  border: none;
  font-size: 1rem;
  opacity: 1;
  transform: none;
}
@media screen and (max-width: 600px) {
  .menu .menu-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #444;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.3s 0.4s, transform 0.3s 0.4s;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list li:last-child {
    border: none;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list li:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list li:nth-child(4) {
    margin-right: 15px;
  }
}
.menu .menu-list li a {
  color: #101010;
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 600px) {
  .menu .menu-list li a {
    color: #333;
  }
}
.menu .menu-list li a:hover {
  color: #ff701e;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .menu .menu-list {
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(60px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  }
  .menu .menu-list.menu-list--open li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list.menu-list--open {
    position: absolute;
    width: 50%;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-list.menu-list--open li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }
}

nav {
  position: absolute;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 50px;
  background: #101010;
  opacity: 0.5;
  color: azure;
}
@media screen and (max-width: 900px) {
  nav {
    flex-direction: column;
    justify-content: normal;
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  nav .menu #nav-logo {
    width: 100%;
    text-align: center;
  }
}
@media screen and (orientation: portrait) {
  nav .menu #nav-logo {
    width: 10%;
  }
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 37%;
  max-width: 50%;
  margin: 0 1% 0 0;
}
@media screen and (orientation: portrait) {
  nav ul {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
}

.slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  background: #fff;
}

.slider div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: slide-fade;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 900px) {
  .slider div {
    width: 100%;
    background-position-x: center;
  }
}

@keyframes slide-fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
.slider div:first-of-type {
  background-image: url(../image/top/head001.jpg);
  background-size: cover;
}

.slider div:nth-of-type(2) {
  background-image: url(../image/top/head002.jpg);
  background-size: cover;
  animation-delay: 5s;
}
@media screen and (max-width: 600px) {
  .slider div:nth-of-type(2) {
    background-position: 40% 0;
  }
}
@media screen and (max-width: 900px) {
  .slider div:nth-of-type(2) {
    background-position-x: 80%;
  }
}

.slider div:last-of-type {
  background-image: url(../image/top/head003.jpg);
  background-size: cover;
  animation-delay: 10s;
}
@media screen and (max-width: 900px) {
  .slider div:last-of-type {
    background-position-x: 87%;
  }
}

section {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}
@media screen and (min-width: 2048px) {
  section {
    margin: 0 auto;
  }
}

header {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
}
@media screen and (max-width: 600px) {
  header {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
    overflow-x: hidden;
  }
}
header .OR-txt {
  position: absolute;
  z-index: 999;
  left: 3.3%;
  bottom: 0;
  color: azure;
  line-height: clamp(2.5rem, 5vw, 6rem);
  text-shadow: #101010 0 0 10px;
}
@media screen and (max-width: 600px) {
  header .OR-txt {
    left: 1%;
    bottom: 10%;
  }
}
header .OR-txt h1 {
  font-size: clamp(1.75rem, 4.5vw, 5.5rem);
}

.title-mark {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 1.5%;
  background-color: #ff701e;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.jp-subt {
  width: 30%;
  margin: 1% 0 0 1.75%;
  color: #ff701e;
  font-size: clamp(1rem, 1.6vw, 1.95rem);
}
@media screen and (max-width: 600px) {
  .jp-subt {
    width: auto;
  }
}

.top-dev {
  width: 100%;
  height: 60%;
}

.left-dev {
  width: 60%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .left-dev {
    width: 100%;
    height: 40vh;
  }
}

.right-dev {
  width: 40%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .right-dev {
    width: 100%;
  }
}

.bottom {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media screen and (max-width: 600px) {
  .bottom {
    justify-content: flex-start;
    height: auto;
  }
}

h2 {
  display: flex;
  width: 100%;
  margin: 6.25% 0 2% 6.25%;
  color: #ff701e;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
}

.title-mark {
  position: relative;
  display: block;
  background-color: #ff701e;
  margin: 0% 1.75% 0 0%;
  width: 50px;
  height: 50px;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@media screen and (max-width: 600px) {
  .title-mark {
    width: 25px;
    height: 25px;
  }
}
.title-mark::after {
  content: "";
  position: absolute;
  background: #ffffff;
  height: 15.5884572681px;
  width: 14px;
  top: 17px;
  left: 21px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 600px) {
  .title-mark::after {
    width: 7px;
    height: 7.7942286341px;
    top: 8.5px;
    left: 10.5px;
  }
}

.sub-title {
  display: flex;
  width: 60%;
}

.news {
  width: 95%;
  margin: 0 auto 3%;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-family: "Montserrat Subrayada";
  paint-order: stroke;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 5px #ff701e;
  text-shadow: 0 0 5px #ff701e;
}

.news-block {
  display: flex;
  flex-direction: column;
  height: 360px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 600px) {
  .news-block {
    width: 100%;
    height: auto;
    max-height: 30vh;
    overflow-y: auto;
  }
}

.news-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  min-height: 2rem;
  height: clamp(2rem, 3.8vw, 57px);
  margin: 0 auto;
  line-height: clamp(2rem, 4vw, 60px);
}
@media screen and (max-width: 600px) {
  .news-topic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 0.5fr);
    width: 96%;
    height: auto;
    min-height: auto;
    margin-bottom: 3%;
  }
}
.news-topic .day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(80px, 8vw, 120px);
  font-size: clamp(0.75rem, 1vw, 1.2rem);
}
@media screen and (max-width: 600px) {
  .news-topic .day {
    margin: 0 1%;
  }
}
.news-topic .news-genre {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(6.5rem, 8vw, 120px);
  margin: 0 3%;
  font-weight: bolder;
  border-radius: 20px;
  height: clamp(1.2rem, 1.5vw, 20px);
  font-size: clamp(0.75rem, 0.9vw, 1rem);
}
@media screen and (max-width: 600px) {
  .news-topic .news-genre {
    margin: 0 1%;
  }
}
.news-topic .news-genre-6 {
  border: solid 3px #6caff0;
  color: #6caff0;
}
.news-topic .news-genre-5 {
  border: solid 3px #ff701e;
  color: #ff701e;
}
.news-topic .news-title {
  width: clamp(250px, 28vw, 440px);
  font-size: clamp(0.75rem, 0.95vw, 1.1rem);
}
@media screen and (max-width: 600px) {
  .news-topic .news-title {
    line-height: 2rem;
    grid-column: span 4/span 4;
    width: 100%;
    text-align: right;
  }
}

.news-detail-nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.news-detail-nav-btn {
  border: none;
  border-radius: 4px;
  background: #0073aa;
  color: #fff;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.news-detail-nav-btn:hover {
  background: #005f8a;
}

.news-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}
.news-detail-modal.active {
  display: flex;
}

#news-detail-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 75vw;
  height: 75vh;
  min-width: 320px;
  max-width: 1200px;
  min-height: 320px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
#news-detail-content .news-detail-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
#news-detail-content .news-detail-title {
  flex: 1 1 60%;
  margin-bottom: 0;
  min-width: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  word-break: break-all;
}
#news-detail-content .news-detail-genre {
  margin-left: auto;
  margin-bottom: 0;
  color: #0073aa;
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}
#news-detail-content .news-detail-date {
  margin-left: 16px;
  margin-bottom: 0;
  color: #888;
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  #news-detail-content #news-detail-content {
    width: 95vw;
    height: 90vh;
    padding: 16px 6px;
  }
  #news-detail-content .news-detail-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 8px;
  }
  #news-detail-content .news-detail-title {
    font-size: 1.1rem;
  }
  #news-detail-content .news-detail-genre, #news-detail-content .news-detail-date {
    margin-left: 0;
    text-align: left;
  }
}

#news-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

#news-detail-title {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: bold;
}

#news-detail-date {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #888;
}

#news-detail-genre {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #0073aa;
}

#news-detail-body {
  font-size: 1rem;
  line-height: 1.7;
}

#BP {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  #BP {
    flex-direction: column;
    min-height: auto;
  }
}
@media screen and (max-width: 600px) {
  #BP .left-dev {
    width: 100%;
    height: auto;
    margin: 5% auto 5%;
  }
}
#BP .left-dev h3 {
  width: 73%;
  margin: 5% auto 0;
  font-size: clamp(1.75rem, 2vw, 2.4rem);
  font-weight: normal;
}
@media screen and (max-width: 900px) {
  #BP .left-dev h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 15% auto 5%;
  }
}
@media screen and (max-width: 600px) {
  #BP .left-dev h3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 95%;
    height: 100%;
    margin: 15% auto 5%;
  }
}
#BP .left-dev h3 span {
  color: #fff;
  margin-right: 1%;
  font-size: clamp(3rem, 3.5vw, 4.15rem);
  font-weight: bolder;
  paint-order: stroke;
  text-shadow: 0 0 5px #ff701e;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 5px #ff701e;
  line-height: clamp(6rem, 8vw, 10rem);
}
@media screen and (max-width: 600px) {
  #BP .left-dev h3 span {
    font-size: 6.5rem;
    margin: -3% auto 10%;
  }
}
#BP .ctxt {
  width: 80%;
  margin: 4.5% auto 0;
  font-size: 1.25rem;
}
@media screen and (max-width: 600px) {
  #BP .ctxt {
    width: 80%;
    margin: 0 auto;
  }
}
#BP .ctxt p {
  line-height: clamp(1rem, 2.1vw, 2rem);
  margin: 0% auto 1.75%;
}
@media screen and (max-width: 600px) {
  #BP .ctxt p {
    font-size: 0.75rem;
  }
}
#BP .ctxt p:nth-child(3) {
  margin-top: 3.5%;
}
#BP .ctxt p:nth-child(4) {
  margin-top: -1%;
}
#BP .ctxt .point {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ff701e;
}
@media screen and (max-width: 600px) {
  #BP .ctxt .point {
    margin: 8% auto 5%;
    font-size: 1.2rem;
  }
}
#BP .btxt {
  width: 60%;
}
#BP .btxt p {
  line-height: 2.5rem;
  margin: 0% auto 1.75%;
}
#BP .btxt:nth-child(3) {
  margin-top: 3.5%;
}
#BP .btxt:nth-child(4) {
  margin-top: -1%;
}

#CO {
  display: flex;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 600px) {
  #CO {
    width: 100%;
    height: auto;
    min-height: auto;
  }
}
#CO .bottom-dev {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.1%;
  width: 100%;
  height: 50vh;
}
@media screen and (max-width: 600px) {
  #CO .bottom-dev {
    flex-direction: column;
    height: auto;
  }
}
#CO .bottom-dev a {
  position: relative;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  color: #101010;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #CO .bottom-dev a {
    width: 100%;
    height: auto;
  }
}
#CO .bottom-dev a:first-child {
  margin: 0 0 0 clamp(2%, 9.75vw, 9.75%);
}
@media screen and (max-width: 900px) {
  #CO .bottom-dev a:first-child {
    margin: 0;
    margin-bottom: 3%;
  }
}
#CO .bottom-dev a:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #CO .bottom-dev a:last-child {
    margin: 10%;
  }
}
#CO .bottom-dev .thumbnail-box {
  position: relative;
  display: flex;
  width: 100%;
  background-origin: border-box;
  background-clip: border-box;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  #CO .bottom-dev .thumbnail-box {
    width: calc(90% + 6px);
    padding: 3px;
    margin: 0 auto;
  }
}
#CO .bottom-dev .thumbnail-box:first-child {
  margin: 0 0 0 9.75%;
}
@media screen and (max-width: 900px) {
  #CO .bottom-dev .thumbnail-box:first-child {
    margin: 0 auto;
  }
}
#CO .bottom-dev .thumbnail-box:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #CO .bottom-dev .thumbnail-box:last-child {
    margin: 0 auto;
  }
}
#CO .bottom-dev .thumbnail-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, rgb(241, 137, 61) 0%, rgb(223, 255, 248) 50%, rgb(108, 175, 240) 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
#CO .bottom-dev .thumbnail-box .img-box {
  width: 50%;
  height: clamp(260px, 27vw, 376px);
  background: #f0f0f0;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
#CO .bottom-dev .thumbnail-box .img-box img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  #CO .bottom-dev .thumbnail-box .img-box {
    box-sizing: border-box;
    width: 50%;
    border-radius: 10px 0 0 10px;
  }
  #CO .bottom-dev .thumbnail-box .img-box img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
#CO .bottom-dev .thumbnail-box .txt-box {
  width: 50%;
  height: clamp(260px, 27vw, 376px);
}
#CO .bottom-dev .thumbnail-box .txt-box h4 {
  width: 80%;
  margin: 9.5% auto 6%;
  text-align: right;
  font-size: 3rem;
  color: #ff701e;
  font-weight: bolder;
}
@media screen and (max-width: 600px) {
  #CO .bottom-dev .thumbnail-box .txt-box h4 {
    margin: 4cqmax auto 3%;
    font-size: 1.2rem;
  }
}
#CO .bottom-dev .thumbnail-box .txt-box p {
  width: 90%;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 3rem;
}
@media screen and (max-width: 600px) {
  #CO .bottom-dev .thumbnail-box .txt-box p {
    font-size: 0.65rem;
    line-height: 1.5rem;
  }
}

.morecontent {
  position: relative;
  width: 100%;
  height: 10.4vh;
}
.morecontent a {
  position: absolute;
  right: 7%;
  width: 35%;
  margin-top: 0.6%;
  padding-right: 1.7%;
  padding-bottom: 0.2%;
  font-size: 1.25rem;
  font-weight: bolder;
  text-align: right;
  color: #ff701e;
  border-bottom: 2px solid #ff701e;
}
.morecontent a::after {
  position: absolute;
  bottom: 0;
  right: 5px;
  display: block;
  content: "";
  width: 1;
  height: 4px;
  border-bottom: solid 3px #ff701e;
  border-right: solid 3px #ff701e;
  transform: skew(55deg);
}

.text-box {
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
}
.text-box h3 {
  font-weight: normal;
  font-size: clamp(1rem, 1.3vw, 1.5rem);
  margin: 0.42% 0 0 0;
}
@media screen and (max-width: 900px) {
  .text-box h3 {
    margin: 5% auto;
  }
}
.text-box h3#slogan {
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  font-weight: bold;
  color: #ff701e;
}
@media screen and (max-width: 900px) {
  .text-box h3#slogan {
    text-align: center;
  }
}
.text-box h3#slogan span {
  color: #101010;
  font-size: clamp(1rem, 1.7vw, 2rem);
}
.text-box h3#slogan span.btxt {
  color: #101010;
  font-weight: normal;
  font-size: clamp(1rem, 1.3vw, 1.5rem);
}
.text-box h3#slogan span.bigsize {
  font-size: clamp(1rem, 1.7vw, 2rem);
}
@media screen and (max-width: 900px) {
  .text-box h3#slogan:first-child {
    align-self: flex-start;
  }
  .text-box h3#slogan:nth-child(2) {
    align-self: center;
  }
  .text-box h3#slogan:last-child {
    align-self: flex-end;
  }
}

.sep-tb-box {
  display: flex;
  width: 93%;
  padding-left: 7%;
}
.sep-tb-box .sep {
  width: 100%;
}
.sep-tb-box .left-dev .btxt {
  width: 100%;
  margin-top: 1%;
  color: #101010;
  text-shadow: 3px 3px 2px #f0f0f0, -3px 3px 2px #f0f0f0, -3px -3px 0 #f0f0f0, 3px -3px 0 #f0f0f0;
}
.sep-tb-box .left-dev .btxt p {
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  line-height: clamp(1.4rem, 1.5vw, 1.8rem);
}
.sep-tb-box .left-dev .btxt p:nth-child(2) {
  margin-top: 2.125%;
}
.sep-tb-box .right-dev {
  width: 95%;
}
.sep-tb-box .right-dev .text-box {
  margin-top: -2%;
  font-size: 2rem;
  font-weight: bolder;
  line-height: 3.4rem;
  color: #f0f0f0;
  text-shadow: 3px 3px 2px #101010, -3px 3px 2px #101010, -3px -3px 0 #101010, 3px -3px 0 #101010;
}
@media screen and (max-width: 600px) {
  .sep-tb-box .right-dev .text-box {
    font-size: 1rem;
    line-height: 1.5rem;
    text-shadow: 1px 1px 2px #101010, -1px 1px 2px #101010, -1px -1px 0 #101010, 1px -1px 0 #101010;
    margin: 3% auto 5%;
  }
}
.sep-tb-box .text-box {
  width: 97%;
  line-height: 2.25rem;
}

#BU {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-position-x: right;
  background-size: contain;
}
@media screen and (min-width: 2048px) {
  #BU {
    width: 100%;
    height: 150vh;
  }
}
@media screen and (max-width: 600px) {
  #BU {
    background-position-x: 0;
    min-height: auto;
  }
}
#BU .top-dev {
  width: 100%;
  height: 60%;
}
#BU .top-dev .sub-title {
  display: flex;
  width: 75.4425%;
  margin: 0 0% 0% 10.5%;
}
#BU .sep-tb-box {
  display: flex;
  width: 80%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 600px) {
  #BU .sep-tb-box {
    flex-direction: column-reverse;
    width: 90%;
  }
}
#BU .sep-tb-box .sep {
  width: 100%;
}
@media screen and (max-width: 600px) {
  #BU .sep-tb-box .left-dev {
    height: auto;
  }
}
#BU .sep-tb-box .left-dev .btxt {
  width: 100%;
  margin-top: 1%;
  color: #101010;
  text-shadow: 3px 3px 2px #f0f0f0, -3px 3px 2px #f0f0f0, -3px -3px 0 #f0f0f0, 3px -3px 0 #f0f0f0;
}
#BU .sep-tb-box .left-dev .btxt p {
  font-size: clamp(0.75rem, 1vw, 1.2rem);
  line-height: clamp(1.4rem, 1.5vw, 1.8rem);
}
#BU .sep-tb-box .left-dev .btxt p:nth-child(2) {
  margin-top: 2.125%;
}
#BU .sep-tb-box .right-dev {
  width: 95%;
}
#BU .sep-tb-box .right-dev .text-box {
  margin-top: -2%;
  font-size: clamp(0.9rem, 1.7vw, 2rem);
  font-weight: bolder;
  line-height: clamp(1.5rem, 2.9vw, 3.4rem);
  color: #f0f0f0;
  text-shadow: 3px 3px 2px #101010, -3px 3px 2px #101010, -3px -3px 0 #101010, 3px -3px 0 #101010;
}
@media screen and (max-width: 600px) {
  #BU .sep-tb-box .right-dev .text-box {
    text-shadow: 1px 1px 2px #101010, -1px 1px 2px #101010, -1px -1px 0 #101010, 1px -1px 0 #101010;
    margin: 3% auto 5%;
  }
}
#BU .sep-tb-box .text-box {
  width: 97%;
  line-height: clamp(1.8rem, 1.9vw, 2.25rem);
}
#BU .bottom-dev {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 81%;
  height: 80vh;
  margin: 0 auto;
  margin-top: 1.1%;
}
@media screen and (max-width: 600px) {
  #BU .bottom-dev {
    flex-direction: column;
    width: 100%;
    height: 200vh;
  }
}
#BU .bottom-dev .bus-thumb-set {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(280px, 25vw, 360px);
  height: clamp(480px, 45vw, 640px);
  background: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  #BU .bottom-dev .bus-thumb-set {
    width: 80%;
    min-height: 60vh;
    height: auto;
    margin: 3% auto;
  }
}
#BU .bottom-dev .bus-thumb-set::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(241, 137, 61) 0%, rgb(223, 255, 248) 50%, rgb(108, 175, 240) 100%) border-box border-box;
  border: 3px solid transparent;
  border-radius: 10px;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
@media screen and (max-width: 600px) {
  #BU .bottom-dev .bus-thumb-set::before {
    z-index: 1;
  }
}
#BU .bottom-dev .bus-thumb-set .img-box {
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 600px) {
  #BU .bottom-dev .bus-thumb-set .img-box {
    position: relative;
    width: 100%;
    height: 20vh;
    border-radius: 10px 10px 0 0;
  }
}
#BU .bottom-dev .bus-thumb-set img {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  #BU .bottom-dev .bus-thumb-set img {
    position: absolute;
    top: -25%;
    width: 100%;
  }
}
#BU .bottom-dev .bus-thumb-set .txt-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: clamp(280px, 26vw, 373px);
}
@media screen and (max-width: 768px) {
  #BU .bottom-dev .bus-thumb-set .txt-box {
    min-height: 30vh;
  }
}
#BU .bottom-dev .bus-thumb-set .txt-box .list {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
#BU .bottom-dev .bus-thumb-set .txt-box .samples {
  width: 100%;
  max-width: 100%;
  max-height: clamp(90px, 8.5vw, 120px);
}
@media screen and (max-width: 600px) {
  #BU .bottom-dev .bus-thumb-set .txt-box div:nth-child(2) {
    margin-top: 5%;
  }
}
#BU .bottom-dev .bus-thumb-set .txt-box h4 {
  text-align: center;
  margin: 8% auto;
  font-size: clamp(1rem, 1.3vw, 1.5rem);
}
#BU .bottom-dev .bus-thumb-set .txt-box h5 {
  width: 90%;
  margin: 0 auto 1%;
  font-size: clamp(0.9rem, 1vw, 1.2rem);
}
#BU .bottom-dev .bus-thumb-set .txt-box ul {
  width: 90%;
  margin: 0 auto;
}
#BU .bottom-dev .bus-thumb-set .txt-box ul li {
  font-size: clamp(0.7rem, 0.8vw, 0.95rem);
  line-height: clamp(1.5rem, 1.8vw, 2rem);
}
#BU .bottom-dev .bus-thumb-set .txt-box .mcon li {
  font-size: clamp(0.65rem, 0.75vw, 0.85rem);
  line-height: clamp(0.9rem, 0.95vw, 1.2rem);
}
#BU .thumbnail-box {
  position: relative;
  display: flex;
  width: 100%;
  background-origin: border-box;
  background-clip: border-box;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  #BU .thumbnail-box {
    width: calc(90% + 6px);
    padding: 3px;
    margin: 0 auto;
  }
}
#BU .thumbnail-box:first-child {
  margin: 0 0 0 9.75%;
}
@media screen and (max-width: 900px) {
  #BU .thumbnail-box:first-child {
    margin: 0 auto;
  }
}
#BU .thumbnail-box:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #BU .thumbnail-box:last-child {
    margin: 0 auto;
  }
}
#BU .thumbnail-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, rgb(241, 137, 61) 0%, rgb(223, 255, 248) 50%, rgb(108, 175, 240) 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
#BU .thumbnail-box .img-box {
  width: 50%;
  height: clamp(260px, 27vw, 376px);
  background: #f0f0f0;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
#BU .thumbnail-box .img-box img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  #BU .thumbnail-box .img-box {
    box-sizing: border-box;
    width: 50%;
    border-radius: 10px 0 0 10px;
  }
  #BU .thumbnail-box .img-box img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
#BU .thumbnail-box .txt-box {
  width: 50%;
  height: clamp(260px, 27vw, 376px);
}
#BU .thumbnail-box .txt-box h4 {
  width: 80%;
  margin: 9.5% auto 6%;
  text-align: right;
  font-size: 3rem;
  color: #ff701e;
  font-weight: bolder;
}
@media screen and (max-width: 600px) {
  #BU .thumbnail-box .txt-box h4 {
    margin: 4cqmax auto 3%;
    font-size: 1.2rem;
  }
}
#BU .thumbnail-box .txt-box p {
  width: 90%;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 3rem;
  color: black;
}
@media screen and (max-width: 600px) {
  #BU .thumbnail-box .txt-box p {
    font-size: 0.65rem;
    line-height: 1.5rem;
  }
}
#BU .morecontent {
  position: relative;
  width: 100%;
  height: 10.4vh;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #BU .morecontent {
    margin-top: 5%;
  }
}
#BU .morecontent a {
  position: absolute;
  right: 7%;
  width: 35%;
  margin-top: 3.5%;
  padding-right: 1.7%;
  padding-bottom: 0.2%;
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: bolder;
  text-align: right;
  color: #ff701e;
  border-bottom: 2px solid #ff701e;
}
#BU .morecontent a::after {
  position: absolute;
  right: 5px;
  display: block;
  bottom: 0;
  content: "";
  width: 1;
  height: 4px;
  border-bottom: solid 3px #ff701e;
  border-right: solid 3px #ff701e;
  transform: skew(55deg);
}

#RE {
  width: 100%;
  max-width: 100%;
  height: 108.5vh;
}
@media screen and (max-width: 600px) {
  #RE {
    height: auto;
    margin-bottom: 10%;
  }
}
#RE .workstyle {
  width: 100%;
  margin: 8.1% auto 0;
  font-size: 5rem;
  font-weight: bolder;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #RE .workstyle {
    width: 100%;
    height: 150vh;
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #RE .workstyle {
    height: auto;
  }
}
#RE .workstyle .wsthumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 5% auto 0;
}
@media screen and (max-width: 600px) {
  #RE .workstyle .wsthumb {
    flex-direction: column;
    height: auto;
  }
}
@media screen and (max-width: 900px) {
  #RE .workstyle .wsthumb .wsthumbset {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 125vh;
    margin: 3% auto 0;
  }
}
@media screen and (max-width: 600px) {
  #RE .workstyle .wsthumb .wsthumbset {
    flex-direction: column;
    height: auto;
    margin-bottom: 7.5%;
  }
}
#RE .workstyle .wsthumb .wsthumbset a {
  display: block;
  background: #ff701e;
  width: 100%;
  max-width: 341px;
  height: 341px;
}
@media screen and (max-width: 600px) {
  #RE .workstyle .wsthumb .wsthumbset a {
    height: auto;
  }
}
#RE .workstyle .wsthumb .wsthumbset a .thumbimg {
  height: 228px;
}
#RE .workstyle .wsthumb .wsthumbset a .thumbimg img {
  width: 100%;
  max-width: 100%;
  height: 228px;
  object-fit: cover;
}
#RE .workstyle .wsthumb .wsthumbset a .textimg {
  width: 100%;
  height: 113px;
  font-size: 2rem;
  text-align: center;
  line-height: 113px;
}
@media screen and (max-width: 600px) {
  #RE .workstyle .wsthumb .wsthumbset a .textimg {
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 5rem;
  }
  #RE .workstyle .wsthumb .wsthumbset a .textimg p {
    font-size: 1.2rem;
  }
}

.rec-header {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 947px;
}
@media screen and (max-width: 900px) {
  .rec-header {
    height: 150vh;
  }
}
@media screen and (max-width: 600px) {
  .rec-header {
    height: auto;
  }
}
.rec-header div p img {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  .rec-header div p img {
    position: absolute;
    height: 100vh;
    left: -95%;
  }
}
@media screen and (max-width: 600px) {
  .rec-header div p img {
    object-position: 60%;
    left: 0;
  }
}
.rec-header .header-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  background: #000;
  width: 19.75%;
  height: 15%;
  top: 46.5%;
  left: 8.5%;
  z-index: 1;
  background: #101010;
}
@media screen and (min-width: 2048px) {
  .rec-header .header-title {
    height: auto;
    min-height: 20vh;
  }
}
@media screen and (orientation: portrait) {
  .rec-header .header-title {
    height: 150px;
    top: calc(50% - 75px);
  }
}
@media screen and (max-width: 900px) {
  .rec-header .header-title {
    width: 55%;
    height: 100px;
    top: 34.5%;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .rec-header .header-title {
    width: 55%;
    height: 100px;
    top: 34.5%;
    left: 0;
  }
}
.rec-header .header-title h1 {
  width: 80%;
  margin: 15% auto 2.5%;
  color: #ff701e;
  font-size: clamp(1.1rem, 2vw, 2rem);
}
@media screen and (max-width: 600px) {
  .rec-header .header-title h1 {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}
@media screen and (min-width: 2048px) {
  .rec-header .header-title h1 {
    font-size: clamp(1.3rem, 2vw, 2.2rem);
  }
}
@media screen and (min-width: 3840px) {
  .rec-header .header-title h1 {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
  }
}
@media screen and (max-width: 900px) {
  .rec-header .header-title h1 {
    margin: 7% auto 3%;
  }
}
@media screen and (orientation: portrait) {
  .rec-header .header-title h1 {
    display: flex;
    align-items: end;
    height: 47.5%;
    margin: 0 auto 2.5%;
  }
}
.rec-header .header-title h2 {
  width: 80%;
  margin: 2.5% auto 13%;
  font-weight: bold;
  font-size: clamp(0.95rem, 1vw, 1.2rem);
}
@media screen and (max-width: 600px) {
  .rec-header .header-title h2 {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }
}
@media screen and (min-width: 2048px) {
  .rec-header .header-title h2 {
    font-size: clamp(1.1rem, 1vw, 1.4rem);
  }
}
@media screen and (min-width: 3840px) {
  .rec-header .header-title h2 {
    font-size: clamp(1.2rem, 1vw, 1.6rem);
  }
}
@media screen and (max-width: 900px) {
  .rec-header .header-title h2 {
    font-size: 1rem;
    justify-content: center;
  }
}
@media screen and (orientation: portrait) {
  .rec-header .header-title h2 {
    display: flex;
    align-items: start;
    height: 47.5%;
    margin: 2.5% auto 0;
    font-size: 1.2rem;
  }
}

.rec-info {
  width: 100%;
  max-width: 100%;
}
@media screen and (orientation: portrait) {
  .rec-info {
    min-height: auto;
  }
}
.rec-info h3 {
  width: 86.5%;
  font-size: clamp(1.1rem, 2vw, 2rem);
  margin: 10.45% auto 4%;
}
@media screen and (max-width: 600px) {
  .rec-info h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}
@media screen and (min-width: 2048px) {
  .rec-info h3 {
    font-size: clamp(1.3rem, 2vw, 2.2rem);
  }
}
@media screen and (min-width: 3840px) {
  .rec-info h3 {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
  }
}
.rec-info .rec-ditail {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
}
.rec-info .rec-data {
  width: 89%;
  max-width: 100%;
  margin: 4.65% auto 0;
  font-size: clamp(0.95rem, 1vw, 1.2rem);
}
@media screen and (max-width: 600px) {
  .rec-info .rec-data {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    width: 95%;
  }
}
@media screen and (min-width: 2048px) {
  .rec-info .rec-data {
    font-size: clamp(1.1rem, 1vw, 1.4rem);
  }
}
@media screen and (min-width: 3840px) {
  .rec-info .rec-data {
    font-size: clamp(1.2rem, 1vw, 1.6rem);
  }
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data {
    width: 80%;
  }
}
.rec-info .rec-data li {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  margin-bottom: 5%;
}
@media screen and (max-width: 600px) {
  .rec-info .rec-data li {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.rec-info .rec-data li .data-title {
  color: #ff701e;
  width: 14.25%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li .data-title {
    font-weight: bold;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .rec-info .rec-data li .data-title {
    font-size: 0.9rem;
    line-height: clamp(1rem, 1vw, 1.2rem);
    word-break: auto-phrase;
    justify-content: flex-start;
  }
}
.rec-info .rec-data li .data-txt {
  line-height: clamp(1rem, 1vw, 1.2rem);
  height: auto;
  line-height: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li .data-txt {
    line-height: clamp(0.95rem, 1vw, 1.1rem);
    font-size: 0.9rem;
    margin-left: 7%;
    word-break: auto-phrase;
  }
}
@media screen and (max-width: 600px) {
  .rec-info .rec-data li .data-txt {
    width: 79%;
    margin-left: 5%;
  }
}
.rec-info .rec-data li:nth-child(2) {
  height: auto;
  margin-bottom: 2.5%;
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li:nth-child(2) {
    height: 270px;
  }
}
@media screen and (max-width: 600px) {
  .rec-info .rec-data li:nth-child(2) {
    height: auto;
  }
}
.rec-info .rec-data li:nth-child(2) .data-txt p {
  height: auto;
  line-height: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li:nth-child(2) .data-txt p {
    height: auto;
    line-height: clamp(0.95rem, 1vw, 1.1rem);
  }
}
.rec-info .rec-data li:nth-child(4) {
  margin-bottom: 4.75%;
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li:nth-child(4) {
    margin-bottom: 2.5%;
  }
}
.rec-info .rec-data li:nth-child(7) {
  margin-bottom: 3.45%;
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li:nth-child(7) {
    margin-bottom: 2.5%;
  }
}
.rec-info .rec-data li:nth-child(8) {
  margin-bottom: 2.25%;
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li:nth-child(8) {
    margin-bottom: 2.5%;
  }
}
.rec-info .rec-data li:nth-child(9) {
  margin-bottom: 2.75%;
}
@media screen and (orientation: portrait) {
  .rec-info .rec-data li:nth-child(9) {
    margin-bottom: 2.5%;
  }
}

.FAQ {
  width: 100%;
  max-width: 100%;
  margin-top: 14%;
}
.FAQ .faq-ditail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .FAQ .faq-ditail {
    margin-bottom: 10%;
  }
}
.FAQ .faq-ditail h3 {
  font-size: clamp(1.1rem, 2vw, 2rem);
}
@media screen and (max-width: 600px) {
  .FAQ .faq-ditail h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 5% auto;
  }
}
@media screen and (min-width: 2048px) {
  .FAQ .faq-ditail h3 {
    font-size: clamp(1.3rem, 2vw, 2.2rem);
  }
}
@media screen and (min-width: 3840px) {
  .FAQ .faq-ditail h3 {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
  }
}
.FAQ .faq-ditail .faq-set {
  width: 100%;
  max-width: 100%;
  margin-top: 4.5%;
}
.FAQ .faq-block {
  width: 91%;
  margin: 0.95% 0 2.4% 5.5%;
  text-align: justify;
  box-sizing: border-box;
  text-align: justify;
  background: #ccc;
  border-radius: 10px;
}
@media screen and (orientation: portrait) {
  .FAQ .faq-block {
    width: 80%;
    margin: 0.95% auto 5.5%;
  }
}
@media screen and (max-width: 600px) {
  .FAQ .faq-block {
    width: 95%;
  }
}
.FAQ .faq-block .answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
  display: block;
}
.FAQ .faq-block .answer .answer-inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  min-height: 100px;
  padding: 1.5rem 2rem 1.5rem 3.45rem;
  font-size: 1.5rem;
  font-weight: bold;
  background: white;
  border-radius: 10px;
  margin: 0 auto;
  box-sizing: border-box;
}
.FAQ .faq-block label {
  display: flex;
  align-items: center;
  position: relative;
  height: 85px;
  line-height: normal;
  cursor: pointer;
  padding-left: 3.75rem;
  font-size: clamp(0.95rem, 1vw, 1.2rem);
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .FAQ .faq-block label {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 600px) {
  .FAQ .faq-block label {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
@media screen and (min-width: 2048px) {
  .FAQ .faq-block label {
    font-size: clamp(1.1rem, 1vw, 1.4rem);
  }
}
@media screen and (min-width: 3840px) {
  .FAQ .faq-block label {
    font-size: clamp(1.2rem, 1vw, 1.6rem);
  }
}
.FAQ .faq-block label:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: solid 2px #ccc;
  border-bottom: solid 2px #ccc;
  transform: rotate(45deg) translate(100%, 100%);
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.5rem;
  margin-right: 1rem;
}
.FAQ .faq-block input {
  display: none;
}
.FAQ .faq-block input:checked ~ label:after {
  transform: rotate(-135deg) translate(-100%, -100%);
  margin-top: 0.75rem;
}
.FAQ .faq-block p {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  width: 99%;
  height: 85px;
  line-height: normal;
  font-size: clamp(0.95rem, 1vw, 1.2rem);
  font-weight: bold;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .FAQ .faq-block p {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }
}
@media screen and (min-width: 2048px) {
  .FAQ .faq-block p {
    font-size: clamp(1.1rem, 1vw, 1.4rem);
  }
}
@media screen and (min-width: 3840px) {
  .FAQ .faq-block p {
    font-size: clamp(1.2rem, 1vw, 1.6rem);
  }
}
.FAQ .faq-block p.answer {
  position: relative;
  bottom: 10px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .FAQ .faq-block p.answer {
    width: 95%;
    padding: 0;
  }
}
.FAQ .faq-block p.answer .faq-Amark {
  color: #ff701e;
}
@media screen and (max-width: 600px) {
  .FAQ .faq-block p.answer .answer-inner {
    padding: 5%;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .FAQ .faq-block .faq-ditail {
    margin: 0;
    padding: 2rem 1rem;
  }
  .FAQ .faq-block .faq-block input:checked ~ p {
    height: 200px;
  }
}

.message-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 970px;
  background: #ffffff;
}
@media screen and (max-width: 900px) {
  .message-header {
    justify-content: center;
    min-height: 100vh;
  }
}
.message-header .text-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 470px;
  margin-top: 4%;
}
@media screen and (max-width: 900px) {
  .message-header .text-box {
    justify-content: space-between;
    min-height: 85vh;
    margin: 0 auto;
  }
}
.message-header p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0.4% auto 0.2%;
}
@media screen and (max-width: 900px) {
  .message-header p {
    margin: 15% auto 0;
  }
}
.message-header p span {
  display: block;
  font-weight: bold;
}
.message-header p .large {
  font-size: 1.8rem;
  color: #ff701e;
  margin-bottom: 0.85%;
}
@media screen and (max-width: 900px) {
  .message-header p .large {
    font-size: 1.2rem;
    margin-bottom: 3%;
  }
}
.message-header h1 {
  width: 100%;
  max-width: 100%;
  margin-top: 3.65%;
  font-size: clamp(1.5rem, 4vw, 4.075rem);
  text-align: center;
}
@media screen and (max-width: 900px) {
  .message-header h1 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
    margin-top: 10%;
  }
}
.message-header .head-txt {
  font-size: clamp(1rem, 2vw, 1.65rem);
  margin: 3.5% auto 0;
  line-height: clamp(1.5rem, 2vw, 2.85rem);
}
@media screen and (max-width: 900px) {
  .message-header .head-txt {
    font-size: clamp(0.9rem, 4vw, 1rem);
    font-weight: normal;
    margin: 5% auto;
  }
}
.message-header h3 {
  color: #ff701e;
  margin-top: 5%;
  font-weight: bold;
  font-size: clamp(0.9rem, 1.5vw, 1.025rem);
  text-align: center;
}
.message-header .company-data, .message-header .comd-list {
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.message-header .parent {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}
.message-header .parent p, .message-header .parent .left, .message-header .parent .right {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.top-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 947px;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .top-message {
    flex-direction: column;
  }
}
.top-message .left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 900px) {
  .top-message .left {
    width: 100%;
    max-width: 100%;
  }
}
.top-message .left .content-box {
  position: relative;
  width: 77.5%;
  height: 742px;
  margin-top: -2%;
  margin-left: 3.5%;
}
@media screen and (max-width: 900px) {
  .top-message .left .content-box {
    width: 100%;
    height: 582px;
    margin: 7% auto;
  }
}
.top-message .left .content-box .pic {
  position: absolute;
  right: 2px;
}
@media screen and (max-width: 900px) {
  .top-message .left .content-box .pic {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-message .left .content-box .pic img {
    width: 80%;
  }
}
.top-message .left .content-box .pic-title {
  position: absolute;
  background-color: rgba(16, 16, 16, 0.5);
  border-radius: 10px 0 10px 10px;
  width: 100%;
  max-width: 100%;
  height: 365px;
  bottom: -2px;
  right: 2px;
}
@media screen and (max-width: 900px) {
  .top-message .left .content-box .pic-title {
    width: 80%;
    border-radius: 0px 0 10px 10px;
    height: 170px;
    bottom: 32px;
    right: 45px;
  }
}
.top-message .left .content-box .pic-title h2 {
  position: absolute;
  bottom: 18.5%;
  width: 31%;
  margin-left: 10.8%;
  font-size: 1.8rem;
  color: #ff701e;
}
@media screen and (max-width: 900px) {
  .top-message .left .content-box .pic-title h2 {
    bottom: 39.5%;
    left: 0.8%;
    text-align: right;
    width: auto;
    font-size: 2rem;
  }
}
.top-message .left .content-box .pic-title p {
  position: absolute;
  bottom: 11%;
  left: 5.5%;
  width: 31%;
  margin-left: 4.5%;
  font-weight: bold;
  color: white;
  font-size: 1.4rem;
}
@media screen and (max-width: 900px) {
  .top-message .left .content-box .pic-title p {
    bottom: 27%;
    left: 7.5%;
    width: auto;
    text-align: right;
  }
}
.top-message .right {
  width: 47%;
  max-width: 50%;
  height: 730px;
}
@media screen and (max-width: 900px) {
  .top-message .right {
    width: 100%;
    max-width: 100%;
  }
}
.top-message .right .content-box .message {
  position: relative;
  border-radius: 25px 25px 0 25px;
  width: 40%;
  height: 14rem;
  margin: 8% 0 3%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 50%;
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .message {
    height: 12rem;
  }
}
@media screen and (max-width: 900px) {
  .top-message .right .content-box .message {
    background: rgba(0, 0, 0, 0.5);
    width: 80%;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
  }
}
.top-message .right .content-box .message .title {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px 25px 0 0;
  line-height: 5rem;
  width: 100%;
  text-align: center;
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .message .title {
    height: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .message .title span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 900px) {
  .top-message .right .content-box .message .title {
    background: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    height: 30%;
    line-height: 180%;
  }
}
.top-message .right .content-box .message p {
  position: absolute;
  display: block;
  top: 43%;
  right: 7.5%;
  font-size: 1.2rem;
  color: white;
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .message p {
    top: 47.5%;
  }
}
.top-message .right .content-box .message .mestitle {
  width: 230%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 25px 25px 25px;
  line-height: 5.5rem;
  position: absolute;
  top: 60%;
  font-size: 2.1rem;
  font-weight: bold;
  color: white;
  letter-spacing: -1.35px;
}
@media screen and (max-width: 900px) {
  .top-message .right .content-box .message .mestitle {
    background: rgba(0, 0, 0, 0.5);
    top: auto;
    bottom: 0;
    left: 0;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: normal;
    width: 100%;
    line-height: 77px;
  }
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .message .mestitle {
    bottom: 0%;
    height: 3.5rem;
    line-height: 3.5rem;
    border-radius: 0;
  }
}
.top-message .right .content-box .message .mestitle span {
  width: 100%;
  padding-left: 5%;
  display: block;
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .message .mestitle span {
    font-size: 0.95rem;
    padding: 0;
  }
}
.top-message .right .content-box .mestext {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 1.85rem;
  line-height: 3rem;
  color: white;
  background: black;
  border-radius: 10px;
  opacity: 0.5;
  width: 90%;
  height: 395px;
  padding: 1% 0 0 2.5%;
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .mestext {
    border-top: 5px dotted rgba(255, 255, 255, 0.5);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .top-message .right .content-box .mestext {
    background: rgba(0, 0, 0, 0.75);
    width: 80%;
    margin: 0 auto;
    padding: 5% 2.5%;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: normal;
  }
}
@media screen and (max-width: 600px) {
  .top-message .right .content-box .mestext p {
    font-weight: bolder;
    line-height: 2rem;
  }
}

.company-data {
  background: #ffffff;
}
@media screen and (max-width: 600px) {
  .company-data .sub-title {
    width: 100%;
  }
}

.comd-list {
  width: 85%;
  margin: 5.5% auto 0;
}

.parent {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 0px;
}
.parent div {
  border-bottom: 1px solid rgba(239, 239, 239, 0.937254902);
}
.parent div:nth-child(13) {
  border: none;
}
.parent div:last-child {
  border: none;
}
.parent div p {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  width: 100%;
  height: 92px;
}
@media screen and (max-width: 768px) {
  .parent div p {
    height: 180px;
  }
}
.parent div p span {
  width: 100%;
  line-height: 1.5rem;
}
.parent .left {
  width: 400px;
  height: 92px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .parent .left {
    width: 100px;
    height: 180px;
  }
}
.parent .left span {
  width: 95%;
  margin-left: 5%;
}
.parent .right {
  margin: 0 0 0.75% 0;
  padding-left: 0.75%;
}
@media screen and (max-width: 768px) {
  .parent .div3, .parent .div4 {
    height: 92px;
  }
  .parent .div3 p, .parent .div4 p {
    height: 92px;
  }
}
@media screen and (max-width: 768px) {
  .parent .div10, .parent .div12, .parent .div14 {
    line-height: 1.55rem;
  }
}
@media screen and (max-width: 768px) {
  .parent .div14 {
    margin-top: 5%;
  }
}

.div1 {
  grid-row: span 1;
}
@media screen and (max-width: 768px) {
  .div1 p span:nth-child(2) {
    margin-bottom: -18%;
  }
}

.div2 {
  grid-column: span 1;
  grid-row: span 1;
}

.div3 {
  grid-row: span 1;
  grid-row-start: 3;
}
@media screen and (max-width: 768px) {
  .div3 {
    height: 92px;
  }
}

.div4 {
  grid-column: span 1;
  grid-row: span 1;
  grid-row-start: 3;
}
@media screen and (max-width: 768px) {
  .div4 {
    height: 92px;
  }
}

.div5 {
  grid-row: span 1;
  grid-row-start: 5;
}

.div6 {
  grid-column: span 1;
  grid-row: span 1;
  grid-row-start: 5;
}

.div7 {
  grid-row: span 1;
  grid-row-start: 7;
}

.div8 {
  grid-column: span 1;
  grid-row: span 1;
  grid-row-start: 7;
}

.div9 {
  grid-row-start: 9;
}

.div10 {
  grid-column: span 1;
  grid-row-start: 9;
}

.div11 {
  grid-row-start: 11;
}

.div12 {
  grid-column: span 1;
  grid-row-start: 11;
}

.div13 {
  grid-row-start: 13;
}

.div14 {
  grid-column: span 1;
  grid-row-start: 13;
}

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

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.textset {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bus-header {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 2048px) {
  .bus-header {
    height: 100vh;
    min-height: 100%;
  }
}
@media screen and (orientation: portrait) {
  .bus-header {
    height: 100vh;
  }
}
@media screen and (max-width: 600px) {
  .bus-header {
    height: 100vh;
    min-height: 100vh;
  }
}
.bus-header img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}
@media screen and (orientation: portrait) {
  .bus-header img {
    width: 100%;
    height: 50vh;
  }
}
@media screen and (min-width: 2048px) {
  .bus-header img {
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .bus-header img {
    height: 100%;
  }
}
.bus-header div {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 2048px) {
  .bus-header div {
    height: 50vh;
  }
}
@media screen and (max-width: 600px) {
  .bus-header div {
    height: 50vh;
  }
}
.bus-header div p {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 2048px) {
  .bus-header div p {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .bus-header div p {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}
.bus-header .header-title {
  position: absolute;
  background: black;
  width: 19.7%;
  height: 200px;
  top: calc(50% - 100px);
  left: 8.5%;
  z-index: 999;
}
@media screen and (min-width: 2048px) {
  .bus-header .header-title {
    height: auto;
    min-height: 20vh;
  }
}
@media screen and (orientation: portrait) {
  .bus-header .header-title {
    height: 150px;
    top: calc(50% - 75px);
  }
}
@media screen and (max-width: 600px) {
  .bus-header .header-title {
    width: 55%;
    height: 100px;
    top: 34.5%;
    left: 0;
  }
}
.bus-header .header-title h1 {
  width: 80%;
  margin: 15% auto 2.5%;
  font-size: 2.65rem;
  color: #ff701e;
}
@media screen and (orientation: portrait) {
  .bus-header .header-title h1 {
    display: flex;
    align-items: end;
    height: 47.5%;
    margin: 0 auto 2.5%;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 600px) {
  .bus-header .header-title h1 {
    margin: 7% auto 3%;
    font-size: 1.75rem;
  }
}
.bus-header .header-title h2 {
  width: 80%;
  margin: 2.5% auto 13%;
  font-size: 1.35rem;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .bus-header .header-title h2 {
    display: flex;
    align-items: start;
    height: 47.5%;
    margin: 2.5% auto 0;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .bus-header .header-title h2 {
    font-size: 1rem;
  }
}
.bus-header .header-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 473px;
  background: #f0f0f0;
}
@media screen and (orientation: portrait) {
  .bus-header .header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    height: 50vh;
  }
}
@media screen and (min-width: 2048px) {
  .bus-header .header-text {
    height: 50vh;
  }
  .bus-header .header-text h3 {
    margin-top: 10.6%;
  }
}
@media screen and (max-width: 600px) {
  .bus-header .header-text {
    height: 50vh;
    top: 50vh;
  }
}
.bus-header .header-text h3 {
  text-align: center;
  font-size: 2rem;
  margin-top: 7%;
}
@media screen and (orientation: portrait) {
  .bus-header .header-text h3 {
    text-align: center;
    font-size: 2rem;
    margin-top: 2%;
  }
}
@media screen and (max-width: 600px) {
  .bus-header .header-text h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 7%;
    line-height: 2rem;
  }
}
.bus-header .header-text p {
  width: 45%;
  margin: 2% auto 0;
  font-size: 1.2rem;
  line-height: 2.1rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .bus-header .header-text p {
    width: 90%;
    margin: 5% auto 0;
    font-size: 0.75rem;
    text-align: center;
  }
}

.business-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (orientation: portrait) {
  .business-list {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .business-list {
    flex-direction: column;
    justify-content: start;
    min-height: 85vh;
  }
}
.business-list .left {
  position: relative;
  width: 50%;
  min-width: 50%;
  height: 947px;
  background: white;
}
@media screen and (orientation: portrait) {
  .business-list .left {
    width: 80%;
    height: 50%;
  }
}
@media screen and (max-width: 600px) {
  .business-list .left {
    width: 100%;
    height: 35vh;
  }
}
.business-list .left img {
  display: block;
  width: 75%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .business-list .left img {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    top: 5%;
    left: 0;
    right: 0;
  }
}
.business-list .left .textset {
  height: 675px;
  width: 50%;
  padding: 12.75% 0 0 25%;
}
@media screen and (orientation: portrait) {
  .business-list .left .textset {
    height: 675px;
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }
}
.business-list .left .textset h4 {
  margin-left: 3%;
  font-size: 2rem;
}
.business-list .left .textset .bustext-detail {
  width: 89%;
  margin-left: 3.75%;
  margin-top: 9.3%;
  font-size: 1.15rem;
  line-height: 2rem;
}
.business-list .left .textset .bus-genre {
  margin-top: 13.75%;
}
@media screen and (orientation: portrait) {
  .business-list .left .textset .bus-genre {
    display: flex;
    justify-content: end;
  }
}
.business-list .left .textset .bus-genre ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  width: 93%;
  max-width: 100%;
}
.business-list .left .textset .bus-genre ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 47%;
  width: 47%;
  height: 48px;
  border: 3px solid #ff701e;
  font-size: 1.25rem;
  font-weight: bold;
  color: #ff701e;
  margin-bottom: 2.2%;
}
.business-list .right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: 50%;
  height: 947px;
  background: white;
}
@media screen and (orientation: portrait) {
  .business-list .right {
    width: 80%;
    height: 50%;
  }
}
@media screen and (max-width: 600px) {
  .business-list .right {
    width: 100%;
    justify-content: flex-start;
    height: 50vh;
  }
}
.business-list .right .textset {
  height: 675px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (orientation: portrait) {
  .business-list .right .textset {
    height: 675px;
    width: 85%;
    margin: 0 auto;
  }
}
.business-list .right .textset h4 {
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .business-list .right .textset h4 {
    font-size: 1.5rem;
  }
}
.business-list .right .textset .bustext-detail {
  margin-top: 8.3%;
  font-size: 1.15rem;
  line-height: 2rem;
}
@media screen and (max-width: 600px) {
  .business-list .right .textset .bustext-detail {
    font-size: 1rem;
  }
}
.business-list .right .textset .bus-genre {
  margin-top: 14.575%;
  margin-top: 13.75%;
}
@media screen and (orientation: portrait) {
  .business-list .right .textset .bus-genre {
    display: flex;
    justify-content: end;
  }
}
.business-list .right .textset .bus-genre ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  width: 79.5%;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .business-list .right .textset .bus-genre ul {
    width: 100%;
    align-items: flex-start;
  }
}
.business-list .right .textset .bus-genre ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 47%;
  width: 47%;
  height: 48px;
  border: 3px solid #ff701e;
  font-size: 1.25rem;
  font-weight: bold;
  color: #ff701e;
  margin-bottom: 3.2%;
}
@media screen and (max-width: 600px) {
  .business-list .right .textset .bus-genre ul li {
    width: 16rem;
    font-size: 1rem;
  }
}
.business-list .right img {
  display: block;
  width: 75%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .business-list .right img {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    top: 5%;
    left: 0;
    right: 0;
  }
}
.business-list #thumb1-list li:last-child {
  width: calc(19rem + 40px);
}
@media screen and (max-width: 600px) {
  .business-list #thumb1-list li:last-child {
    width: 18rem;
    font-size: 1rem;
  }
}
.business-list #thumb2-list {
  display: flex;
  flex-wrap: wrap;
}
.business-list #thumb2-list li {
  min-width: auto;
  width: auto;
}
.business-list #thumb2-list li:first-child {
  width: calc(15rem + 40px);
}
@media screen and (max-width: 600px) {
  .business-list #thumb2-list li:first-child {
    width: 12rem;
  }
}
.business-list #thumb2-list div {
  display: flex;
  justify-content: end;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .business-list #thumb2-list div {
    flex-direction: column;
  }
}
.business-list #thumb2-list div li {
  min-width: auto;
  width: auto;
}
.business-list #thumb2-list div li:first-child {
  width: calc(11rem + 40px);
  margin-right: 7%;
}
@media screen and (max-width: 600px) {
  .business-list #thumb2-list div li:first-child {
    width: 11rem;
    margin-right: 0;
  }
}
.business-list #thumb2-list div li:last-child {
  width: calc(12rem + 40px);
}
@media screen and (max-width: 600px) {
  .business-list #thumb2-list div li:last-child {
    width: 12rem;
  }
}
.business-list #thumb3-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -5%;
}
.business-list #thumb3-list li {
  min-width: auto;
  width: auto;
}
.business-list #thumb3-list li:first-child {
  width: calc(15rem + 40px);
}
.business-list #thumb3-list div:first-child {
  display: flex;
  justify-content: end;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .business-list #thumb3-list div:first-child {
    flex-direction: column;
    justify-content: start;
  }
}
.business-list #thumb3-list div:first-child li {
  min-width: auto;
  width: auto;
}
.business-list #thumb3-list div:first-child li:first-child {
  width: calc(13rem + 40px);
  margin-right: 9%;
}
@media screen and (max-width: 600px) {
  .business-list #thumb3-list div:first-child li:first-child {
    width: 12rem;
    margin-right: 0;
  }
}
.business-list #thumb3-list div:first-child li:last-child {
  width: calc(10rem + 40px);
}
@media screen and (max-width: 600px) {
  .business-list #thumb3-list div:first-child li:last-child {
    width: 10rem;
  }
}
.business-list #thumb3-list div:last-child {
  display: flex;
  justify-content: end;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .business-list #thumb3-list div:last-child {
    flex-direction: column;
    justify-content: start;
  }
}
.business-list #thumb3-list div:last-child li {
  min-width: auto;
  width: auto;
}
.business-list #thumb3-list div:last-child li:first-child {
  width: calc(11rem + 40px);
  margin-right: 10%;
}
@media screen and (max-width: 600px) {
  .business-list #thumb3-list div:last-child li:first-child {
    width: 11rem;
    margin-right: 0;
  }
}
.business-list #thumb3-list div:last-child li:last-child {
  width: calc(14rem + 40px);
}
@media screen and (max-width: 600px) {
  .business-list #thumb3-list div:last-child li:last-child {
    width: 14rem;
  }
}

@media screen and (max-width: 600px) {
  .reverse {
    min-height: 55vh;
  }
}
.reverse .left {
  height: 55vh;
}
.reverse .left .textset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
.reverse .left .textset h4 {
  width: 70%;
  margin-left: 0;
  font-size: 1.5rem;
}
.reverse .left .textset .bustext-detail {
  width: 70%;
  margin-left: 0;
  font-size: 1rem;
}
.reverse .left .textset .bus-genre {
  width: 70%;
  margin-left: 0;
}
.reverse .left .textset .bus-genre ul {
  width: 100%;
}
.reverse .left .textset .bus-genre ul li {
  width: 16rem;
  font-size: 1rem;
}
@media screen and (orientation: portrait) {
  .reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 600px) {
  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .reverse .right {
    height: auto;
  }
  .reverse .left {
    display: flex;
    min-height: 55vh;
  }
  .reverse .left .textset {
    height: auto;
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }
  .reverse .left .textset h4 {
    width: 100%;
    font-size: 1.5rem;
  }
  .reverse .left .textset .bustext-detail {
    width: 100%;
    font-size: 1rem;
  }
  .reverse .left .textset .bus-genre {
    width: 100%;
  }
  .reverse .left .textset .bus-genre ul {
    width: 100%;
    align-items: flex-start;
  }
  .reverse .left .textset .bus-genre ul li {
    width: 16rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .buslistend .right {
    height: 70vh;
  }
}

.header-box {
  width: 100%;
  max-width: 100%;
  height: 947px;
  position: relative;
}
@media screen and (min-width: 2048px) {
  .header-box {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}
.header-box .img-bg {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .header-box .img-bg {
    display: flex;
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .header-box .img-bg {
    height: 100%;
  }
}
.header-box .img-bg img {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 900px) {
  .header-box .img-bg img {
    position: absolute;
    right: -140%;
  }
}
@media screen and (max-width: 600px) {
  .header-box .img-bg img {
    height: 100%;
    right: 0;
    object-fit: cover;
    object-position: 62%;
  }
}
.header-box .ws-headtxt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  background: #000;
  width: 19.75%;
  height: 200px;
  top: 46.5%;
  left: 8.5%;
  z-index: 1;
  background: #101010;
}
@media screen and (min-width: 2048px) {
  .header-box .ws-headtxt {
    height: auto;
    min-height: 20vh;
  }
}
@media screen and (max-width: 900px) {
  .header-box .ws-headtxt {
    width: 70%;
    top: auto;
    left: 0;
    bottom: 10%;
    height: 150px;
  }
}
@media screen and (max-width: 600px) {
  .header-box .ws-headtxt {
    width: 55%;
    height: 100px;
    top: 34.5%;
    left: 0;
  }
}
.header-box .ws-headtxt h1 {
  width: 80%;
  margin: 15% auto 2.5%;
  font-size: 2.65rem;
  color: #ff701e;
}
@media screen and (max-width: 900px) {
  .header-box .ws-headtxt h1 {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 10% 0 5% 10%;
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 600px) {
  .header-box .ws-headtxt h1 {
    font-size: 1.75rem;
  }
}
.header-box .ws-headtxt h2 {
  width: 80%;
  margin: 2.5% auto 13%;
  font-size: 1.35rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .header-box .ws-headtxt h2 {
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: 10%;
  }
}
@media screen and (max-width: 600px) {
  .header-box .ws-headtxt h2 {
    font-size: 1rem;
  }
}

@media screen and (orientation: portrait) {
  .num-aslink {
    min-height: 60vh;
  }
}
.num-aslink h2 {
  width: 75%;
  margin: 4.3% auto 2.7%;
  color: black;
  font-size: 2.65rem;
}
@media screen and (max-width: 900px) {
  .num-aslink h2 {
    flex-direction: column;
    width: 90%;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .num-aslink h2 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    font-size: 0.8rem;
  }
}
.num-aslink h2 span {
  color: #ff701e;
  margin-left: 1%;
  font-size: 2.75rem;
  letter-spacing: 0.125rem;
}
@media screen and (max-width: 900px) {
  .num-aslink h2 span {
    margin: 0;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 600px) {
  .num-aslink h2 span {
    font-size: 1.2rem;
  }
}

.thumb-set {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  width: 74.5%;
  margin: 0 auto;
}
@media screen and (orientation: portrait) {
  .thumb-set {
    grid-template-rows: 1fr 1.5fr;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
}
.thumb-set .thumb {
  border-radius: 10px;
  background: white;
  height: 348px;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb {
    height: 240px;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb {
    height: 160px;
  }
}
.thumb-set .thumb .graph-title {
  font-size: 1.6rem;
  font-weight: bold;
  width: 95%;
  margin: 2.75% auto 0;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb .graph-title {
    font-size: 1.2rem;
  }
}
.thumb-set .thumb .num-count {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 30%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb .num-count {
    margin-left: 35%;
  }
}
.thumb-set .thumb .num-count span {
  color: #ff701e;
  font-size: 17.25rem;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb .num-count span {
    font-size: 11.5rem;
    margin: 0;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb .num-count span {
    font-size: 7rem;
  }
}
.thumb-set .thumb .num-count span.count-label {
  font-size: 4.15rem;
  color: #101010;
  margin-left: 10%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb .num-count span.count-label {
    font-size: 3.15rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb .num-count span.count-label {
    font-size: 3rem;
  }
}
.thumb-set .thumb .graph-data {
  display: flex;
}
.thumb-set .thumb .graph-data .graph-txt {
  width: 40%;
  padding-top: 19%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb .graph-data .graph-txt {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb .graph-data .graph-txt {
    padding-top: 1%;
  }
}
.thumb-set .thumb .graph-data .graph {
  position: relative;
  width: 60%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb .graph-data .graph {
    width: 50%;
  }
}
.thumb-set .thumb1 {
  grid-column: span 3/span 3;
}
.thumb-set .thumb2 {
  grid-column: span 3/span 3;
  grid-column-start: 4;
}
.thumb-set .thumb2 .num-count {
  margin-left: 13%;
  margin-top: 2%;
}
.thumb-set .thumb2 .num-count .small-count {
  font-size: 10.5rem;
  margin-left: 5%;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb2 .num-count .small-count {
    font-size: 5rem;
  }
}
.thumb-set .thumb2 .num-count span.count-label {
  font-size: 4.15rem;
  color: #101010;
  margin-left: -3%;
}
.thumb-set .thumb2 .num-count span.count-label:last-child {
  margin-left: 0.75%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb2 .num-count span.count-label:last-child {
    margin-left: -5%;
  }
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb2 .num-count span.count-label {
    font-size: 3.15rem;
    margin-left: -5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb2 .num-count span.count-label {
    font-size: 3rem;
  }
}
.thumb-set .thumb3 {
  grid-column: span 2/span 2;
  grid-row-start: 2;
}
.thumb-set .thumb3 .graph-txt p:nth-child(1) {
  font-size: 1.3rem;
  margin-top: 5%;
  margin-left: 18%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb3 .graph-txt p:nth-child(1) {
    font-size: 1.3rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb3 .graph-txt p:nth-child(1) {
    font-size: 0.75rem;
    margin-top: 1%;
  }
}
.thumb-set .thumb3 .graph-txt p:nth-child(3) {
  font-size: 1.3rem;
  margin-top: 19%;
  margin-left: 18%;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb3 .graph-txt p:nth-child(3) {
    font-size: 0.75rem;
    margin-top: 7%;
  }
}
.thumb-set .thumb3 .graph-txt p:nth-child(2) {
  margin-left: 20%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb3 .graph-txt p:nth-child(2) {
    font-size: 1.5rem;
  }
  .thumb-set .thumb3 .graph-txt p:nth-child(2) span {
    font-size: 2.5rem;
  }
}
.thumb-set .thumb3 .graph-txt p:nth-child(4) {
  margin-left: 27%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb3 .graph-txt p:nth-child(4) {
    font-size: 1.5rem;
  }
}
.thumb-set .thumb3 .graph-txt p:nth-child(4) span {
  margin-right: 10%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb3 .graph-txt p:nth-child(4) span {
    font-size: 2.5rem;
  }
}
.thumb-set .thumb3 img {
  position: absolute;
  top: 45%;
  left: 27%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb3 img {
    width: 60%;
    top: 47%;
    left: 20%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb3 img {
    width: 40%;
    top: 20%;
    left: 35%;
  }
}
@media screen and (max-width: 600px) {
  .thumb-set .thumb3 img {
    width: 35%;
    left: 37.5%;
    top: 10%;
  }
}
.thumb-set .thumb4 {
  grid-column: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 2;
}
.thumb-set .thumb4 .graph-data .graph-txt {
  padding-top: 10%;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt {
    padding-top: 0;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(1) {
  font-size: 1.3rem;
  margin-top: 5%;
  margin-left: 7%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(1) {
    font-size: 1.3rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(1) {
    font-size: 0.75rem;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(3) {
  font-size: 1.3rem;
  margin-top: 2%;
  margin-left: 7%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(3) {
    font-size: 1.3rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(3) {
    font-size: 0.75rem;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(5) {
  font-size: 1.3rem;
  margin-left: 7%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(5) {
    font-size: 1.3rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(5) {
    margin-top: 2%;
    font-size: 0.75rem;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(2) {
  font-size: 2rem;
  margin-left: -2%;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(2) {
    font-size: 1.3rem;
  }
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(2) span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(2) {
    font-size: 1.2rem;
    margin-top: -10%;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(2) span {
  font-size: 3.25rem;
  font-weight: bold;
  margin-left: 65%;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(2) span {
    font-size: 2.25rem;
    margin-left: 55%;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(4) {
  font-size: 2rem;
  margin-left: -4%;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(4) {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(4) {
    font-size: 1.2rem;
    margin-top: -10%;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(4) span {
  font-size: 3.25rem;
  font-weight: bold;
  margin-left: 65%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(4) span {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(4) span {
    font-size: 2.25rem;
    margin-left: 55%;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(6) {
  font-size: 2rem;
  margin-left: -2%;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(6) {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(6) {
    font-size: 1.2rem;
    margin-top: -10%;
  }
}
.thumb-set .thumb4 .graph-data .graph-txt p:nth-child(6) span {
  font-size: 3.25rem;
  font-weight: bold;
  margin-left: 65%;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 .graph-data .graph-txt p:nth-child(6) span {
    font-size: 2.25rem;
    margin-left: 55%;
  }
}
.thumb-set .thumb4 img {
  position: absolute;
  top: 33%;
  left: 30%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb4 img {
    width: 45%;
    top: 32%;
    left: 25%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb4 img {
    width: 25%;
    top: 12%;
    left: 41%;
  }
}
@media screen and (max-width: 600px) {
  .thumb-set .thumb4 img {
    top: 6%;
  }
}
.thumb-set .thumb5 {
  grid-column: span 2/span 2;
  grid-column-start: 5;
  grid-row-start: 2;
}
.thumb-set .thumb5 .graph-data .graph-txt {
  padding-top: 19%;
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb5 .graph-data .graph-txt {
    padding-top: 0;
  }
}
.thumb-set .thumb5 .graph-data .graph-txt p:nth-child(1) {
  font-size: 1.3rem;
  margin-top: 5%;
  margin-left: 16%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(1) {
    font-size: 1.3rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(1) {
    font-size: 0.75rem;
  }
}
.thumb-set .thumb5 .graph-data .graph-txt p:nth-child(3) {
  font-size: 1.3rem;
  margin-top: 18.5%;
  margin-left: 17%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(3) {
    font-size: 1.3rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(3) {
    font-size: 0.75rem;
    margin-top: 5.5%;
  }
}
.thumb-set .thumb5 .graph-data .graph-txt p:nth-child(2) {
  font-size: 2rem;
  margin-left: -2%;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(2) {
    font-size: 1.5rem;
  }
}
.thumb-set .thumb5 .graph-data .graph-txt p:nth-child(2) span {
  font-size: 3.25rem;
  font-weight: bold;
  margin-left: 19%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(2) span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(2) span {
    font-size: 2.25rem;
    margin-left: 55%;
  }
}
.thumb-set .thumb5 .graph-data .graph-txt p:nth-child(4) {
  font-size: 2rem;
  margin-left: -4%;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(4) {
    font-size: 1.5rem;
  }
}
.thumb-set .thumb5 .graph-data .graph-txt p:nth-child(4) span {
  font-size: 3.25rem;
  font-weight: bold;
  margin-left: 27%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(4) span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb5 .graph-data .graph-txt p:nth-child(4) span {
    font-size: 2.25rem;
    margin-left: 55%;
  }
}
.thumb-set .thumb5 img {
  position: absolute;
  top: 34%;
  left: 23%;
}
@media screen and (orientation: portrait) {
  .thumb-set .thumb5 img {
    width: 60%;
    top: 40%;
    left: 20%;
  }
}
@media screen and (max-width: 900px) {
  .thumb-set .thumb5 img {
    width: 41%;
    top: 3%;
    left: 34%;
  }
}
@media screen and (max-width: 600px) {
  .thumb-set .thumb5 img {
    top: -2%;
    left: 37.5%;
    width: 35%;
  }
}

.graph-txt {
  font-size: 2rem;
}

.graph-num {
  margin-left: 20%;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .graph-num {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 900px) {
  .graph-num {
    font-size: 1.2rem;
  }
}
.graph-num span {
  font-size: 3.25rem;
  margin-right: 4%;
}
@media screen and (max-width: 900px) {
  .graph-num span {
    font-size: 2rem;
  }
}

.oc {
  color: #ff701e;
}

.bc {
  color: #54cccc;
}

.gc {
  color: #54cccc;
}

.graph-wrap1 {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (orientation: portrait) {
  .graph-wrap1 {
    max-width: 100%;
  }
}
.graph-wrap1 .circle {
  width: 141%;
  position: absolute;
  left: -22%;
  top: -2.3em;
}
@media screen and (orientation: portrait) {
  .graph-wrap1 .circle {
    width: 170%;
    left: -35%;
    top: 0%;
  }
}
@media screen and (max-width: 900px) {
  .graph-wrap1 .circle {
    width: 103%;
    position: absolute;
    left: 3%;
    top: -4.25em;
  }
}
.graph-wrap1 .circle circle {
  fill: none;
  stroke-width: 2.5px;
}
.graph-wrap1 .circle circle:nth-child(1) {
  stroke: #f46060;
  stroke-dasharray: 84.3, 100;
  stroke-dashoffset: 0;
}
.graph-wrap1 .circle {
  transform: rotate(-90deg);
}
.graph-wrap1 .circle circle:nth-child(2) {
  stroke: #54cccc;
  stroke-dasharray: 15.7, 100;
  stroke-dashoffset: 31;
}

.graph-wrap2 {
  position: relative;
  width: 100%;
}
@media screen and (orientation: portrait) {
  .graph-wrap2 {
    max-width: 100%;
  }
}
.graph-wrap2 .circle {
  width: 141%;
  position: absolute;
  left: -20%;
  top: -2.3em;
}
@media screen and (orientation: portrait) {
  .graph-wrap2 .circle {
    width: 170%;
    left: -35%;
    top: 0%;
  }
}
@media screen and (max-width: 900px) {
  .graph-wrap2 .circle {
    width: 103%;
    position: absolute;
    left: 3%;
    top: -4.25em;
  }
}
.graph-wrap2 .circle circle {
  fill: none;
  stroke-width: 2.5px;
}
.graph-wrap2 .circle circle:nth-child(1) {
  stroke: #f46060;
  stroke-dasharray: 26.5, 100;
  stroke-dashoffset: 0;
}
.graph-wrap2 .circle {
  transform: rotate(-90deg);
}
.graph-wrap2 .circle circle:nth-child(2) {
  stroke: #54cccc;
  stroke-dasharray: 41.7, 100;
  stroke-dashoffset: 73.5;
}
.graph-wrap2 .circle circle:nth-child(3) {
  stroke: #f2cc61;
  stroke-dasharray: 41.5, 100;
  stroke-dashoffset: 115;
}

.graph-wrap3 {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (orientation: portrait) {
  .graph-wrap3 {
    max-width: 100%;
  }
}
.graph-wrap3 .circle {
  width: 141%;
  position: absolute;
  left: -24%;
  top: -2.3em;
}
@media screen and (orientation: portrait) {
  .graph-wrap3 .circle {
    width: 170%;
    left: -35%;
    top: 0%;
  }
}
@media screen and (max-width: 900px) {
  .graph-wrap3 .circle {
    width: 103%;
    position: absolute;
    left: 3%;
    top: -4.25em;
  }
}
.graph-wrap3 .circle circle {
  fill: none;
  stroke-width: 2.5px;
}
.graph-wrap3 .circle circle:nth-child(1) {
  stroke: #f46060;
  stroke-dasharray: 79, 100;
  stroke-dashoffset: 0;
}
.graph-wrap3 .circle {
  transform: rotate(-90deg);
}
.graph-wrap3 .circle circle:nth-child(2) {
  stroke: #54cccc;
  stroke-dasharray: 21, 100;
  stroke-dashoffset: 42;
}

@media screen and (orientation: portrait) {
  .ws-list {
    min-height: 45vh;
  }
}
@media screen and (max-width: 900px) {
  .ws-list {
    min-height: 80vh;
    margin-top: 10vh;
  }
}
.ws-list h2 {
  width: 80%;
  margin: 1% auto 0;
  justify-content: center;
  font-size: 2.05rem;
}
@media screen and (max-width: 900px) {
  .ws-list h2 {
    width: 90%;
    justify-content: flex-start;
  }
}
.ws-list .ws-list-set {
  display: flex;
  flex-direction: column;
  width: 62%;
  margin: 5.7% auto 0;
}
@media screen and (orientation: portrait) {
  .ws-list .ws-list-set {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set {
    width: 100%;
  }
}
.ws-list .ws-list-set .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: white dotted 3px;
  height: 80px;
}
@media screen and (max-width: 600px) {
  .ws-list .ws-list-set .list {
    height: auto;
  }
}
.ws-list .ws-list-set .list .list-title {
  width: 10%;
  font-weight: bold;
  font-size: 1.3rem;
  margin-left: 6.5%;
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list .list-title {
    width: 50px;
    min-width: 50px;
    font-size: 1rem;
  }
}
.ws-list .ws-list-set .list .list-ditail {
  display: flex;
  color: #ff701e;
  margin-left: 10.7%;
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list .list-ditail {
    margin-left: 1.5rem;
    font-size: 0.75rem;
  }
}
.ws-list .ws-list-set .list .list-ditail p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 2px solid #ff701e;
}
.ws-list .ws-list-set .list:first-child {
  border-top: none;
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:first-child {
    height: 110px;
  }
}
.ws-list .ws-list-set .list:first-child .list-ditail p {
  width: calc(7rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:first-child .list-ditail p {
    width: 6rem;
  }
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(2) {
    height: 110px;
  }
}
.ws-list .ws-list-set .list:nth-child(2) .list-ditail p {
  width: calc(23rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(2) .list-ditail p {
    width: 16rem;
  }
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) {
    height: 175px;
  }
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) .list-ditail {
    flex-wrap: wrap;
  }
}
.ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(1) {
  width: calc(9rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(1) {
    width: calc(5rem + 40px);
  }
}
.ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(2) {
  margin-left: 45px;
  width: calc(4.75rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(2) {
    width: calc(2.5rem + 40px);
    margin: 0 0 0 1rem;
  }
}
.ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(3) {
  margin-left: 45px;
  width: calc(4.75rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(3) {
    width: calc(2.5rem + 40px);
    margin: 0 0 0 1rem;
  }
}
.ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(4) {
  margin-left: 45px;
  width: calc(4.75rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(4) {
    width: calc(2.5rem + 40px);
    margin: 1rem 0 0 0;
  }
}
.ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(5) {
  margin-left: 45px;
  width: calc(1.2rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(3) .list-ditail p:nth-child(5) {
    margin: 1rem 0 0 1rem;
  }
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) {
    height: 230px;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail {
  width: 72%;
  height: 145px;
  flex-wrap: wrap;
  margin-top: 9.3%;
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail {
    height: 210px;
    margin-top: 0;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(1) {
  width: calc(13.7rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(1) {
    width: calc(7.5rem + 40px);
    margin: 1rem 0 0 0;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(2) {
  margin-left: 45px;
  width: calc(2.2rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(2) {
    width: calc(1.5rem + 40px);
    margin: 1rem 0 0 1rem;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(3) {
  margin-left: 45px;
  width: calc(7.25rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(3) {
    width: calc(3.5rem + 40px);
    margin: 1rem 0 0 0;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(4) {
  margin-left: 45px;
  width: calc(4.8rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(4) {
    width: calc(2.5rem + 40px);
    margin: 1rem 0 0 1rem;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(5) {
  width: calc(5rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(5) {
    width: calc(2.5rem + 40px);
    margin: 1rem 0 0 1rem;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(6) {
  margin-left: 44px;
  width: calc(4.9rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(6) {
    width: calc(2.5rem + 40px);
    margin: 1rem 0 0 0;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(7) {
  margin-left: 44px;
  width: calc(8.65rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(7) {
    width: calc(4rem + 40px);
    margin: 1rem 0 0 1rem;
  }
}
.ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(8) {
  margin-left: 44px;
  width: calc(4.85rem + 40px);
}
@media screen and (max-width: 900px) {
  .ws-list .ws-list-set .list:nth-child(4) .list-ditail p:nth-child(8) {
    width: calc(2.5rem + 40px);
    margin: 1rem 0 0 1rem;
  }
}

.interview-header {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.interview-header .header-box {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.interview-header .header-box .img-bg {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .img-bg {
    position: relative;
  }
}
.interview-header .header-box .img-bg img {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .img-bg img {
    position: absolute;
    width: auto;
    max-width: max-content;
    height: 100vh;
    left: -135%;
  }
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .img-bg img {
    position: absolute;
    width: auto;
    max-width: max-content;
    height: 100vh;
    left: -135%;
  }
}
.interview-header .header-box .interview-headtxt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  background: #000;
  width: 19.75%;
  height: 200px;
  top: 46.5%;
  left: 8.5%;
  z-index: 1;
  background: #101010;
}
@media screen and (min-width: 2048px) {
  .interview-header .header-box .interview-headtxt {
    height: auto;
    min-height: 20vh;
  }
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .interview-headtxt {
    width: 70%;
    top: auto;
    left: 0;
    bottom: 10%;
    height: 150px;
  }
}
@media screen and (max-width: 600px) {
  .interview-header .header-box .interview-headtxt {
    width: 55%;
    height: 100px;
    top: 34.5%;
    left: 0;
  }
}
.interview-header .header-box .interview-headtxt h1 {
  width: 80%;
  margin: 15% auto 2.5%;
  font-size: 2.65rem;
  color: #ff701e;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .interview-headtxt h1 {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 10% 0 5% 10%;
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 600px) {
  .interview-header .header-box .interview-headtxt h1 {
    font-size: 1.75rem;
  }
}
.interview-header .header-box .interview-headtxt h2 {
  width: 80%;
  margin: 2.5% auto 13%;
  font-size: 1.35rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .interview-headtxt h2 {
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: 10%;
  }
}
@media screen and (max-width: 600px) {
  .interview-header .header-box .interview-headtxt h2 {
    font-size: 1rem;
    justify-content: center;
  }
}
.interview-header .header-box .interview-title {
  position: absolute;
  bottom: 6%;
  right: 0;
  color: white;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .interview-title {
    bottom: 2%;
  }
}
@media screen and (max-width: 600px) {
  .interview-header .header-box .interview-title {
    bottom: 5%;
  }
}
.interview-header .header-box .interview-title h3 {
  font-size: 4.65rem;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .interview-title h3 {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 600px) {
  .interview-header .header-box .interview-title h3 {
    font-size: 1.6rem;
    margin-bottom: 5%;
  }
}
.interview-header .header-box .interview-title span {
  font-size: 3.05rem;
  margin-right: 3.5%;
}
@media screen and (max-width: 900px) {
  .interview-header .header-box .interview-title span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .interview-header .header-box .interview-title span {
    font-size: 1.25rem;
  }
}

.interview-block {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}
.interview-block .interview-set {
  width: 96.5%;
  margin: 3.35% auto 10%;
}
.interview-block .interview-set .interview-target {
  display: flex;
  width: 79.5%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target {
    width: 90%;
    max-width: 90%;
  }
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target .interview-icon {
    width: 20%;
    max-width: 20%;
    display: flex;
    align-items: center;
  }
  .interview-block .interview-set .interview-target img {
    width: 100%;
  }
}
.interview-block .interview-set .interview-target .interview-ditail {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target .interview-ditail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}
.interview-block .interview-set .interview-target .interview-name {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.interview-block .interview-set .interview-target .interview-name .name {
  font-size: 4.75rem;
  margin-left: 4.75%;
  color: #ff701e;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target .interview-name .name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.975rem;
  }
}
.interview-block .interview-set .interview-target .interview-name .name .year-its {
  font-size: 1.5rem;
  color: black;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target .interview-name .name .year-its {
    font-size: 0.75rem;
  }
}
.interview-block .interview-set .interview-target .interview-name .ruby {
  text-align: right;
  font-size: 3rem;
  width: 59%;
  margin-top: 2.75%;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target .interview-name .ruby {
    font-size: 1rem;
    width: 94%;
  }
}
.interview-block .interview-set .interview-target .interview-position {
  width: 90%;
  margin: 2.5% auto 0;
  font-size: 1.55rem;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-target .interview-position {
    font-size: 0.725rem;
  }
}
@media screen and (max-width: 600px) {
  .interview-block .interview-set .interview-target .interview-position {
    font-size: 0.7rem;
  }
}
.interview-block .interview-set .interview-post {
  display: flex;
  width: 96%;
  margin: 6% auto 0;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-post {
    flex-direction: column;
  }
}
.interview-block .interview-set .interview-post .interview-question {
  width: 49%;
  max-width: 49%;
  box-sizing: border-box;
  padding-right: 5%;
  padding-left: 0.25%;
  margin-right: 0.3%;
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-question {
    width: 100%;
    max-width: 100%;
  }
}
.interview-block .interview-set .interview-post .interview-question .question-block {
  margin-bottom: 2.7%;
}
.interview-block .interview-set .interview-post .interview-question .question-block .question {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .interview-block .interview-set .interview-post .interview-question .question-block .question {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .interview-block .interview-set .interview-post .interview-question .question-block .question {
    font-size: 0.9rem;
  }
}
.interview-block .interview-set .interview-post .interview-question .question-block .question span {
  font-size: 3.2rem;
  font-weight: bold;
  font-family: "IBM Plex Sans JP";
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-question .question-block .question span {
    font-size: 1.65rem;
  }
}
.interview-block .interview-set .interview-post .interview-question .question-block .q-answer {
  width: 92%;
  margin: 3.5% 0 0 8.5%;
  font-size: 1.1rem;
  line-height: 1.9rem;
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-question .question-block .q-answer {
    font-size: 0.75rem;
    line-height: 1.5rem;
  }
}
.interview-block .interview-set .interview-post .interview-question .question-block:nth-child(2) .q-answer {
  margin: 2% 0 0 8.5%;
}
.interview-block .interview-set .interview-post .interview-question .question-block:nth-child(3) .q-answer {
  margin: 2% 0 0 8.5%;
}
.interview-block .interview-set .interview-post .interview-question .question-block:nth-child(4) .q-answer {
  margin: 1.8% 0 0 8.5%;
}
.interview-block .interview-set .interview-post .interview-question .interview-image {
  padding: 2% 0 0 2%;
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-question .interview-image {
    padding: 3% 0 0 3%;
    width: 100%;
  }
  .interview-block .interview-set .interview-post .interview-question .interview-image img {
    width: 100%;
    max-width: 100%;
  }
}
.interview-block .interview-set .interview-post .interview-question .interview-image img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-question .interview-image img {
    width: 100%;
    max-width: 100%;
  }
}
.interview-block .interview-set .interview-post .interview-schedule {
  width: 50%;
  max-width: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-schedule {
    width: 100%;
    max-width: 100%;
  }
}
.interview-block .interview-set .interview-post .interview-schedule h4 {
  width: 25%;
  margin: 3.5% auto 6%;
  text-align: center;
  font-size: 2.5rem;
  color: #ff701e;
}
@media screen and (max-width: 768px) {
  .interview-block .interview-set .interview-post .interview-schedule h4 {
    width: 100%;
  }
}

.time-schedule ul {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 5%;
}
.time-schedule li {
  display: flex;
  align-items: center;
}
.time-schedule li .time {
  display: block;
  width: 9.5%;
  height: 4.5rem;
  margin-bottom: 0;
  line-height: 4.5rem;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .time-schedule li .time {
    font-size: 1rem;
    line-height: 4.25rem;
  }
}
.time-schedule li .ditail {
  display: block;
  flex: 1;
  font-size: 1.8rem;
  margin: -1% 0 0 4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .time-schedule li .ditail {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.time-schedule li .under-arrow {
  width: 9.5%;
  height: 4rem;
  margin-top: 0;
  margin-bottom: 0.5rem; /* 必要に応じて調整 */
  line-height: 4rem;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .time-schedule li .under-arrow {
    width: 100%;
    font-size: 2rem;
    line-height: 2rem;
    height: 2rem;
  }
}
.time-schedule li:nth-child(2) {
  margin-bottom: 0.65%;
}
.time-schedule li:nth-child(4) {
  margin-bottom: 1%;
}
.time-schedule li:nth-child(6) {
  margin-bottom: 0.9%;
}
@media screen and (max-width: 768px) {
  .time-schedule li:nth-child(7) .ditail {
    line-height: 4.5rem;
    width: 29%;
    text-align: center;
  }
}
.time-schedule li:nth-child(8) {
  margin-bottom: 0.7%;
}
.time-schedule li:nth-child(10) {
  margin-bottom: 1%;
}
.time-schedule li:nth-child(12) {
  margin-bottom: 1%;
}
.time-schedule li:nth-child(14) {
  margin-bottom: 0.9%;
}
.time-schedule li:nth-child(16) {
  margin-bottom: 0.7%;
}
.time-schedule li:last-child {
  margin-bottom: 2rem; /* お好みの余白値に調整可能 */
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  max-width: 100%;
  height: auto;
}
footer .F-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 80%;
  margin: 4.5% auto 0;
  height: auto;
}
@media screen and (max-width: 900px) {
  footer .F-link {
    width: 100%;
    max-width: 100%;
  }
}
footer .flink-glid {
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: center;
  width: 66%;
}
@media screen and (orientation: portrait) {
  footer .flink-glid {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  footer .flink-glid {
    width: 100%;
  }
}
footer .flink-glid p {
  width: 26.5%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 3rem;
}
@media screen and (orientation: portrait) {
  footer .flink-glid p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  footer .flink-glid p {
    width: 20%;
    font-size: 0.75rem;
    line-height: 4rem;
  }
}
footer .flink-glid .corp-info,
footer .flink-glid .bus-info,
footer .flink-glid .rec-info,
footer .flink-glid .info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 95%;
  height: 2.5rem;
}
@media screen and (max-width: 900px) {
  footer .flink-glid .corp-info,
  footer .flink-glid .bus-info,
  footer .flink-glid .rec-info,
  footer .flink-glid .info {
    font-size: 0.75rem;
    height: 4rem;
  }
}
@media screen and (max-width: 600px) {
  footer .flink-glid .corp-info,
  footer .flink-glid .bus-info,
  footer .flink-glid .rec-info,
  footer .flink-glid .info {
    display: flex;
    justify-content: space-between;
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  footer .flink-glid .bus-info {
    height: 6rem;
  }
  footer .flink-glid .bus-info p {
    line-height: 6rem;
  }
}
footer .flink-glid div {
  border-bottom: 3px solid #ff701e;
}
footer .flink-glid div:last-child {
  border: none;
}
footer .info-sub {
  width: 100%;
  display: flex;
  justify-content: space-between;
  line-height: 3rem;
}
@media screen and (orientation: portrait) {
  footer .info-sub {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 900px) {
  footer .info-sub {
    flex-wrap: wrap;
    justify-content: flex-start;
    line-height: 2rem;
  }
}
@media screen and (max-width: 600px) {
  footer .info-sub {
    width: 80%;
  }
}
footer .info-sub li {
  margin: 0 2%;
}
@media screen and (max-width: 900px) {
  footer .info-sub li {
    margin: 0 6% 0 0;
  }
}
footer .info-sub li:first-child {
  margin-left: 0;
}
footer .info-sub li:last-child {
  margin-right: 0;
}
footer small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 2.5rem;
  background: #f0f0f0;
  text-align: center;
  margin-top: 3.75rem;
  line-height: 2.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 900px) {
  footer small {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */