@charset "UTF-8";
/*======================================
	Common
======================================*/
html {
  font-size: 100%;
}

body {
  background-color: #00335c;
  font-family: "Instrument Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.46;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.9375rem;
  }
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/*		Accessibility
--------------------------------------*/
:focus-visible {
  outline: auto !important;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/*		display
--------------------------------------*/
.xl_disp-b {
  display: none !important;
}
@media screen and (max-width: 1120px) {
  .xl_disp-b {
    display: block !important;
  }
}

@media screen and (max-width: 1120px) {
  .xl_disp-n {
    display: none !important;
  }
}
.lg_disp-b {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .lg_disp-b {
    display: block !important;
  }
}

@media screen and (max-width: 1000px) {
  .lg_disp-n {
    display: none !important;
  }
}
.md_disp-b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .md_disp-b {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .md_disp-n {
    display: none !important;
  }
}
.sm_disp-b {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .sm_disp-b {
    display: block !important;
  }
}

@media screen and (max-width: 480px) {
  .sm_disp-n {
    display: none !important;
  }
}
.xs_disp-b {
  display: none !important;
}
@media screen and (max-width: 424px) {
  .xs_disp-b {
    display: block !important;
  }
}

@media screen and (max-width: 424px) {
  .xs_disp-n {
    display: none !important;
  }
}
/*======================================
	Animation
======================================*/
/*		display
(※.js-viewも一緒に指定)
--------------------------------------*/
/*
// fade in
.view-fadeIn {
	opacity: 0;
	animation: view-fadeIn 1s ease(in-out-cubic) both;
}
@keyframes view-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
*/
/*
// slide up
.view-slideUp {
	opacity: 0;
	animation: view-slideUp 1s ease(in-out-cubic) both;
}
@keyframes view-slideUp {
	0% {
		opacity: 0;
		transform: translate(0, 35px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide ro right
.view-slideIn-l {
	opacity: 0;
	animation: view-slideIn-l .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-l {
	0% {
		opacity: 0;
		transform: translate(35px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide left
.view-slideIn-r {
	opacity: 0;
	animation: view-slideIn-r .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-r {
	0% {
		opacity: 0;
		transform: translate(-35px, 0);
	}
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}
}
*/
/*======================================
	Program
======================================*/
/* Header
--------------------------------------*/
.js-header.is-dark .main-menu .item,
.js-header.is-dark .main-menu .b_menu__aco-btn,
.js-header.is-dark .main-menu .c_btn-translation {
  color: #00335c;
}
.js-header.is-dark .c_news-ticker::before {
  background-color: #00335c;
}
.js-header.is-dark .c_news-ticker__item {
  color: #00335c;
}
.js-header.is-dark .c_btn-contact {
  color: #00335c;
  border-color: #00335c;
}
.js-header.is-dark .c_btn-translation {
  color: #00335c;
}

.js-burgerToggle.is-dark .line {
  background-color: #00335c;
}

.js-burgerToggle.active .line:nth-of-type(1) {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.js-burgerToggle.active .line:nth-of-type(2) {
  opacity: 0;
}
.js-burgerToggle.active .line:nth-of-type(3) {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.js-focus-trap {
  visibility: hidden;
}

.js-menuAcoPanel {
  display: none;
}

/* animation display
--------------------------------------*/
.js-view.on {
  opacity: 1;
}

/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.l_header .site-title {
  width: 235px;
  height: 40px;
  line-height: 0;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 480px) {
  .l_header .site-title {
    width: 170px;
    height: 26px;
  }
}
.l_header .site-title a {
  display: block;
  width: 100%;
  height: 100%;
}
.l_header .site-title__logo {
  position: absolute;
  top: 0;
  left: 0;
}
.l_header .site-title__n {
  display: none;
}
.l_header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .l_header__btn-contact {
    display: none;
  }
}
.l_header__btn-contact .c_btn-contact {
  min-width: 125px;
  font-size: 1rem;
}
.l_header__btn-translation {
  margin-left: 20px !important;
}
.l_header__btn-translation__sp {
  display: none !important;
}
@media screen and (max-width: 1120px) {
  .l_header__btn-translation__sp {
    display: inline-block !important;
    margin-right: 60px;
  }
}
@media screen and (max-width: 480px) {
  .l_header__btn-translation__sp {
    margin-right: 45px;
  }
}
.l_header .c_btn-translation {
  font-size: 1rem;
}

.l_header__inner {
  width: 100%;
  padding: 30px 24px;
}

.l_header__main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1120px) {
  .l_header__main-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l_header__nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gt_switcher_wrapper {
  display: none;
}

/* Main Menu
--------------------------------------*/
@media screen and (max-width: 1120px) {
  .main-nav {
    display: none;
  }
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-menu > * + * {
  margin-left: 2.375em;
}
.main-menu .item a {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .main-menu .item a:hover {
    opacity: 0.6;
  }
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 15px;
  z-index: 120;
}
@media screen and (max-width: 1120px) {
  .burger-toggle {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .burger-toggle {
    top: 18px;
    right: 10px;
  }
}
.burger-toggle .line {
  width: 30px;
  height: 1.5px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s cubic-bezier;
  transition: all 0.2s cubic-bezier;
}
.burger-toggle .line:nth-of-type(1) {
  top: -10px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.burger-toggle .line:nth-of-type(2) {
  top: 0;
}
.burger-toggle .line:nth-of-type(3) {
  top: 10px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.burger-toggle .visually-hidden {
  color: #fff;
}

/* Burger Menu
--------------------------------------*/
.burger-nav {
  display: none;
  width: 100%;
  height: 100svh;
  background-color: #00335c;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}
.burger-nav__logo {
  width: 235px;
  position: absolute;
  top: 30px;
  left: 24px;
}
@media screen and (max-width: 480px) {
  .burger-nav__logo {
    width: 170px;
  }
}
.burger-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 130px 40px 40px;
}
@media screen and (max-width: 480px) {
  .burger-nav__inner {
    padding: 130px 20px 20px;
  }
}
.burger-nav__main {
  min-height: 0;
  overflow-y: auto;
}
.burger-nav .burger-menu {
  margin-bottom: 100px;
}
.burger-nav .burger-menu .item {
  font-size: 40px;
  padding: 5px 0;
}
@media screen and (max-width: 480px) {
  .burger-nav .burger-menu .item {
    font-size: 30px;
    padding: 15px 0;
  }
}
.burger-nav .burger-menu .item-sub__item {
  font-size: 18px;
  margin-top: 10px;
}
.burger-nav__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.burger-nav__map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.burger-nav__copyright {
  display: block;
  font-size: 14px;
  margin-top: 40px;
}

/*======================================
	Contents
======================================*/
.l_page {
  padding-top: 160px;
}
@media screen and (max-width: 480px) {
  .l_page {
    padding-top: 120px;
  }
}

.l_container {
  max-width: 1366px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .l_container {
    padding: 0 20px;
  }
}
.l_container--sm {
  max-width: 880px;
}
.l_container--md {
  max-width: 1050px;
}

.l_sec {
  padding: 74px 0 70px;
}
@media screen and (max-width: 768px) {
  .l_sec {
    padding: 60px 0;
  }
}
@media screen and (max-width: 480px) {
  .l_sec {
    padding: 40px 0;
  }
}
.l_sec--w {
  padding: 74px 0 70px;
}
@media screen and (max-width: 768px) {
  .l_sec--w {
    padding: 60px 0;
  }
}
@media screen and (max-width: 480px) {
  .l_sec--w {
    padding: 40px 0;
  }
}
.l_sec--w .l_sec__inner {
  background-color: #fff;
  padding: 45px 40px 130px;
}
@media screen and (max-width: 1000px) {
  .l_sec--w .l_sec__inner {
    padding: 45px 40px 80px;
  }
}
@media screen and (max-width: 480px) {
  .l_sec--w .l_sec__inner {
    padding: 35px 20px 40px;
  }
}
.l_sec--w > * {
  color: #00335c;
}

/* Career
--------------------------------------*/
.l_careers {
  padding-bottom: 152px;
}
@media screen and (max-width: 768px) {
  .l_careers {
    padding-bottom: 82px;
  }
}
@media screen and (max-width: 480px) {
  .l_careers {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .l_careers__head {
    margin-bottom: 25px !important;
  }
}

.l_careers__title {
  line-height: 1 !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1000px) {
  .l_careers__title {
    margin-bottom: 10px !important;
  }
}

.l_careers__desc {
  max-width: 410px;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin-bottom: 6.3333333333em;
}
@media screen and (max-width: 1000px) {
  .l_careers__desc {
    margin-bottom: 2.6666666667em;
  }
}
@media screen and (max-width: 480px) {
  .l_careers__desc {
    margin-bottom: 1.6666666667em;
  }
}

.l_careers__body {
  max-width: 587px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1000px) {
  .l_careers__body {
    max-width: 100%;
    margin: 10px 0 0;
  }
}

/*======================================
	Footer
======================================*/
.l_footer {
  letter-spacing: 0;
  padding: 84px 0 28px;
}
@media screen and (max-width: 480px) {
  .l_footer {
    padding: 54px 0 28px;
  }
}

.l_footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .l_footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l_footer__logo {
  max-width: 410px;
  width: 100%;
  margin-right: 40px;
}
@media screen and (max-width: 1000px) {
  .l_footer__logo {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 480px) {
  .l_footer__logo {
    max-width: 215px;
    margin: 0 0 30px;
  }
}

.l_footer__content {
  max-width: 583px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l_footer__content {
    max-width: 100%;
  }
}

.l_footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 84px;
}
@media screen and (max-width: 480px) {
  .l_footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 45px;
  }
}

.l_footer__address {
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .l_footer__address {
    margin-bottom: 30px;
  }
}
.l_footer__address address {
  font-style: normal;
  margin-bottom: 1.3125em;
}

.l_footer__news-ticker {
  margin-bottom: 8px;
}

.l_footer__time-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0 18px 29px;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .l_footer__time-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 18px 0;
  }
}
.l_footer__time-list > * + * {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .l_footer__time-list > * + * {
    margin-left: 0;
  }
}
.l_footer__time-list::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("../svg/icon_clock.svg") no-repeat center center/contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 480px) {
  .l_footer__time-list::before {
    bottom: auto;
  }
}
.l_footer__time-list .item-time {
  padding-left: 0.25em;
}

.l_footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-bottom: 196px;
}
@media screen and (max-width: 1000px) {
  .l_footer__nav {
    margin-bottom: 135px;
  }
}
@media screen and (max-width: 480px) {
  .l_footer__nav {
    margin-bottom: 55px;
  }
}

.l_footer__menu-list {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .l_footer__menu-list {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .l_footer__menu-list {
    width: 100%;
    margin-right: 0;
  }
}
.l_footer__menu-list .list-item {
  margin-bottom: 0.75em;
}
.l_footer__menu-list .b_menu__aco-btn__box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.l_footer__menu-list .b_menu__aco-panel {
  white-space: nowrap;
  position: absolute;
  top: 24px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .l_footer__menu-list .b_menu__aco-panel {
    position: static;
  }
}

.copyright {
  font-size: 1.125rem;
}
@media screen and (max-width: 480px) {
  .copyright {
    font-size: 0.75rem;
  }
}

/*======================================
	Component
======================================*/
/*		Button
--------------------------------------*/
.c_btn-wrap--r {
  text-align: right;
}

.c_btn-main {
  min-width: 157px;
  display: inline-block;
  letter-spacing: -0.03em;
  line-height: 1.2;
  border-radius: 50vh;
  border: 1px solid #fff;
  text-align: center;
  padding: 0.9375em 1.375em 1em 2.125em;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-main:hover {
    color: #00335c;
    background-color: #fff;
    opacity: 1;
  }
  .c_btn-main:hover .text::after {
    background: url("../svg/icon_arrow_n.svg") no-repeat center center/contain;
  }
}
.c_btn-main .text {
  display: inline-block;
  padding-right: 22px;
  position: relative;
}
.c_btn-main .text::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url("../svg/icon_arrow_w.svg") no-repeat center center/contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.c_btn-contact {
  min-width: 150px;
  display: inline-block;
  font-size: 1.3125rem;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  border-radius: 50vh;
  border: 1px solid #fff;
  padding: 0.0476190476em 0.4285714286em 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (max-width: 480px) {
  .c_btn-contact {
    font-size: 1.125rem;
    padding: 0.0555555556em 0.5em 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-contact:hover {
    color: #00335c;
    background-color: #fff;
    opacity: 1;
  }
}
.c_btn-contact--n {
  color: #00335c;
  border: 1px solid #00335c;
}

.c_btn-translation {
  display: inline-block;
  font-size: 1.125rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c_btn-translation {
    font-size: 1rem;
  }
}
.c_btn-translation .bar {
  padding: 0 4px;
}
.c_btn-translation a {
  font-weight: 400;
}
.c_btn-translation a.glink.gt-current-lang {
  font-weight: 400;
  text-decoration: underline;
}

.c_btn-arrow {
  display: inline-block;
  padding-left: 18px;
  position: relative;
}
.c_btn-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url("../svg/icon_arrow.svg") no-repeat center center/contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.c_btn-arrow--n::before {
  background: url("../svg/icon_arrow_n.svg") no-repeat center center/contain;
}

.c_btn-square {
  display: inline-block;
  font-size: 0.9375rem;
  letter-spacing: 0;
  padding-left: 10px;
  position: relative;
}
.c_btn-square::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.c_btn-underline {
  display: inline-block;
  font-size: 0.9375rem;
  text-decoration: underline;
}

/*		Heading
--------------------------------------*/
.c_heading-lv1 {
  font-size: 130px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .c_heading-lv1 {
    font-size: 110px;
  }
}
@media screen and (max-width: 768px) {
  .c_heading-lv1 {
    font-size: 90px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .c_heading-lv1 {
    font-size: 60px;
  }
}

.c_heading-lv2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .c_heading-lv2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.c_heading-lv2--n {
  color: #00335c;
}

.c_heading-lv3 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.055em;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .c_heading-lv3 {
    font-size: 35px;
  }
}
.c_heading-lv3--n {
  color: #00335c;
}

.c_heading-lv4 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .c_heading-lv4 {
    font-size: 30px;
  }
}

.c_heading-lv5 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .c_heading-lv5 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 480px) {
  .c_heading-lv5 {
    font-size: 1.125rem;
    letter-spacing: 0;
  }
}
.c_heading-lv5--n {
  color: #00335c;
}

.c_heading-line {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
  padding-left: 32px;
  margin-bottom: 1.5625em;
  position: relative;
}
.c_heading-line::before {
  content: "";
  display: block;
  width: 27px;
  height: 1px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.c_heading-line--n {
  color: #00335c;
}
.c_heading-line--n::before {
  background-color: #00335c;
}

.c_heading-label {
  display: inline-block;
  color: #00335c;
  background-color: #fff;
  font-size: 1.1875rem;
  letter-spacing: -0.05em;
  padding: 0.3157894737em 0.6842105263em 0.2631578947em;
  margin-bottom: 1.3684210526em;
}

/*		Body
--------------------------------------*/
.c_body-lv1 {
  font-size: 1.3125rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c_body-lv1 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .c_body-lv1 {
    font-size: 1rem;
  }
}

.c_body-lv2 {
  font-size: 1.125rem;
}
@media screen and (max-width: 480px) {
  .c_body-lv2 {
    font-size: 1rem;
  }
}

.c_body-lv3 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 480px) {
  .c_body-lv3 {
    font-size: 0.8125rem;
  }
}

.c_body-lv4 {
  font-size: 0.875rem;
}
@media screen and (max-width: 480px) {
  .c_body-lv4 {
    font-size: 0.75rem;
  }
}

.c_body-justify {
  text-align: justify;
}

.c_body-wide90 {
  -webkit-transform: scaleY(0.9);
          transform: scaleY(0.9);
}

.c_body-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*		Image
--------------------------------------*/
.c_img-cover {
  display: block;
}
.c_img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*		News Ticker
--------------------------------------*/
.c_news-ticker {
  position: relative;
  padding-left: 15px;
}
.c_news-ticker::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.c_news-ticker__wrapper {
  width: 132px;
  overflow: hidden;
}
.c_news-ticker__inner {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: ticker 30s linear infinite;
          animation: ticker 30s linear infinite;
  will-change: transform;
  padding-right: 20px;
}
.c_news-ticker__inner:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.c_news-ticker__item {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.c_news-ticker__item:not(:last-child) {
  margin-right: 40px;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*		Icon
--------------------------------------*/
.c_icon-arrow {
  display: block;
  width: 25px;
  height: 28px;
  background: url("../svg/icon_arrow_n.svg") no-repeat center center/contain;
}
@media screen and (max-width: 480px) {
  .c_icon-arrow {
    width: 20px;
    height: 20px;
  }
}

/*		Scroll Down
--------------------------------------*/
.c_scroll-down {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.2;
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .c_scroll-down {
    font-size: 13px;
  }
}
.c_scroll-down::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("../svg/icon_arrow_w.svg") no-repeat center center/contain;
  margin: auto;
  -webkit-transform: rotate(90deg) translateX(-2px);
          transform: rotate(90deg) translateX(-2px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

/*		Pagination
--------------------------------------*/
.c_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c_pagination__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.c_pagination__inner > * {
  padding: 0 0.8333333333em;
}

.c_pagination__prev,
.c_pagination__next {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../svg/icon_arrow_n.svg") no-repeat center center/contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}

.c_pagination__prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -15px;
}

.c_pagination__next {
  right: -15px;
}

/*======================================
	Block
======================================*/
/*		accordion - career
--------------------------------------*/
.b_menu__aco-btn__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  margin-bottom: 15px;
}

.b_menu__aco-btn {
  color: #fff;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .b_menu__aco-btn:hover {
    opacity: 0.6;
  }
}

.b_menu__aco-panel {
  font-size: 0.875rem;
  margin-top: 0.3571428571em;
  position: absolute;
  left: 0;
  white-space: nowrap;
  top: 22px;
}
.b_menu__aco-panel .panel-item {
  margin-top: 0.4285714286em;
}

/*		List
--------------------------------------*/
.b_list > * + * {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .b_list > * + * {
    margin-top: 40px;
  }
}
.b_list .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .b_list .list-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.b_list .item-head {
  width: 58%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
}
@media screen and (max-width: 1000px) {
  .b_list .item-head {
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.b_list .item-title {
  width: 60%;
  margin-right: 25px;
}
@media screen and (max-width: 1000px) {
  .b_list .item-title {
    width: auto;
  }
}
.b_list .item-subtitle {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 480px) {
  .b_list .item-subtitle {
    font-size: 0.8125rem;
  }
}
.b_list .item-body {
  width: 42%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 25px;
}
@media screen and (max-width: 1000px) {
  .b_list .item-body {
    width: 100%;
    margin-left: 0;
  }
}
.b_list .item-text {
  width: 83%;
  margin-right: 1.5625em;
}
@media screen and (max-width: 1000px) {
  .b_list .item-text {
    width: 100%;
  }
}
.b_list .item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.b_list-col2 {
  font-size: 1.125rem;
}
.b_list-col2 .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0 36px;
}
@media screen and (max-width: 1000px) {
  .b_list-col2 .list-link {
    padding: 25px 0 26px;
  }
}
@media screen and (max-width: 768px) {
  .b_list-col2 .list-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .b_list-col2 .list-link {
    padding: 12px 0 13px;
  }
}
.b_list-col2 .item-head {
  min-width: 120px;
  margin-right: 25px;
}
.b_list-col2 .item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.b_list-col2 .item-time {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .b_list-col2 .item-time {
    display: block;
    margin-bottom: 0.2777777778em;
  }
}
@media screen and (max-width: 480px) {
  .b_list-col2 .item-time {
    font-size: 0.9375rem;
  }
}
.b_list-col2 .item-text {
  margin-right: 25px;
}
@media screen and (max-width: 480px) {
  .b_list-col2 .item-text {
    font-size: 0.9375rem;
  }
}
.b_list-col2 .item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.b_list-col2--w .list-item {
  border-bottom: 1px solid rgba(0, 51, 92, 0.3);
}

.b_list-dl {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .b_list-dl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .b_list-dl {
    font-size: 0.9375rem;
  }
}
.b_list-dl .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 35px 0 36px;
}
@media screen and (max-width: 1000px) {
  .b_list-dl .list-item {
    padding: 25px 0 26px;
  }
}
@media screen and (max-width: 480px) {
  .b_list-dl .list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
}
.b_list-dl .item-head {
  min-width: 225px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .b_list-dl .item-head {
    min-width: 115px;
  }
}
@media screen and (max-width: 480px) {
  .b_list-dl .item-head {
    margin-right: 0;
  }
}
.b_list-dl--w .list-item {
  border-bottom: 1px solid rgba(0, 51, 92, 0.3);
}

.b_list-aco .list-item {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.b_list-aco .item-label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 1.1875rem;
  letter-spacing: -0.05em;
  padding: 26px 17px 26px 0;
}
.b_list-aco .item-label__icon {
  width: 23px;
  height: 23px;
  display: block;
  position: relative;
}
.b_list-aco .item-label__icon::before, .b_list-aco .item-label__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  inset: 0;
}
.b_list-aco .item-label__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.b_list-aco .item-panel {
  font-size: 1.125rem;
  padding: 8px 0 42px;
}
.b_list-aco .item-body {
  line-height: 1.77;
}
.b_list-aco .panel-publication > * + * {
  margin-top: 80px;
}
.b_list-aco .list-col2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1.9444444444em;
}
.b_list-aco .list-col2__item-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 220px;
  margin-right: 5px;
}
.b_list-aco .list-col2__item-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*		Flex
--------------------------------------*/
.l_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .l_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1120px) {
  .xl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1000px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 424px) {
  .xs_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l_flex__left-content {
  width: 50%;
  margin-right: 25px;
}
@media screen and (max-width: 1000px) {
  .l_flex__left-content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.l_flex__right-content {
  width: 50%;
  margin-left: 25px;
}
@media screen and (max-width: 1000px) {
  .l_flex__right-content {
    width: 100%;
    margin-left: 0;
  }
}

._ai-b {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

._ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

._ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._ai-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 1120px) {
  .xl_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xl_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xl_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xl_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xl_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 1000px) {
  .lg_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .lg_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lg_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .lg_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lg_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .md_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .md_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .md_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .md_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .md_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 480px) {
  .sm_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .sm_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sm_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sm_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sm_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 424px) {
  .xs_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xs_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xs_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xs_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xs_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
._jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

._jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

._jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

._jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1120px) {
  .xl_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xl_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xl_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xl_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xl_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .lg_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lg_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .lg_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lg_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .lg_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .md_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .md_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .md_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .md_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .sm_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sm_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sm_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sm_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sm_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 424px) {
  .xs_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xs_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xs_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xs_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xs_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
._fxw-n {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

._fxw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._fxw-wr {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

@media screen and (max-width: 1120px) {
  .xl_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xl_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xl_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 1000px) {
  .lg_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .lg_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lg_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 768px) {
  .md_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .md_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 480px) {
  .sm_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sm_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sm_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 424px) {
  .xs_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xs_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xs_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
._fxd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._fxd-cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

._fxd-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

._fxd-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1120px) {
  .xl_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xl_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xl_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xl_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1000px) {
  .lg_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lg_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lg_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .lg_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .md_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .md_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .md_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 480px) {
  .sm_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sm_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sm_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sm_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 424px) {
  .xs_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xs_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xs_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xs_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
._ac-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

._ac-fe {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

._ac-fs {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

._ac-s {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

._ac-sa {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

._ac-sb {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

@media screen and (max-width: 1120px) {
  .xl_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xl_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xl_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xl_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xl_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xl_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .lg_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .lg_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .lg_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .lg_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .lg_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .lg_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .md_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .md_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .md_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .md_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .md_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .md_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .sm_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sm_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .sm_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .sm_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .sm_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .sm_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 424px) {
  .xs_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xs_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xs_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xs_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xs_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xs_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
._ord1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

._ord2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

._ord3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

._ord4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

._ord5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

._ord6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

._ord7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

._ord8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

._ord9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

._ord10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media screen and (max-width: 1120px) {
  .xl_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xl_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xl_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xl_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xl_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xl_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xl_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xl_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xl_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xl_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 1000px) {
  .lg_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .lg_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .lg_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .lg_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .lg_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .lg_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .lg_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .lg_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .lg_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .lg_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 768px) {
  .md_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .md_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .md_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .md_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .md_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .md_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .md_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .md_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .md_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .md_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 480px) {
  .sm_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sm_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sm_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .sm_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .sm_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .sm_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .sm_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .sm_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .sm_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .sm_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 424px) {
  .xs_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xs_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xs_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xs_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xs_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xs_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xs_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xs_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xs_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xs_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
/*		grid
--------------------------------------*/
.b_grid {
  display: grid;
}
.b_grid.--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.b_grid.--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.b_grid.--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.b_grid.--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.b_grid.--col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1120px) {
  .b_grid.xl--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.xl--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.xl--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.xl--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.xl--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .b_grid.lg--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.lg--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.lg--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.lg--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.lg--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .b_grid.md--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.md--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.md--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.md--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.md--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .b_grid.sm--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.sm--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.sm--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.sm--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.sm--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 424px) {
  .b_grid.xs--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.xs--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.xs--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.xs--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.xs--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .b_grid.--col2 {
    grid-template-columns: 1fr;
  }
}
.b_grid .grid-item {
  padding-bottom: 24px;
  margin-bottom: 62px;
  position: relative;
}
.b_grid .grid-item::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #00335c;
  position: absolute;
  bottom: 0;
  left: 0;
}
.b_grid .grid-item:nth-of-type(odd) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .b_grid .grid-item:nth-of-type(odd) {
    margin-right: 0;
  }
}
.b_grid .grid-item:nth-of-type(even) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .b_grid .grid-item:nth-of-type(even) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .b_grid .grid-item:last-of-type {
    margin-bottom: 0;
  }
}
.b_grid .grid-inner {
  max-width: 503px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .b_grid .grid-inner {
    max-width: 100%;
  }
}
.b_grid .grid-title {
  font-weight: 700;
  margin-bottom: 0.5714285714em;
}

/*======================================
	Top
======================================*/
/*		FV
--------------------------------------*/
.fv {
  padding-top: 100px;
}

.fv__body-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .fv__body-container {
    margin-bottom: 15px;
  }
}

.fv__logo {
  width: 44.452887538%;
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  .fv__logo {
    max-width: 415px;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .fv__logo {
    max-width: 255px;
  }
}

.fv__text-box {
  max-width: 572px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 1000px) {
  .fv__text-box {
    margin-left: 0;
  }
}

.fv__body {
  letter-spacing: 0;
  line-height: 1.1;
}
@media screen and (max-width: 480px) {
  .fv__body {
    font-size: 0.875rem;
  }
}

.fv__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fv_copyright {
  letter-spacing: 0;
  line-height: 1.1;
  margin-left: 40px;
}
@media screen and (max-width: 480px) {
  .fv_copyright {
    font-size: 0.75rem;
    margin-left: 20px;
  }
}

.fv__img {
  aspect-ratio: 1366/738;
}

/*		Intro
--------------------------------------*/
.intro {
  padding-top: 105px;
}

.intro__body {
  line-height: 1.8;
  margin: 1.5238095238em 0 3.619047619em;
}
@media screen and (max-width: 768px) {
  .intro__body {
    margin: 1.6em 0 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .intro__body {
    margin: 0 0 1.875em;
  }
}

/*		Practices
--------------------------------------*/
@media screen and (max-width: 480px) {
  .practices .l_sec__inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.practices__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding-top: 10px;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .practices__list {
    padding-top: 0;
  }
}
.practices__list .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.practices__list .item-head {
  margin-right: 20px;
}
.practices__list .item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*		Professionals
--------------------------------------*/
.professionals__text-box {
  width: 50%;
  margin-right: 65px;
}
@media screen and (max-width: 1000px) {
  .professionals__text-box {
    width: 100%;
  }
}

.professionals__body {
  margin-bottom: 125px;
}
@media screen and (max-width: 1000px) {
  .professionals__body {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .professionals__body {
    margin-bottom: 40px;
  }
}

.professionals__img {
  width: 50%;
  aspect-ratio: 575/438;
  margin-left: 65px;
}
@media screen and (max-width: 1000px) {
  .professionals__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    margin-top: 80px;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .professionals__img {
    margin-top: 40px;
  }
}

/*		Information
--------------------------------------*/
.information__inner {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 768px) {
  .information__inner {
    padding-bottom: 50px !important;
  }
}
@media screen and (max-width: 480px) {
  .information__inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 40px !important;
  }
}

.information__head-box {
  margin-bottom: 65px;
}
@media screen and (max-width: 480px) {
  .information__head-box {
    margin-bottom: 40px;
  }
}

.information__title {
  margin-bottom: 13px;
}
@media screen and (max-width: 480px) {
  .information__title {
    margin-bottom: 0;
  }
}

.information__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.information__link .c_icon-arrow {
  width: 10px;
  height: 11px;
  margin-left: 25px;
}
@media screen and (max-width: 480px) {
  .information__link .c_icon-arrow {
    margin-left: 15px;
  }
}

/*		Access
--------------------------------------*/
.access {
  padding-top: 100px;
}
@media screen and (max-width: 480px) {
  .access {
    padding-top: 40px;
  }
}
.access iframe {
  width: 100%;
  aspect-ratio: 830/598;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.access__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.access__text-box address {
  font-style: normal;
}

.access__text {
  margin-right: 25px;
}

.access__link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*		Contact
--------------------------------------*/
.contact__inner {
  padding-top: 115px !important;
  padding-bottom: 185px !important;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 75px 30px 95px !important;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner {
    padding: 40px 0 45px !important;
  }
}

.contact__title {
  margin-bottom: 0;
}

.contact__desc {
  letter-spacing: -0.04em;
  margin-bottom: 3.3125em;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #00335c;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
  }
}
.contact__item-textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__item-textarea p {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__item span:has(input),
.contact__item span:has(textarea) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
  padding-right: 20px;
}
@media screen and (max-width: 480px) {
  .contact__label {
    font-size: 1.25rem;
  }
}

.contact__input,
.contact__textarea {
  display: block;
  width: 100%;
  color: #00335c;
  padding: 0.375em 0.5em;
}

.contact__textarea {
  height: 45px;
}

.contact__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 164px;
}
@media screen and (max-width: 768px) {
  .contact__btns {
    margin-top: 110px;
  }
}
@media screen and (max-width: 480px) {
  .contact__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  .contact__btns > *:first-child {
    margin-bottom: 20px;
  }
}

.contact__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  border: 1px solid #00335c;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact__checkbox:checked {
  background-color: #00335c;
  border-color: #00335c;
}
.contact__checkbox:checked::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: auto;
  position: absolute;
  inset: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact__checkbox-label {
  letter-spacing: -0.04em;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-spinner {
  width: 1px;
  height: 1px;
  visibility: hidden;
  margin: 0;
}

/*======================================
	About
======================================*/
/*		Main
--------------------------------------*/
.about__container {
  padding-top: 0;
}

.about__inner {
  padding-top: 100px !important;
}
@media screen and (max-width: 480px) {
  .about__inner {
    padding: 40px 0 !important;
  }
}

.about__body {
  line-height: 1.94;
}

/*		Company
--------------------------------------*/
.about-company__inner {
  padding-top: 85px !important;
}
@media screen and (max-width: 768px) {
  .about-company__inner {
    padding: 75px 30px 95px !important;
  }
}
@media screen and (max-width: 480px) {
  .about-company__inner {
    padding: 35px 0 45px !important;
  }
}

.about-company__list {
  margin-top: 56px;
}
@media screen and (max-width: 480px) {
  .about-company__list {
    margin-top: 0;
  }
}

/*======================================
	Practices
======================================*/
/*		Main
--------------------------------------*/
.practices-page {
  padding-top: 0;
}
.practices-page .practices__list {
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  .practices-page .practices__list {
    margin-top: 50px;
  }
}

.practices-page__container {
  padding-top: 0;
}

.practices-page__inner {
  padding: 100px 0 !important;
}
@media screen and (max-width: 480px) {
  .practices-page__inner {
    padding: 40px 0 !important;
  }
}

.practices-page__body {
  line-height: 1.93;
}
.practices-page__body > * {
  margin-bottom: 20px;
}
.practices-page__body > *:last-child {
  margin-bottom: 0;
}
.practices-page__body ul li {
  list-style-type: disc;
  list-style-position: inside;
}

/*		Section
--------------------------------------*/
.practices-page__sec {
  padding: 30px 0 0;
}

.practices-page__sec-inner {
  padding: 55px 50px 63px !important;
}
@media screen and (max-width: 480px) {
  .practices-page__sec-inner {
    padding: 28px 20px 30px !important;
  }
}

.practices-page__sec__title-box {
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .practices-page__sec__title-box {
    margin-bottom: 20px;
  }
}

.practices-page__sec__title-en {
  letter-spacing: -0.02em;
}

.practices-page__sec-body > * {
  font-size: 1.125rem;
  line-height: 1.82;
  text-align: justify;
  margin-bottom: 1.9444444444em;
}
@media screen and (max-width: 480px) {
  .practices-page__sec-body > * {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2.3333333333em;
  }
}
.practices-page__sec-body > *:last-child {
  margin-bottom: 0;
}
.practices-page__sec-body ul li {
  padding-left: 2.1666666667em;
  position: relative;
}
.practices-page__sec-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.0277777778em;
}

/*======================================
	Information
======================================*/
.information-page {
  padding-top: 0;
}

.information-page__list-wrap {
  padding: 0;
}

.information-page__list-inner {
  padding: 10px 60px 130px !important;
}
@media screen and (max-width: 480px) {
  .information-page__list-inner {
    padding: 10px 20px 60px !important;
  }
}

.information-page__pagination {
  margin-top: 100px;
}

.information-page__cs {
  margin-top: 40px;
}

.information-single {
  padding-top: 0;
}

.information-single__container {
  padding-top: 0;
}

.information-single__inner {
  padding: 110px 100px 130px !important;
}
@media screen and (max-width: 768px) {
  .information-single__inner {
    padding: 60px 40px 50px !important;
  }
}
@media screen and (max-width: 480px) {
  .information-single__inner {
    padding: 40px 20px 25px !important;
  }
}

.information-single__date {
  display: block;
  margin-bottom: 1.875em;
}

.information-single__title {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.4285714286em;
}

.information-single__body {
  line-height: 1.56;
}
.information-single__body > * {
  margin-bottom: 1.875em;
}
.information-single__body > *:last-child {
  margin-bottom: 0;
}
.information-single__body p {
  text-align: justify;
}

.information-single__btn-index {
  font-size: 1.125rem;
  padding-left: 1.6666666667em;
  margin-top: 103px;
}
@media screen and (max-width: 768px) {
  .information-single__btn-index {
    font-size: 1rem;
    padding-left: 1.875em;
    margin-top: 70px;
  }
}
@media screen and (max-width: 480px) {
  .information-single__btn-index {
    margin-top: 40px;
  }
}
.information-single__btn-index::before {
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*======================================
	Recruit
======================================*/
.recruit {
  padding-top: 0;
  padding-bottom: 0;
}

.recruit__container {
  padding-top: 0;
}

.recruit__content-inner {
  padding: 90px !important;
}
@media screen and (max-width: 768px) {
  .recruit__content-inner {
    padding: 60px 40px 55px !important;
  }
}
@media screen and (max-width: 480px) {
  .recruit__content-inner {
    padding: 40px 20px 25px !important;
  }
}

.recruit__content-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .recruit__content-title {
    margin-bottom: 20px;
  }
}

.recruit__body-container {
  line-height: 1.75;
}
.recruit__body-container > * + * {
  margin-top: 58px;
}
@media screen and (max-width: 480px) {
  .recruit__body-container > * + * {
    margin-top: 26px;
  }
}

.recruit__dl-list {
  border-top: 1px solid #00335c;
  padding-top: 62px;
}
@media screen and (max-width: 480px) {
  .recruit__dl-list {
    padding-top: 25px;
  }
}
.recruit__dl-list > * + * {
  margin-top: 30px;
}
.recruit__dl-list .list-link {
  text-decoration: underline;
}
.recruit__dl-list .child-dl > .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit__dl-list .child-dl > .list-item .item-term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 100px;
  margin-right: 1.25em;
}

/*======================================
	Professionals
======================================*/
/* Archive
--------------------------------------*/
.pro-archive {
  padding-top: 0;
}

.pro-archive__body-inner {
  padding-top: 100px !important;
}
@media screen and (max-width: 1000px) {
  .pro-archive__body-inner {
    padding-top: 80px !important;
  }
}

.pro-archive__title {
  margin-bottom: 15px;
}

.pro-archive__desc-container {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 25px;
}

@media screen and (max-width: 1000px) {
  .pro-archive__desc-box {
    max-width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .pro-archive__desc-box {
    margin-top: 15px;
  }
}

.pro-archive__scroll-down {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pro-archive__desc {
  max-width: 320px;
}
@media screen and (max-width: 1000px) {
  .pro-archive__desc {
    max-width: 100%;
  }
}

.pro-archive__body-title {
  margin-bottom: 3.125em;
}
.pro-archive__body-title::before {
  background-color: #00335c;
}

.pro-archive__body-sec {
  width: 66%;
  border-bottom: 1px solid rgba(0, 51, 92, 0.3);
  padding-bottom: 58px;
  margin: 0 0 35px auto;
}
@media screen and (max-width: 1000px) {
  .pro-archive__body-sec {
    width: 100%;
  }
}
.pro-archive__body-sec:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.pro-archive__category {
  font-size: 42px;
  letter-spacing: -0.045em;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .pro-archive__category {
    font-size: 30px;
  }
}

.pro-archive__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pro-archive__grid .grid-item {
  width: calc(50% - 17px);
  margin-bottom: 34px;
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .grid-item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
.pro-archive__grid .grid-item:nth-child(odd) {
  margin-right: 17px;
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .grid-item:nth-child(odd) {
    margin-right: 10px;
  }
}
.pro-archive__grid .grid-item:nth-child(even) {
  margin-left: 17px;
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .grid-item:nth-child(even) {
    margin-left: 10px;
  }
}
.pro-archive__grid .grid-item:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.pro-archive__grid .item-link {
  display: block;
  margin-bottom: 15px;
}
.pro-archive__grid .item__img-wrap {
  aspect-ratio: 1/1;
}
.pro-archive__grid .item__name-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .item__name-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 10px;
  }
}
.pro-archive__grid .item__name-box .ja {
  font-size: 1.625rem;
  margin-right: 0.2307692308em;
}
@media screen and (max-width: 768px) {
  .pro-archive__grid .item__name-box .ja {
    font-size: 1.375rem;
    margin-right: 0.2727272727em;
  }
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .item__name-box .ja {
    font-size: 1.125rem;
    margin-right: 0;
  }
}
.pro-archive__grid .item__name-box .en {
  font-size: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .pro-archive__grid .item__name-box .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .item__name-box .en {
    font-size: 0.8125rem;
  }
}
.pro-archive__grid .item-role {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  margin-bottom: 1.35em;
}
@media screen and (max-width: 768px) {
  .pro-archive__grid .item-role {
    font-size: 1rem;
    margin-bottom: 1.6875em;
  }
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .item-role {
    font-size: 0.875rem;
    margin-bottom: 0.3571428571em;
  }
}
@media screen and (max-width: 480px) {
  .pro-archive__grid .item-date {
    font-size: 0.8125rem;
  }
}

/* Single
--------------------------------------*/
.pro-single {
  padding-top: 145px;
}
@media screen and (max-width: 768px) {
  .pro-single {
    padding-top: 185px;
  }
}

.pro-single__img-container {
  width: 44%;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .pro-single__img-container {
    width: 100%;
    max-width: 418px;
    margin: 0 auto 0;
  }
}

.pro-single__img-wrap {
  aspect-ratio: 562/623;
}

.pro-single__text-container {
  width: 56%;
  margin: 77px 0 0 20px;
}
@media screen and (max-width: 1000px) {
  .pro-single__text-container {
    width: 100%;
    margin: 77px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .pro-single__text-container {
    margin: 45px 0 0;
  }
}

.pro-single__name-box {
  font-size: 44px;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .pro-single__name-box {
    font-size: 35px;
  }
}
@media screen and (max-width: 480px) {
  .pro-single__name-box {
    font-size: 1.5625rem;
  }
}
.pro-single__name-box .en {
  font-weight: 400;
  letter-spacing: 0;
  padding-left: 13px;
}
@media screen and (max-width: 480px) {
  .pro-single__name-box .en {
    font-size: 0.9375rem;
    padding-left: 8px;
  }
}

.pro-single__role {
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .pro-single__role {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .pro-single__role {
    font-size: 1rem;
  }
}

.pro-single__main-content {
  color: #00335c;
  background-color: #fff;
  padding: 35px 40px;
  margin-top: 45px;
}
.pro-single__main-content .pattern > * {
  margin-bottom: 24px;
}
.pro-single__main-content .pattern > *:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.pro-single__main-content .pattern > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .pro-single__main-content {
    padding: 25px 20px;
  }
}
.pro-single__main-content p {
  font-size: 1.125rem;
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  .pro-single__main-content p {
    font-size: 1rem;
  }
}
.pro-single__main-content h2 {
  font-size: 1.5rem;
  border-top: solid 1px rgba(0, 51, 92, 0.3);
  padding-top: 1.0416666667em;
  margin-bottom: 0.4166666667em;
}
@media screen and (max-width: 480px) {
  .pro-single__main-content h2 {
    font-size: 1.25rem;
    padding-top: 1.25em;
    margin-bottom: 0.5em;
  }
}
.pro-single__main-content h3 {
  display: inline-block;
  min-width: 113px;
  color: #fff;
  background-color: #00335c;
  font-size: 1.1875rem;
  letter-spacing: -0.05em;
  text-align: center;
  padding: 0.3157894737em 0.6842105263em 0.2631578947em;
  margin: 1.8421052632em 0 1.3684210526em !important;
}
@media screen and (max-width: 768px) {
  .pro-single__main-content h3 {
    font-size: 1.125rem;
    padding: 0.3333333333em 0.7222222222em 0.2777777778em;
    margin: 0.5555555556em 0 1.4444444444em !important;
  }
}
@media screen and (max-width: 480px) {
  .pro-single__main-content h3 {
    font-size: 1rem;
    padding: 0.375em 0.8125em 0.3125em;
    margin: 0.625em 0 1.625em !important;
  }
}
.pro-single__main-content h4 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 1.9090909091em 0 1.1363636364em !important;
}
@media screen and (max-width: 768px) {
  .pro-single__main-content h4 {
    font-size: 1.25rem;
    margin: 2.1em 0 1.25em !important;
  }
}
@media screen and (max-width: 480px) {
  .pro-single__main-content h4 {
    font-size: 1.125rem;
    margin: 1.3888888889em 0 1.1111111111em !important;
  }
}
.pro-single__main-content table {
  font-size: 1.125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .pro-single__main-content table {
    font-size: 1rem;
  }
}
.pro-single__main-content table th, .pro-single__main-content table td {
  border: none;
  padding: 0 0 35px;
}
@media screen and (max-width: 480px) {
  .pro-single__main-content table th, .pro-single__main-content table td {
    padding: 0 0 15px;
  }
}
.pro-single__main-content table td:first-of-type {
  width: 230px;
  padding-right: 20px;
}
@media screen and (max-width: 480px) {
  .pro-single__main-content table td:first-of-type {
    width: 120px;
  }
}
.pro-single__main-content ul li {
  padding: 0.1666666667em 0;
}
@media screen and (max-width: 768px) {
  .pro-single__main-content ul li {
    font-size: 1rem;
    padding: 0.1875em 0;
  }
}
@media screen and (max-width: 480px) {
  .pro-single__main-content ul li {
    font-size: 0.9375rem;
    padding: 0.2em 0;
  }
}

.wp-block-accordion-heading__toggle-icon {
  display: none;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

.wp-block-accordion-heading__toggle:focus, .wp-block-accordion-heading__toggle:hover {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding: 26px 0;
}
@media screen and (max-width: 480px) {
  .wp-block-accordion-heading__toggle:focus, .wp-block-accordion-heading__toggle:hover {
    padding: 20px 0;
  }
}

/*======================================
	Not Found
======================================*/
.not-found {
  padding-bottom: 80px;
  text-align: center;
}
.not-found__inner {
  max-width: 800px;
  margin: 0 auto;
}
.not-found__title {
  font-size: 120px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .not-found__title {
    font-size: 90px;
  }
}
.not-found__message {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .not-found__message {
    font-size: 18px;
  }
}
.not-found__description {
  margin-bottom: 40px;
}

/*======================================
	Privacy Policy
======================================*/
.privacy-policy .l_sec--w {
  padding-top: 0;
}
.privacy-policy .l_sec__inner {
  padding-top: 100px !important;
}
@media screen and (max-width: 480px) {
  .privacy-policy .l_sec__inner {
    padding: 40px 0 !important;
  }
}
.privacy-policy__body {
  line-height: 1.93;
}
.privacy-policy__body > * {
  margin-bottom: 20px;
}
.privacy-policy__body > *:last-child {
  margin-bottom: 0;
}
.privacy-policy__body h2 {
  line-height: 1.5;
  margin: 60px 0 10px;
}
.privacy-policy__body ul li {
  list-style: disc;
  list-style-position: inside;
}

/*======================================
	Utility
======================================*/
.u_text-uppercase {
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */