@charset "UTF-8";
/* PC First --------------------- */
/* -----------------------------------
    layout
------------------------------------ */
html, body {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 767px) {
  main.sub {
    padding-top: 50px;
  }
}

/* -----------------------------------
    common
------------------------------------ */
.wrap {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wrap .oswald {
  font-family: "Oswald", sans-serif;
}

ul, dl {
  padding: 0;
  margin: 0;
}

dt, dd, li {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

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

.tab {
  display: none;
}
@media screen and (max-width: 1280px) {
  .tab {
    display: block;
  }
}

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

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  min-height: 0vw;
}

/* -----------------------------------
    common module
------------------------------------ */
a.btn-view-more,
a.btn-common {
  width: 160px;
  aspect-ratio: 39/11;
  background-color: #ffffff;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004ea2;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  padding-right: 0.2em;
  position: relative;
}
a.btn-view-more:hover,
a.btn-common:hover {
  opacity: 0.75 !important;
}
@media screen and (max-width: 767px) {
  a.btn-view-more,
  a.btn-common {
    width: 110px;
    height: 35px;
    font-size: 9px;
    letter-spacing: 0.15em;
    padding-right: 0.5em;
  }
  a.btn-view-more.small,
  a.btn-common.small {
    width: 90px;
    height: 30px;
    letter-spacing: 0.08em;
    font-size: 8px;
  }
}
a.btn-view-more::after,
a.btn-common::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 1px;
  background-color: #004ea2;
  line-height: 1em;
  margin: 0.2em 0 0 0em;
  right: 2em;
}
a.btn-view-more.blue,
a.btn-common.blue {
  background-color: #004ea2;
  color: white;
}
a.btn-view-more.blue::after,
a.btn-common.blue::after {
  background-color: white;
}

.reveal-blue-box {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #004ea2;
  position: absolute;
  top: 0;
  left: 0;
}

/* -----------------------------------
    header
------------------------------------ */
header {
  position: fixed;
  display: flex;
  width: 100%;
  justify-content: space-between;
  min-width: 1025px;
  transform: translateY(-100px);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  header {
    min-width: auto;
    display: flex;
    transform: translateY(0px);
  }
}
header .logo {
  z-index: 100;
}
header .logo a {
  width: 170px;
  height: 70px;
  display: flex;
  background-color: white;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  header .logo a {
    height: 50px;
    width: 128px;
  }
}
header .logo a img {
  display: block;
  width: 128px;
  height: auto;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  header .logo a img {
    width: 86px;
  }
}
@media screen and (min-width: 1025px) {
  header.sub .logo {
    height: 50px;
  }
  header.sub .logo a {
    height: 50px;
  }
  header.sub .logo a img {
    width: 107px;
  }
}
header .header-nav {
  height: 70px;
  position: relative;
  transition: all 0.3s;
  z-index: 90;
}
@media screen and (max-width: 1024px) {
  header .header-nav {
    position: fixed;
    right: -100%;
    background-color: white;
    width: 275px;
    padding: 75px 0 0 0;
    height: 75vh;
    overflow: scroll;
  }
}
header .header-nav nav {
  position: relative;
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav {
    display: block;
  }
}
header .header-nav nav:hover > ul > li {
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  header .header-nav nav:hover > ul > li {
    background-color: transparent;
  }
}
header .header-nav nav > ul {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul {
    display: block;
    width: 100%;
    padding: 0 14px 140px;
  }
}
header .header-nav nav > ul > li {
  transition: all 0.2s;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  padding: 0 clamp(10px, 1.35vw, 21px);
  height: 70px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li {
    justify-content: flex-start;
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    padding: 0 0 0 12px;
    height: auto;
    border-bottom: 1px solid #dcdcdc;
  }
  header .header-nav nav > ul > li.glo-nav-en {
    display: none;
  }
  header .header-nav nav > ul > li::after {
    content: ">";
    display: block;
    position: absolute;
    font-size: 1.7em;
    font-weight: 300;
    right: 0.7em;
    pointer-events: none;
  }
  header .header-nav nav > ul > li.dropdown-lists::after {
    display: none;
  }
  header .header-nav nav > ul > li.dropdown-lists::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #dcdcdc;
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
  }
}
header .header-nav nav > ul > li:first-child {
  padding-left: 44px;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li:first-child {
    padding-left: 10px;
  }
}
header .header-nav nav > ul > li:last-child {
  padding-right: 44px;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li:last-child {
    padding-left: 10px;
    padding-right: 0;
  }
}
header .header-nav nav > ul > li:hover dl dt::after {
  width: 100%;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl {
    width: 100%;
    display: block;
  }
}
header .header-nav nav > ul > li > dl > dt {
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dt {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
  }
}
header .header-nav nav > ul > li > dl > dt::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  border-bottom: 1px solid white;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dt::after {
    display: none;
  }
}
header .header-nav nav > ul > li > dl > dt a {
  display: flex;
  align-items: center;
  line-height: 2.2em;
  color: white;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dt a {
    color: black;
  }
}
header .header-nav nav > ul > li > dl > dt a:hover {
  opacity: 0.8;
}
header .header-nav nav > ul > li > dl > dt .acrd-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dt .acrd-btn {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    padding: 0;
    line-height: 1em;
    position: absolute;
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
    right: 6px;
    background-color: transparent;
    border: none;
    transition: all 0.2s;
  }
  header .header-nav nav > ul > li > dl > dt .acrd-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 11px;
    height: 1px;
    background-color: black;
    transition: all 0.2s;
    left: 6px;
  }
  header .header-nav nav > ul > li > dl > dt .acrd-btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 11px;
    background-color: black;
    left: 11px;
    transition: all 0.2s;
  }
}
header .header-nav nav > ul > li > dl > dd {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 225px;
  margin-top: 70px;
  overflow: hidden;
  height: 0px;
  margin-left: -44px;
  padding-left: 44px;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dd {
    background-color: transparent;
    height: 0;
    overflow: hidden;
    position: relative;
    display: block;
    opacity: 1;
    margin: 0;
    padding-left: 10px;
    width: 100%;
    transition: all 0.3s;
  }
}
header .header-nav nav > ul > li > dl > dd ul {
  position: relative;
}
header .header-nav nav > ul > li > dl > dd ul li {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dd ul li {
    height: 50px;
    border-bottom: 1px solid #dcdcdc;
  }
  header .header-nav nav > ul > li > dl > dd ul li:last-child {
    border-bottom: none;
  }
  header .header-nav nav > ul > li > dl > dd ul li::after {
    content: ">";
    display: block;
    position: absolute;
    font-size: 1.7em;
    font-weight: 300;
    right: 0.7em;
    pointer-events: none;
  }
}
header .header-nav nav > ul > li > dl > dd ul li a {
  padding: 15px 0;
  display: flex;
  align-items: center;
  color: white;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li > dl > dd ul li a {
    color: black;
  }
}
header .header-nav nav > ul > li > dl > dd ul li a:hover {
  opacity: 0.8;
}
header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd {
  display: block;
  opacity: 1;
}
header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-company {
  height: 270px;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-company {
    height: 0;
  }
}
header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-service {
  height: 430px;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-service {
    height: 0;
  }
}
header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-news {
  height: 120px;
}
@media screen and (max-width: 1024px) {
  header .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-news {
    height: 0;
  }
}
header .header-nav nav > ul > li.dropdown-lists.is-active > dl > dt .acrd-btn::before {
  opacity: 0;
}
header .header-nav nav > ul > li.dropdown-lists.is-active > dl > dt .acrd-btn::after {
  transform: rotate(90deg);
}
header .header-nav nav > ul > li.dropdown-lists.is-active > dl > dd.dropdown-company {
  height: 250px;
}
header .header-nav nav > ul > li.dropdown-lists.is-active > dl > dd.dropdown-service {
  height: 350px;
}
header .header-nav nav > ul > li.dropdown-lists.is-active > dl > dd.dropdown-news {
  height: 100px;
}
@media screen and (min-width: 1025px) {
  header.sub .header-nav {
    height: 50px;
    background-color: white;
    width: calc(100% - 170px);
  }
  header.sub .header-nav nav {
    width: 100%;
    justify-content: flex-end;
  }
  header.sub .header-nav nav:hover > ul > li {
    background-color: transparent;
  }
  header.sub .header-nav nav > ul > li {
    font-weight: 500;
    font-size: 12px;
    height: 50px;
    padding: 0 clamp(10px, 1.6vw, 23px);
  }
  header.sub .header-nav nav > ul > li.glo-nav-en {
    padding-right: 46px;
  }
  header.sub .header-nav nav > ul > li.contact {
    padding: 0 47px;
    background-color: #bfbfbf;
  }
  header.sub .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-company {
    height: 260px;
  }
  header.sub .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-service {
    height: 410px;
  }
  header.sub .header-nav nav > ul > li.dropdown-lists:hover > dl > dd.dropdown-news {
    height: 115px;
  }
  header.sub .header-nav nav > ul > li > dl > dt::after {
    border-bottom: 1px solid #004ea2;
    bottom: 0px;
  }
  header.sub .header-nav nav > ul > li > dl > dt a {
    color: black;
  }
  header.sub .header-nav nav > ul > li > dl > dd {
    background-color: white;
    margin-top: 50px;
    margin-left: -12px;
    padding-left: 24px;
    width: 150px;
  }
  header.sub .header-nav nav > ul > li > dl > dd > ul > li a {
    color: black;
  }
}
header .header-mobile-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-mobile-menu {
    display: block;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 275px;
    height: 50px;
    padding: 0 20px 0 0;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0s 0s;
    position: relative;
  }
}
header .header-mobile-menu a {
  padding: 0 1.2em;
  color: white;
}
header .header-mobile-menu .mobile-menu-btn {
  width: 34px;
  height: 34px;
  display: block;
  background-color: transparent;
  border: none;
  position: relative;
}
header .header-mobile-menu .mobile-menu-btn span {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}
header .header-mobile-menu .mobile-menu-btn span:first-child {
  top: calc(50% - 1px - 3.5px);
  left: calc(50% - 9px);
}
header .header-mobile-menu .mobile-menu-btn span:last-child {
  top: calc(50% - 1px + 3.5px);
  left: calc(50% - 9px);
}
header.sub .header-mobile-menu {
  background-color: rgb(255, 255, 255);
  width: 100%;
}
header.sub .header-mobile-menu a {
  color: black;
}
header.sub .header-mobile-menu span {
  background-color: black;
}
header.sub .breadcrumb {
  display: block;
  position: absolute;
  bottom: -20px;
  height: 20px;
  width: clamp(370px, 34vw, 450px);
  background-color: white;
  color: black;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  header.sub .breadcrumb {
    width: clamp(370px, 36vw, 450px);
  }
}
@media screen and (max-width: 1024px) {
  header.sub .breadcrumb {
    display: none;
  }
}
header.sub .breadcrumb ul {
  margin: 0;
  padding: 0 16px 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
}
header.sub .breadcrumb ul li {
  line-height: 1em;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0 16px;
  position: relative;
}
header.sub .breadcrumb ul li::after {
  content: "＞";
  display: block;
  position: absolute;
  right: -0.5em;
  top: 0;
}
header.sub .breadcrumb ul li:last-child::after {
  display: none;
}
header.sub .breadcrumb ul li a {
  color: black;
}
header.sub .breadcrumb ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #004ea2;
  margin-top: 4px;
  transition: all 0.3s;
}
header.sub .breadcrumb ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  header.is-sp-menu-active .header-nav {
    right: 0;
  }
  header.is-sp-menu-active .header-mobile-menu {
    background-color: rgb(255, 255, 255);
    transition: all 0.1s 0.3s;
  }
  header.is-sp-menu-active .header-mobile-menu a {
    color: black;
  }
  header.is-sp-menu-active .header-mobile-menu .mobile-menu-btn span {
    background-color: black;
  }
  header.is-sp-menu-active .header-mobile-menu .mobile-menu-btn span:first-child {
    transform: translate(0, 3.5px) rotate(-45deg);
  }
  header.is-sp-menu-active .header-mobile-menu .mobile-menu-btn span:last-child {
    transform: translate(0, -3.5px) rotate(45deg);
  }
}

/* -----------------------------------
    footer
------------------------------------ */
footer {
  width: 100%;
  background-color: #004ea2;
}
@media screen and (max-width: 1024px) {
  footer {
    min-width: auto;
  }
}
footer .footer-nav {
  margin: 0 auto;
  width: clamp(1000px, 100vw, 1100px);
  color: white;
  padding: 50px 0 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav {
    width: 100%;
    padding: 0px 0 40px;
  }
}
footer .footer-nav .backto-top-btn {
  cursor: pointer;
  outline: none;
  border: none;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: block;
  position: absolute;
  right: 10px;
  top: -100px;
  padding: 0;
}
footer .footer-nav .backto-top-btn:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav .backto-top-btn {
    width: 45px;
    height: 45px;
    top: -65px;
  }
}
footer .footer-nav nav > ul {
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul {
    display: block;
  }
}
footer .footer-nav nav > ul > li {
  font-size: 10px;
  line-height: 1.1em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #959595;
    font-size: 10.5px;
  }
}
footer .footer-nav nav > ul > li > dl {
  display: block;
}
footer .footer-nav nav > ul > li > dl > dt {
  display: block;
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dt {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    font-weight: 400;
  }
  footer .footer-nav nav > ul > li > dl > dt::after {
    content: ">";
    display: block;
    position: absolute;
    font-size: 1.8em;
    font-weight: 400;
    right: 30px;
    pointer-events: none;
  }
}
footer .footer-nav nav > ul > li > dl > dt a {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dt a {
    height: 100%;
    padding: 0 0 0 30px;
  }
}
footer .footer-nav nav > ul > li > dl > dt .acrd-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dt .acrd-btn {
    display: flex;
    align-items: center;
    font-size: 1.6em;
    font-weight: 400;
    padding: 0;
    line-height: 1em;
    position: absolute;
    width: 48px;
    height: 48px;
    top: calc(50% - 24px);
    right: 12px;
    background-color: transparent;
    border: none;
    transition: all 0.2s;
    color: white;
  }
  footer .footer-nav nav > ul > li > dl > dt .acrd-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 11px;
    height: 1px;
    background-color: white;
    transition: all 0.2s;
    left: 18px;
  }
  footer .footer-nav nav > ul > li > dl > dt .acrd-btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 11px;
    background-color: white;
    left: 23px;
    transition: all 0.2s;
  }
}
footer .footer-nav nav > ul > li > dl > dd {
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dd {
    font-weight: 400;
    background-color: transparent;
    height: 0;
    overflow: hidden;
    position: relative;
    display: block;
    opacity: 1;
    margin: 0;
    padding-left: 10px;
    width: 100%;
    transition: all 0.3s;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dd ul {
    padding-bottom: 25px;
  }
}
footer .footer-nav nav > ul > li > dl > dd ul li {
  padding: 1em 0;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dd ul li {
    padding: 0;
    height: 50px;
    display: flex;
    align-items: center;
  }
  footer .footer-nav nav > ul > li > dl > dd ul li::after {
    content: ">";
    display: block;
    position: absolute;
    font-size: 1.8em;
    font-weight: 400;
    right: 30px;
    pointer-events: none;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer-nav nav > ul > li > dl > dd ul li a {
    display: flex;
    align-items: center;
    padding: 0 0 0 48px;
    width: 100%;
    height: 100%;
  }
}
footer .footer-nav nav > ul > li > dl a {
  color: rgba(255, 255, 255, 0.85);
}
footer .footer-nav nav > ul > li > dl a:hover {
  opacity: 0.7;
}
footer .footer-nav nav > ul > li.dropdown-lists dl dt::after {
  display: none;
}
footer .footer-nav nav > ul > li.dropdown-lists.is-active dl dt .acrd-btn::before {
  opacity: 0;
}
footer .footer-nav nav > ul > li.dropdown-lists.is-active dl dt .acrd-btn::after {
  transform: rotate(90deg);
}
footer .footer-nav nav > ul > li.dropdown-lists.is-active dl dd.dropdown-company {
  height: 325px;
}
footer .footer-nav nav > ul > li.dropdown-lists.is-active dl dd.dropdown-service {
  height: 375px;
}
footer .footer-nav nav > ul > li.dropdown-lists.is-active dl dd.dropdown-news {
  height: 125px;
}
footer .footer-content-wrap {
  width: 100%;
  border-top: 1px solid #959595;
  padding: 18px 0 73px;
}
@media screen and (max-width: 1024px) {
  footer .footer-content-wrap {
    border-top: none;
    padding: 0 22px 30px;
  }
}
footer .footer-content-wrap .footer-content {
  width: clamp(1000px, 100vw, 1100px);
  margin: 0 auto;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  footer .footer-content-wrap .footer-content {
    width: 100%;
    min-width: auto;
  }
}
footer .footer-content-wrap .footer-content .footer-copyright {
  font-size: 11px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  footer .footer-content-wrap .footer-content .footer-copyright {
    font-size: 7px;
  }
}
footer .footer-content-wrap .footer-content .footer-logo {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  footer .footer-content-wrap .footer-content .footer-logo {
    width: 52px;
  }
}
footer .footer-content-wrap .footer-content .footer-logo img {
  width: 100%;
}

/* ----------------------------------------------------
    HERO sub
----------------------------------------------------- */
.hero.sub {
  background-color: #adadad;
  width: 100%;
  aspect-ratio: 30/9;
  min-width: 900px;
  position: relative;
  max-height: 640px;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero.sub.message {
  max-height: none;
}
@media screen and (max-width: 767px) {
  .hero.sub {
    min-width: auto;
    aspect-ratio: 15/12;
  }
}
.hero.sub .blue-base-box {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero.sub .title-box {
  opacity: 0;
  width: 56%;
  max-width: 800px;
  min-width: 400px;
  background-color: #004ea2;
  position: relative;
  padding-top: clamp(105px, 10.5%, 150px);
  aspect-ratio: 17/6;
}
@media screen and (max-width: 767px) {
  .hero.sub .title-box {
    aspect-ratio: 9/5;
    width: 60vw;
    min-width: auto;
    padding-top: 10.5%;
  }
}
.hero.sub .title-box.bg-transparent {
  background-color: transparent;
}
.hero.sub .title-box h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .hero.sub .title-box h1 {
    flex-wrap: wrap;
  }
}
.hero.sub .title-box h1 .h1-en, .hero.sub .title-box h1 .h1-main {
  display: block;
  color: white;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: 0.25em;
  line-height: 1em;
  padding-left: 1.2vw;
}
@media screen and (max-width: 767px) {
  .hero.sub .title-box h1 .h1-en, .hero.sub .title-box h1 .h1-main {
    width: 100%;
    height: 50%;
    padding-left: 0;
    text-align: center;
    font-size: clamp(10px, 5.2vw, 20px);
    padding-bottom: 6px;
  }
}
.hero.sub .title-box h1 .h1-jp, .hero.sub .title-box h1 .h1-sub {
  display: block;
  color: white;
  font-weight: 400;
  font-size: clamp(10px, 0.93vw, 12px);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1em;
  padding-top: 0.2em;
  padding-left: 2.2vw;
}
@media screen and (max-width: 767px) {
  .hero.sub .title-box h1 .h1-jp, .hero.sub .title-box h1 .h1-sub {
    width: 100%;
    height: 50%;
    padding-left: 0;
    text-align: center;
    padding-top: 6px;
  }
}

/* Title - JP(main) EN(sub) - */
.hero.sub .title-box h1 .h1-sub {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  padding-top: 0.1em;
  padding-left: 1.2vw;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
  .hero.sub .title-box h1 .h1-sub {
    font-size: 3vw;
    padding-left: 0.22em;
    padding-top: 7px;
  }
}

.hero.sub .title-box h1 .h1-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2vw, 25px);
  padding: 0;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .hero.sub .title-box h1 .h1-main {
    font-size: 3.67vw;
    padding-left: 0.4em;
    padding-bottom: 7px;
  }
  .hero.sub .title-box h1 .h1-main .line2 {
    padding-top: 10px;
    display: block;
  }
}
.hero.sub .title-box h1 .h1-main.sustainability {
  letter-spacing: 0.3em;
}

/* Fintech (MSPF / MCCS / Development) */
@media screen and (max-width: 767px) {
  .hero.sub.fintech .title-box {
    padding-top: 7.7%;
  }
}
.hero.sub.fintech .title-box h1 .h1-main {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .hero.sub.fintech .title-box h1 .h1-main {
    line-height: 1.3;
    padding-bottom: 6px;
  }
}

/* Hero no img */
.hero.sub.noimg {
  aspect-ratio: initial;
  background-color: white;
}
.hero.sub.noimg h1 .h1-main {
  letter-spacing: 0.3em;
}
.hero.sub.noimg h1 .h1-sub {
  letter-spacing: 0.4em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .hero.sub.noimg {
    aspect-ratio: 3/1;
    width: 100%;
  }
  .hero.sub.noimg .title-box {
    aspect-ratio: 3/1;
    width: 100%;
  }
  .hero.sub.noimg .title-box h1 {
    display: block;
    text-align: center;
  }
  .hero.sub.noimg .title-box h1 .h1-main, .hero.sub.noimg .title-box h1 .h1-sub {
    letter-spacing: 0.25em;
    padding-left: 0.25em;
  }
}

/* Contact */
@media screen and (max-width: 767px) {
  .contact .hero.sub.noimg .title-box {
    padding-top: 12%;
  }
}

/* Privacy +  Security*/
.policy .hero.sub.noimg .title-box .h1-main {
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .policy .hero.sub.noimg .title-box {
    width: 100%;
  }
}

/* -----------------------------------
    Hero image
------------------------------------ */
/* COMPANY */
.hero.sub.company-top {
  background-image: url(../img/company/hero_company_top.jpg);
}
@media screen and (max-width: 767px) {
  .hero.sub.company-top {
    background-image: url(../img/company/hero_company_top_sp.jpg);
  }
}

.philosophy .hero.sub {
  background-image: url(../img/company/hero_philosophy.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .philosophy .hero.sub {
    background-image: url(../img/company/hero_philosophy_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.message .hero.sub {
  background-image: url(../img/company/hero_message.jpg);
  aspect-ratio: 30/21;
}
@media screen and (max-width: 767px) {
  .message .hero.sub {
    background-image: url(../img/company/hero_message_sp.jpg);
    aspect-ratio: 15/21;
  }
}

.companyinfo .hero.sub {
  background-image: url(../img/company/hero_companyinfo.jpg);
  aspect-ratio: 300/104;
}
@media screen and (max-width: 767px) {
  .companyinfo .hero.sub {
    background-image: url(../img/company/hero_companyinfo_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.history .hero.sub {
  background-image: url(../img/company/hero_history.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .history .hero.sub {
    background-image: url(../img/company/hero_history_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.executives .hero.sub {
  background-image: url(../img/company/hero_executives.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .executives .hero.sub {
    background-image: url(../img/company/hero_executives_sp.jpg);
    aspect-ratio: 15/10;
  }
}

/* SERVICE */
.service-top .hero.sub {
  background-image: url(../img/service/top/hero_service_top.jpg);
}
@media screen and (max-width: 767px) {
  .service-top .hero.sub {
    background-image: url(../img/service/top/hero_service_top_sp.jpg);
  }
}

.business .hero.sub {
  background-image: url(../img/service/business/hero_business.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .business .hero.sub {
    background-image: url(../img/service/business/hero_business_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.services .hero.sub {
  background-image: url(../img/service/services/hero_services.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .services .hero.sub {
    background-image: url(../img/service/services/hero_services_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.mccs .hero.sub {
  background-image: url(../img/service/mccs/hero_mccs.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .mccs .hero.sub {
    background-image: url(../img/service/mccs/hero_mccs_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.mspf .hero.sub {
  background-image: url(../img/service/mspf/hero_mspf.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .mspf .hero.sub {
    background-image: url(../img/service/mspf/hero_mspf_sp.jpg);
    aspect-ratio: 15/10;
  }
}

.development .hero.sub {
  background-image: url(../img/service/development/hero_development.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .development .hero.sub {
    background-image: url(../img/service/development/hero_development_sp.jpg);
    aspect-ratio: 15/10;
  }
}

/* SUSTAINABILITY */
.sustainability .hero.sub {
  background-image: url(../img/sustainability/hero_sustainability.jpg);
  aspect-ratio: 30/13;
}
@media screen and (max-width: 767px) {
  .sustainability .hero.sub {
    background-image: url(../img/sustainability/hero_sustainability_sp.jpg);
    aspect-ratio: 15/10;
  }
}

/* -----------------------------------
    sub middle index
------------------------------------ */
.content .tbl-content {
  width: clamp(1000px, 100vw, 1100px);
  margin: 125px auto 200px;
}
@media screen and (max-width: 767px) {
  .content .tbl-content {
    min-width: auto;
    width: 100%;
    margin: 50px auto 100px;
  }
}
.content .tbl-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .content .tbl-content ul {
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
.content .tbl-content ul li {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 125/100;
  /* COMPANY */
  /* SERVICE */
}
@media screen and (max-width: 767px) {
  .content .tbl-content ul li {
    width: 100%;
  }
}
.content .tbl-content ul li.philosophy {
  background-image: url(../img/company/ph_philosophy.jpg);
}
.content .tbl-content ul li.message {
  background-image: url(../img/company/ph_message.jpg);
}
.content .tbl-content ul li.message h2 .h2-jp {
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}
.content .tbl-content ul li.companyinfo {
  background-image: url(../img/company/ph_companyinfo.jpg);
}
.content .tbl-content ul li.history {
  background-image: url(../img/company/ph_history.jpg);
}
.content .tbl-content ul li.executives {
  background-image: url(../img/company/ph_executives.jpg);
}
.content .tbl-content ul li.business {
  background-image: url(../img/service/top/ph_business.jpg);
}
.content .tbl-content ul li.services {
  background-image: url(../img/service/top/ph_services.jpg);
}
.content .tbl-content ul li.services h2 .h2-jp {
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}
.content .tbl-content ul li.mccs {
  background-image: url(../img/service/top/ph_mccs.jpg);
}
.content .tbl-content ul li.mspf {
  background-image: url(../img/service/top/ph_mspf.jpg);
}
.content .tbl-content ul li.development {
  background-image: url(../img/service/top/ph_development.jpg);
}
.content .tbl-content ul li h2 {
  width: 44%;
  aspect-ratio: 55/40;
  background-color: #004ea2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content .tbl-content ul li h2 .h2-jp {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1em;
  height: 50%;
  letter-spacing: 0.6em;
  padding-left: 0.6em;
  padding-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  .content .tbl-content ul li h2 .h2-jp {
    font-size: 2.6vw;
    padding-bottom: 5px;
  }
}
.content .tbl-content ul li h2 .h2-en {
  text-align: center;
  width: 100%;
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1em;
  height: 50%;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .content .tbl-content ul li h2 .h2-en {
    font-size: 9px;
    padding-top: 5px;
  }
}
.content .tbl-content ul li .btn-view-more {
  position: absolute;
  bottom: 40px;
  right: 35px;
}
@media screen and (max-width: 767px) {
  .content .tbl-content ul li .btn-view-more {
    bottom: 5.3vw;
    right: 4.7vw;
  }
}

/* BUSINESS Service top */
.service-top .content .tbl-content {
  margin: 125px auto;
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content {
    margin: 45px auto 50px;
  }
}
.service-top .content .tbl-content .tbl-content-subti {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 25px);
  letter-spacing: 0.05em;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content .tbl-content-subti {
    padding: 0 0 25px 0px;
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content.ft {
    margin: 0 auto 100px;
  }
  .service-top .content .tbl-content.ft .tbl-content-subti {
    padding: 0 30px 25px;
  }
}
.service-top .content .tbl-content.ft ul {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content.ft ul {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
  }
}
.service-top .content .tbl-content.ft ul li {
  aspect-ratio: 1/1;
}
.service-top .content .tbl-content.ft ul li h3 {
  width: 50%;
  aspect-ratio: 4/3;
  font-weight: 400;
  background-color: #004ea2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-top .content .tbl-content.ft ul li h3 span {
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  font-size: clamp(15px, 1.3vw, 16px);
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content.ft ul li h3 {
    aspect-ratio: 36/27;
  }
  .service-top .content .tbl-content.ft ul li h3 span {
    font-size: 2.4vw;
  }
}
.service-top .content .tbl-content.ft ul li .btn-view-more {
  position: absolute;
  bottom: 40px;
  right: 35px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content.ft ul li .btn-view-more {
    bottom: 3.8vw;
    right: 3.8vw;
  }
}
.service-top .content .tbl-content.ft ul li.development .h2-jp {
  font-size: clamp(14px, 1.26vw, 16px);
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content.ft ul li.development .h2-jp {
    font-size: 2.28vw;
  }
}
.service-top .content .tbl-content.sv {
  margin: 0 auto 200px;
}
@media screen and (max-width: 767px) {
  .service-top .content .tbl-content.sv {
    margin: 0 auto 100px;
    padding: 0 30px;
  }
}

/* sevice */
.tbl-content.sv ul.list_blue_menu,
ul.list_blue_menu {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .tbl-content.sv ul.list_blue_menu,
  ul.list_blue_menu {
    gap: 18px;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 40px auto 0;
  }
}
.tbl-content.sv ul.list_blue_menu li,
ul.list_blue_menu li {
  aspect-ratio: 4/1;
  background-color: #004ea2;
}
@media screen and (max-width: 767px) {
  .tbl-content.sv ul.list_blue_menu li,
  ul.list_blue_menu li {
    aspect-ratio: 25/4;
  }
}
.tbl-content.sv ul.list_blue_menu li a,
ul.list_blue_menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(15px, 1.3vw, 17px);
  letter-spacing: 0.3em;
  height: 100%;
}
.tbl-content.sv ul.list_blue_menu li a:hover,
ul.list_blue_menu li a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .tbl-content.sv ul.list_blue_menu li a,
  ul.list_blue_menu li a {
    font-size: 3.27vw;
  }
}
.tbl-content.sv ul.list_blue_menu li a::after,
ul.list_blue_menu li a::after {
  content: "";
  position: absolute;
  background: url(../img/common/arrow_w.svg) 0 0 no-repeat;
  width: 12px;
  height: 18px;
  width: clamp(8px, 1.1vw, 12px);
  height: clamp(12px, 1.6vw, 18px);
  right: 30px;
}
@media screen and (max-width: 767px) {
  .tbl-content.sv ul.list_blue_menu li a::after,
  ul.list_blue_menu li a::after {
    width: 6px;
    height: 9px;
    right: 15px;
  }
}

.tbl-content.sv {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .tbl-content.sv {
    margin-bottom: 200px;
  }
}
.tbl-content.sv ul.list_blue_menu {
  margin-top: 0;
}

/* -----------------------------------
    SUB (3rd level): common modules
------------------------------------ */
.main_contents {
  width: clamp(1000px, 100vw, 1100px);
  margin: 0 auto 180px;
  /* intro */
}
@media screen and (max-width: 767px) {
  .main_contents {
    width: 100%;
    margin: 0 auto 100px;
  }
  .main_contents .sec {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
}
.main_contents section {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .main_contents section {
    margin-top: 100px;
  }
}
.main_contents h2 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .main_contents h2 {
    font-size: 3.8vw;
    line-height: 2.1;
  }
}
.main_contents h2 + p {
  margin-top: 1em;
}
.main_contents p {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .main_contents p {
    font-size: 3.27vw;
    line-height: 2;
  }
}
.main_contents sup {
  font-size: 11px;
  vertical-align: super;
}
.main_contents section.intro {
  margin: 85px auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_contents section.intro {
    margin: 50px auto 0;
  }
}
.main_contents section.intro h2 {
  font-size: clamp(22px, 1.9vw, 25px);
  width: 66%;
}
@media screen and (max-width: 767px) {
  .main_contents section.intro h2 {
    font-size: 3.8vw;
    letter-spacing: 0.05em;
    width: 100%;
  }
}
.main_contents section.intro p {
  margin-top: 1.6em;
  width: 66%;
}
@media screen and (max-width: 767px) {
  .main_contents section.intro p {
    width: 100%;
  }
}
.main_contents a.underline {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.main_contents a.underline:hover {
  text-decoration: none;
}
.main_contents .ls0 {
  letter-spacing: 0 impr !important;
}
.main_contents .ls005 {
  letter-spacing: 0.05em !important;
}
.main_contents .ls0075 {
  letter-spacing: 0.075em !important;
}
.main_contents .ls015 {
  letter-spacing: 0.15em !important;
}
.main_contents .ls03 {
  letter-spacing: 0.3em !important;
}

/* -----------------------------------
    Local Navigation
------------------------------------ */
.local-nav ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .local-nav ul {
    margin-top: 100px;
  }
}
.local-nav ul li {
  position: relative;
  width: 25%;
  border: 1px solid #004ea2;
  border-left: none;
  font-size: clamp(15px, 1.3vw, 17px);
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .local-nav ul li {
    width: 50%;
    font-size: 10.5px;
  }
}
.local-nav ul li:nth-child(5), .local-nav ul li:first-child {
  border-left: 1px solid #004ea2;
}
.local-nav ul li:nth-child(n+5) {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .local-nav ul li:nth-child(odd) {
    border-left: 1px solid #004ea2;
  }
  .local-nav ul li:nth-child(3), .local-nav ul li:nth-child(4) {
    border-top: none;
  }
}
.local-nav ul li a {
  display: flex;
  align-items: center;
  color: #004ea2;
  padding-left: 50px;
  height: 85px;
}
.local-nav ul li a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .local-nav ul li a {
    padding-left: 25px;
    height: 50px;
  }
}
.local-nav ul li a::after {
  content: "";
  position: absolute;
  background: url(../img/common/arrow_b.svg) 0 0 no-repeat;
  width: 12px;
  height: 18px;
  width: clamp(8px, 1.1vw, 12px);
  height: clamp(12px, 1.6vw, 18px);
  right: 30px;
}
@media screen and (max-width: 767px) {
  .local-nav ul li a::after {
    width: 6px;
    height: 9px;
    right: 15px;
  }
}
.local-nav ul li a.current {
  background-color: #004ea2;
  color: #fff;
}
.local-nav ul li a.current::after {
  background-image: url(../img/common/arrow_w.svg);
}

/* -----------------------------------
    List menu
------------------------------------ */
.list_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .list_menu {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto 0;
    gap: 25px;
  }
}
.list_menu li {
  position: relative;
  background-color: #004ea2;
  color: #fff;
  aspect-ratio: 1/1;
}
.list_menu li h3 {
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 500;
  padding: 26px 36px 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .list_menu li h3 {
    font-size: 3.3vw;
    padding: 4vw 6vw 0;
  }
}
.list_menu li h3.finance {
  font-size: clamp(18px, 1.6vw, 20px);
}
@media screen and (max-width: 767px) {
  .list_menu li h3.finance {
    font-size: 3.2vw !important;
  }
}
.list_menu li p {
  font-size: clamp(15px, 1.3vw, 16px);
  letter-spacing: 0.05em;
  line-height: 1.8em;
  padding: 12px 36px 0;
}
@media screen and (max-width: 767px) {
  .list_menu li p {
    font-size: 2.67vw;
    padding: 0.8em 6vw 0;
  }
}
.list_menu li p span {
  display: block;
  font-size: clamp(11px, 1.15vw, 15px);
  padding-top: 1.3em;
}
@media screen and (max-width: 767px) {
  .list_menu li p span {
    font-size: 2vw;
  }
}
.list_menu li .btn-view-more {
  position: absolute;
  bottom: clamp(25px, 2.1vw, 40px);
  right: 35px;
}
@media screen and (max-width: 767px) {
  .list_menu li .btn-view-more {
    bottom: 5.3vw;
    right: 4.7vw;
  }
}

/* -----------------------------------
    Accordion Box
------------------------------------ */
.ac_trig {
  position: relative;
  cursor: pointer;
}
.ac_trig .ac_btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  height: 100%;
  cursor: pointer;
}
.ac_trig .ac_btn::after {
  transform: rotate(90deg);
}
.ac_trig .ac_btn::after, .ac_trig .ac_btn::before {
  content: "";
  position: absolute;
  transition: all 0.2s ease-in-out;
  width: 22px;
  height: 2px;
  background-color: #000;
  display: block;
}
@media screen and (max-width: 767px) {
  .ac_trig .ac_btn::after, .ac_trig .ac_btn::before {
    width: 2.93vw;
    height: 1px;
  }
}
.ac_trig.open .ac_btn:after {
  transform: rotate(45deg);
}
.ac_trig.open .ac_btn:before {
  transform: rotate(-45deg);
}

/* -----------------------------------
    COMPANY: Philosophy
------------------------------------ */
.philosophy .main_contents section.sec_philosophy {
  text-align: center;
  margin: 85px auto 0;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy {
    margin: 50px auto 0;
  }
}
.philosophy .main_contents section.sec_philosophy h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #004ea2;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy h2 {
    font-size: 6.67vw;
  }
}
.philosophy .main_contents section.sec_philosophy h2 span {
  display: block;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.1em;
  line-height: 2.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy h2 span {
    font-size: 3.33vw;
  }
}
.philosophy .main_contents section.sec_philosophy h2 span.oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #004ea2;
  font-size: clamp(30px, 4vw, 38px);
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy h2 span.oswald {
    font-size: 6.67vw;
  }
}
.philosophy .main_contents section.sec_philosophy h3 {
  font-size: clamp(20px, 1.9vw, 25px);
  letter-spacing: 0.1em;
  line-height: 1.67;
  font-weight: 700;
  margin: 0.6em 0 70px;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy h3 {
    font-size: 4vw;
    margin: 0.6em 0 35px;
  }
}
.philosophy .main_contents section.sec_philosophy h3.split-sub-txt, .philosophy .main_contents section.sec_philosophy h3.split-sub-txt2 {
  overflow: hidden;
}
.philosophy .main_contents section.sec_philosophy p {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy p {
    margin-top: 50px;
    text-align: left;
  }
}
.philosophy .main_contents section.sec_philosophy p.note {
  margin-top: 40px;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .philosophy .main_contents section.sec_philosophy p.note {
    margin-top: 6.67%;
    font-size: 2.4vw;
  }
}

/* -----------------------------------
    COMPANY: Message
------------------------------------ */
.message .hero .msg-box {
  width: 56%;
  min-width: 400px;
  padding: 6% 0 0 14%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .message .hero .msg-box {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 6% 0 0 0;
    min-width: auto;
  }
}
.message .hero .msg-box h2 {
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.93;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .message .hero .msg-box h2 {
    font-size: 4.9vw;
    letter-spacing: 0.06em;
  }
}
.message .hero .msg-box span.name {
  margin-top: 20%;
  font-size: clamp(26px, 2.2vw, 35px);
  letter-spacing: 0.1em;
  display: block;
}
.message .hero .msg-box span.name span.title {
  font-size: clamp(18px, 1.6vw, 22px);
  display: block;
}
@media screen and (max-width: 767px) {
  .message .hero .msg-box span.name {
    font-size: 4.57vw;
  }
  .message .hero .msg-box span.name span.title {
    font-size: 3vw;
  }
}
.message .sec_msg_profile {
  margin-top: 125px;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile {
    margin-top: 50px;
  }
}
.message .sec_msg_profile .message_tex {
  width: 69%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .message_tex {
    width: 100%;
  }
}
.message .sec_msg_profile .message_tex p {
  margin-bottom: 40px;
  line-height: 2;
}
.message .sec_msg_profile .message_tex p.note {
  font-size: 11px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .message_tex p {
    margin-bottom: 6.67%;
    line-height: 1.63;
  }
  .message .sec_msg_profile .message_tex p.note {
    font-size: 2.4vw;
  }
}
.message .sec_msg_profile .profile_box {
  margin: 125px auto 0;
  width: 77%;
  background-color: #ebf0f2;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .profile_box {
    margin: 60px auto 0;
    width: 100%;
  }
}
.message .sec_msg_profile .profile_box .ac_trig {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .profile_box .ac_trig {
    font-size: 3.73vw;
    padding: 8% 0;
  }
}
.message .sec_msg_profile .profile_box .ac_trig .ac_btn {
  right: 6%;
}
.message .sec_msg_profile .profile_box .ac_cont {
  padding: 50px 100px 45px;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .profile_box .ac_cont {
    padding: 6% 25px 6%;
  }
}
.message .sec_msg_profile .profile_box .ac_cont h4, .message .sec_msg_profile .profile_box .ac_cont p, .message .sec_msg_profile .profile_box .ac_cont dl {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.94;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .profile_box .ac_cont h4, .message .sec_msg_profile .profile_box .ac_cont p, .message .sec_msg_profile .profile_box .ac_cont dl {
    font-size: 3vw;
    line-height: 1.77;
  }
}
.message .sec_msg_profile .profile_box .ac_cont p, .message .sec_msg_profile .profile_box .ac_cont dt {
  margin-top: 2em;
}
.message .sec_msg_profile .profile_box .ac_cont dt {
  font-weight: bold;
}
.message .sec_msg_profile .profile_box .ac_cont .btn_close {
  margin-top: 100px;
  width: 100%;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 0.075em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .message .sec_msg_profile .profile_box .ac_cont .btn_close {
    margin-top: 12%;
    font-size: 3.6vw;
  }
}

/* -----------------------------------
    COMPANY: Company Info
------------------------------------ */
section.sec_info {
  margin: 85px auto 0;
}
@media screen and (max-width: 767px) {
  section.sec_info {
    margin-top: 50px;
  }
}

.tbl_info {
  display: flex;
  flex-wrap: wrap;
}
.tbl_info dt {
  width: 35%;
  color: #004ea2;
  display: flex;
  justify-content: center;
  padding-left: 15% !important;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .tbl_info dt {
    justify-content: flex-start;
    padding-left: 0 !important;
  }
}
.tbl_info dd {
  width: 65%;
  color: #535353;
}
.tbl_info dt, .tbl_info dd {
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 25px;
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .tbl_info dt, .tbl_info dd {
    width: 100%;
    font-size: 3.2vw;
    padding: 3.33% 0;
  }
}
@media screen and (max-width: 767px) {
  .tbl_info dt {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .tbl_info dd {
    padding-top: 0;
  }
}

.list_address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .list_address {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 100px;
  }
}
.list_address > li {
  background-color: #004ea2;
  min-height: 400px;
  color: #fff;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list_address > li {
    min-height: 65vw;
    padding: 6.67%;
  }
}
.list_address > li .tex_box {
  width: 60%;
}
@media screen and (max-width: 1280px) {
  .list_address > li .tex_box {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .list_address > li .tex_box {
    width: 62%;
  }
}
.list_address > li .tex_box h2 {
  font-size: clamp(16px, 1.4vw, 20px);
  margin-top: -0.6em;
}
@media screen and (max-width: 767px) {
  .list_address > li .tex_box h2 {
    font-size: 3vw;
  }
}
.list_address > li .tex_box p,
.list_address > li .tex_box .access {
  font-size: clamp(11px, 0.8vw, 12px);
  line-height: 1.78;
  letter-spacing: 0;
}
@media screen and (max-width: 1280px) {
  .list_address > li .tex_box p,
  .list_address > li .tex_box .access {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .list_address > li .tex_box p,
  .list_address > li .tex_box .access {
    font-size: 2.1vw;
    /*font-size: 2vw;*/
  }
}
.list_address > li .tex_box .access {
  margin-top: 1em;
}
.list_address > li img {
  width: 38%;
}
@media screen and (max-width: 1280px) {
  .list_address > li img {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .list_address > li img {
    width: 36%;
  }
}
.list_address > li a.btn-common {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.list_address > li a.btn-common::after {
  right: 1.7em;
}
@media screen and (max-width: 767px) {
  .list_address > li a.btn-common {
    bottom: 7vw;
    left: 7vw;
  }
}

/* -----------------------------------
    COMPANY: Executives
------------------------------------ */
section.sec_executives {
  margin: 85px auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.sec_executives {
    margin-top: 50px;
  }
}
section.sec_executives .list_executives {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.sec_executives .list_executives::after {
  display: block;
  content: "";
  width: 32%;
}
section.sec_executives .list_executives li {
  width: 32%;
  margin-bottom: 100px;
  line-height: 1.67;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  section.sec_executives .list_executives li {
    width: 100%;
    margin-bottom: 10%;
  }
}
section.sec_executives .list_executives li:last-child {
  margin-bottom: 0;
}
section.sec_executives .list_executives li figure {
  width: 43%;
}
@media screen and (max-width: 767px) {
  section.sec_executives .list_executives li figure {
    width: 29%;
  }
}
section.sec_executives .list_executives li .tex_box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  section.sec_executives .list_executives li .tex_box {
    width: 66.4%;
  }
}
section.sec_executives .list_executives li .tex_box h2 {
  font-size: clamp(15px, 1.36vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  section.sec_executives .list_executives li .tex_box h2 {
    font-size: 3.73vw;
  }
}
section.sec_executives .list_executives li .tex_box h3, section.sec_executives .list_executives li .tex_box dl {
  font-size: clamp(11px, 1.15vw, 12.5px);
  line-height: 1.6;
}
@media screen and (max-width: 1280px) {
  section.sec_executives .list_executives li .tex_box h3, section.sec_executives .list_executives li .tex_box dl {
    font-size: clamp(10px, 0.85vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  section.sec_executives .list_executives li .tex_box h3, section.sec_executives .list_executives li .tex_box dl {
    width: 100%;
    font-size: 2.67vw;
    line-height: 1.5;
  }
}
section.sec_executives .list_executives li .tex_box h3 {
  font-weight: 400;
  margin-top: 0.8em;
}
section.sec_executives .list_executives li .tex_box dl {
  margin-top: 1.1em;
}
section.sec_executives .list_executives li .tex_box span {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  section.sec_executives .list_executives li .tex_box span {
    letter-spacing: 0.025em;
  }
}
section.sec_executives .note {
  position: absolute;
  bottom: 40px;
  right: 0;
  font-size: clamp(9px, 1.1vw, 10px);
}
@media screen and (max-width: 767px) {
  section.sec_executives .note {
    font-size: 2vw;
    position: static;
    margin-top: 10%;
  }
}

/* -----------------------------------
    COMPANY: History
------------------------------------ */
section.sec_history {
  margin: 135px auto 0;
  position: relative;
  /*--- MENU ---*/
  /*--- ALL / COMMON ---*/
  /* OVERSEAS */
  /* AWARDS */
  /* for GSAP Animation */
}
@media screen and (max-width: 767px) {
  section.sec_history {
    margin: 50px auto 0;
  }
}
section.sec_history .tab_menu li {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  section.sec_history .tab_menu li {
    width: 33.3333333333%;
    flex-wrap: nowrap;
    line-height: 3em;
  }
  section.sec_history .tab_menu li:last-child {
    border-top: 1px solid #004ea2;
  }
}
section.sec_history .npb {
  padding-bottom: 0 !important;
}
section.sec_history .yr_set {
  display: flex;
  align-items: center;
  /* YEAR */
  /* MONTH set */
  /* YEAR MONTH */
  /* 画像あり */
  /* Exception: ALL Year2023 */
  /* Exception: テキスト下画像 */
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set {
    align-items: flex-start;
  }
}
section.sec_history .yr_set.valign_top {
  align-items: flex-start;
}
section.sec_history .yr_set .yr {
  width: 29%;
  padding-left: 4%;
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  color: #004ea2;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .yr {
    width: 18%;
    padding-left: 0;
    font-size: 4.33vw;
    line-height: 1.4;
  }
}
section.sec_history .yr_set .yr.all_yr2019 {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .yr.all_yr2019 {
    padding-top: 0;
  }
}
section.sec_history .yr_set .yr.all_yr2014 {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .yr.all_yr2014 {
    padding: 28px 0 0 0 !important;
  }
}
section.sec_history .yr_set.valign_center .yr {
  padding-bottom: 38px;
}
section.sec_history .yr_set .mo_set {
  width: 71%;
  border-left: 2px solid #004ea2;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo_set {
    width: 82%;
  }
}
section.sec_history .yr_set .mo {
  display: flex;
  align-items: center;
  padding: 0 0 68px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo {
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 10%;
  }
}
section.sec_history .yr_set .mo.oldest {
  padding: 0 0 45px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.oldest {
    padding-bottom: 10%;
  }
}
section.sec_history .yr_set .yr_mo {
  width: 5%;
  height: 38px;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .yr_mo {
    height: 6.5vw;
  }
}
section.sec_history .yr_set .yr_mo div {
  position: absolute;
  right: 25px;
  top: 0;
  z-index: 1;
  background-color: #fff;
  padding: 3px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .yr_mo div {
    left: -2.5vw;
    right: auto;
    font-size: 3vw;
  }
}
section.sec_history .yr_set .yr_mo span {
  width: calc(5.5em - 6px);
  height: 32px;
  background-color: #004ea2;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .yr_mo span {
    font-size: 3vw;
    width: calc(18vw - 6px);
    height: calc(6.5vw - 6px);
  }
}
section.sec_history .yr_set .mo_content {
  width: 95%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo_content {
    width: 100%;
  }
}
section.sec_history .yr_set .mo_content p {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo_content p {
    padding: 0 0 0 0.7em;
    font-size: 3vw;
  }
}
section.sec_history .yr_set .mo.wpic {
  padding: 0 0 40px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic {
    padding: 0 0 6%;
  }
}
section.sec_history .yr_set .mo.wpic.valign_top {
  align-items: flex-start;
}
section.sec_history .yr_set .mo.wpic.valign_top .mo_content {
  align-items: flex-start;
}
section.sec_history .yr_set .mo.wpic .mo_content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content p {
  width: 62%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content p {
    width: 100%;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure {
  width: 38%;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure {
    width: 64%;
    margin: 0 0 0 auto;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img {
    margin: 2vw 0 0 auto;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig01 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig01 {
    width: 60%;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig02 {
  width: 44%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig02 {
    width: 60%;
    margin: -24% 0 0 auto;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig03 {
  width: 80%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig03 {
    width: 100%;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig04 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig04 {
    width: 60%;
    margin: -8% 0 0 auto;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig05 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig05 {
    width: 60%;
    margin: -22% 0 0 auto;
  }
}
section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig06 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic .mo_content figure img.all_fig06 {
    width: 53%;
    margin: -33% -7px 0 auto;
  }
}
section.sec_history .yr_set .mo.wpic.all_yr2023 {
  padding: 0 0 14px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic.all_yr2023 {
    padding: 0 0 6%;
  }
}
section.sec_history .yr_set .mo.wpic.pic_under_tex {
  padding: 40px 0 35px;
}
@media screen and (max-width: 767px) {
  section.sec_history .yr_set .mo.wpic.pic_under_tex {
    padding: 10% 0 6%;
  }
}
section.sec_history .overseas .yr_set {
  /*.mo*/
}
section.sec_history .overseas .yr_set .mo {
  padding: 0 0 68px;
  align-items: flex-start;
}
section.sec_history .overseas .yr_set .mo.wpic {
  padding: 0 0 50px;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo {
    padding: 0 0 17%;
    position: relative;
  }
  section.sec_history .overseas .yr_set .mo.wpic {
    padding: 0 0 7.2%;
  }
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic,
section.sec_history .overseas .yr_set .mo .mo_content {
  width: 90%;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo .mo_content.wpic,
  section.sec_history .overseas .yr_set .mo .mo_content {
    width: 100%;
    flex-direction: column;
  }
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic .co,
section.sec_history .overseas .yr_set .mo .mo_content .co {
  width: 20%;
  position: relative;
  /* country label */
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo .mo_content.wpic .co,
  section.sec_history .overseas .yr_set .mo .mo_content .co {
    position: absolute;
    top: 0;
    left: 17vw;
  }
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic .co span,
section.sec_history .overseas .yr_set .mo .mo_content .co span {
  position: absolute;
  width: 7.5em;
  height: 32px;
  margin: 3px;
  border: 1px solid #004ea2;
  color: #004ea2;
  font-size: clamp(11px, 1.15vw, 15px);
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic .co span.kr,
section.sec_history .overseas .yr_set .mo .mo_content .co span.kr {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo .mo_content.wpic .co span,
  section.sec_history .overseas .yr_set .mo .mo_content .co span {
    font-size: 2.33vw;
    width: 18vw;
    height: calc(6.5vw - 6px);
  }
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic p,
section.sec_history .overseas .yr_set .mo .mo_content p {
  width: 58%;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo .mo_content.wpic p,
  section.sec_history .overseas .yr_set .mo .mo_content p {
    width: 100%;
  }
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic figure,
section.sec_history .overseas .yr_set .mo .mo_content figure {
  width: 22%;
}
section.sec_history .overseas .yr_set .mo .mo_content.wpic figure img,
section.sec_history .overseas .yr_set .mo .mo_content figure img {
  padding-right: 40%;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo .mo_content.wpic figure,
  section.sec_history .overseas .yr_set .mo .mo_content figure {
    width: 100%;
  }
  section.sec_history .overseas .yr_set .mo .mo_content.wpic figure img,
  section.sec_history .overseas .yr_set .mo .mo_content figure img {
    padding: 0 0 0 60%;
  }
}
section.sec_history .overseas .yr_set .mo.last {
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo.last {
    padding-bottom: 5.3%;
  }
}
section.sec_history .overseas .yr_set .mo.oldest {
  padding: 0 0 34px;
}
@media screen and (max-width: 767px) {
  section.sec_history .overseas .yr_set .mo.oldest {
    padding-bottom: 10%;
  }
}
section.sec_history .awards .yr_set {
  align-items: flex-start;
}
section.sec_history .awards .mo {
  padding: 0 0 68px;
}
@media screen and (max-width: 767px) {
  section.sec_history .awards .mo {
    padding-bottom: 6.4%;
  }
}
section.sec_history .awards .mo:last-child {
  padding: 0 0 103px;
}
@media screen and (max-width: 767px) {
  section.sec_history .awards .mo:last-child {
    padding-bottom: 16.8%;
  }
}
section.sec_history .awards .yr_set.oldest .yr {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  section.sec_history .awards .yr_set.oldest .yr {
    padding-bottom: 8%;
  }
}
section.sec_history .awards .yr_set.oldest .mo {
  padding: 0 0 65px;
}
@media screen and (max-width: 767px) {
  section.sec_history .awards .yr_set.oldest .mo {
    padding-bottom: 10%;
  }
}
section.sec_history .content {
  overflow-x: hidden;
}
section.sec_history .content > .yr_set, section.sec_history .content .mo_set > li {
  opacity: 0;
}

/* -----------------------------------
    SERVICE: Business
------------------------------------ */
.business {
  /* IP intelectual property */
  /* PS problem solving */
  /* partner */
  /* partner contact */
  /* correspondences custom */
}
.business section.intro p.note {
  margin-top: 1em;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .business section.intro p.note {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  .business section.intro {
    width: 100%;
  }
  .business section.intro h2, .business section.intro p {
    width: calc(100% - 62.5px);
    margin: 0 auto;
  }
  .business section.intro p {
    margin-top: 1em;
  }
}
.business section.intro picture {
  width: 82%;
  margin: 115px auto 170px;
}
@media screen and (max-width: 767px) {
  .business section.intro picture {
    width: 100%;
    margin: 40px auto 100px;
  }
}
.business .ip_tex {
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .business .ip_tex {
    letter-spacing: 0.05em;
  }
}
.business .ip_tex img {
  float: right;
  width: 277px;
  margin-left: 100px;
}
@media screen and (max-width: 767px) {
  .business .ip_tex img {
    width: 44%;
    margin: -10% 0 0 7%;
  }
}
.business .sec_ti_ps span {
  display: block;
  font-size: 89.23%;
}
@media screen and (max-width: 767px) {
  .business .sec_ti_ps span {
    font-size: 87.7%;
  }
}
.business .list_ps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .business .list_ps {
    margin-top: 25px;
  }
}
.business .list_ps li {
  width: 22.88%;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .business .list_ps li {
    width: 47.6%;
    margin-bottom: 8%;
  }
  .business .list_ps li:nth-last-child(2), .business .list_ps li:last-child {
    margin-bottom: 0;
  }
}
.business .list_ps li h3 {
  background-color: #004ea2;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1;
  padding: 0.75em 0 0.75em 0.1em;
  border-radius: 6px;
  color: #fff;
  margin: 25px 0 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .business .list_ps li h3 {
    font-size: 3vw;
    padding: 1.8vw 0 1.8vw 0.1em;
    border-radius: 2px;
    margin: 2.8vw 0 2vw;
  }
}
.business .list_ps li h3.smaller {
  letter-spacing: 0;
  font-size: clamp(15px, 1.3vw, 17px);
}
@media screen and (max-width: 767px) {
  .business .list_ps li h3.smaller {
    font-size: 2.8vw;
    padding: 1.8vw 0 1.8vw 0.1em;
  }
}
.business .list_ps li p {
  line-height: 1.75;
}
.business .list_ps li p .smaller {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .business .list_ps li p {
    font-size: 3.27vw;
  }
  .business .list_ps li p .smaller {
    font-size: 2.75vw;
  }
}
.business .list_ps li p.result02 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #004ea2;
  padding-top: 80px;
  position: relative;
}
.business .list_ps li p.result02::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 40px;
  background: url(../img/service/business/arrow_down.png) no-repeat 0 0/contain;
  left: 0;
  right: 0;
  top: 20px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .business .list_ps li p.result02 {
    font-size: 3.67vw;
    padding-top: 24%;
  }
  .business .list_ps li p.result02::after {
    width: 3.33vw;
    height: 6vw;
    top: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .business .sec_partner h2 {
    font-size: 3.8vw;
  }
}
.business .partner_fig_logo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .business .partner_fig_logo {
    margin-top: 20px;
  }
}
.business .partner_intro {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.business .partner_intro p {
  margin-top: 1em;
  width: 48%;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .business .partner_intro p {
    width: 100%;
    letter-spacing: 0.05em;
  }
}
.business .partner_intro .fig_partner {
  position: relative;
  width: 50%;
  margin-top: -65px;
  aspect-ratio: 130/93;
}
@media screen and (max-width: 767px) {
  .business .partner_intro .fig_partner {
    width: 100%;
    aspect-ratio: 150/93;
    margin-top: 8%;
  }
}
.business .partner_intro .fig_partner picture {
  position: absolute;
}
.business .partner_business {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .business .partner_business {
    margin-top: 70px;
  }
}
.business .partner_business h3 {
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .business .partner_business h3 {
    font-size: 3.8vw;
  }
}
.business .partner_business .list_business_partner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.business .partner_business .list_business_partner dt {
  width: 30%;
  font-size: clamp(13px, 1.23vw, 18px);
  letter-spacing: 0.2em;
  line-height: 1;
}
.business .partner_business .list_business_partner dd {
  width: 70%;
}
.business .partner_business .list_business_partner dt, .business .partner_business .list_business_partner dd {
  border-bottom: 1px solid #000;
  padding: 40px 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .business .partner_business .list_business_partner {
    margin-top: 6%;
  }
  .business .partner_business .list_business_partner dt, .business .partner_business .list_business_partner dd {
    width: 100%;
    padding: 5.3% 0;
  }
  .business .partner_business .list_business_partner dt {
    border-bottom: 0;
    font-size: 2.67vw;
  }
  .business .partner_business .list_business_partner dt.btm, .business .partner_business .list_business_partner dd.btm {
    width: 50%;
    border-bottom: 1px solid #000;
  }
}
.business .partner_contact {
  background-color: #004ea2;
  display: flex;
  flex-wrap: wrap;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .business .partner_contact {
    margin-top: 100px;
  }
}
.business .partner_contact img {
  aspect-ratio: 125/75;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .business .partner_contact img {
    width: 100%;
  }
}
.business .partner_contact .tex_box {
  position: relative;
  width: 50%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .business .partner_contact .tex_box {
    width: 100%;
    aspect-ratio: 125/75;
  }
}
.business .partner_contact .tex_box h3 {
  padding: 60px 0 1.2em 0.2em;
  font-size: clamp(15px, 1.3vw, 17px);
  letter-spacing: 0.2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .business .partner_contact .tex_box h3 {
    padding: 7.3% 0 0.5em 0.2em;
    font-size: 3.33vw;
  }
}
.business .partner_contact .tex_box ul li {
  font-size: clamp(11px, 1.15vw, 13px);
  line-height: 2.16;
}
@media screen and (max-width: 1280px) {
  .business .partner_contact .tex_box ul li {
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .business .partner_contact .tex_box ul li {
    font-size: 2.55vw;
    line-height: 1.6;
    display: inline;
  }
  .business .partner_contact .tex_box ul li:nth-child(3) {
    display: block;
    padding-top: 0.3em;
  }
}
.business .partner_contact .tex_box .btn-common {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .business .partner_contact .tex_box .btn-common {
    bottom: 6vw;
  }
}
.business.correspondences {
  margin-top: 0;
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .business.correspondences {
    margin-bottom: 100px;
  }
}
.business.correspondences .subtit {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 25px);
  letter-spacing: 0.05em;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .business.correspondences .subtit {
    padding-bottom: 10px;
  }
}
.business.correspondences .partner_contact {
  margin-top: 0px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .business.correspondences .partner_contact {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .business.correspondences .partner_contact .tex_box p {
    font-size: 0.7em;
  }
}
.business.correspondences .partner_contact .btn-view-more {
  margin: 30px auto 30px;
}
@media screen and (max-width: 767px) {
  .business.correspondences .partner_contact .btn-view-more {
    margin: 20px auto 8px;
  }
}
.business.correspondences .partner_contact .inline-center {
  width: auto;
  position: relative;
  text-align: center;
}
.business.correspondences .partner_contact .inline-center a {
  color: white;
  letter-spacing: 0.05em;
  padding-bottom: 0.25em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .business.correspondences .partner_contact .inline-center a {
    font-size: 0.65em;
  }
}
.business.correspondences .partner_contact .inline-center a::after {
  width: 0;
  opacity: 0;
  position: absolute;
  content: "";
  border-bottom: 1px solid white;
  bottom: 0;
  left: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .business.correspondences .partner_contact .inline-center a::after {
    width: 100%;
    opacity: 1;
  }
}
.business.correspondences .partner_contact .inline-center a:hover::after {
  width: 100%;
  opacity: 1;
}

/* -----------------------------------
    SERVICE: Services
------------------------------------ */
@media screen and (max-width: 767px) {
  section.sec_loan {
    margin-top: 75px;
  }
}
/* -----------------------------------
    SERVICE: MCCS
------------------------------------ */
.mccs .intro img {
  position: absolute;
  top: 75px;
  right: 0px;
  width: 43%;
}
@media screen and (max-width: 767px) {
  .mccs .intro img {
    position: static;
    width: 100%;
    margin-top: 8%;
  }
}
.mccs .intro p {
  letter-spacing: 0.06em;
}
.mccs .intro p span {
  font-size: 13px;
  display: block;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .mccs .intro p {
    width: 100%;
    line-height: 2;
  }
  .mccs .intro p span {
    font-size: 8px;
    line-height: 1.5;
  }
}
.mccs .sec_mccs_features {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .mccs .sec_mccs_features {
    margin-top: 40px;
  }
}
.mccs .sec_faq h2 {
  color: #004ea2;
}

.list_faq {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .list_faq {
    margin-top: 35px;
  }
}
.list_faq .set {
  margin-bottom: 50px;
  background-color: #eee;
  /* Question */
  /* Answer */
}
@media screen and (max-width: 767px) {
  .list_faq .set {
    margin-bottom: 25px;
  }
}
.list_faq .set dt, .list_faq .set dd {
  display: flex;
}
.list_faq .set dt span, .list_faq .set dd span {
  width: 9.5%;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .list_faq .set dt span, .list_faq .set dd span {
    width: 20%;
    font-size: 5.33vw;
    height: auto;
    min-height: 16.4vw;
    width: 16.4vw;
  }
}
.list_faq .set dt p, .list_faq .set dd p {
  width: 80.5%;
  padding: 0 0 0 50px;
  font-size: 18px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .list_faq .set dt p, .list_faq .set dd p {
    width: 68%;
    font-size: 3.27vw;
    padding: 3.3% 0 3.3% 6%;
  }
}
.list_faq .set dt.ac_trig span {
  background-color: #004ea2;
  color: #fff;
  padding: 0 0 0% 0;
  align-items: center;
}
.list_faq .set dt.ac_trig P {
  display: flex;
  align-items: center;
  width: 80.5%;
}
@media screen and (max-width: 767px) {
  .list_faq .set dt.ac_trig P {
    width: 68%;
    line-height: 1.5;
  }
}
.list_faq .set dt.ac_trig .ac_btn {
  width: 10%;
}
@media screen and (max-width: 767px) {
  .list_faq .set dt.ac_trig .ac_btn {
    width: 12.5%;
  }
}
.list_faq .set dd span {
  color: #004ea2;
  padding-top: 36px;
}
@media screen and (max-width: 767px) {
  .list_faq .set dd span {
    padding-top: 6%;
  }
}
.list_faq .set dd p {
  padding-top: 36px;
  padding-bottom: 50px;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .list_faq .set dd p {
    padding-top: 3.3%;
    padding-bottom: 3.3%;
    line-height: 1.63;
  }
}

/* PIC + TEX list */
.list_pic_tex_h li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.list_pic_tex_h li figure {
  width: 38%;
}
.list_pic_tex_h li .tex_box {
  width: 58%;
}
.list_pic_tex_h li .tex_box h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .list_pic_tex_h li .tex_box h3 {
    font-size: 3.8vw;
    margin-top: 1.6em;
  }
}
.list_pic_tex_h li .tex_box p {
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .list_pic_tex_h li .tex_box p {
    line-height: 1.83;
  }
}
@media screen and (max-width: 767px) {
  .list_pic_tex_h li figure, .list_pic_tex_h li .tex_box {
    width: 100%;
  }
}

/* -----------------------------------
    SERVICE: MSPF
------------------------------------ */
@media screen and (max-width: 767px) {
  .mspf .intro p {
    letter-spacing: 0.06em;
  }
}
.mspf .intro figure {
  position: absolute;
  top: 122px;
  right: 0;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .mspf .intro figure {
    position: static;
    width: 100%;
    margin-top: 8%;
  }
}
.mspf .fig_mspf figure {
  position: relative;
  aspect-ratio: 260/125;
}
@media screen and (max-width: 767px) {
  .mspf .fig_mspf figure {
    aspect-ratio: 150/157;
  }
}
.mspf .fig_mspf figure picture {
  position: absolute;
}
.mspf .fig_mspf p {
  color: #004ea2;
  font-size: clamp(14px, 1.4vw, 18.7px);
  line-height: 2;
  font-weight: 700;
  margin-top: 75px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mspf .fig_mspf p {
    font-size: 3.27vw;
    margin-top: 30px;
    text-align: left;
  }
}

/* -----------------------------------
    SERVICE: Development
------------------------------------ */
/* PIC + TEX list */
.list_pic_tex_v {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .list_pic_tex_v {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
.list_pic_tex_v li {
  margin-bottom: 30px;
}
.list_pic_tex_v li:last-child, .list_pic_tex_v li:nth-last-child(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .list_pic_tex_v li {
    margin-bottom: 0;
  }
}
.list_pic_tex_v li h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.1em;
  margin: 1.2em 0 0.5em;
}
@media screen and (max-width: 767px) {
  .list_pic_tex_v li h3 {
    font-size: 3.8vw;
    margin-top: 1.6em;
  }
}
.list_pic_tex_v li p {
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .list_pic_tex_v li p {
    line-height: 1.83;
  }
}

/* -----------------------------------
    SUSTAINABILITY
------------------------------------ */
.sustainability {
  /* Model */
}
.sustainability h2 {
  font-size: clamp(20px, 1.9vw, 25px);
}
@media screen and (max-width: 767px) {
  .sustainability h2 {
    font-size: 3.8vw;
  }
}
.sustainability section.intro p {
  width: 58%;
  line-height: 2.25;
}
.sustainability section.intro p span {
  font-size: 11px;
  display: block;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .sustainability section.intro p {
    width: 100%;
    line-height: 2;
  }
  .sustainability section.intro p span {
    font-size: 8px;
    line-height: 1.5;
  }
}
.sustainability section.intro .movie {
  position: absolute;
  width: 37%;
  top: 80px;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sustainability section.intro .movie {
    width: 100%;
    top: 123vw;
  }
}
.sustainability .sdgs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
}
.sustainability .sdgs .fig_sdgs_logo,
.sustainability .sdgs .fig_sdgs {
  position: relative;
}
.sustainability .sdgs picture {
  position: absolute;
}
.sustainability .sdgs .fig_sdgs_logo {
  width: 35%;
  aspect-ratio: 906/1090;
}
.sustainability .sdgs .fig_sdgs {
  width: 60%;
  aspect-ratio: 1570/1090;
}
@media screen and (max-width: 767px) {
  .sustainability .sdgs {
    margin-top: 40px;
  }
  .sustainability .sdgs .fig_sdgs_logo {
    width: 100%;
    aspect-ratio: 1250/324;
  }
  .sustainability .sdgs .fig_sdgs {
    width: 100%;
    aspect-ratio: 125/114;
    margin-top: 70vw;
  }
}
.sustainability .fig_value {
  position: relative;
  width: 85%;
  aspect-ratio: 2642/2363;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .sustainability .fig_value {
    width: 100%;
    aspect-ratio: 125/110;
    margin-top: 40px;
  }
}
.sustainability .fig_value picture {
  position: absolute;
}
.sustainability .fig_value figcaption {
  position: absolute;
  bottom: 0;
  font-size: 11px;
  line-height: 1.67;
}
@media screen and (max-width: 1280px) {
  .sustainability .fig_value figcaption {
    bottom: -80px;
  }
}
@media screen and (max-width: 767px) {
  .sustainability .fig_value figcaption {
    font-size: 8px;
    bottom: -10vw;
  }
}
.sustainability .model {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .sustainability .model {
    margin-top: 120px;
  }
}
.sustainability .list_pic_tex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .sustainability .list_pic_tex_box {
    margin-top: 40px;
  }
}
.sustainability .list_pic_tex_box li {
  width: 30%;
  background-color: #004ea2;
}
@media screen and (max-width: 767px) {
  .sustainability .list_pic_tex_box li {
    width: 100%;
    margin-bottom: 25px;
  }
}
.sustainability .list_pic_tex_box li picture {
  aspect-ratio: 8/5;
}
.sustainability .list_pic_tex_box li p {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 20px 25px 25px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sustainability .list_pic_tex_box li p {
    font-size: 2.8vw;
    line-height: 1.67;
    padding: 6.6%;
  }
}
.sustainability .list_pic_tex_box li.kakko p {
  display: inline-block;
}

/* -----------------------------------
    PRIVACY + SECURITY
------------------------------------ */
section.sec_policy {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  section.sec_policy {
    margin-top: 50px;
  }
}
section.sec_policy h2 {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  section.sec_policy h2 {
    margin-bottom: 0;
  }
}

/* menu */
.tab_menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 90px;
  border-left: 1px solid #004ea2;
}
@media screen and (max-width: 767px) {
  .tab_menu {
    margin-bottom: 50px;
  }
}
.tab_menu li {
  width: 33.3333333333%;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid #004ea2;
  border-left: none;
  text-align: center;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.2em;
  line-height: 3em;
  font-weight: 700;
}
.tab_menu li.active {
  color: #fff;
  background-color: #004ea2;
}
@media screen and (max-width: 767px) {
  .tab_menu li {
    width: 50%;
    font-size: 2.8vw;
    line-height: 5em;
    letter-spacing: 0.1em;
  }
  .tab_menu li:nth-child(2) {
    letter-spacing: 0.075em;
  }
  .tab_menu li:last-child {
    border-top: none;
  }
}

section.sec_policy .tab_menu li {
  width: 25%;
  line-height: 3em;
  padding: 1em 0;
}
section.sec_policy .tab_menu li:nth-child(2), section.sec_policy .tab_menu li:nth-child(3) {
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  section.sec_policy .tab_menu li {
    width: 50%;
    letter-spacing: 0.1em;
  }
  section.sec_policy .tab_menu li:nth-child(2), section.sec_policy .tab_menu li:nth-child(3) {
    letter-spacing: 0.075em;
  }
  section.sec_policy .tab_menu li:nth-child(3), section.sec_policy .tab_menu li:last-child {
    border-top: none;
  }
}

.tab_contents .content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab_contents .content.show {
  height: auto;
  overflow: auto;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* contents */
.main_contents .tab_contents p {
  letter-spacing: 0.025em;
  line-height: 1.75;
}

.list_policy {
  font-size: clamp(13px, 1.1vw, 16px);
  margin-top: 75px;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .list_policy {
    font-size: 3.27vw;
    margin-top: 10%;
  }
}
.list_policy > dt {
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .list_policy > dt {
    font-size: 3.27vw;
    margin-top: 6%;
  }
}
.list_policy > dd.mt {
  margin-top: 2em;
}
.list_policy > dd.tex_r {
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .list_policy > dd.tex_r {
    margin-top: 6%;
  }
}
.list_policy > dd > .sub_list {
  margin-left: 1em;
}
.list_policy > dd > .sub_list dt {
  margin: 1em 0 0 0;
}
.list_policy > dd > .sub_list dd {
  margin-left: 2em;
  text-indent: -1em;
}
.list_policy > dd > .sub_list dd.noindent {
  margin-left: 1.6em;
  text-indent: 0;
}
.list_policy ol, .list_policy ul {
  margin: 0.8em 0 0.8em 1em;
  padding: 0;
}
.list_policy ol.indent li, .list_policy ul.indent li {
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.list_policy ol.indent_num li, .list_policy ul.indent_num li {
  margin-left: 1.6em;
  text-indent: -1.6em;
}
.list_policy ol.indent_lv3, .list_policy ul.indent_lv3 {
  margin-left: 0;
}
.list_policy ol.indent_lv3 li, .list_policy ul.indent_lv3 li {
  margin-left: 1em;
  text-indent: -1em;
}
.list_policy .logo_security {
  width: 30%;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .list_policy .logo_security {
    width: 50%;
    margin: 6% auto;
  }
}

.list_policy.list_contact {
  margin-top: 0;
}

/*--------------------------
MODAL WINDOW
---------------------------*/
#modal-sus_movie {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1020;
}
#modal-sus_movie .modal__overlay {
  background: rgba(0, 0, 0, 0.8);
}
#modal-sus_movie .modal__overlay .modal__container {
  border-radius: 0;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  background-color: transparent;
  /* btn */
}
@media screen and (max-width: 767px) {
  #modal-sus_movie .modal__overlay .modal__container {
    padding: 0 20px;
  }
}
#modal-sus_movie .modal__overlay .modal__container .movie_wrap {
  margin-top: 70px;
}
#modal-sus_movie .modal__overlay .modal__container .movie_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#modal-sus_movie .modal__overlay .modal__container .modal_close_btn {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0px;
  top: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #modal-sus_movie .modal__overlay .modal__container .modal_close_btn {
    right: 20px;
  }
}
#modal-sus_movie .modal__overlay .modal__container .modal_close_btn::before, #modal-sus_movie .modal__overlay .modal__container .modal_close_btn::after {
  content: "";
  width: 2px;
  height: 50px;
  left: 25px;
  background-color: #fff;
  position: absolute;
}
#modal-sus_movie .modal__overlay .modal__container .modal_close_btn::before {
  transform: translateY(-25px) rotate(45deg);
}
#modal-sus_movie .modal__overlay .modal__container .modal_close_btn::after {
  transform: translateY(-25px) rotate(-45deg);
}

/*--------------------------
Privacy Policy Banner
---------------------------*/
#ulccwidparent .cc-window {
  box-shadow: none;
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: black;
}
@media screen and (max-width: 767px) {
  #ulccwidparent .cc-window {
    font-size: 8px;
    line-height: 1.7em;
  }
}
#ulccwidparent .cc-window.cc-banner {
  width: 50%;
  padding: 1.3em;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  #ulccwidparent .cc-window.cc-banner {
    padding: 1.3em;
  }
}
#ulccwidparent .cc-color-override-719788856.cc-window {
  background-color: white;
}
#ulccwidparent .cc-btn.cc-deny {
  display: none;
}
#ulccwidparent .cc-link {
  color: black;
}
#ulccwidparent .cc-btn.cc-allow {
  background-color: #004ea2;
  color: white;
  padding: 1.3em 2.5em;
  line-height: 1em;
  border-radius: 4em;
  font-weight: 400;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  #ulccwidparent .cc-window.cc-floating .cc-compliance {
    width: 18em;
    margin: 0 0 0 auto;
  }
  #ulccwidparent .cc-window.cc-floating {
    padding: 1.4em;
  }
}

.cookie-optout {
  position: fixed;
  z-index: 1;
  bottom: 0;
  background-color: white;
  padding: 1.3em;
  width: 76em;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cookie-optout {
    width: 100%;
    display: block;
    font-size: 8px;
    line-height: 1.7em;
  }
}
.cookie-optout p {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: black;
}
@media screen and (max-width: 767px) {
  .cookie-optout p {
    word-break: break-word;
    font-size: 8px;
    line-height: 1.7em;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  .cookie-optout .btn_right {
    text-align: right;
  }
}
.cookie-optout .btn_right .cc-cs-optout-btn {
  background-color: #004ea2;
  color: white;
  padding: 1.3em 2.5em;
  line-height: 1em;
  border-radius: 4em;
  font-weight: 400;
  font-size: 1em;
}
.cookie-optout .btn_right .cc-cs-optout-btn:disabled {
  background-color: #bfbfbf;
}/*# sourceMappingURL=gms.css.map */