@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #002e5f;
  background-color: #fcfcfc;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  line-height: 150%;
  scroll-behavior: smooth;
}
html:has(#page_member),
body:has(#page_member) {
  background-image: url(assets/images/member_bg.png);
  background-repeat: repeat;
  background-size: 80px 80px;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

.ja {
  letter-spacing: 0.05em;
}

.ja_b {
  letter-spacing: 0.07em;
  font-weight: 700;
}

.ja_thin {
  letter-spacing: 0.07em;
  font-weight: 400;
}

.en {
  font-family: "Heebo", sans-serif;
  letter-spacing: 0.1em;
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  color: #002e5f;
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

#not_found .single_container {
  margin: 80px auto 0;
}
#not_found p {
  text-align: center;
}
#not_found .btn-slide {
  display: block;
  width: fit-content;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.fixed_shape {
  position: fixed;
  top: -80px;
  left: -50px;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}
.fixed_shape.shape_bottom {
  top: inherit;
  left: inherit;
  bottom: -80px;
  right: -50px;
}

main {
  position: relative;
  z-index: 2;
}

header {
  position: fixed;
  top: 32px;
  translate: -50% 0;
  width: 94.4444444444vw;
  right: 0;
  left: 50%;
  height: 61px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header {
    top: 12px;
  }
}
@media screen and (max-width: 1023px) {
  header nav {
    display: none;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1680px;
  margin: 0 auto;
}
header .container img {
  width: 174px;
  height: 78px;
}
@media screen and (max-width: 768px) {
  header .container img {
    width: 100px;
    height: 45px;
  }
}
header .container ul {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 24px;
  background: #fcfcfc;
  border-radius: 30px;
}
header .container ul li {
  position: relative;
  line-height: 16px;
}
header .container ul li a {
  position: relative;
  display: inline-block;
  color: #002e5f;
  text-decoration: none;
  z-index: 100;
  overflow: hidden;
  transition: color 0.3s ease;
}
header .container ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #002e5f;
  z-index: -1;
  transition: transform 0.4s ease;
  transform: translateX(0);
}
header .container ul li a:hover {
  color: #fcfcfc;
}
header .container ul li a:hover::before {
  transform: translateX(100%);
}

.hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  background: #002e5f;
  width: 60px;
  height: 60px;
  border-radius: 0 0 0 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  position: fixed;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fcfcfc;
  transition: all 0.3s ease;
}
.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.hamburger.is-open span:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #002e5f;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.sp-menu .inner {
  padding: 48px;
}
.sp-menu.is-open {
  transform: translateX(0);
  opacity: 1;
}
.sp-menu__close {
  align-self: flex-end;
  font-size: 32px;
  color: #fcfcfc;
  background: none;
  border: none;
}
.sp-menu__list {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  max-height: 500px;
  overflow-y: auto;
}
.sp-menu__list li {
  border-bottom: 1px solid #fcfcfc;
  padding: 16px 0;
}
.sp-menu__list li a {
  height: 100%;
  color: #fcfcfc;
  text-decoration: none;
  font-size: 18px;
}
.sp-menu__buttons {
  margin: 32px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}
.sp-menu__buttons a {
  color: #fcfcfc;
}
.sp-menu .copyright {
  margin-top: auto;
  font-size: 12px;
  text-align: center;
  color: #fcfcfc;
}

.has-submenu .submenu-toggle {
  background: none;
  border: none;
  color: #fcfcfc;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.has-submenu .submenu-toggle .icon {
  font-size: 20px;
}
.has-submenu .submenu {
  display: none;
  list-style: none;
  padding-left: 16px;
}
.has-submenu .submenu li {
  padding: 10px 0;
  border: none;
}
.has-submenu .submenu li a {
  color: #fcfcfc;
  text-decoration: none;
  font-size: 16px;
}
.has-submenu.is-open .submenu {
  display: block;
}
.has-submenu.is-open .icon {
  content: "−";
}

/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.footer {
  position: relative;
  z-index: 10;
  max-width: 100%;
  height: 433px;
  overflow: hidden;
  margin-top: 160px;
}
.footer .btn-circle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 40px;
  margin: 0;
  rotate: -90deg;
  background-color: #fcfcfc;
}
.footer .btn-circle span:before, .footer .btn-circle span:after {
  background-color: #002e5f;
}
.footer .btn-circle:hover {
  background-color: #002e5f;
}
.footer .btn-circle:hover span:before, .footer .btn-circle:hover span:after {
  background-color: #fcfcfc;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 100vw;
  height: 433px;
  background-image: url(./assets/images/footer.jpg);
  background-size: cover;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 433px;
  background-color: rgba(0, 46, 95, 0.6);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.footer__background-text {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Heebo", sans-serif;
  font-size: 100px;
  line-height: 70px;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 300;
  z-index: 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  width: 77.7777777778%;
  margin: 0 auto;
}
.footer__logo img {
  width: 174px;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 120px;
  }
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 40px 0 25px;
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    width: 50%;
    gap: 0;
    justify-content: flex-start;
  }
  .footer__nav ul li {
    width: calc(50% - 10px);
    margin-bottom: 16px;
  }
}
.footer__nav ul li {
  position: relative;
}
.footer__nav ul li a {
  position: relative;
  display: inline-block;
  padding: 0 0 1px;
  font-size: 16px;
  color: #002e5f;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.footer__nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002e5f;
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.footer__nav ul li a:hover {
  color: #fcfcfc;
}
.footer__nav ul li a:hover::before {
  transform: translateX(0);
}
.footer__copy {
  position: absolute;
  bottom: 10px;
  translate: -50% 0;
  left: 50%;
  width: 77.7777777778vw;
  font-size: 13px;
  color: #fcfcfc;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .footer {
    height: 530px;
  }
  .footer:before, .footer:after {
    height: 100%;
  }
  .footer .btn-circle {
    right: 20px;
  }
  .footer .container {
    width: 89.3333333333vw;
  }
  .footer__nav ul {
    display: grid;
    grid-template-columns: 70px 70px;
    gap: 24px;
    width: 100%;
  }
  .footer__nav ul li {
    width: inherit;
  }
  .footer__background-text {
    font-size: 48px;
    text-align: right;
    width: fit-content;
    line-height: 100%;
    bottom: 40px;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.btn-slide {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 32px;
}
.btn-slide a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Heebo", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #fcfcfc;
  letter-spacing: 2.24px;
  line-height: 1;
  text-decoration: none;
  z-index: 1;
  transition: color 0.3s ease;
  padding: 3px 5px 0px 3px;
  background-color: #002e5f;
}
@media screen and (max-width: 768px) {
  .btn-slide a {
    font-size: 20px;
  }
}
.btn-slide a span {
  position: relative;
  display: inline-block;
  padding-left: 2.8em;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .btn-slide a span {
    height: 10px;
  }
}
.btn-slide a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 90px;
  height: 1.5px;
  background-color: #fcfcfc;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .btn-slide a span::before {
    width: 56px;
  }
}
.btn-slide a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 90px;
  width: 30px;
  height: 1.5px;
  background-color: #fcfcfc;
  transform: translateY(-50%) rotate(-170deg);
  transform-origin: left center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .btn-slide a span::after {
    width: 10px;
    left: 56px;
  }
}
.btn-slide a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -101%;
  width: 101%;
  height: 100%;
  background-color: #fcfcfc;
  z-index: -1;
  transition: transform 0.4s ease;
  transform: translateX(0);
}
.btn-slide a:hover {
  color: #002e5f;
}
.btn-slide a:hover::before {
  transform: translateX(100%);
}
.btn-slide a:hover span::before,
.btn-slide a:hover span::after {
  background-color: #002e5f;
}

footer .footer__buttons {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  footer .footer__buttons {
    display: block;
  }
}
footer .footer__buttons .btn-slide {
  margin-top: 0;
}
footer .footer__buttons .btn-slide a {
  font-size: 24px;
  padding: 3px 28px 0 3px;
}

.btn-slide--reverse {
  position: relative;
  display: inline-block;
  margin-top: 16px;
}
.btn-slide--reverse .reverse--en {
  font-family: "Heebo", sans-serif;
  font-size: 300;
  font-size: 20px;
  padding: 3px 7px 0px 3px;
}
.btn-slide--reverse a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: #fcfcfc;
  letter-spacing: 2.24px;
  line-height: 18px;
  text-decoration: none;
  z-index: 1;
  transition: color 0.3s ease;
  padding: 0px 7px 3px 3px;
  text-align: right;
  overflow: hidden;
}
.btn-slide--reverse a span {
  position: relative;
  display: inline-block;
  padding-left: 2.8em;
  height: 10px;
}
.btn-slide--reverse a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 56px;
  height: 1.5px;
  background-color: #fcfcfc;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .btn-slide--reverse a span::before {
    width: 56px;
  }
}
.btn-slide--reverse a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 56px;
  width: 15px;
  height: 1.5px;
  background-color: #fcfcfc;
  transform: translateY(-50%) rotate(-170deg);
  transform-origin: left center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .btn-slide--reverse a span::after {
    width: 10px;
    left: 56px;
  }
}
.btn-slide--reverse a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcfcfc;
  z-index: -1;
  transition: transform 0.4s ease;
  transform: translateX(-100%);
}

.sp-menu__buttons {
  text-align: right;
  margin-top: 16px;
}

.btn-circle {
  width: 150px;
  height: 150px;
  background-color: #002e5f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  border: #002e5f 1px solid;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .btn-circle {
    width: 80px;
    height: 80px;
  }
}
.btn-circle span {
  display: inline-block;
  width: 80px;
  height: 2px;
  position: relative;
}
.btn-circle span::before, .btn-circle span::after {
  content: "";
  position: absolute;
  background-color: #fcfcfc;
  height: 2px;
  transition: all 0.3s ease;
}
.btn-circle span::before {
  width: 35px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-circle span::after {
  width: 10px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-160deg);
  transform-origin: left center;
}
.btn-circle.reverse {
  background-color: #fcfcfc;
}
.btn-circle.reverse span:before, .btn-circle.reverse span:after {
  background-color: #002e5f;
}

.btn-circle--small {
  width: 80px;
  height: 80px;
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .btn-circle--info {
    position: absolute;
    top: -50%;
    right: 47px;
    transform: translateY(18%);
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffec3b 30%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s;
  z-index: 9999;
  opacity: 0;
}
.custom-cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Heebo", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #002e5f;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .btn-slide a {
    font-size: 18px;
    width: fit-content;
    padding: 2px 10px 2px 3px !important;
  }
  footer .footer__buttons .btn-slide a {
    font-size: 18px;
  }
  footer .footer__buttons {
    display: grid;
    gap: 24px;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.fv_bg {
  width: 800px;
  position: absolute;
  left: -300px;
  top: -192px;
}
@media screen and (max-width: 768px) {
  .fv_bg {
    width: 133.3333333333vw;
    overflow: hidden;
    top: -26.6666666667vw;
    left: -53.3333333333vw;
  }
}

#loading {
  position: fixed;
  background-color: #fcfcfc;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1001;
  transition: opacity 1s ease-out;
  pointer-events: none;
}

.fv_image {
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.8s;
  overflow: hidden;
}
.fv_image.fade_up {
  opacity: 1;
  transform: translateX(0);
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.marquee-wrapper .marquee-text {
  white-space: nowrap;
  display: inline-block;
  animation: marquee 80s linear infinite;
  font-family: "Heebo", sans-serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(0, 76, 120, 0.1);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .marquee-wrapper .marquee-text {
    font-size: 60px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mainvisual {
  margin-top: 143px;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    margin-top: 90px;
  }
}
.mainvisual .mainvisual-text {
  display: flex;
  justify-content: space-between;
  padding-inline: 80px;
}
@media screen and (max-width: 1023px) {
  .mainvisual .mainvisual-text {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual .mainvisual-text {
    padding-inline: 20px;
  }
}
.mainvisual .mainvisual-text .mainvisual-text-heading span {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .mainvisual .mainvisual-text .mainvisual-text-heading span {
    font-size: 18px;
  }
}
.mainvisual .mainvisual-text .mainvisual-text-heading h1,
.mainvisual .mainvisual-text .mainvisual-text-heading h2,
.mainvisual .mainvisual-text .mainvisual-text-heading h3,
.mainvisual .mainvisual-text .mainvisual-text-heading h4 {
  font-family: "Heebo", sans-serif;
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
  margin-top: 32px;
  background: linear-gradient(to right, #004c78, #ffec3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .mainvisual .mainvisual-text .mainvisual-text-heading h1,
  .mainvisual .mainvisual-text .mainvisual-text-heading h2,
  .mainvisual .mainvisual-text .mainvisual-text-heading h3,
  .mainvisual .mainvisual-text .mainvisual-text-heading h4 {
    font-size: 48px;
  }
}
.mainvisual .mainvisual-text .mainvisual-text-entry {
  text-align: right;
}
.mainvisual .mainvisual-text .mainvisual-text-entry p {
  line-height: 170%;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .mainvisual .mainvisual-text .mainvisual-text-entry {
    text-align: left;
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual .mainvisual-text .mainvisual-text-entry {
    font-size: 14px;
  }
}
.mainvisual .fv_image {
  width: 100%;
  border-radius: 40px;
  margin-top: 41px;
  height: 765px;
}
.mainvisual .fv_image img {
  height: 120%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mainvisual .fv_image {
    height: 500px;
  }
}
.mainvisual .container {
  width: 94.4444444444vw;
  margin: 0 auto;
  max-width: 1680px;
}

.about {
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: 56px;
  }
}
.about h2 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .about h2 {
    font-size: 20px;
  }
}
.about p {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .about p {
    font-size: 14px;
  }
}
.about .about-text {
  position: relative;
  z-index: 1;
}
.about .about-text .inner {
  margin-left: 24.3055555556%;
  margin-top: -40px;
}
@media screen and (max-width: 768px) {
  .about .about-text .inner {
    margin-left: 20px;
    margin-top: -30px;
  }
}
@media screen and (max-width: 1023px) {
  .about .about-text {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .about .about-text {
    margin-left: 20px;
  }
}
.about .about-text p {
  line-height: 170%;
}
.about .about-text .about-text-1 {
  padding-block: 47px 24px;
}
@media screen and (max-width: 768px) {
  .about .about-text .about-text-1 {
    padding-block: 25px 10px;
  }
}
.about .about-text, .about .about-images {
  max-width: 1440px;
  margin: 0 auto;
}
.about .about-images .circle {
  width: 48.6111111111vw;
  max-width: 900px;
  margin: -16.6666666667% 10.4166666667% 0 auto;
}
@media screen and (max-width: 768px) {
  .about .about-images .circle {
    width: 106.6666666667vw;
    margin: -90px -80px 0 auto;
    max-width: 600px;
  }
}
.about .btn-circle:hover {
  background-color: #fcfcfc;
}
.about .btn-circle:hover span:before,
.about .btn-circle:hover span:after {
  background-color: #002e5f;
}

.gradient-band {
  position: absolute;
  height: 34px;
  z-index: 0;
  pointer-events: none;
}
.gradient-band.right.large {
  top: 110px;
  right: 0;
  width: 40%;
  height: 105px;
  background: linear-gradient(to right, #fcfcfc, rgba(0, 76, 120, 0.3));
}
@media screen and (max-width: 768px) {
  .gradient-band.right.large {
    height: 50px;
    top: 40px;
    width: 30%;
  }
}
.gradient-band.right.small {
  top: 240px;
  right: 0;
  width: 50%;
  background: linear-gradient(to right, #fcfcfc, rgba(0, 76, 120, 0.3));
}
@media screen and (max-width: 768px) {
  .gradient-band.right.small {
    height: 16px;
    top: 100px;
    width: 30%;
  }
}
.gradient-band.left {
  top: 22.2222222222vw;
  left: 0;
  width: 40%;
  height: 105px;
  background: linear-gradient(to left, #fcfcfc, rgba(0, 76, 120, 0.3));
}
@media screen and (max-width: 768px) {
  .gradient-band.left {
    height: 50px;
    width: 20%;
    top: 230px;
  }
}

.service {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 80px 0;
  }
}
.service::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 200%;
  height: 33.3333333333vw;
  background: linear-gradient(145deg, #ffec3b 0%, #fcfcfc 90%);
  opacity: 0.5;
  transform: rotate(14deg);
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .service::before {
    translate: -50% 0;
    top: 120px;
    height: 150px;
  }
}
.service .container {
  width: 94.4444444444vw;
  max-width: 1680px;
  margin: 0 auto;
}
.service__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .service__head {
    display: block;
    width: 100%;
  }
}
.service__head .section-title {
  font-family: "Heebo", sans-serif;
  font-size: 80px;
  font-weight: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service__head .section-title {
    font-size: 48px;
    display: grid;
    gap: 18px;
    margin-bottom: 16px;
  }
}
.service__head .section-title span {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .service__head .section-title span {
    font-size: 20px;
  }
}
.service__head .service__viewall {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Heebo", sans-serif;
  font-size: 32px;
  font-weight: 300;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service__head .service__viewall {
    font-size: 24px;
    justify-content: right;
    margin: 0 0 0 auto;
  }
  .service__head .service__viewall .btn-circle {
    width: 48px;
    height: 48px;
  }
  .service__head .service__viewall .btn-circle span:before {
    width: 24px;
  }
  .service__head .service__viewall .btn-circle span:after {
    right: 1px;
  }
}
.service__head .service__viewall:hover .btn-circle {
  background-color: #fcfcfc;
}
.service__head .service__viewall:hover .btn-circle span:before,
.service__head .service__viewall:hover .btn-circle span:after {
  background-color: #002e5f;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}
.service .fade_up:nth-child(1) a {
  background-image: url(assets/images/construction_electric.png);
}
.service .fade_up:nth-child(2) a {
  background-image: url(assets/images/enovation_electric.png);
}
.service .fade_up:nth-child(3) a {
  background-image: url(assets/images/civil_electric.png);
}
.service .fade_up:nth-child(4) a {
  background-image: url(assets/images/other_electric.png);
}
.service__item {
  position: relative;
  display: flex;
  flex-direction: reverse;
  overflow: hidden;
  min-height: 330px;
  color: #fcfcfc;
  border-radius: 0 0 50px 0;
  transition: all 0.4s;
  background-size: 100% 100%;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .service__item {
    min-height: 390px;
    background-size: cover;
  }
}
@media screen and (min-width: 769px) {
  .service__item {
    height: 100%;
  }
  .service__item:hover {
    background-size: 105% 105%;
  }
  .service__item:hover .btn-circle {
    background-color: #fcfcfc;
  }
  .service__item:hover .btn-circle span:before,
  .service__item:hover .btn-circle span:after {
    background-color: #002e5f;
  }
}
.service__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.service__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgb(0, 46, 95) 40%, transparent 80%, transparent 100%);
  z-index: 1;
}
.service__item .service__text {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 46px 0 46px 80px;
}
@media screen and (max-width: 768px) {
  .service__item .service__text {
    padding: 24px 0 0 24px;
    width: 100%;
  }
}
.service__item .service__text h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.service__item .service__text ul {
  font-size: 16px;
  line-height: 1.6;
  list-style: disc;
  list-style-position: inside;
  padding: 0;
  line-height: 150%;
}
.service__item .service__btn {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.member {
  color: #fcfcfc;
  position: relative;
  overflow: hidden;
  max-width: 1680px;
  margin: 0 auto;
}
.member__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 120px 0 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .member__wrapper {
    margin: 80px auto;
  }
}
.member__block {
  background-color: #002e5f;
  color: #fcfcfc;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  flex-direction: row-reverse;
}
@media screen and (min-width: 769px) {
  .member__block {
    height: 240px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .member__block {
    padding: 48px 0 120px;
  }
}
.member__block:nth-child(even) {
  flex-direction: row;
}
@media screen and (min-width: 769px) {
  .member__block .member__text {
    width: 40%;
    padding-inline: 120px;
  }
}
@media screen and (max-width: 768px) {
  .member__block .member__text {
    margin: 0 0 40px 40px;
  }
}
.member__block .member__text .en {
  font-family: "Heebo", sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 8px;
}
.member__block .member__text .jp {
  font-size: 24px;
  font-weight: 700;
  color: #ffec3b;
}
@media screen and (max-width: 768px) {
  .member__block .member__text .jp {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  .member__block .member__text.member__text__right {
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .member__block .member__image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 5%;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
  }
  .member__block .member__image img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
}
@media screen and (min-width: 769px) {
  .member__block:nth-child(even) .member__image {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  }
}
@media screen and (min-width: 769px) {
  .member__block:hover .member__image img {
    transform: scale(1.05);
  }
}
.member .btn-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 24px;
  bottom: 24px;
}
.member .btn-circle span:before {
  width: 32px;
}
.member .btn-circle span:after {
  right: 3px;
}

.information {
  position: relative;
  color: #fcfcfc;
  text-align: center;
  z-index: 0;
  margin: 130px auto;
}
@media screen and (max-width: 768px) {
  .information {
    margin-top: 100px;
  }
}
.information__title {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  font-size: 56px;
  color: #002e5f;
  font-family: "Heebo", sans-serif;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .information__title {
    font-size: 32px;
    top: -57px;
  }
}
.information .container {
  position: relative;
  background: #002e5f;
  border-radius: 100px;
  padding: 80px 0;
  max-width: 1680px;
  width: 94.4444444444vw;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .information .container {
    border-radius: 25px;
    width: 100%;
    padding: 40px 0;
  }
}
.information .container > * {
  position: relative;
  z-index: 1;
}
.information .container::before {
  content: "";
  position: absolute;
  top: 0%;
  right: -70%;
  width: 200%;
  height: 450px;
  background: linear-gradient(to right, rgba(255, 236, 59, 0.4), rgba(255, 236, 59, 0));
  transform: rotate(160deg);
  z-index: 0;
  pointer-events: none;
}
.information__text {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .information__text {
    font-size: 14px;
    width: 300px;
    text-align: left;
    margin: 0 auto 40px;
  }
}
.information__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .information__cards {
    display: grid;
  }
}
.information__card {
  background: #fcfcfc;
  border-radius: 30px;
  overflow: hidden;
  width: 40.9722222222%;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.information__card .information__image {
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .information__card {
    width: 89.3333333333%;
    margin: 0 auto;
    height: 240px;
    border-radius: 15px;
  }
}
.information__card:hover .information__image {
  scale: 1.05;
}
.information__card:hover .btn-circle {
  background-color: #fcfcfc;
}
.information__card:hover .btn-circle span:before,
.information__card:hover .btn-circle span:after {
  background-color: #002e5f;
}
.information__card .information__image {
  height: 320px;
  overflow: hidden;
  transition: all 0.4s;
}
.information__card .information__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.information__card .information__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 52px;
}
@media screen and (max-width: 768px) {
  .information__card .information__bottom {
    padding: 16px 20px;
  }
}
.information__card .information__bottom .information__label {
  color: #002e5f;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .information__card .information__bottom .information__label {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .information__card .information__bottom .btn-circle {
    scale: 0.8;
    position: absolute;
    right: 0;
    bottom: 8px;
  }
}

@media screen and (max-width: 768px) {
  .mainvisual .btn-slide a {
    font-size: 24px;
    padding: 2px 4px 2px 3px !important;
  }
  .service__item .service__text h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) {
  .mainvisual .btn-slide a {
    font-size: 36px;
    padding: 2px 4px 2px 3px !important;
  }
  .marquee-wrapper {
    padding: 40px 0 20px;
  }
  .service {
    padding: 8.3333333333vw 0;
  }
  .information__title {
    font-size: min(56px, 3.8888888889vw);
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@media screen and (min-width: 769px) {
  .common_container {
    width: 94.4444444444vw;
    margin-inline: auto;
  }
}

.page {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .page {
    margin-top: 72px;
  }
}

.page-visual {
  background-image: url(assets/images/page_title_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.page-visual__title {
  padding: 64px 0 48px 0;
}
@media screen and (max-width: 768px) {
  .page-visual__title {
    padding: 20px;
  }
}
.page-visual__title h1 {
  font-size: 80px;
  font-weight: 200;
  letter-spacing: 0.05em;
  font-family: "Heebo", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page-visual__title h1 {
    font-size: 40px;
  }
}
.page-visual__title p {
  font-size: 40px;
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .page-visual__title p {
    font-size: 24px;
    margin-top: 8px;
  }
}
.page-visual__image {
  overflow: hidden;
  max-width: 1090px;
  height: 390px;
  margin-left: auto;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .page-visual__image {
    font-size: 12px;
    height: 130px;
    border-radius: 30px 0 0 30px;
    margin-left: 20px;
  }
}
.page-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-visual__breadcrumb {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: right;
}
@media screen and (max-width: 768px) {
  .page-visual__breadcrumb {
    font-size: 12px;
    margin-right: 20px;
  }
}
.page-visual__breadcrumb li:not(li:first-child) {
  position: relative;
  padding-left: 12px;
}
.page-visual__breadcrumb li:not(li:first-child):after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #002e5f;
  position: absolute;
  translate: -50% 0;
  top: 50%;
  left: 0;
}

.page_section_title h2 {
  font-family: "Heebo", sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .page_section_title h2 {
    font-size: 32px;
  }
}
.page_section_title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page_section_title h3 {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

.message {
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .message {
    justify-content: space-between;
  }
}
.message .right_container .right_inner {
  display: grid;
}
@media screen and (min-width: 769px) {
  .message .right_container .right_inner {
    margin: 0 0 0 auto;
    gap: 160px;
  }
}
.message__content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.message__block .message__content {
  position: relative;
}
.message__block .message__content .message__image {
  margin-right: 40px;
  height: 300px;
}
.message__block .message__content .message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0 0 50px 0;
}
@media screen and (min-width: 1440px) {
  .message__block .message__content .message__image {
    position: absolute;
    inset: 0;
    width: 300px;
    height: 400px;
  }
}

.message__text .mainvisual-text-heading {
  margin: 40px auto;
}
@media screen and (min-width: 1440px) {
  .message__text .mainvisual-text-heading {
    width: fit-content;
    margin: 40px auto 40px 340px;
  }
}
.message__text .mainvisual-text-heading span {
  font-size: 24px;
  display: block;
}
@media screen and (max-width: 768px) {
  .message__text .mainvisual-text-heading span {
    font-size: 16px;
  }
}
.message__text .mainvisual-text-heading h4 {
  font-family: "Heebo", sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  margin-top: 16px;
  background: linear-gradient(to right, #004c78, #ffec3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .message__text .mainvisual-text-heading h4 {
    font-size: 36px;
  }
}
.message__text .message__paragraph {
  margin-top: 16px;
  margin-left: auto;
  border: #002e5f 1px solid;
  border-radius: 0 0 50px 0;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .message__text .message__paragraph {
    margin: 0;
  }
  .message__text .message__paragraph .inner {
    width: 45.1388888889vw;
    padding: 3.8888888889vw 6.6666666667vw 3.8888888889vw 96px;
  }
}
@media screen and (min-width: 1440px) {
  .message__text .message__paragraph {
    margin-left: 240px;
  }
}
.message__text .message__paragraph p {
  margin-bottom: 1.5rem;
  line-height: 150%;
}

#philosophy .philosophy__items {
  background-color: #f6f6f6;
  border-radius: 50px 0 0 0;
  padding: 96px 8.3333333333vw 96px 70px;
  display: grid;
  gap: 64px;
}
#philosophy .philosophy__items .philosophy__item {
  display: grid;
  gap: 16px;
}
#philosophy .philosophy__items .philosophy__item .philosophy__heading {
  position: relative;
  font-size: 24px;
  font-weight: 700;
}
#philosophy .philosophy__items .philosophy__item .philosophy__heading .en {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
}
#philosophy .philosophy__items .philosophy__item .line {
  position: relative;
  width: 100%;
  height: 3px;
}
#philosophy .philosophy__items .philosophy__item .line::before {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #ffec3b;
  z-index: 2;
}
#philosophy .philosophy__items .philosophy__item .line::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 0;
  height: 3px;
  background-color: #DEDEDE;
  z-index: 1;
}
#philosophy .philosophy__items .philosophy__item p {
  line-height: 1.8;
  font-size: 16px;
}

.mvv__block.mission .container .mission__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-left: auto;
  margin-right: 0;
}
.mvv__block.mission .container .mission__item {
  position: relative;
  padding: 40px 48px;
  text-align: center;
  font-weight: bold;
}
.mvv__block.mission .container .mission__item .number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.mvv__block.mission .container .mission__item .text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}
.mvv__block.mission .container .mission__item::before, .mvv__block.mission .container .mission__item::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #002e5f;
}
.mvv__block.mission .container .mission__item::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.mvv__block.mission .container .mission__item::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.mvv__block.vision {
  position: relative;
  margin-top: 56px;
}
.mvv__block.vision .container {
  position: relative;
  display: block;
  margin-right: 120px;
  padding: 56px 0;
}
.mvv__block.vision .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #ffec3b;
  z-index: 2;
}
.mvv__block.vision .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 48px;
  width: calc(100% - 48px);
  height: 3px;
  background-color: #DEDEDE;
  z-index: 1;
}
.mvv__block.vision .container .vision__lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 1010px;
  height: 3px;
}
.mvv__block.vision .container .vision__lines::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background-color: #ffec3b;
  z-index: 2;
}
.mvv__block.vision .container .vision__lines::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #DEDEDE;
  z-index: 1;
}
.mvv__block.vision .container .vision__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.mvv__block.vision .container .vision__list .vision__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.mvv__block.vision .container .vision__list .vision__item dt.vision__heading {
  background-color: #002e5f;
  color: #fcfcfc;
  font-weight: 700;
  font-size: 24px;
  padding: 3px 0 5px 4px;
  white-space: nowrap;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 769px) {
  .mvv__block.vision .container .vision__list .vision__item dt.vision__heading {
    width: 320px;
  }
}
.mvv__block.vision .container .vision__list .vision__item dd.vision__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #002f66;
  width: 70%;
}

.mvv__block.value {
  position: relative;
  margin-top: 56px;
}
.mvv__block.value .container .value__list {
  margin-left: auto;
  margin-right: 0;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  .mvv__block.value .container .value__list {
    width: 65.9722222222vw;
    margin: 0 0 0 auto;
  }
}
.mvv__block.value .container .value__list .value__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mvv__block.value .container .value__list .value__item .value__heading {
  position: absolute;
  top: 55px;
  left: -12.5vw;
  z-index: 2;
}
.mvv__block.value .container .value__list .value__item .value__heading .head {
  width: fit-content;
  font-size: 32px;
  font-weight: 700;
  color: #fcfcfc;
  line-height: 1.4;
  background-color: #002e5f;
  padding: 0 16px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.mvv__block.value .container .value__list .value__item .value__heading .head:nth-child(2) {
  margin: 6px 0 0 40px;
}
.mvv__block.value .container .value__list .value__item .value__heading .head.margin {
  margin: 6px 0 0 80px;
}
.mvv__block.value .container .value__list .value__item .value__subheading {
  font-size: 18px;
  font-weight: 700;
  color: #002e5f;
  line-height: 1.4;
  margin: 14px 0 0 120px;
}
.mvv__block.value .container .value__list .value__item .value__text {
  background: #f6f6f6;
  border-radius: 50px 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #002e5f;
  padding: 96px 8.3333333333vw 80px 210px;
  position: relative;
  z-index: 1;
}

.message__title {
  font-family: "Heebo", sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
}

.message__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 60px;
}

.table_box {
  line-height: 150%;
  margin-right: 120px;
}
.table_box tr:nth-child(odd) {
  background-color: #f6f6f6;
}
.table_box td:nth-child(1) {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .table_box td:nth-child(1) {
    padding: 16px 0 16px 42px;
  }
}
.table_box td:nth-child(2) {
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .table_box td:nth-child(2) {
    padding: 16px 42px 16px 0;
  }
}

@media screen and (max-width: 768px) {
  .page_menu ul {
    display: grid;
    gap: 8px;
    width: 89.3333333333vw;
    margin-inline: auto;
  }
  .page_menu li a {
    text-align: center;
    font-size: 18px;
    padding: 12px 0;
    background-color: #f6f6f6;
    color: #002e5f;
  }
  .right_inner {
    gap: 80px;
  }
  #greeting {
    width: 89.3333333333vw;
    margin: 80px auto 0;
  }
  .message__text .mainvisual-text-heading {
    margin: 24px auto;
  }
  .message__paragraph .inner {
    padding: 32px 24px;
  }
  .message__block .message__content .message__image {
    margin: 0;
  }
  .message__text .message__paragraph p {
    font-size: 14px;
  }
  #philosophy .philosophy__items {
    padding: 48px 24px;
    width: 84vw;
    margin: 0 0 0 auto;
  }
  .mvv__block.vision .container .vision__list .vision__item {
    display: grid;
    gap: 16px;
  }
  .mvv__block.vision .container .vision__list .vision__item dd.vision__text {
    width: fit-content;
  }
  #greeting .page_section_title,
  .vision .page_section_title, .vision {
    margin-left: 0;
  }
  .page_section_title {
    margin-left: 20px;
  }
  #philosophy .philosophy__items .philosophy__item p {
    font-size: 14px;
  }
  .mvv__block.mission .container .mission__item .text {
    font-size: 16px;
  }
  .mvv__block.mission .container .mission__item .number {
    font-size: 18px;
  }
  .mvv__block.mission .container .mission__item {
    padding: 16px 0;
    width: 335px;
  }
  .mvv__block.vision .container {
    margin-inline: auto;
    width: 89.3333333333vw;
  }
  .mvv__block.value .container .value__list .value__item .value__heading {
    position: relative;
    inset: 0;
    margin: 0 auto -100px;
  }
  .mvv__block.value .container .value__list .value__item {
    width: 94.6666666667vw;
    margin: 0 0 0 auto;
  }
  .mvv__block.value .container .value__list .value__item:nth-child(2) .value__subheading {
    margin: 14px 0 0 122px;
  }
  .mvv__block.value .container .value__list .value__item .value__text {
    padding: 98px 20px 32px;
    font-size: 14px;
  }
  .mvv__block.value .container .value__list .value__item .value__subheading {
    margin: 14px 0 0 35px;
  }
  .table_box {
    margin-inline: auto;
    width: 89.3333333333vw;
  }
  .table_box td:nth-child(1) {
    font-size: 16px;
    padding: 8px 0 8px 12px;
    min-width: 80px;
  }
  .table_box td:nth-child(2) {
    font-size: 14px;
    padding: 8px 12px 8px 0;
  }
}
@media screen and (min-width: 769px) {
  .pc_grid {
    display: grid;
    grid-template-columns: 190px auto;
    gap: 7.6388888889vw;
  }
  .page_menu {
    height: 100vh;
    left: 8.3333333333vw;
    position: sticky;
    top: 160px;
    z-index: 1000;
    width: fit-content;
  }
  .page_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .page_menu ul li {
    margin-bottom: 16px;
  }
  .page_menu ul li a {
    font-size: 18px;
    color: #002e5f;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 3px 0;
  }
  .page_menu ul li a.is-active {
    background-color: #002e5f;
    color: #fcfcfc;
    font-weight: bold;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#page_service .service_lead p {
  text-align: center;
  line-height: 150%;
}
#page_service .service {
  padding: 0;
}
#page_service .service:before {
  display: none;
}

