@charset "UTF-8";
/* ---------------------------------------
  COPYRIGHT 2024 00W0 ltd.
--------------------------------------- */
:root {
  --white: #fff;
  --black: rgb(10, 20, 30);
  --dgray: rgb(60, 70, 80);
  --gray: #ccc;
  --red: rgb(220, 0, 0);
  --first: rgb(0, 128, 197);
  --second: rgb(35, 168, 239);
  --serif: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  --sans_serif: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  --sans_serif_en: "Roboto", sans-serif;
  --sans_serif_mn: "Roboto Mono", monospace;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--sans_serif);
  color: var(--black);
  font-size: clamp(12px, 2.75vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  background-color: #fefefe;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* LOAD */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.8s;
}

body.fade::after {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  font-family: var(--sans_serif);
  line-height: 1;
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.en {
  font-family: var(--sans_serif_en);
  font-optical-sizing: auto;
  font-weight: 300;
}

.mn {
  font-family: var(--sans_serif_mn);
  font-optical-sizing: auto;
  font-weight: 300;
}

.red {
  color: rgb(220, 0, 0);
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.center {
  text-align: center !important;
}

.hide {
  display: none;
}

.pc_hide,
.sp_hide {
  display: none;
}

@media (max-width: 768px) {
  .pc_hide {
    display: inherit;
  }
}
@media (min-width: 769px) {
  .sp_hide {
    display: inherit;
  }
}
a {
  color: var(--first);
  transition: all 0.4s ease;
}
a:active, a:hover {
  color: var(--first);
  transition: all 0.4s ease;
}
a:active img, a:hover img {
  opacity: 0.8;
  transition: all 0.4s ease;
}
a:focus {
  outline: none;
}
a img {
  transition: all 0.4s ease;
}
a.btn {
  position: relative;
  display: inline-block;
  margin: 0.5em 0;
  padding: 0.8em 2em;
  color: var(--dgray);
  font-size: inherit;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: auto;
  cursor: pointer;
  border: 1px solid var(--dgray);
  border-radius: 2px;
  background-color: transparent;
  transition: all 0.4s ease;
}
a.btn:active, a.btn:hover {
  color: var(--white);
  background-color: var(--dgray);
  border: 1px solid var(--dgray);
  border-radius: 10px;
}
a.btn.arrow {
  position: relative;
  padding-right: 2em;
}
a.btn.arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid var(--dgray);
  border-right: 1px solid var(--dgray);
  transform: rotate(45deg);
}
a.btn.arrow:hover::before {
  border-color: var(--white);
}

img {
  width: 100%;
  max-width: 100%;
  transition: all 0.4s ease;
}

.txt_box {
  background: #f7f7f7;
  margin-bottom: 2em;
  padding: 1em 2em 0.5em;
  border-radius: 1em;
}
.txt_box p {
  margin: 0;
  line-height: 1.4;
}

.dotdot {
  position: relative;
  display: inline-block;
}
.dotdot::before {
  position: absolute;
  content: " ";
  top: 0;
  right: -10px;
  width: 4px;
  height: 4px;
  background: var(--gray);
  animation: dotdot 1s steps(2, jump-none) infinite;
}
.dotdot.bottom::before {
  top: auto;
  bottom: 0;
}

@keyframes dotdot {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  transition: all 0.4s ease 0s;
}
.fadeIn + .fadeIn {
  transition-delay: 0.25s;
}
.fadeIn + .fadeIn + .is-show {
  transition-delay: 0.5s;
}
.fadeIn.fd_left {
  transform: translate(-20px, 0);
}

.fadeIn.is-show {
  opacity: 1;
  transition: all 0.8s ease 0s;
}
.fadeIn.is-show + .is-show {
  transition-delay: 0.25s;
}
.fadeIn.is-show + .is-show + .is-show {
  transition-delay: 0.5s;
}
.fadeIn.is-show.fd_left {
  transform: translate(0, 0);
}

.fadeIn img {
  filter: brightness(3);
  transition: filter 1s cubic-bezier(0.52, 0.26, 0.27, 0.94);
}

.fadeIn.is-show img {
  filter: brightness(1);
}

/* HEADER -------------------------- */
#g_header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  padding: 0 10px;
  mix-blend-mode: difference;
}
#g_header .inner {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 1.6em 0 0;
  color: var(--white);
}
#g_header a#logo {
  display: block;
  max-width: 40%;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
#g_header a#logo h1 {
  position: relative;
  max-width: 160px;
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 10px;
}
#g_header a#logo h1 img {
  position: relative;
  top: -1.4em;
  width: 100%;
}
#g_header a#logo h1 span {
  position: relative;
  top: 5px;
  height: 10px;
  font-size: 10px;
  line-height: 1;
}
#g_header #currentTime {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 7em;
  padding-right: 1em;
  margin-left: auto;
  color: var(--white);
  font-family: var(--sans_serif_mn);
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: clamp(10px, 1.75vw, 11px);
  line-height: 1;
}
#g_header #gnav {
  display: block;
}
#g_header #gnav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#g_header #gnav ul li {
  width: 100%;
  white-space: nowrap;
}
#g_header #gnav ul li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 0 2em 0 1em;
  border-left: 1px solid var(--white);
  color: inherit;
  font-size: clamp(12px, 4vw, 16px);
  font-weight: 500;
}
#g_header #gnav ul li a span {
  font-size: 0.75em;
  font-family: var(--sans_serif_mn);
  font-weight: 400;
  letter-spacing: 0;
}
#g_header #gnav ul li a:hover,
#g_header #gnav ul li a:active {
  opacity: 0.75;
  text-decoration: none;
}
#g_header #gnav_toggle {
  display: none;
}

#gnav_bg {
  display: none;
}

@media screen and (max-width: 1000px) {
  #g_header {
    height: 60px;
    padding: 20px 10px 0;
  }
  #g_header .inner {
    width: 100%;
    padding: 0 0px;
  }
  #g_header a#logo h1 {
    width: 100px;
    height: auto;
    margin-left: 0;
  }
  #g_header a#logo h1 img {
    margin-top: 0.5em;
    left: -1em;
  }
  #g_header a#logo h1 span {
    font-size: 8px;
  }
  #g_header #gnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-100%, 0);
    transition: all 1.4s ease 0.24s;
  }
  #g_header #gnav.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    transition: all 0.4s ease 0.24s;
  }
  #g_header #gnav.active li {
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: translate(0, 0);
  }
  #g_header #gnav.active li:nth-child(1) {
    transition-delay: 0s;
  }
  #g_header #gnav.active li:nth-child(2) {
    transition-delay: 0.15s;
  }
  #g_header #gnav.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  #g_header #gnav.active li:nth-child(4) {
    transition-delay: 0.45s;
  }
  #g_header #gnav.active li:nth-child(5) {
    transition-delay: 0.6s;
  }
  #g_header #gnav.active li:nth-child(6) {
    transition-delay: 0.75s;
  }
  #g_header #gnav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5%;
  }
  #g_header #gnav ul li {
    width: 50%;
    text-align: left;
    opacity: 0;
    transform: translate(-100%, 0);
    transition: all 1.4s ease 0.4s;
  }
  #g_header #gnav ul li:last-child {
    border: none;
  }
  #g_header #gnav ul li a {
    display: block;
    margin: 0 0.25em;
    padding: 1em 0 0.5em 1em;
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: 0.1em;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  #g_header #gnav ul li a span {
    display: block;
    font-size: 0.75em;
  }
  #g_header #gnav ul li a.gnav__link:before {
    position: absolute;
    content: "";
    top: 65%;
    left: 0;
    width: 5px;
    height: 1px;
    background: #fff;
    animation: dotdot 1s steps(10, jump-none) infinite;
  }
  #g_header #gnav_toggle {
    position: relative;
    top: 0;
    display: block;
    width: 40px;
    height: 40px;
    z-index: 100;
  }
  #g_header #gnav_toggle .circle {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white);
    border-radius: 100%;
  }
  #g_header #gnav_toggle .circle:hover {
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #g_header #gnav_toggle span {
    display: block;
    position: absolute;
    width: 50%;
    height: 1px;
    background: var(--white);
    transition: 0.4s ease-in-out;
  }
  #g_header #gnav_toggle span:nth-child(1) {
    top: 40%;
  }
  #g_header #gnav_toggle span:nth-child(2) {
    top: 56%;
  }
  #g_header.open #gnav_toggle span:nth-child(1) {
    top: 47%;
    transform: rotate(135deg);
  }
  #g_header.open #gnav_toggle span:nth-child(2) {
    top: 47%;
    transform: rotate(-135deg);
  }
  #gnav_bg {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: var(--black);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    transform: translateY(-100%);
    transition: all 0.8s ease 1s;
  }
  #gnav_bg.active {
    transform: translateY(0);
    transition: transform 0.8s ease 0s;
  }
}
@media screen and (max-width: 1000px) and (hover: hover) and (pointer: fine) {
  #gnav li:hover {
    background: transparent;
  }
}
/* FOOTER -------------------------- */
#g_footer {
  padding: 2em 0;
  background-color: var(--black);
  color: #fff;
  font-size: clamp(12px, 3.25vw, 15px);
  letter-spacing: 0.04em;
}
#g_footer .inner {
  display: flex;
  width: 90%;
  margin: auto;
}
#g_footer .inner .logo {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 25%;
  padding: 0 0 0 1em;
  font-size: min(3vw, 12px);
  text-align: left;
}
#g_footer .inner .logo img {
  max-width: 200px;
}
#g_footer .inner .logo span {
  padding: 0 2em;
  letter-spacing: 0.2em;
}
#g_footer .inner .fnav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 75%;
  margin: 1em 0 0 2em;
}
#g_footer .inner .fnav h4 {
  margin: 0 0 1em;
  color: var(--gray);
  font-size: 0.75em;
  font-family: var(--sans_serif_en);
  font-weight: 300;
}
#g_footer .inner .fnav ul {
  display: flex;
  margin: 0 0 2em;
}
#g_footer .inner .fnav ul li {
  margin-right: 1em;
  padding: 0.4em 0 0;
  font-size: clamp(13px, 3.25vw, 15px);
  font-family: var(--sans_serif_mn);
  font-weight: 300;
  line-height: 1.24;
}
#g_footer .inner .fnav ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
#g_footer .inner .copyright {
  font-size: 0.75em;
}

@media screen and (max-width: 960px) {
  #g_footer {
    padding: 2em 0 4em;
  }
  #g_footer .inner {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }
  #g_footer .inner .logo {
    flex-direction: row;
    justify-content: center;
    align-items: end;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #g_footer .inner .logo img {
    width: 40%;
  }
  #g_footer .inner .logo span {
    padding: 0 0 0.2em 0;
    font-size: clamp(12px, 3.25vw, 14px);
    letter-spacing: 0;
  }
  #g_footer .inner .fnav {
    width: 100%;
    margin: 1em 0;
  }
  #g_footer .inner .fnav h4 {
    display: flex;
    width: 90%;
    margin: 2em 5% 1em;
    padding: 0.5em 0;
    border-top: 1px solid var(--gray);
    font-size: 0.6em;
  }
  #g_footer .inner .fnav ul {
    margin: 0 5% 1em;
    padding: 0;
    flex-wrap: wrap;
    flex-direction: row;
  }
  #g_footer .inner .fnav ul li {
    padding: 0 0 1em;
  }
  #g_footer .inner .copyright {
    text-align: center;
  }
}
#pageTop {
  z-index: 99;
  position: fixed;
  bottom: 5vh;
  right: 0;
  display: block;
  width: 3em;
  height: 2em;
  transform: rotate(-90deg) translateY(3em);
  color: var(--black);
  opacity: 0.8;
  font-size: clamp(12px, 3.25vw, 18px);
  font-family: var(--sans_serif_mn);
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s ease;
  mix-blend-mode: exclusion;
}
#pageTop.fixed {
  transform: rotate(0deg) translateY(-1em);
  transition: all 0.4s ease;
}
#pageTop .arrow {
  display: block;
  width: 1.5em;
  height: 1.5em;
  color: var(--white);
}
body[style] #pageTop {
  opacity: 0;
}