@media screen and (max-width: 768px) {
  #page_service .service_lead p {
    padding: 64px 0;
    font-size: 14px;
    line-height: 180%;
  }
}
@media screen and (min-width: 769px) {
  #page_service .service_lead p {
    padding: 96px 0;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#page_support .sec {
  display: grid;
  gap: 16px;
}
#page_support #sec1 {
  max-width: 900px;
}
#page_support .support_title {
  font-size: 24px;
  padding-bottom: 16px;
}
#page_support .support_title + figure {
  overflow: hidden;
  border-radius: 0 0 0 50px;
}
#page_support .bg {
  background-color: #f6f6f6;
  padding: 56px 0;
  border-radius: 50px 0 0 0;
  display: grid;
  place-content: center;
}
#page_support .support_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 72px 45px;
}
#page_support .support_list li {
  display: grid;
  gap: 12px;
}
#page_support .support_list .number {
  font-size: 24px;
  letter-spacing: normal;
  font-weight: 300;
  width: 160px;
  color: #fcfcfc;
  padding: 3px 0 2px 10px;
  background: linear-gradient(110deg, rgb(0, 46, 95) 40%, transparent 80%, transparent 100%);
}
#page_support .support_list .ja_b {
  font-size: 18px;
}
#page_support .support_list .support_text {
  font-size: 16px;
}

.line {
  display: grid;
  grid-template-columns: 40px auto;
  gap: 10px;
}
.line span:nth-child(1) {
  background-color: #ffec3b;
  height: 3px;
}
.line span:nth-child(2) {
  background-color: #dedede;
  height: 3px;
}

@media screen and (max-width: 768px) {
  .common_pc_grid .right_inner {
    display: grid;
    gap: 80px;
  }
  .common_pc_grid .page_menu {
    margin: 32px auto 80px;
  }
  #page_support .support_title + figure {
    border-radius: 0 0 0 25px;
  }
  #page_support .bg {
    width: 94.6666666667vw;
    margin: 0 0 0 auto;
    padding: 20px 0;
    border-radius: 25px 0 0 0;
  }
  #page_support .support_list {
    width: 84vw;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
  #page_support .support_title {
    margin-left: 20px;
  }
  #page_support .support_title + figure {
    width: 94.6666666667vw;
    margin: 0 0 0 auto;
    border-radius: 0 0 0 25px;
  }
}
@media screen and (min-width: 769px) {
  .common_pc_grid {
    margin-top: 160px;
  }
  .common_pc_grid .right_inner {
    display: grid;
    gap: 160px;
  }
  #page_support .bg .inner {
    width: 64.2361111111vw;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#page_information .tab-panel {
  display: none;
}
#page_information .tab-panel.active {
  display: block;
}
#page_information .tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  overflow: hidden;
}
#page_information .tab-list .tab-item {
  text-align: center;
  padding: 10px 0;
  border: solid #002e5f;
  border-width: 1px 1px 0 1px;
  position: relative;
}
#page_information .tab-list .tab-item.active {
  background-color: #002e5f;
  color: #fcfcfc;
}
#page_information .tab-list .tab-item:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 13px;
  background-color: #fcfcfc;
  border: #002e5f solid;
  border-width: 0 0 1px 0;
  top: -8px;
  right: -6px;
  z-index: 3;
  rotate: 34deg;
}
#page_information .flow_li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#page_information .flow_li li {
  width: 160px;
  background: linear-gradient(-45deg, #FCFCFC -20%, #002E5F 80%);
  padding: 20px 0;
  display: grid;
  gap: 16px;
  border-radius: 0 0 20px;
}
#page_information .flow_li .number {
  font-size: 16px;
  background-color: #fcfcfc;
  border-radius: 100vmax;
  width: 120px;
  margin-inline: auto;
  text-align: center;
  height: fit-content;
}
#page_information .flow_li .flow_title {
  font-size: 18px;
  text-align: center;
  color: #fcfcfc;
}
#page_information .flow_li figure {
  width: 56px;
  margin-inline: auto;
  margin-top: 16px;
}
#page_information .qa_wrapper {
  display: grid;
  gap: 16px;
}
#page_information .qa__box {
  position: relative;
}
#page_information .qa__box .open {
  width: 40px;
  height: 40px;
  border-radius: 100vmax;
  border: 1px solid #002e5f;
  background-color: #FFFFFF;
  position: absolute;
  right: 24px;
  transition: all 0.4s;
}
#page_information .qa__box .open:before, #page_information .qa__box .open:after {
  content: "";
  position: absolute;
  translate: -50% -50%;
  background-color: #002e5f;
  width: 21px;
  height: 1px;
  top: 50%;
  left: 50%;
}
#page_information .qa__box .open:before {
  rotate: 90deg;
}
#page_information .qa__box dt {
  color: #fcfcfc;
  background: linear-gradient(40deg, #002E5F 0%, #FFFFFF 130%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-radius: 3px;
}
#page_information .qa__box dt.is-open .open {
  rotate: 90deg;
}
#page_information .qa__box dt.is-open .open::after {
  opacity: 0;
}
#page_information .qa__box dd {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
}
#page_information .qa__box dd.is-open { /* heightとpaddingをアニメーション */
  max-height: 200px;
  padding: 16px 24px 0;
}