/* Page Contents -------------------------- */
#pageContainer {
  width: 100%;
  min-height: 100vh;
}
#pageContainer.top .mv {
  display: flex;
  align-items: center;
  min-height: 500px;
  height: 95vw;
  max-height: 100vh;
  padding: calc(env(safe-area-inset-left) + 1em);
  background-image: url(../img/top_mv.jpg);
  background-position: 50% 50%;
  background-size: cover;
}
#pageContainer.top .mv::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 10%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.75) 100%);
}
#pageContainer.top .mv .inner {
  position: absolute;
  top: 35%;
}
#pageContainer.top .container .inner {
  margin: 2em auto;
}
#pageContainer .mv {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 40vw;
  min-height: 375px;
  max-height: 600px;
  align-items: end;
  background-color: var(--black);
  background-size: cover;
  background-position: 50% 50%;
}
#pageContainer .mv::before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.7) 20%, rgba(10, 20, 30, 0.7) 60%, rgba(10, 20, 30, 0.9) 100%);
}
#pageContainer .mv .inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  color: var(--white);
  padding: 0 2em 3em;
}
#pageContainer .mv .catchcopy {
  margin: 0 0 2em;
  font-size: clamp(20px, 5.7525vw, 48px);
  line-height: 1.4;
  transition: all 0.8s ease 0.4s;
}
#pageContainer .mv .catchcopy2 {
  margin: 0;
  font-size: clamp(16px, 4.25vw, 32px);
  transition: all 1s ease 1s;
}
#pageContainer .mv p {
  transition: all 1s ease 1.5s;
}
#pageContainer .mv .ttl {
  margin: 0 0;
  font-size: clamp(20px, 8vw, 50px);
  line-height: 1;
  transition: all 0.4s ease 0s;
}
#pageContainer .mv .ttl + p {
  transition: all 0.8s ease 1s;
}
#pageContainer .container {
  width: 96%;
  margin: auto;
  font-size: min(3.525vw, 16px);
  line-height: 1.8;
  text-align: center;
}
#pageContainer .container .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: -1em auto 0;
  padding: 2em 0;
  background-color: var(--white);
  border-radius: 1em;
}
#pageContainer .container .inner.contents {
  margin-bottom: 4em;
  box-shadow: 0 10px 30px 0 rgba(130, 130, 130, 0.25);
}
#pageContainer .container .section_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
#pageContainer .container .section_grid .card-75 {
  width: 73%;
  margin-bottom: 2em;
}
#pageContainer .container .section_grid .card-50 {
  width: 48%;
  margin-bottom: 2em;
}
#pageContainer .container .section_grid .card-30 {
  width: 31.3333333333%;
  margin-bottom: 2em;
}
#pageContainer .container .section_grid .card-25 {
  width: 23%;
  margin-bottom: 2em;
}
#pageContainer .container img {
  border-radius: 0.5em;
}
#pageContainer .container .section_ttl {
  position: relative;
  width: 94%;
  margin: 1em auto 2em;
  border-top: 1px solid var(--black);
  text-align: center;
}
#pageContainer .container .section_ttl h2 {
  margin: 2em 0 1em;
  font-size: clamp(18px, 5vw, 28px);
  line-height: 1;
}
#pageContainer .container .section_ttl .mn.counter {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(10px, 3vw, 16px);
  font-weight: 200;
  /* line-height: 1.2; */
  z-index: 1;
}
#pageContainer .container .section_ttl .mn.ttl_en {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: clamp(12px, 3vw, 16px);
}
#pageContainer .container .section_ttl .mn.ttl_en::before {
  top: 60%;
  background: var(--gray);
  animation: dotdot 1s steps(2, jump-none) infinite;
}
#pageContainer .container .section_content {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  margin: 4em auto 4em;
  text-align: left;
}
#pageContainer .container .section_content.row {
  flex-direction: column;
}
#pageContainer .container .section_content .num {
  position: sticky;
  top: 100px;
  width: 15%;
  height: 1em;
  padding-bottom: 0.2em;
  overflow: hidden;
  color: var(--first);
  font-size: clamp(30px, 8vw, 96px);
  font-family: var(--sans_serif_mn);
  font-weight: 200;
  white-space: nowrap;
  line-height: 0.8em;
  text-align: center;
  letter-spacing: -0.075em;
  opacity: 0.5;
}
#pageContainer .container .section_content .num::after {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0.1em;
  width: 0.2em;
  height: 2px;
  background: var(--first);
}
#pageContainer .container .section_content .num_box {
  width: 80%;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--gray);
}
#pageContainer .container .section_content h3 {
  margin: 0 0 1.5em;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 500;
  line-height: 1.6;
}
#pageContainer .container .section_content p {
  margin: 0 0 1.6em;
  padding: 0;
  font-size: clamp(15px, 3.725vw, 18px);
  text-align: justify;
}
#pageContainer .container .thumb {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  border-radius: 0.5em;
  overflow: hidden;
}
#pageContainer .container .thumb .label {
  position: absolute;
  top: 1em;
  left: 1em;
  padding: 0.4em 2em;
  font-size: clamp(12px, 3vw, 16px);
  background-color: rgba(0, 110, 170, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  border-radius: 4em;
}
#pageContainer .container .thumb h3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.6em;
  font-size: clamp(14px, 4vw, 20px);
  color: var(--white);
  font-weight: 400;
  text-align: center;
  background-color: rgba(20, 40, 60, 0.75);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#pageContainer .container .thumb h3::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg) translateY(-50%);
}
#pageContainer .container p {
  padding: 0 1em;
  font-size: clamp(12px, 3.725vw, 16px);
  text-align: justify;
}
#pageContainer .container .next_nav {
  padding: 0 0 4em;
  text-align: center;
}
#pageContainer #info .section_ttl h2 {
  font-size: clamp(16px, 4vw, 20px);
}
#pageContainer dl.news_list {
  display: flex;
  flex-wrap: wrap;
  width: 94%;
  margin: 0 0 1em 2%;
  padding: 0;
  font-size: clamp(12px, 3vw, 14px);
  text-align: left;
}
#pageContainer dl.news_list dt {
  width: 20%;
  margin: 0;
  padding: 0 1em 0 0;
  /* border-top: 1px solid var(--black); */
  font-family: var(--sans_serif_mn);
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 300;
  line-height: 1.2;
  text-align: right;
}
#pageContainer dl.news_list dd {
  width: 80%;
  margin: 0;
  padding: 0.5em 0 1em;
  border-top: 1px solid var(--black);
}
#pageContainer .img_bottom {
  position: relative;
  display: flex;
  overflow: hidden;
  max-height: 400px;
  align-items: center;
  justify-content: center;
}
#pageContainer .img_bottom img {
  width: 100%;
  height: 100%;
}
#pageContainer .img_bottom::before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  /* z-index: 0; */
  background: rgba(10, 20, 30, 0.5);
}

@media screen and (max-width: 900px) {
  #pageContainer .mv {
    height: 400px;
    max-height: 100svh;
  }
  #pageContainer.top .mv {
    height: 100vh;
    max-height: 100svh;
  }
  #pageContainer .container .section_grid .card-50, #pageContainer .container .section_grid .card-30 {
    width: 100%;
  }
  #pageContainer .container .section_grid .card-25 {
    width: 48%;
  }
  #pageContainer .container dl.news_list {
    display: flex;
    flex-wrap: wrap;
    width: 94%;
    margin: 0 3% 1em;
    padding: 0;
    font-size: clamp(12px, 3vw, 14px);
    text-align: left;
  }
  #pageContainer .container dl.news_list dt {
    width: 16%;
    padding: 0 1em 1em 0;
    font-size: clamp(12px, 3vw, 16px);
  }
  #pageContainer .container dl.news_list dd {
    width: 83%;
    margin: 0;
    padding: 0.5em 0 1em;
    border-top: 1px solid var(--black);
  }
  #pageContainer .container .section_content .num {
    top: 70px;
  }
}
/* TOP -------------------------- */
.top {
  position: relative;
}

/* VISION ----------------------- */
#vision {
  position: relative;
}

/* COMPANY ---------------------- */
#company table {
  width: 100%;
}
#company table th, #company table td {
  padding: 1em;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
  border-bottom: solid 1px var(--gray);
}
#company table tr:last-child th,
#company table tr:last-child td {
  border: none;
}
@media screen and (max-width: 900px) {
  #company table th, #company table td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  #company table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* SERVICE ---------------------- */
#service .section_content h4 {
  width: 100%;
  margin: 1em 0;
  padding-bottom: 0.24em;
  font-size: clamp(15px, 5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid var(--dgray);
}
#service .section_content h4 span {
  font-size: clamp(16px, 3vw, 22px);
  margin-right: 0.2em;
}
#service .section_content .consult p {
  margin: 1em 0 2em;
  font-size: clamp(14px, 3.25vw, 16px);
}
#service .flow_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
#service .flow_list .flow {
  padding-left: 0;
}
#service .flow_list .flow > li {
  list-style-type: none;
  display: flex;
}
#service .flow_list .flow > li:not(:last-child) {
  margin: 0 0 50px;
}
#service .flow_list .flow > li .icon {
  position: relative;
  width: 2em;
  box-sizing: border-box;
  margin: 0;
  padding: 1.5em 0;
  color: #FFF;
  font-family: var(--sans_serif_mn);
  text-align: center;
  background: var(--first);
  border-radius: 5px 5px 0 0;
  line-height: 1;
}
#service .flow_list .flow > li .icon > div {
  white-space: nowrap;
  transform: rotate(90deg);
}
#service .flow_list .flow > li .icon::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: " ";
  width: 0;
  height: 0;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-top: 10px solid var(--first);
}
#service .flow_list .flow > li dl {
  width: calc(100% - 2em);
  padding: 0 0 0 1em;
}
#service .flow_list .flow > li dl dt {
  position: relative;
  margin: 0 0 1em;
  font-size: 1.2em;
  font-weight: 700;
  border-bottom: 2px solid var(--gray);
}
#service .flow_list .flow > li dl dt::after {
  content: "";
  width: 30%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: var(--second);
}
#service .flow_list .flow > li dl dd {
  margin: 0;
}
#service .list {
  width: 100%;
  margin: 0 0 2em 0;
  padding: 0 0 0 1.5em;
}
#service .list li {
  margin: 0 0 0.8em;
  line-height: 1.5;
}

.bnr_area {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin: 0em auto 4em;
}
.bnr_area .bnr {
  display: block;
}

/* RECRUIT ---------------------- */
#recruit table {
  width: 100%;
}
#recruit table th, #recruit table td {
  padding: 1em;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
  border-bottom: solid 1px var(--gray);
}
#recruit table th {
  width: 30%;
}
#recruit table tr:last-child th,
#recruit table tr:last-child td {
  border: none;
}
@media screen and (max-width: 900px) {
  #recruit table th, #recruit table td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  #recruit table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
#recruit ul.process {
  margin: 0 0 2em;
  padding: 0;
}
#recruit ul.process li:last-child {
  margin-bottom: 0;
}
#recruit ul.process .process-item {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  background: #f7f7f7;
  border-radius: 0 5px 5px 0;
}
#recruit ul.process .process-item .ttl {
  position: relative;
  margin-bottom: 0;
  padding: 16px 8px;
  width: 40%;
  max-width: 240px;
  color: var(--white);
  font-size: 1.2em;
  text-align: center;
  border-radius: 5px 0 0 5px;
}
#recruit ul.process .process-item .ttl::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
}
#recruit ul.process .process-item .ttl span.mn {
  font-size: initial;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
#recruit ul.process .process-item__detail {
  width: 70%;
  padding: 16px 24px;
}
#recruit ul.process .entry .ttl {
  background-color: rgba(0, 130, 200, 0.5);
}
#recruit ul.process .entry .ttl::before {
  border-top: 15px solid rgba(0, 130, 200, 0.5);
}
#recruit ul.process .doc .ttl {
  background-color: rgba(0, 130, 200, 0.7);
}
#recruit ul.process .doc .ttl::before {
  border-top: 15px solid rgba(0, 130, 200, 0.7);
}
#recruit ul.process .interview .ttl {
  background-color: rgba(0, 130, 200, 0.8);
}
#recruit ul.process .interview .ttl::before {
  border-top: 15px solid rgba(0, 130, 200, 0.8);
}
#recruit ul.process .decision .ttl {
  background-color: rgb(0, 130, 200);
}
#recruit #entry_form .contact_form th {
  width: 25%;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #recruit #entry_form .contact_form th, #recruit #entry_form .contact_form td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  #recruit #entry_form .contact_form th {
    padding-bottom: 0;
  }
}
#recruit #entry_form .indispensable {
  color: #f00;
  font-size: 0.75em;
}
#recruit #entry_form input.text {
  border: 1px solid #ddd;
  background-color: var(--white);
  width: 99%;
  padding: 1em;
  border-radius: 5px;
}
#recruit #entry_form textarea {
  width: 99%;
  margin: 5px 0;
  padding: 0.5em;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  outline: none;
}
#recruit #entry_form .radio-gender label {
  padding: 0 1em 0 0;
}
#recruit #entry_form .radio-gender label input[type=radio] {
  margin: 0 1em 0 0;
}
#recruit #entry_form input[type=submit] {
  display: block;
  margin: 1em auto;
  padding: 1em 4em;
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: var(--dgray);
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(140, 180, 200, 0.4);
  transition: all 0.4s ease;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