@media screen and (max-width: 768px) {
  #page_information .tab-list {
    display: flex;
    gap: 0;
    margin: 0 auto 0 20px;
  }
  #page_information .tab-list .tab-item {
    padding: 6px 18px 6px 12px;
    border-width: 1px 0 0 1px;
    display: flex;
    align-items: center;
  }
  #page_information .tab-list .tab-item:last-child {
    border-width: 1px 1px 0 1px;
  }
  #page_information .tab-list .tab-item:nth-child(2) {
    z-index: 10;
  }
  #page_information .tab-list .tab-item:nth-child(3) {
    z-index: 20;
    text-align: left;
  }
  #page_information .table_box {
    width: 94.6666666667vw;
    margin: 0 0 0 auto;
  }
  #page_information .flow_li {
    justify-content: center;
  }
  #page_information .qa_wrapper {
    width: 89.3333333333vw;
    margin-inline: auto;
    gap: 6px;
  }
  #page_information .qa__box dt {
    padding: 10px 12px;
    gap: 12px;
    font-size: 14px;
  }
  #page_information .qa__box dt h3 {
    width: 80%;
  }
  #page_information .qa__box dd {
    font-size: 14px;
  }
  #page_information .qa__box dd.is-open {
    padding: 12px 12px 24px 12px;
  }
  #page_information .qa__box .open {
    scale: 0.8;
    right: 12px;
  }
}
@media screen and (min-width: 769px) {
  #page_information .right_container {
    overflow: hidden;
  }
  #page_information .tab-list {
    margin-right: 120px;
    font-size: 24px;
  }
  #page_information .tab-list li {
    cursor: pointer;
  }
  #page_information .flow_li {
    overflow: scroll;
  }
  #page_information .qa__box {
    width: 70.1388888889vw;
  }
  #page_information .qa_wrapper dt {
    cursor: pointer;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#page_member .comment {
  font-size: 16px;
  padding: 0 16px 16px 16px;
  border-bottom: 1px solid #002e5f;
}
#page_member .departments_wrapper {
  display: grid;
}
#page_member .departments_wrapper .comment {
  max-width: 620px;
  height: fit-content;
  position: relative;
  grid-column: 2/3;
}
#page_member .departments_wrapper .comment:after {
  content: "";
  height: 80px;
  width: 1px;
  position: absolute;
  background-color: #002e5f;
  rotate: 61deg;
  bottom: -60px;
  left: 20px;
}
#page_member .interview_li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 90px;
}
#page_member .interview_li li {
  transition: all 0.4s;
  min-width: 360px;
  gap: 6px;
  background-color: #f6f6f6;
}
#page_member .interview_li li a {
  padding: 24px;
  color: #002e5f;
  display: grid;
  grid-template-columns: 150px auto;
  gap: 16px;
  align-items: center;
}
#page_member .interview_li li .right {
  display: grid;
  height: fit-content;
}
#page_member .interview_li li .name {
  font-size: 24px;
}
#page_member .interview_li li .year {
  font-size: 16px;
  margin-bottom: 20px;
}
#page_member .interview_li li .bg_text {
  font-size: 16px;
  background-color: #002e5f;
  color: #fcfcfc;
  width: fit-content;
  padding: 2px 4px;
}
#page_member .interview_li li .bg_text:last-child {
  margin-top: 5px;
}
#page_member .interview_wrapper {
  display: grid;
  gap: 140px;
  position: relative;
}
#page_member .interview_wrapper .wrapper:nth-child(even) .gra_bg {
  margin: 0 0 0 auto;
  background: linear-gradient(90deg, #fcfcfc 0%, #014C78 100%);
}
#page_member .interview_wrapper .wrapper:nth-child(even) .person_wrap {
  margin: 0 0 0 auto;
  grid-template-columns: auto 150px;
}
#page_member .interview_wrapper .wrapper:nth-child(even) .person_wrap figure {
  grid-column: 2/3;
}
#page_member .interview_wrapper .wrapper:nth-child(even) .person_wrap .name {
  grid-row: 1/2;
  grid-column: 1/2;
}
#page_member .interview_wrapper .gra_bg {
  opacity: 0.5;
  width: 525px;
  height: 150px;
  background: linear-gradient(90deg, #014C78 0%, #fcfcfc 100%);
}
#page_member .interview_wrapper .wrap_inner {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  width: 64.5833333333vw;
  margin-inline: auto;
}
#page_member .interview_wrapper .person_wrap {
  display: grid;
  width: fit-content;
  grid-template-columns: 150px auto;
  gap: 20px;
  align-items: flex-end;
}
#page_member .interview_wrapper .person_wrap .name {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  font-size: 24px;
  gap: 16px;
}
#page_member .interview_wrapper .person_wrap .name span {
  font-size: 16px;
}
#page_member .interview_box {
  margin-top: 40px;
  display: grid;
  place-content: center;
  background-color: #f6f6f6;
  padding: 56px 0;
}
#page_member .interview_box .q {
  font-size: 18px;
  background-color: #fcfcfc;
}
#page_member .interview_box .a {
  font-size: 16px;
  margin-bottom: 10px;
}
#page_member .interview_box .q,
#page_member .interview_box .a {
  padding: 10px 24px;
}

@media screen and (max-width: 768px) {
  #page_member .departments_wrapper {
    gap: 80px;
  }
  #page_member .departments_wrapper .ja_b {
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
  }
  #page_member .departments_wrapper .bottom {
    margin: 24px auto 0;
    width: 89.3333333333vw;
  }
  #page_member .departments_wrapper .bottom .comment {
    padding: 0 8px 8px 8px;
    width: 69.3333333333vw;
    margin: 0 0 0 auto;
  }
  #page_member .departments_wrapper .bottom .comment:after {
    height: 32px;
    bottom: -30px;
    rotate: 35deg;
  }
  #page_member .departments_wrapper .bottom .person {
    margin-top: 40px;
    width: 150px;
  }
  #page_member .interview_wrapper .gra_bg {
    width: 300px;
    height: 80px;
  }
  #page_member .interview_wrapper .wrap_inner {
    width: 89.3333333333vw;
  }
  #page_member .interview_wrapper .wrap_inner .name {
    margin-bottom: 10px;
    font-size: 16px;
  }
  #page_member .interview_wrapper .wrap_inner .name span {
    font-size: 14px;
  }
  #page_member .interview_wrapper .wrapper:nth-child(even) .person_wrap {
    grid-template-columns: auto 100px;
  }
  #page_member .interview_wrapper .person_wrap {
    grid-template-columns: 100px auto;
  }
  #page_member .interview_li {
    justify-content: center;
  }
  #page_member .interview_box {
    padding: 24px 0;
    width: 94.6666666667vw;
    margin: 32px 0 0 auto;
    border-radius: 25px 0 0 0;
  }
  #page_member .interview_box .box_inner {
    width: 86.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #page_member .departments_wrapper {
    gap: 96px;
    margin-right: 40px;
  }
  #page_member .departments_wrapper .top {
    position: relative;
  }
  #page_member .departments_wrapper .ja_b {
    font-size: 24px;
    width: 300px;
    text-align: center;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    padding: 8px 0 12px;
    background-color: #fcfcfc;
  }
  #page_member .departments_wrapper .department_image {
    height: 300px;
    margin-bottom: 56px;
  }
  #page_member .departments_wrapper .department_image img {
    object-fit: cover;
    height: 100%;
  }
  #page_member .departments_wrapper .comment {
    margin: 0 auto 0 5.5555555556vw;
  }
  #page_member .departments_wrapper .bottom {
    display: grid;
    grid-template-columns: 150px auto;
    justify-content: center;
  }
  #page_member .departments_wrapper .person {
    grid-column: 1/2;
  }
  #page_member .interview_li:hover li {
    opacity: 0.4;
  }
  #page_member .interview_li li:hover {
    opacity: 1;
  }
  #page_member .interview_box .box_inner {
    width: 54.1666666667vw;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#archive_work .work_li {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px 16px;
  margin-right: 40px;
}
#archive_work .work_li figure {
  object-fit: 16/9;
  overflow: hidden;
}
#archive_work .work_li figure img {
  transition: all 0.4s;
  object-fit: cover;
  height: 100%;
  aspect-ratio: 16/9;
}
#archive_work .work_li a {
  display: grid;
  gap: 8px;
  color: #002e5f;
}
#archive_work .work_li a .work_title {
  font-size: 18px;
}
#archive_work .work_li a .post_categories {
  border: 1px solid #002e5f;
  padding: 4px 10px;
  border-radius: 100vmax;
  width: fit-content;
  font-size: 16px;
}
#archive_work .work_li a:hover img {
  scale: 1.05;
}
#archive_work .page_menu li a.active {
  background-color: #002e5f;
  color: #fcfcfc;
}

@media screen and (max-width: 768px) {
  #archive_work .page_menu {
    overflow: hidden;
    margin: 54px 0 24px;
  }
  #archive_work .page_menu ul {
    width: 100%;
    display: flex;
    gap: 24px;
    overflow-x: scroll;
    padding: 10px 20px;
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
  }
  #archive_work .page_menu li a {
    font-size: 14px;
    white-space: nowrap;
    padding: 0;
    background-color: transparent;
  }
  #archive_work .work_li {
    width: 89.3333333333vw;
    margin-inline: auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  }
  #archive_work .work_li li {
    max-width: 100%;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#single_work .page-visual,
#not_found .page-visual,
#page_service_sub .page-visual {
  background-image: url(assets/images/page_title_bg_single.png);
  background-size: cover;
}

#single_work h2 {
  font-size: 32px;
  padding: 8px 0 12px 18px;
  border-left: 8px solid #002e5f;
  margin-bottom: 16px;
  line-height: 120%;
}
#single_work .categories {
  font-size: 18px;
  border-radius: 100vmax;
  border: 1px solid #002e5f;
  width: fit-content;
  padding: 4px 10px;
}
#single_work figure {
  margin: 32px auto;
  object-fit: 16/9;
}
#single_work figure img {
  object-fit: cover;
  height: 100%;
}
#single_work .btn-slide {
  margin: 80px auto 0;
  display: block;
  width: fit-content;
}
#single_work .btn-slide a {
  font-size: 18px;
}
#single_work .btn-slide a span:before {
  width: 45px;
}
#single_work .btn-slide a span:after {
  left: 46px;
  width: 20px;
}

@media screen and (max-width: 768px) {
  #single_work h2 {
    font-size: 24px;
  }
  #single_work .single_container {
    margin: 80px auto 0;
  }
  #single_work .single_container .container {
    width: 90%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) {
  #single_work .single_container {
    margin: 120px auto 0;
  }
  #single_work .single_container .container {
    max-width: 800px;
    margin-inline: auto;
    width: 90%;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
#page_service_sub .lead_wrap {
  background-color: #f6f6f6;
  display: grid;
  grid-template-columns: 64px 385px;
  padding: 32px 40px;
  border-radius: 5px;
  width: fit-content;
  height: fit-content;
  gap: 16px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}
#page_service_sub .lead_wrap .lead_text {
  font-size: 24px;
  line-height: 170%;
}
#page_service_sub .index_wrap ul {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: right;
}
#page_service_sub .index_wrap ul li a {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  border: 1px solid #002e5f;
  gap: 8px;
  font-size: 18px;
  border-radius: 100vmax;
  transition: all 0.4s;
}
#page_service_sub .index_wrap ul li a:hover {
  background-color: #002e5f;
  color: #fcfcfc;
}
#page_service_sub .index_wrap ul li a:hover span {
  background-color: #fcfcfc;
}
#page_service_sub .index_wrap ul li a span {
  transition: all 0.4s;
  width: 12px;
  height: 12px;
  background-color: #002e5f;
  border-radius: 100vmax;
}
#page_service_sub .service_wrapper {
  margin-top: 48px;
}
#page_service_sub .service_wrapper .contents_li li {
  border-bottom: 1px solid #002e5f;
}
#page_service_sub .service_wrapper .contents_li li .inner {
  display: grid;
  grid-template-columns: min(400px, 27.7777777778vw) auto;
  gap: 40px;
  padding: 56px 0;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
#page_service_sub .service_wrapper .contents_li figure {
  overflow: hidden;
  border-radius: 0 0 30px;
}
#page_service_sub .service_wrapper .contents_li h2 {
  font-size: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
#page_service_sub .service_wrapper .contents_li h2 span {
  width: 12px;
  height: 12px;
  background-color: #002e5f;
  border-radius: 100vmax;
}

@media screen and (max-width: 768px) {
  #page_service_sub .top_wrapper .inner {
    width: 89.3333333333vw;
    margin-inline: auto;
    display: grid;
    gap: 40px;
  }
  #page_service_sub .lead_wrap {
    grid-template-columns: 27px auto;
    gap: 12px;
    padding: 16px 20px;
  }
  #page_service_sub .lead_wrap .lead_text {
    font-size: 16px;
  }
  #page_service_sub .index_wrap ul {
    gap: 8px;
  }
  #page_service_sub .index_wrap ul li a {
    font-size: 14px;
    padding: 8px 12px;
  }
  #page_service_sub .service_wrapper .contents_li li .inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 89.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #page_service_sub .top_wrapper .inner {
    width: 94.4444444444vw;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 555px auto;
    gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  #page_service_sub .top_wrapper .inner {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  #page_service_sub .top_wrapper .inner .index_wrap ul {
    margin: 0;
    justify-content: left;
  }
}/*# sourceMappingURL=style.css.map */