/* NEWS ---------------------- */
#news .news_list {
  margin: 0 0 2em;
  padding-left: 0;
}
#news .news_list li {
  list-style-type: none;
  display: flex;
}
#news .news_list li:not(:last-child) {
  margin: 0 0 2em;
}
#news .news_list dl {
  width: 100%;
  margin: 0;
  padding: 0;
}
#news .news_list dl dt {
  position: relative;
  margin: 0 0 1em;
  font-weight: 700;
  border-bottom: 2px solid var(--gray);
}
#news .news_list dl dt::after {
  content: "";
  width: 30%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: var(--second);
}
#news .news_list dl dd {
  margin: 0;
}

/* CONTACT ---------------------- */
#contact table {
  width: 100%;
}
#contact table th, #contact table td {
  padding: 1em;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
  border-bottom: solid 1px var(--gray);
}
#contact table th {
  width: 30%;
}
#contact table tr:last-child th,
#contact table tr:last-child td {
  border: none;
}
@media screen and (max-width: 900px) {
  #contact table th, #contact table td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  #contact table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
#contact #contact_form .contact_form th {
  width: 25%;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contact #contact_form .contact_form th, #contact #contact_form .contact_form td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  #contact #contact_form .contact_form th {
    padding-bottom: 0;
  }
}
#contact #contact_form .indispensable {
  color: #f00;
  font-size: 0.75em;
}
#contact #contact_form input.text {
  border: 1px solid #ddd;
  background-color: var(--white);
  width: 99%;
  padding: 1em;
  border-radius: 5px;
}
#contact #contact_form textarea {
  width: 99%;
  margin: 5px 0;
  padding: 0.5em;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  outline: none;
}
#contact #contact_form .radio-gender label {
  padding: 0 1em 0 0;
}
#contact #contact_form .radio-gender label input[type=radio] {
  margin: 0 1em 0 0;
}
#contact #contact_form .select_wrap {
  position: relative;
}
#contact #contact_form .select_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 12px;
  height: 8px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid var(--dgray);
  border-bottom: 0;
  transform: translateY(-50%);
}
#contact #contact_form .select_wrap select {
  width: 99%;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: var(--black);
  background: #fff;
  outline: none;
  padding: 1em;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact #contact_form input[type=submit] {
  display: block;
  margin: 1em auto;
  padding: 1em 4em;
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: var(--dgray);
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(140, 180, 200, 0.4);
  transition: all 0.4s ease;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

/* PRIVACY ---------------------- */
#privacy .terms h4 {
  margin: 0;
  padding: 2em 0 1em;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.4;
  border-top: 1px solid var(--gray);
}
#privacy .terms h4 + p {
  font-size: 0.92em !important;
}
#privacy .terms ol.decimal {
  margin: 0 0 2em;
  padding: 0 0 0 1.5em;
}
#privacy .terms ol.decimal li {
  padding-bottom: 0.75em;
  font-size: 0.92em;
  line-height: 1.6;
}/*# sourceMappingURL=common.css.map */