.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.tc {
  display: block !important;
}

.tb {
  display: none !important;
}

@media print,
screen and (max-width: 991px) {
  .tc {
    display: none !important;
  }

  .tb {
    display: block !important;
  }

  .message-page .message-section .content .desc
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

@media print,
screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 60px, 0);
  transform: translate3d(0, 60px, 0);
}

#wrapper {
  position: relative;
  width: 100%;
}

main {
  position: relative;
}

main#main {
  overflow: hidden;
}

/* input */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  position: relative;
  background-color: #F1F1F1;
  border: transparent;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2.0rem 1.6rem;
  width: 100%;
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select {
  height: 5.6rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: #888888;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ACACAC;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ACACAC;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ACACAC;
}

input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #ACACAC;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ACACAC;
}

select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/select-down.svg);
  background-position: calc(100% - 0.8rem) 50%;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  z-index: 0;
}

/* checkbox */
.checkbox {
  display: block;
  position: relative;
  padding-left: 3.2rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.0rem;
  text-align: left;
  color: #000000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 768px) {
  .checkbox {
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding-left: 3.0rem;
  }
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox .checkmark {
  position: absolute;
  top: 0.3rem;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: #FFFFFF;
  border-radius: 0.4rem;
  border: 2px solid #1B1B1F;
}

@media only screen and (max-width: 768px) {
  .checkbox .checkmark {
    top: 0.4rem;
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 0.4rem;
  }
}

.checkbox input:focus~.checkmark {
  outline: 0.3rem solid #7EBF41;
}

.checkbox input:checked~.checkmark {
  background-color: #3B8E65;
  border-color: #3B8E65;
  outline: none;
}

.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked~.checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 0.5rem;
  top: 0;
  width: 0.9rem;
  height: 1.5rem;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 768px) {
  .checkbox .checkmark:after {
    left: 0.4rem;
    top: 0;
    width: 0.8rem;
    height: 1.2rem;
  }
}

picture,
figure,
.image_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

picture img,
figure img,
.image_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.scroll {
  position: relative;
  max-width: 100%;
  width: 100%;
  overflow: auto;
}

@media only screen and (max-width: 768px) {
  .scroll {
    padding-bottom: 1.2rem;
  }

  .scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    border-radius: 0.6rem;
  }

  .scroll::-webkit-scrollbar {
    height: 0.6rem;
    background-color: #f5f5f5;
  }

  .scroll::-webkit-scrollbar-thumb {
    border-radius: 0.6rem;
    background-color: #FED517;
  }
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  position: relative;
  overflow: hidden;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 1.2rem;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  border-radius: 2.5rem;
  cursor: pointer;
  z-index: 0;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-radius: inherit;
  border: 2px solid #3B8E65;
  z-index: 2;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  z-index: 1;
}

.btn:hover {
  color: #3B8E65;
}

.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn span {
  position: relative;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  z-index: 3;
}

.btn.btn-black {
  background: #333;
  color: #FFF;
  border-radius: 90rem;
}

.btn.btn-black:hover {
  color: #333;
  opacity: 1;
}

.btn.btn-black::after {
  border: 1px solid #333;
}

.btn.btn-black::before {
  background: #FFF;
}

@media only screen and (max-width: 768px) {
  .btn {
    padding: 0.4rem;
  }

  .btn::after {
    border-width: 2px;
  }
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 2.0rem 3.6rem;
  background: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 996;
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 2.0rem 1.6rem;
  }
}

.header .header-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.header .header-logo {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header .header-logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 768px) {
  .header .header-logo a {
    -webkit-column-gap: 1.2rem;
    -moz-column-gap: 1.2rem;
    column-gap: 1.2rem;
  }
}

.header .header-logo a img {
  display: block;
  width: 13.7rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .header .header-logo a img {
    width: 8.4rem;
  }
}

.header .header-logo a p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .header .header-logo a p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

.header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.6rem;
  -moz-column-gap: 3.6rem;
  column-gap: 3.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0;
}

@media print,
screen and (max-width: 991px) {
  .header .header-nav {
    display: none;
  }
}

.header .header-nav .nav-menu {
  position: relative;
  list-style: none;
  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;
  line-height: 1;
}

.header .header-nav .nav-menu>li {
  position: relative;
  padding: 0;
}

.header .header-nav .nav-menu>li:not(:first-child) {
  margin-left: 3.0rem;
}

.header .header-nav .nav-menu>li .menu-link {
  position: relative;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  margin: 0;
  padding-bottom: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  z-index: 0;
}

.header .header-nav .nav-menu>li .menu-link img {
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 1.1rem;
  margin-left: 0.6rem;
}

.header .header-nav .nav-menu>li .menu-link svg {
  display: inline-block;
  width: initial;
  height: auto;
  margin-left: 0.6rem;
}

.header .header-nav .nav-menu>li .menu-link span {
  color: inherit;
  text-decoration: none;
}

.header .header-nav .nav-menu>li .menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

.header .header-nav .nav-menu>li .menu-link:hover,
.header .header-nav .nav-menu>li .menu-link.active {
  opacity: 1;
}

.header .header-nav .nav-menu>li .menu-link:hover::before,
.header .header-nav .nav-menu>li .menu-link.active::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.header .header-nav .btn-contact {
  height: 4.6rem;
  padding: 1.0rem 3.0rem;
  background: #003344;
  color: #FFF;
  border-radius: 90rem;
}

.header .header-nav .btn-contact:hover {
  color: #003344;
  opacity: 1;
}

.header .header-nav .btn-contact::after {
  border: 1px solid #003344;
}

.header .header-nav .btn-contact::before {
  background: #FFF;
}

/* Dropdown Menu Styles */
.header .header-nav .nav-menu>li.menu-item-has-dropdown {
  position: relative;
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1.0rem;
  min-width: 22.0rem;
  background: #FFF;
  border: 1px solid #E0E0E0;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  list-style: none;
  padding: 0.8rem 0;
  z-index: 999;
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.8rem;
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown .dropdown-menu li {
  margin: 0;
  padding: 0;
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown .menu-link i {
  font-size: 1.0rem;
  margin-left: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown:hover .menu-link i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown .dropdown-menu .dropdown-link {
  display: block;
  padding: 1.0rem 2.0rem;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.header .header-nav .nav-menu>li.menu-item-has-dropdown .dropdown-menu .dropdown-link:hover {
  background: #F5F5F5;
  color: #003344;
}

/* Mobile Dropdown Menu Styles */
/* Mobile Dropdown Menu - Always visible for 製品 サービス */
@media only screen and (max-width: 768px) {
  #mobile-nav .mobile-nav-container .mobile-nav-menu>li.menu-item-has-dropdown-mobile .dropdown-menu {
    display: block;
    list-style: none;
    padding: 0;
    margin: 1.0rem 0 0 2.0rem;
  }

  #mobile-nav .mobile-nav-container .mobile-nav-menu>li.menu-item-has-dropdown-mobile .dropdown-menu li {
    margin-bottom: 1.0rem;
  }

  #mobile-nav .mobile-nav-container .mobile-nav-menu>li.menu-item-has-dropdown-mobile .dropdown-menu .dropdown-link {
    display: block;
    font-size: 1.6rem;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  #mobile-nav .mobile-nav-container .mobile-nav-menu>li.menu-item-has-dropdown-mobile .dropdown-menu .dropdown-link:hover {
    opacity: 1;
    color: #FFFFFF;
  }
}

/* Other dropdown menus (if any) - Toggle behavior */
#mobile-nav .mobile-nav-container .mobile-nav-menu>li.drop-down .dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 1.0rem 0 0 2.0rem;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu>li.drop-down.active .dropdown-menu {
  display: block;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu>li.drop-down .dropdown-menu li {
  margin-bottom: 1.0rem;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu>li.drop-down .dropdown-menu .dropdown-link {
  display: block;
  font-size: 1.6rem;
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu>li.drop-down .dropdown-menu .dropdown-link:hover {
  opacity: 1;
  color: #FFFFFF;
}

.mobile-nav-toggle {
  position: fixed;
  right: 2.0rem;
  top: 62px;
  width: 28px;
  height: 22px;
  padding: 0;
  background: none;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 999;
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .mobile-nav-toggle {
    display: inline-block;
    top: 2.4rem;
    right: 1.6rem;
    width: 36px;
  }
}

.mobile-nav-toggle .toggle-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.mobile-nav-toggle .toggle-icon span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #494949bf;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@media only screen and (max-width: 768px) {
  .mobile-nav-toggle .toggle-icon span {
    background: #333;
  }
}

.mobile-nav-toggle .toggle-icon span:nth-child(1) {
  top: 0;
}

.mobile-nav-toggle .toggle-icon span:nth-child(2) {
  top: 10px;
}

.mobile-nav-toggle .toggle-icon span:nth-child(3) {
  bottom: 0;
}

.mobile-nav-toggle.toggle-active .toggle-icon span {
  background-color: #fff;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(35deg);
  transform: translateY(10px) rotate(35deg);
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(10px) rotate(-35deg);
  transform: translateY(10px) rotate(-35deg);
  visibility: hidden;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-35deg);
  transform: translateY(-10px) rotate(-35deg);
}

#mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 998;
  right: -100%;
  width: 100%;
  overflow-y: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #003344;
}

#mobile-nav .mobile-toggle {
  position: absolute;
  top: 2.0rem;
  right: 1.8rem;
  display: none;
  width: 2.4rem;
  height: 1.7rem;
  padding: 0;
  background: none;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
}

@media only screen and (max-width: 768px) {
  #mobile-nav .mobile-toggle {
    display: block;
  }
}

#mobile-nav .mobile-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#mobile-nav .mobile-toggle span:nth-child(1) {
  top: 0;
}

#mobile-nav .mobile-toggle span:nth-child(2) {
  top: 0.8rem;
}

#mobile-nav .mobile-toggle span:nth-child(3) {
  bottom: 0;
}

#mobile-nav .mobile-toggle.toggle-active span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
  transform: translateY(0.8rem) rotate(-45deg);
}

#mobile-nav .mobile-toggle.toggle-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(2rem);
  transform: translateX(2rem);
  visibility: hidden;
}

#mobile-nav .mobile-toggle.toggle-active span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}

#mobile-nav .mobile-nav-container {
  position: relative;
  padding: 6.4rem 2.0rem 4.0rem;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu {
  position: relative;
  list-style: none;
  max-width: 30.0rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu>li {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: translateX(7.2rem);
  transform: translateX(7.2rem);
  -webkit-transition: all 0.05s ease-in-out;
  transition: all 0.05s ease-in-out;
  -webkit-animation-fill-mode: forwards !important;
  animation-fill-mode: forwards !important;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu>li:not(:last-child) {
  margin-bottom: 2.2rem;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu .menu-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-align: left;
  text-decoration: none;
  outline: none;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu .menu-link span {
  color: inherit;
  text-decoration: none;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu .menu-link:hover {
  opacity: 1;
}

.mobile-nav-overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Mobile Nav body classes */
@media only screen and (max-width: 768px) {
  body.mobile-nav-active {
    overflow: hidden;
  }
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li {
  -webkit-animation: nav-item-fade-in 0.4s ease-in-out;
  animation: nav-item-fade-in 0.4s ease-in-out;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(1) {
  -webkit-animation-delay: 0.06s !important;
  animation-delay: 0.06s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(2) {
  -webkit-animation-delay: 0.12s !important;
  animation-delay: 0.12s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(3) {
  -webkit-animation-delay: 0.18s !important;
  animation-delay: 0.18s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(4) {
  -webkit-animation-delay: 0.24s !important;
  animation-delay: 0.24s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(5) {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(6) {
  -webkit-animation-delay: 0.36s !important;
  animation-delay: 0.36s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(7) {
  -webkit-animation-delay: 0.42s !important;
  animation-delay: 0.42s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(8) {
  -webkit-animation-delay: 0.48s !important;
  animation-delay: 0.48s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(9) {
  -webkit-animation-delay: 0.54s !important;
  animation-delay: 0.54s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(10) {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(11) {
  -webkit-animation-delay: 0.66s !important;
  animation-delay: 0.66s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(12) {
  -webkit-animation-delay: 0.72s !important;
  animation-delay: 0.72s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(13) {
  -webkit-animation-delay: 0.78s !important;
  animation-delay: 0.78s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(14) {
  -webkit-animation-delay: 0.84s !important;
  animation-delay: 0.84s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(15) {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(16) {
  -webkit-animation-delay: 0.96s !important;
  animation-delay: 0.96s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(17) {
  -webkit-animation-delay: 1.02s !important;
  animation-delay: 1.02s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(18) {
  -webkit-animation-delay: 1.08s !important;
  animation-delay: 1.08s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(19) {
  -webkit-animation-delay: 1.14s !important;
  animation-delay: 1.14s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(20) {
  -webkit-animation-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(21) {
  -webkit-animation-delay: 1.26s !important;
  animation-delay: 1.26s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(22) {
  -webkit-animation-delay: 1.32s !important;
  animation-delay: 1.32s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(23) {
  -webkit-animation-delay: 1.38s !important;
  animation-delay: 1.38s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(24) {
  -webkit-animation-delay: 1.44s !important;
  animation-delay: 1.44s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(25) {
  -webkit-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(26) {
  -webkit-animation-delay: 1.56s !important;
  animation-delay: 1.56s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(27) {
  -webkit-animation-delay: 1.62s !important;
  animation-delay: 1.62s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(28) {
  -webkit-animation-delay: 1.68s !important;
  animation-delay: 1.68s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(29) {
  -webkit-animation-delay: 1.74s !important;
  animation-delay: 1.74s !important;
}

body.mobile-nav-active #mobile-nav .mobile-nav-container .mobile-nav-menu>li:nth-child(30) {
  -webkit-animation-delay: 1.8s !important;
  animation-delay: 1.8s !important;
}

body.mobile-nav-active #mobile-nav {
  right: 0;
}

.top-page {
  position: relative;
  width: 100%;
}

.top-page .mainview {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .container {
    width: 100%;
  }
}

.top-page .mainview .content {
  position: relative;
  display: block;
  padding-top: 6.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 51.8rem;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .content {
    padding: 0;
    margin: 0 auto;
  }
}

.top-page .mainview .content .title {
  margin-bottom: 4.4rem;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .content .title {
    text-align: center;
    margin-bottom: 2.4rem;
  }
}

.top-page .mainview .content .middle-desc {
  margin-bottom: 4.4rem;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .content .middle-desc {
    line-height: 2.1rem;
    margin-bottom: 2.4rem;
  }
}

.top-page .mainview .content .bottom-desc {
  margin-bottom: 3.0rem;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .content .bottom-desc {
    line-height: 2.5rem;
    margin-bottom: 2.4rem;
  }
}

.top-page .mainview .content .btn-contact {
  width: 30rem;
  height: 6.0rem;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .content .btn-contact {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 2.4rem auto;
  }
}

.top-page .mainview .left-part {
  width: 55.5%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .left-part {
    width: 100%;
    position: relative;
    padding-right: 0;
    margin-bottom: 1.6rem;
  }
}

.top-page .mainview .left-part .mainview-img {
  position: relative;
  width: 100%;
  max-width: 94rem;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .left-part .mainview-img {
    max-width: 100%;
  }
}

.top-page .mainview .left-part .mainview-video {
  position: relative;
  width: 100%;
  max-width: 98rem;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .left-part .mainview-video {
    max-width: 100%;
  }
}

.top-page .mainview .top-image {
  position: relative;
  width: 100%;
  max-width: calc(144rem - 4.0rem);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Wider wrapper so scaled video shows full width: 140vw (PC) / 200vw (SP) */
.top-page .mainview .top-video-wrapper {
  position: relative;
  width: 140vw;
  margin-left: -20vw;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .top-video-wrapper {
    width: 200vw;
    margin-left: -50vw;
  }
}

.top-page .mainview .top-video-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  -webkit-animation: top-video-scroll-right 86s linear infinite;
  animation: top-video-scroll-right 86s linear infinite;
}

@media only screen and (max-width: 768px) {
  .top-page .mainview .top-video-track {
    -webkit-animation: top-video-scroll-right 40s linear infinite;
    animation: top-video-scroll-right 40s linear infinite;
  }
}

@-webkit-keyframes top-video-scroll-right {
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes top-video-scroll-right {
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.top-page .mainview .top-video-track .top-video {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
  height: auto;
  display: block;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Video 100% of slot = full width visible; apparent size comes from wrapper being 140vw/200vw */
.top-page .mainview .top-video-track .top-video video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.top-page .service-section {
  padding: 12rem 0 9.4rem 0;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f4f4f5;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section {
    padding: 7.2rem 0 6.0rem 0;
  }
}

.top-page .service-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20rem;
  background: #FFF;
  z-index: 0;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section:after {
    height: 35.8rem;
  }
}

.top-page .service-section .container {
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section .section-desc {
    margin-bottom: 0;
  }
}

.top-page .service-section .left-right {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section .left-right {
    margin-bottom: 1.6rem;
  }
}

.top-page .service-section .left-right .left-part {
  max-width: 58rem;
}

.top-page .service-section .left-right .right-part {
  flex-shrink: 0;
}

.top-page .service-section .service-slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section .service-slider {
    margin-bottom: 3.2rem;
  }
}

.top-page .service-section .service-slider .slick-list {
  padding: 2.0rem 0;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section .service-slider .slick-list {
    padding: 1.6rem 0;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}

.top-page .service-section .service-slider .item {
  position: relative;
  width: 100%;
  border-radius: 1.1rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 12px #e1e1e1;
  box-shadow: 0px 0px 12px #e1e1e1;
  overflow: hidden;
  margin: 0 1.2rem;
}

.top-page .service-section .service-slider .item .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 296 / 180;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-page .service-section .service-slider .item .content {
  padding: 2.8rem 1.6rem;
  background: #FFF;
}

.top-page .service-section .service-slider .item .content .title {
  height: 5.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-page .service-section .service-slider .item .content .item-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-page .service-section .service-slider .slick-prev,
.top-page .service-section .service-slider .slick-next {
  top: auto;
  left: auto;
  bottom: -15rem !important;
  z-index: 1;
  width: 5.2rem;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 90%;
  border: 1px solid #003344;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 36%;
}

@media only screen and (max-width: 768px) {

  .top-page .service-section .service-slider .slick-prev,
  .top-page .service-section .service-slider .slick-next {
    display: none !important;
  }
}

.top-page .service-section .service-slider .slick-prev:before,
.top-page .service-section .service-slider .slick-next:before {
  display: none;
}

.top-page .service-section .service-slider .slick-prev {
  right: 20rem !important;
  background-image: url(../img/left-arrow-icon.svg);
}

.top-page .service-section .service-slider .slick-next {
  right: 12.8rem !important;
  background-image: url(../img/right-arrow-icon.svg);
}

.top-page .service-section .service-slider .slick-dots {
  display: flex;
  bottom: -5.2rem !important;
  text-align: left !important;
  padding: 0 1.2rem;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section .service-slider .slick-dots {
    display: none !important;
  }
}

.top-page .service-section .service-slider .slick-dots li {
  padding: 0 !important;
  height: 3px !important;
  margin: 0 !important;
  max-width: 7.2rem !important;
  width: 100%;
}

.top-page .service-section .service-slider .slick-dots li button {
  width: 100% !important;
  height: 100% !important;
  border-radius: 90rem !important;
  background: #eeeeee !important;
  padding: 0 !important;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-page .service-section .service-slider .slick-dots li button:before {
  display: none !important;
}

.top-page .service-section .service-slider .slick-dots li.slick-active button {
  background: #003344 !important;
}

@media only screen and (max-width: 768px) {
  .top-page .service-section .btn-service {
    margin: 0 auto;
  }
}

.top-page .labo-global {
  padding: 9.6rem 0 12rem 0;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global {
    padding: 0 0 6.4rem 0;
  }
}

.top-page .labo-global .labo-part {
  margin-bottom: 9.6rem;
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .labo-part {
    margin-bottom: 4.0rem;
  }
}

.top-page .labo-global .left-right {
  -webkit-column-gap: 6.4rem;
  -moz-column-gap: 6.4rem;
  column-gap: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .left-right {
    row-gap: 0;
  }
}

.top-page .labo-global .left-right .left-part .section-desc {
  margin-bottom: 2.4em;
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .left-right .left-part .section-desc {
    margin-bottom: 1.6rem;
  }
}

.top-page .labo-global .left-right .left-part .piece-img {
  margin-bottom: 1.4rem;
}

.top-page .labo-global .left-right .right-part {
  width: 48%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .left-right .right-part {
    width: 100%;
  }
}

.top-page .labo-global .left-right .right-part img {
  position: relative;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .global-part {
    margin-bottom: 4.0rem;
  }
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .btn-labo {
    margin: 0 auto 5.6rem auto;
  }
}

@media only screen and (max-width: 768px) {
  .top-page .labo-global .btn-global {
    margin: 0 auto;
  }
}

.top-page .activities-section {
  position: relative;
  padding: 12.8rem 3.6rem;
  background: #f0f4f5;
}

@media only screen and (max-width: 768px) {
  .top-page .activities-section {
    padding: 6.4rem 1.6rem;
  }
}

.top-page .activities-section .section-title {
  text-align: center;
}

.top-page .activities-section .section-desc {
  text-align: center;
}

.top-page .activities-section .section-img {
  position: relative;
  width: 100%;
  margin-bottom: 5.2rem;
}

@media only screen and (max-width: 768px) {
  .top-page .activities-section .section-img {
    margin-bottom: 4.0rem;
  }
}

.top-page .activities-section .href-btn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.top-page .news-section {
  position: relative;
  width: 100%;
  padding: 12rem 0;
}

@media only screen and (max-width: 768px) {
  .top-page .news-section {
    padding: 6.4rem 0;
  }
}

.top-page .news-section .news-list {
  margin-bottom: 4.4rem;
}

.top-page .news-section .btn-news {
  margin: 0 auto;
}

.top-page .companyinfo-section {
  position: relative;
  width: 100%;
}

.top-page .companyinfo-section .section-img {
  position: relative;
  display: block;
  width: 100%;
}

.top-page .companyinfo-section .content {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.top-page .companyinfo-section .content .logo {
  position: relative;
  width: 16rem;
  display: block;
  margin: 0 auto 3.0rem auto;
}

@media only screen and (max-width: 768px) {
  .top-page .companyinfo-section .content .logo {
    width: 12rem;
  }
}

.top-page .companyinfo-section .content .section-desc {
  text-align: center;
  margin-bottom: 4.8rem;
  color: #FFF;
}

.top-page .companyinfo-section .content .btn-company {
  position: relative;
  width: 24rem;
  height: 6.0rem;
  border: 1px solid #d6d6d6;
  background: #000;
  margin: 0 auto;
}

.top-page .companyinfo-section .content .btn-company .arrow-icon {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  margin-top: -0.6rem;
}

.news-page {
  width: 100%;
  position: relative;
}

.news-page .news-section {
  padding: 10.8rem 0;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .news-page .news-section {
    padding: 6.4rem 0;
  }
}

.news-page .news-section .cats {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2.4rem;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
  row-gap: 2.2rem;
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .news-page .news-section .cats {
    -webkit-column-gap: 0.8rem;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
    row-gap: 0.8rem;
    margin-bottom: 4.4rem;
  }
}

.news-page .news-section .cats .btn-cat {
  width: 12rem;
  height: 4.0rem;
  border: unset;
  background: #f2f2f3;
  color: #003344;
}

@media only screen and (max-width: 768px) {
  .news-page .news-section .cats .btn-cat {
    width: 9.6rem;
    height: 3.2rem;
  }

  .news-page .news-section .cats .btn-cat span {
    font-size: 1.2rem;
  }
}

.news-page .news-section .cats .btn-cat:before {
  background: #e6e6e6;
}

.news-page .news-section .cats .btn-cat:hover {
  opacity: 1;
}

.news-page .news-section .cats .btn-cat:after {
  border: unset;
}

.news-page .news-section .cats .btn-cat.active {
  background: #003344;
  color: #FFF;
  pointer-events: none;
}

.news-page .news-section .news-list {
  margin-bottom: 5.2rem;
}

@media only screen and (max-width: 768px) {
  .news-page .news-section .news-list {
    margin-bottom: 4.0rem;
  }
}

.company-page {
  position: relative;
  display: block;
  width: 100%;
}

.company-page .company-section {
  padding: 10.6rem 0;
}

.company-page .company-section .container {
  max-width: 112rem;
}

@media only screen and (max-width: 768px) {
  .company-page .company-section .container {
    width: 84%;
  }
}

@media only screen and (max-width: 768px) {
  .company-page .company-section {
    padding: 5.6rem 0;
  }
}

.company-page .company-section .info-list {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0px, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  -webkit-column-gap: 7.2rem;
  -moz-column-gap: 7.2rem;
  column-gap: 7.2rem;
  row-gap: 7.2rem;
}

@media only screen and (max-width: 768px) {
  .company-page .company-section .info-list {
    -ms-grid-columns: (minmax(0px, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    -webkit-column-gap: 1.6rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
    row-gap: 4.8rem;
  }
}

.company-page .company-section .info-list .info-item {
  position: relative;
  width: 100%;
}

.company-page .company-section .info-list .info-item:first-child .thumb-wrapper {
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.company-page .company-section .info-list .info-item:first-child .thumb-wrapper .thumb-img {
  width: 80%;
  height: auto;
}

.company-page .company-section .info-list .info-item .thumb-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 440 / 289;
  margin-bottom: 1.6rem;
  border-radius: 0.8rem;
  overflow: hidden;
}

.company-page .company-section .info-list .info-item .thumb-wrapper .thumb-img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.company-page .company-section .info-list .info-item .title {
  margin-bottom: 1.2rem;
}

.message-page .message-section {
  position: relative;
  width: 100%;
  padding: 7.2rem 0;
}

@media only screen and (max-width: 768px) {
  .message-page .message-section {
    padding: 3.6rem 0;
  }
}

.message-page .message-section .title {
  margin-bottom: 7.2rem;
  line-height: 4.4rem;
}

@media only screen and (max-width: 768px) {
  .message-page .message-section .title {
    margin-bottom: 3.6rem;
    line-height: 3.2rem;
  }
}

.message-page .message-section .container {
  max-width: 120rem;
}

.message-page .message-section .content {
  position: relative;
  line-height: 2.9rem;
}

@media only screen and (max-width: 768px) {
  .message-page .message-section .content {
    line-height: 2.6rem;
  }
}

.message-page .message-section .content .desc {
  margin-bottom: 1.2rem;
}

.message-page .message-section .content .title-desc {
  margin-top: 3.6rem;
  margin-bottom: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .message-page .message-section .content .title-desc {
    margin-top: 3.0rem;
    margin-bottom: 1.0rem;
  }
}

.message-page .message-section .content .content-img {
  float: right;
  width: 36%;
  margin-left: 7.2rem;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .message-page .message-section .content .content-img {
    float: auto;
    position: relative;
    width: 100%;
    margin-left: 0;
  }
}

.philosophy-page .other-info .item-list .item:first-child .thumb-wrapper {
  border: unset;
}

.philosophy-page .other-info .item-list .item:first-child .thumb-wrapper .thumb {
  width: 100%;
  height: 100%;
}

.philosophy-page .philosophy-section {
  position: relative;
  display: block;
  width: 100%;
  padding: 7.2rem 0 3.2rem 0;
}

@media only screen and (max-width: 768px) {
  .philosophy-page .philosophy-section {
    padding: 5.2rem 0 3.2rem 0;
  }
}

.philosophy-page .philosophy-section .part-title {
  color: #999999;
  text-align: center;
  margin-bottom: 7.2rem;
}

@media only screen and (max-width: 768px) {
  .philosophy-page .philosophy-section .part-title {
    margin-bottom: 3.6rem;
  }
}

.philosophy-page .philosophy-section .top-desc {
  margin-bottom: 7.2rem;
  line-height: 5.1rem;
}

@media only screen and (max-width: 768px) {
  .philosophy-page .philosophy-section .top-desc {
    margin-bottom: 5.2rem;
    line-height: 3.4rem;
  }
}

.company-subpage .table-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5.6rem;
  margin-bottom: 7.2rem;
}

@media only screen and (max-width: 768px) {
  .company-subpage .table-list {
    row-gap: 4.0rem;
    margin-bottom: 5.2rem;
  }
}

.company-subpage table {
  position: relative;
  width: 100%;
}

.company-subpage table th {
  width: 20rem;
  background: #EEEEEE;
}

@media only screen and (max-width: 768px) {
  .company-subpage table th {
    font-size: 1.4rem;
    width: 7.6rem;
    padding: 0;
  }
}

.company-subpage table td {
  padding: 1.6rem 2.6rem;
  line-height: 2.9rem;
}

.company-subpage table td strong {
  margin-bottom: 0.8rem;
  display: block;
}

@media only screen and (max-width: 768px) {
  .company-subpage table td {
    padding: 0.8rem 1.2rem;
    line-height: 1.8rem;
    font-size: 1.2rem;
  }
}

.company-subpage table .td1 {
  width: 16rem;
  text-align: center;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .company-subpage table .td1 {
    padding: 0 !important;
    width: 6.6rem;
  }
}

.overview-page .overview-section {
  position: relative;
  padding: 7.2rem 0 3.2rem 0;
}

@media only screen and (max-width: 768px) {
  .overview-page .overview-section {
    padding: 5.2rem 0 3.2rem 0;
  }
}

.overview-page .overview-section table th,
.overview-page .overview-section table td {
  color: #003344;
}

.history-page .history-section {
  position: relative;
  padding: 7.2rem 0 3.2rem 0;
}

@media only screen and (max-width: 768px) {
  .history-page .history-section {
    padding: 5.2rem 0 3.2rem 0;
  }
}

.history-page .history-section .table-label {
  margin-bottom: 2.7rem;
}

.history-page table tr th,
.history-page table tr td {
  color: #003344;
}

.history-page table tr:first-child th,
.history-page table tr:first-child td {
  background: #003344;
  color: #FFF;
}

.contact-page {
  position: relative;
  width: 100%;
  display: block;
}

.contact-page .container {
  max-width: 93.8rem;
}

.contact-page .contact-section {
  position: relative;
  width: 100%;
  padding: 5.2rem 0 3.2rem 0;
}

.contact-page .contact-section .top-desc {
  position: relative;
  display: block;
  margin-bottom: 6.2rem;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-section .top-desc {
    margin-bottom: 4.2rem;
  }
}

.contact-page .contact-section .contact-info {
  position: relative;
  width: 100%;
  max-width: 66.8rem;
  margin: 0 auto 7.6rem auto;
}

.contact-page .contact-section .contact-info th {
  position: relative;
  width: 11.8rem;
  background: #EEEEEE;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-section .contact-info th {
    width: 5.8rem;
    font-size: 1.4rem;
  }
}

.contact-page .contact-section .contact-info th,
.contact-page .contact-section .contact-info td {
  padding: 1.6rem 2.6rem;
}

@media only screen and (max-width: 768px) {

  .contact-page .contact-section .contact-info th,
  .contact-page .contact-section .contact-info td {
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
  }
}

.contact-page .contact-section .contact-info span {
  padding-right: 2.6rem;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-section .contact-info span {
    display: block;
    font-size: 1.4rem;
  }
}

.contact-page .contact-section .form-wrapper {
  position: relative;
  width: 100%;
}

.contact-page .contact-section .form-wrapper .input-list {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 7.2rem;
}

.contact-page .contact-section .form-wrapper .input-list .record {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.0rem;
  -moz-column-gap: 2.0rem;
  column-gap: 2.0rem;
  padding: 4.0rem;
  border-bottom: 1px solid #eee;
}

.contact-page .contact-section .form-wrapper .input-list .record.privacy-record .label {
  margin-top: 0;
  margin-bottom: 0.2rem;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-section .form-wrapper .input-list .record {
    padding: 1.6rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.9rem;
  }
}

.contact-page .contact-section .form-wrapper .input-list .record:first-child {
  border-top: 1px solid #eee;
}

.contact-page .contact-section .form-wrapper .input-list .record .label {
  position: relative;
  width: 21rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-section .form-wrapper .input-list .record .label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
  }
}

.contact-page .contact-section .form-wrapper .input-list .record .label.required {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-page .contact-section .form-wrapper .input-list .record .label.required:after {
  content: '※必須';
  display: block;
  position: relative;
  color: #cc0000;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-section .form-wrapper .input-list .record .label.required:after {
    font-size: 1.3rem;
  }
}

.contact-page .contact-section .form-wrapper .input-list .record .input-wrapper {
  position: relative;
  max-width: 40rem;
  width: 100%;
}

.contact-page .contact-section .form-wrapper .input-list .record .input-wrapper .width1 {
  width: 100%;
  max-width: 14rem;
}

.contact-page .contact-section .form-wrapper .input-list .record .input-wrapper .width2 {
  width: 100%;
  max-width: 28.6rem;
}

.contact-page .contact-section .form-wrapper .input-list .record input,
.contact-page .contact-section .form-wrapper .input-list .record textarea {
  width: 100%;
  background: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 0.3rem;
  padding: 1.2rem;
}

.contact-page .contact-section .form-wrapper .input-list .record input {
  height: 3.0rem;
  vertical-align: middle;
}

.contact-page .contact-section .form-wrapper .input-list .record .horizontal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.7rem;
  -moz-column-gap: 0.7rem;
  column-gap: 0.7rem;
}

.contact-page .contact-section .form-wrapper .input-list .record .vertical-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.7rem;
}

.contact-page .contact-section .form-wrapper .input-list .record input[type=checkbox] {
  position: relative;
  border-radius: 2px !important;
  border: 1px solid #979797 !important;
  background: none;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 2rem !important;
  width: 2rem !important;
  -webkit-appearance: none;
  opacity: .5;
  margin-left: 0;
}

.contact-page .contact-section .form-wrapper .input-list .record input[type=checkbox]:before {
  content: '';
  position: absolute;
  right: calc(50% + 0rem);
  top: 50%;
  width: 6px;
  height: 13px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

.contact-page .contact-section .form-wrapper .input-list .record input[type=checkbox]:checked {
  background-color: #003344;
  border: 1px solid #003344;
  opacity: 1;
}

.contact-page .contact-section .form-wrapper .btns {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
  -moz-column-gap: 1.2rem;
  column-gap: 1.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-page .contact-section .form-wrapper .btn-blue {
  background: #003344;
  color: #FFF;
  border: unset;
}

.contact-page .contact-section .form-wrapper .btn-blue:before {
  background: #FFF;
}

.contact-page .contact-section .form-wrapper .btn-blue:hover {
  color: #003344;
}

.contact-page .contact-section .form-wrapper .btn-blue:after {
  border: 1px solid #003344;
}

.contact-page .contact-section .form-wrapper .btn-white {
  background: #FFF;
  color: #003344;
  border: unset;
}

.contact-page .contact-section .form-wrapper .btn-white:before {
  background: #003344;
}

.contact-page .contact-section .form-wrapper .btn-white:hover {
  color: #FFF;
}

.contact-page .contact-section .form-wrapper .btn-white:after {
  border: 1px solid #003344;
}

.contact-page .contact-section .form-wrapper .btn {
  width: 24.3rem;
  height: 6.0rem;
  border-radius: 90rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.contact-page .contact-section .form-wrapper .privacy-label:hover {
  cursor: pointer;
}

.contact-page .error-text {
  color: red;
  display: none;
}

.contact-page .mw_wp_form .error {
  color: #cc0000;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .contact-page .mw_wp_form .error {
    font-size: 1.3rem;
  }
}

.single-news-page .sinlge-news-section {
  padding: 7.2rem 0;
  position: relative;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .single-news-page .sinlge-news-section {
    padding: 4.8rem 0;
  }
}

.single-news-page .sinlge-news-section .container {
  max-width: 120rem;
}

.single-news-page .sinlge-news-section .cats {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  column-gap: 0.7rem;
  margin-bottom: 3.6rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .sinlge-news-section .cats {
    margin-bottom: 2.0rem;
  }
}

.single-news-page .sinlge-news-section .cats .cat {
  height: 2.2rem;
  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;
  line-height: 100%;
  border-radius: 0.4rem;
  color: #FFF;
  background: #003344;
  padding: 0.1rem 1.2rem;
}

.single-news-page .sinlge-news-section .date {
  margin-bottom: 3.6rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .sinlge-news-section .date {
    margin-bottom: 2.4rem;
  }
}

.single-news-page .sinlge-news-section .title {
  margin-bottom: 5.6rem;
  line-height: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .sinlge-news-section .title {
    margin-bottom: 3.0rem;
    line-height: 3.2rem;
  }
}

.single-news-page .sinlge-news-section .content-wrapper {
  margin-bottom: 7.0rem;
}

.single-news-page .sinlge-news-section .btn-news {
  margin: 0 auto;
}

.single-news-page .sinlge-news-section .btn-news .arrow-icon.reverse {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.single-news-page h2 {
  margin-top: 3.6rem;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page h2 {
    margin-top: 3.0rem;
    /* margin-bottom: 1.8rem; */
  }
}

.single-news-page h3 {
  margin-top: 3.6rem;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page h3 {
    /* margin-top: 3.0rem; */
    /* margin-bottom: 1.8rem; */
  }
}

.single-news-page .single-desc {
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .single-desc {
    /* margin-bottom: 2rem; */
  }
}

.single-news-page .href-link {
  margin: 1.6rem 0;
}

.single-news-page .left-right {
  column-gap: 4.8rem;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .left-right {
    row-gap: 2.0rem;
    /* margin-bottom: 2rem; */
  }
}

.single-news-page .left-right .part-image {
  display: block;
  position: relative;
  width: 45%;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .single-news-page .left-right .part-image {
    width: 100%;
  }
}

.single-news-page .left-right .part-desc {
  display: block;
  position: relative;
  width: 100%;
}

.single-news-page .single-image {
  display: block;
  position: relative;
  width: 100%;
  max-width: 76rem;
  margin: 3rem auto;
}

@media only screen and (max-width: 768px) {
  .single-news-page .single-image {
    margin: 2.4rem auto;
  }
}

.single-news-page .post-info {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .post-info {
    margin-bottom: 4.0rem;
  }
}

.single-news-page .post-info .post-label {
  display: block;
  position: relative;
  width: fit-content;
  line-height: 1;
  color: #FFF;
  background-color: #003344;
  padding: 0.6rem 1rem 0.8rem 1rem;
  border-radius: 0.6rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .post-info .post-label {
    margin-bottom: 2rem;
  }
}

.single-news-page .post-info .post-name {
  line-height: 1.4;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .post-info .post-name {
    margin-bottom: 2rem;
  }
}

.single-news-page .post-info .logo-desc {
  display: flex;
  column-gap: 3rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .post-info .logo-desc {
    flex-direction: column;
    row-gap: 1.6rem;
    row-gap: 1.6rem;
  }
}

.single-news-page .post-info .logo-desc .thumb-wrapper {
  width: 9.5rem;
  flex-shrink: 0;
}

.single-news-page .post-info .post-desc {
  margin-bottom: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .post-info .post-desc {
    margin-bottom: 1.2rem;
  }
}

.single-news-page .post-info .href-link {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .single-news-page .post-info .href-link {
    margin-bottom: 1rem;
  }
}

.csr-page .container {
  max-width: 120rem;
}

.csr-page .csr-section {
  padding: 10.8rem 0;
}

@media only screen and (max-width: 768px) {
  .csr-page .csr-section {
    padding: 5.2rem 0;
  }
}

.csr-page .top-title {
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .csr-page .top-title {
    margin-bottom: 4.0rem;
  }
}

.csr-page .top-desc {
  margin-bottom: 6.0rem;
  max-width: 79.4rem;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .csr-page .top-desc {
    margin-bottom: 3.2rem;
  }
}

.csr-page .part-title {
  color: #999;
  margin-bottom: 5.2rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .csr-page .part-title {
    margin-bottom: 3.2rem;
  }
}

.csr-page .block-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5.6rem;
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list {
    row-gap: 4.0rem;
    margin-bottom: 3.6rem;
  }
}

.csr-page .block-list .block-item .title {
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list .block-item .title {
    margin-bottom: 3.2rem;
  }
}

.csr-page .block-list .block-item .left-right {
  -webkit-column-gap: 7.6rem;
  -moz-column-gap: 7.6rem;
  column-gap: 7.6rem;
  row-gap: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list .block-item .left-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.csr-page .block-list .block-item .left-right .left-part {
  width: 46%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list .block-item .left-right .left-part {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list .block-item .left-right img {
    position: relative;
    width: 100%;
  }
}

.csr-page .block-list .block-item .left-right .left-part img {
  position: relative;
  width: 100%;
}

.csr-page .block-list .block-item .left-right .right-part .desc {
  line-height: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list .block-item .left-right .right-part .desc {
    line-height: 2.6rem;
  }
}

.csr-page .block-list .block-item:nth-child(2n) .left-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .csr-page .block-list .block-item:nth-child(2n) .left-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.csr-page .bottom-desc {
  margin-bottom: 5.6rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .csr-page .bottom-desc {
    margin-bottom: 3.6rem;
  }
}

.csr-page .btn-news {
  margin: 0 auto;
}

.rd-page .rd-section {
  padding: 10.8rem 0;
}

@media only screen and (max-width: 768px) {
  .rd-page .rd-section {
    padding: 5.2rem 0;
  }
}

.rd-page .top-title {
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .rd-page .top-title {
    margin-bottom: 4.0rem;
  }
}

.rd-page .top-desc {
  margin-bottom: 6.0rem;
  max-width: 79.4rem;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .rd-page .top-desc {
    margin-bottom: 3.2rem;
  }
}

.rd-page .part-title {
  color: #999;
  margin-bottom: 5.2rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .rd-page .part-title {
    margin-bottom: 3.2rem;
  }
}

.rd-page .block-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5.6rem;
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .rd-page .block-list {
    row-gap: 4.0rem;
    margin-bottom: 3.6rem;
  }
}

.rd-page .block-list .block-item .title {
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .rd-page .block-list .block-item .title {
    margin-bottom: 3.2rem;
  }
}

.rd-page .block-list .block-item .left-right {
  -webkit-column-gap: 10%;
  -moz-column-gap: 10%;
  column-gap: 10%;
  row-gap: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .rd-page .block-list .block-item .left-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.rd-page .block-list .block-item .left-right .left-part {
  width: 54%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .rd-page .block-list .block-item .left-right .left-part {
    width: 100%;
  }
}

.rd-page .block-list .block-item .left-right .block-title {
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

.rd-page .block-list .block-item .left-right .block-img {
  position: relative;
  width: 100%;
}

.rd-page .block-list .block-item .left-right .desc {
  line-height: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .rd-page .block-list .block-item .left-right .desc {
    line-height: 2.6rem;
  }
}

.rd-page .block-list .block-item .left-right .block-table {
  margin-top: 2.0rem;
  width: 100%;
}

.rd-page .block-list .block-item .left-right .block-table td {
  padding: 0.6rem 1.8rem;
}

.rd-page .bottom-desc {
  margin-bottom: 5.6rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .rd-page .bottom-desc {
    margin-bottom: 3.6rem;
  }
}

.rd-page .btn-news {
  margin: 0 auto;
}

.rd-report-page .rd-section .categories {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2.4rem;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
  row-gap: 2.2rem;
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .rd-section .categories {
    -webkit-column-gap: 0.8rem;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
    row-gap: 0.8rem;
    margin-bottom: 4.4rem;
  }
}

.rd-report-page .rd-section .categories .btn-cat {
  width: fit-content;
  height: 4.0rem;
  border: unset;
  background: #f2f2f3;
  color: #003344;
  padding: 0.2rem 2.4rem;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .rd-section .categories .btn-cat {
    height: 3.2rem;
    padding: 0.2rem 2rem;
  }

  .rd-report-page .rd-section .categories .btn-cat span {
    font-size: 1.2rem;
  }
}

.rd-report-page .rd-section .categories .btn-cat:before {
  background: #e6e6e6;
}

.rd-report-page .rd-section .categories .btn-cat:hover {
  opacity: 1;
}

.rd-report-page .rd-section .categories .btn-cat:after {
  border: unset;
}

.rd-report-page .rd-section .categories .btn-cat.active {
  background: #003344;
  color: #FFF;
  pointer-events: none;
}

.rd-report-page .rd-list {
  display: block;
  position: relative;
}

.rd-report-page .rd-list .rd-item {
  display: block;
  position: relative;
  width: 100%;
}

.rd-report-page .rd-list .rd-item:not(:last-child) {
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .rd-list .rd-item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}

.rd-report-page .rd-list .rd-item .left-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.0rem;
  -moz-column-gap: 5.0rem;
  column-gap: 5.0rem;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .rd-list .rd-item .left-right {
    row-gap: 1.6rem;
  }
}

.rd-report-page .rd-list .rd-item .thumb-wrapper {
  position: relative;
  width: 18.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .rd-list .rd-item .thumb-wrapper {
    width: 100%;
  }
}

.rd-report-page .rd-list .rd-item .date-cats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  margin-bottom: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .rd-list .rd-item .date-cats {
    -webkit-column-gap: 1.6rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }
}

.rd-report-page .rd-list .rd-item .date-cats .date {
  line-height: 1.4;
}

.rd-report-page .rd-list .rd-item .date-cats .cats {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  column-gap: 0.7rem;
}

.rd-report-page .rd-list .rd-item .date-cats .cats .cat {
  height: 2.2rem;
  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;
  line-height: 100%;
  border-radius: 0.4rem;
  color: #FFF;
  background: #003344;
  padding: 0.1rem 1.2rem;
}

.rd-report-page .rd-list .rd-item .item-title {
  margin-bottom: 1.4rem;
  line-height: 1.4;
}

.rd-report-page .rd-list .rd-item .exterior-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
}

.rd-report-page .prev-contact {
  padding-bottom: 9rem;
}

@media only screen and (max-width: 768px) {
  .rd-report-page .prev-contact {
    padding-bottom: 5rem;
  }
}

.onestop-page .container {
  max-width: 120rem;
}

.onestop-page .onestop-section {
  padding: 10.8rem 0;
}

@media only screen and (max-width: 768px) {
  .onestop-page .onestop-section {
    padding: 5.2rem 0;
  }
}

.onestop-page .top-title {
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .onestop-page .top-title {
    margin-bottom: 4.0rem;
  }
}

.onestop-page .top-desc {
  margin-bottom: 6.0rem;
  max-width: 79.4rem;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .onestop-page .top-desc {
    margin-bottom: 3.2rem;
  }
}

.onestop-page .part-title {
  color: #999;
  margin-bottom: 5.2rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .onestop-page .part-title {
    margin-bottom: 3.2rem;
  }
}

.onestop-page .block-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5.6rem;
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .onestop-page .block-list {
    row-gap: 4.0rem;
    margin-bottom: 3.6rem;
  }
}

.onestop-page .block-list .block-item .title {
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .onestop-page .block-list .block-item .title {
    margin-bottom: 3.2rem;
  }
}

.onestop-page .block-list .block-item .left-right {
  -webkit-column-gap: 10%;
  -moz-column-gap: 10%;
  column-gap: 10%;
  row-gap: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .onestop-page .block-list .block-item .left-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.onestop-page .block-list .block-item .left-right .left-part {
  width: 54%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .onestop-page .block-list .block-item .left-right .left-part {
    width: 100%;
  }
}

.onestop-page .block-list .block-item .block-title {
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

.onestop-page .block-list .block-item .block-img {
  position: relative;
  width: 100%;
}

.onestop-page .block-list .block-item .desc {
  line-height: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .onestop-page .block-list .block-item .desc {
    line-height: 2.6rem;
  }
}

.onestop-page .block-list .block-item .block-table {
  margin-top: 2.0rem;
  width: 100%;
}

.onestop-page .block-list .block-item .block-table th {
  background-color: #333;
  color: #FFF;
}

.onestop-page .block-list .block-item .block-table th,
.onestop-page .block-list .block-item .block-table td {
  padding: 1.4rem 1.8rem;
}

@media only screen and (max-width: 768px) {

  .onestop-page .block-list .block-item .block-table th,
  .onestop-page .block-list .block-item .block-table td {
    padding: 1.0rem 0.8rem;
  }
}

.onestop-page .bottom-desc {
  display: block;
  position: relative;
  width: fit-content;
  text-align: right;
  line-height: 1.4;
  margin-bottom: 4.8rem;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .onestop-page .bottom-desc {
    margin-bottom: 2.8rem;
    margin-right: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .onestop-page .bottom-desc {
    margin-bottom: 3.6rem;
  }
}

.onestop-page .btn-news {
  margin: 0 auto;
}

.onestop-page .benefits {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 0.1rem solid #DDDDDD;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

@media only screen and (max-width: 768px) {
  .onestop-page .benefits {
    padding-top: 2.4rem;
    margin-top: 2.4rem;
    row-gap: 1.4rem;
  }
}

.onestop-page .benefits .benefit {
  display: block;
  position: relative;
  width: 100%;
}

.onestop-page .benefits .benefit .benefit-title {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.onestop-page .benefits .benefit .benefit-text {
  font-weight: 400;
}


.onestop-page .achievement-block .block-title {
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #ddd;
}

@media only screen and (max-width: 768px) {
  .onestop-page .achievement-block .block-title {
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem solid #ddd;
  }
}

.onestop-page .achievement-table tr td {
  padding: 1.8rem 1.8rem !important;
  line-height: 1.8 !important;
  align-content: baseline;
}

@media only screen and (max-width: 768px) {
  .onestop-page .achievement-table tr td {
    padding: 1.4rem 0.4rem !important;
    line-height: 1.6 !important;
    font-size: 1.4rem;
  }
}

.oversea-page .container {
  max-width: 120rem;
}

.oversea-page .oversea-section {
  padding: 10.8rem 0;
}

@media only screen and (max-width: 768px) {
  .oversea-page .oversea-section {
    padding: 5.2rem 0;
  }
}

.oversea-page .top-title {
  margin-bottom: 5.6rem;
  z-index: 1;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .oversea-page .top-title {
    margin-bottom: 4.0rem;
  }
}

.oversea-page .top-desc {
  margin-bottom: 6.0rem;
  max-width: 79.4rem;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .oversea-page .top-desc {
    margin-bottom: 3.2rem;
  }
}

.oversea-page .world-map {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  margin-top: -30.8rem;
  margin-bottom: -10rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .world-map {
    margin-top: -5.8rem;
    margin-bottom: -2rem;
  }
}

.oversea-page .table-wrapper {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 8rem;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .oversea-page .table-wrapper {
    margin-bottom: 4.8rem;
  }
}

.oversea-page .table-wrapper .custom-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .oversea-page .table-wrapper .custom-table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.oversea-page .table-wrapper .custom-table .tb-head {
  width: 22%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #eee;
  -ms-flex-line-pack: center;
  align-content: center;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 768px) {
  .oversea-page .table-wrapper .custom-table .tb-head {
    width: 100%;
    border-bottom: unset;
    border-right: 1px solid #ddd;
    text-align: center;
  }
}

.oversea-page .table-wrapper .custom-table table {
  width: 100%;
}

.oversea-page .table-wrapper .custom-table .tb-head,
.oversea-page .table-wrapper .custom-table td {
  padding: 1.6rem 3.2rem;
}

@media only screen and (max-width: 768px) {

  .oversea-page .table-wrapper .custom-table .tb-head,
  .oversea-page .table-wrapper .custom-table td {
    padding: 1.2rem;
  }
}

.oversea-page .table-wrapper .custom-table td {
  background-color: #FFF;
}

.oversea-page .part-title {
  color: #999;
  margin-bottom: 5.2rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .oversea-page .part-title {
    margin-bottom: 3.2rem;
  }
}

.oversea-page .block-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 9.6rem;
  margin-bottom: 10.4rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list {
    row-gap: 4.0rem;
    margin-bottom: 3.6rem;
  }
}

.oversea-page .block-list .block-item .title {
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list .block-item .title {
    margin-bottom: 3.2rem;
  }
}

.oversea-page .block-list .block-item .left-right {
  -webkit-column-gap: 10%;
  -moz-column-gap: 10%;
  column-gap: 10%;
  row-gap: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list .block-item .left-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.oversea-page .block-list .block-item .left-right .left-part {
  width: 54%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list .block-item .left-right .left-part {
    width: 100%;
  }
}

.oversea-page .block-list .block-item .left-right .with-childimg {
  position: relative;
}

.oversea-page .block-list .block-item .left-right .with-childimg .child-img {
  display: block;
  position: absolute;
  width: 20rem;
  bottom: -4.6rem;
  left: -2.4rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list .block-item .left-right .with-childimg .child-img {
    width: 15.6rem;
    left: -1.6rem;
    bottom: -3.2rem;
  }
}

.oversea-page .block-list .block-item .left-right .block-title {
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

.oversea-page .block-list .block-item .left-right .block-img {
  position: relative;
  width: 100%;
}

.oversea-page .block-list .block-item .left-right .desc {
  line-height: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list .block-item .left-right .desc {
    line-height: 2.6rem;
  }
}

.oversea-page .block-list .block-item .left-right .block-table {
  margin-top: 2.0rem;
  width: 100%;
}

.oversea-page .block-list .block-item .left-right .block-table td {
  padding: 0.6rem 1.8rem;
}

.oversea-page .block-list .block-item .href-link {
  margin-top: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .oversea-page .block-list .block-item .href-link {
    margin-top: 0;
  }
}

.oversea-page .auth-container {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 8.6rem;
}

.oversea-page .auth-container .left-right {
  -webkit-column-gap: 8%;
  -moz-column-gap: 8%;
  column-gap: 8%;
}

.oversea-page .auth-container .block-desc {
  line-height: 1.7;
}

.oversea-page .auth-container .right-part {
  width: 15%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .oversea-page .auth-container .right-part {
    width: 100%;
  }
}

.oversea-page .auth-container .right-part img {
  display: block;
  position: relative;
  width: 100%;
}

.oversea-page .bottom-img {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 5.6rem;
}

.oversea-page .bottom-desc {
  margin-bottom: 5.6rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .oversea-page .bottom-desc {
    margin-bottom: 3.6rem;
  }
}

.oversea-page .btn-news {
  margin: 0 auto;
}

.service-page {
  display: block;
  position: relative;
}

.service-page .top-label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 3.2rem auto;
}

@media only screen and (max-width: 768px) {
  .service-page .top-label {
    margin: 0 auto 2.8rem auto;
    font-size: 1.5rem;
  }
}

.service-page .service-section {
  padding: 10.8rem 0;
  background: #F4F4F5;
}

@media only screen and (max-width: 768px) {
  .service-page .service-section {
    padding: 6.4rem 0;
  }
}

.service-page .service-list {
  max-width: 94.2rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0px, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  -webkit-column-gap: 6.2rem;
  -moz-column-gap: 6.2rem;
  column-gap: 6.2rem;
  row-gap: 6.0rem;
}

@media only screen and (max-width: 768px) {
  .service-page .service-list {
    -ms-grid-columns: (minmax(0px, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    row-gap: 4.8rem;
  }
}

.service-page .service-list .item {
  width: 100%;
  position: relative;
  display: block;
  border-radius: 0.7rem;
  background: #FFF;
  padding: 3.4rem 4.0rem 6.4rem 4.0rem;
}

.service-page .service-list .item .title {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 3.4rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.service-page .service-list .item .title:before {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background: #EEEEEE;
  border-radius: 90rem;
}

.service-page .service-list .item .title:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 18.3rem;
  height: 0.6rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #003344;
  border-radius: 90rem;
  z-index: 1;
}

.service-page .service-list .item:after {
  display: block;
  position: relative;
  content: '';
  bottom: -2.2rem;
  left: calc(50% - 0.8rem);
  width: 1.6rem;
  height: auto;
  aspect-ratio: 16 / 15;
  background-image: url(../img/right-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-page .service-list .item:hover:after {
  -webkit-animation: bounce-right 0.8s infinite;
  animation: bounce-right 0.8s infinite;
}

.service-common-section {
  position: relative;
  padding: 15.8rem 0 10.8rem 0;
}

@media only screen and (max-width: 768px) {
  .service-common-section {
    padding: 9.6rem 0 7.2rem 0;
  }
}

.service-common-section:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 25rem;
  background: #F4F4F5;
}

.service-common-section .top-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 3.8rem;
  margin: -6.6rem auto 0 auto;
}

@media only screen and (max-width: 768px) {
  .service-common-section .top-title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding-bottom: 3.2rem;
  }
}

.service-common-section .btn-service {
  margin-left: auto;
  margin-top: 6.0rem;
}

.service-common-section .products-list {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0px, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  -webkit-column-gap: 1.6rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  row-gap: 5.2rem;
}

@media only screen and (max-width: 768px) {
  .service-common-section .products-list {
    -ms-grid-columns: (minmax(0px, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    row-gap: 4.0rem;
  }
}

.service-common-section .products-list .item {
  position: relative;
  width: 100%;
}

.service-common-section .products-list .item .thumb-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 223 / 150;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .service-common-section .products-list .item .thumb-img {
    border-radius: 0.4rem;
  }
}

.service-common-section .products-list .item .title {
  margin-bottom: 0.8rem;
}

.product-section .sidebar-content .content-title {
  width: 100%;
  height: 5.0rem;
  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;
  padding: 0.8rem;
  background: #333333;
  color: #FFF;
}

.product-section .sidebar-content .part-title-list {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 7.6rem;
  -moz-column-gap: 7.6rem;
  column-gap: 7.6rem;
  row-gap: 3.2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 4.8rem 6.4rem;
  background: #FFF;
  color: #003344;
  margin-bottom: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .part-title-list {
    padding: 2.4rem 2rem;
    -webkit-column-gap: 4.4rem;
    -moz-column-gap: 4.4rem;
    column-gap: 4.4rem;
    row-gap: 1.6rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.product-section .sidebar-content .product-list .item {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.product-section .sidebar-content .product-list .item:not(:last-child) {
  padding-bottom: 4.8rem;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 5.2rem;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item:not(:last-child) {
    padding-bottom: 2.8rem;
  }
}

.product-section .sidebar-content .product-list .item .item-title {
  margin-bottom: 2.4rem;
}

.product-section .sidebar-content .product-list .item .left-right {
  -webkit-column-gap: 5.2rem;
  -moz-column-gap: 5.2rem;
  column-gap: 5.2rem;
}

.product-section .sidebar-content .product-list .item .left-right .right-part {
  width: 48%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: fit-content;
}

.product-section .sidebar-content .product-list .item .left-right .right-part .item-img {
  width: 100%;
}

.product-section .sidebar-content .product-list .item .left-right .left-part .desc {
  line-height: 2.9rem;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item .left-right .left-part .desc {
    line-height: 2.5rem;
    margin-bottom: 2.0rem;
  }
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item .left-right .left-part .item-img {
    width: 100%;
    padding: 0 2.4rem;
    margin-bottom: 2.0rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item .left-right .left-part .href-link {
    margin: 0 2.4rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.product-section .sidebar-content .product-list .item .detail-title {
  margin: 7.8rem 0 4.4rem 0;
  border-bottom: 1px solid #eeee;
  padding-bottom: 2.0rem;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item .detail-title {
    margin: 4.8rem 0 2.4rem 0;
    padding-bottom: 0.8rem;
  }
}

.product-section .sidebar-content .product-list .item .item-list {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0px, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  -webkit-column-gap: 2.0rem;
  -moz-column-gap: 2.0rem;
  column-gap: 2.0rem;
  row-gap: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item .item-list {
    -ms-grid-columns: (minmax(0px, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    -webkit-column-gap: 1.0rem;
    -moz-column-gap: 1.0rem;
    column-gap: 1.0rem;
    row-gap: 2.4rem;
  }
}

.product-section .sidebar-content .product-list .item .item-list .sub-item {
  position: relative;
  width: 100%;
}

.product-section .sidebar-content .product-list .item .item-list .sub-item .thumb-img {
  position: relative;
  width: 100%;
  margin-bottom: 1.0rem;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .product-list .item .item-list .sub-item .sub-item-title {
    font-size: 1.2rem;
  }
}

.product-section .sidebar-content .product-list .item .title-href {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.8rem;
  -moz-column-gap: 4.8rem;
  column-gap: 4.8rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 6.4rem 0 2.4rem 0;
}

@media only screen and (max-width: 768px) {
  .product-section .sidebar-content .btn-service {
    display: none;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .top-title {
  padding-bottom: 2.5rem;
  margin: -6.0rem auto 0 0;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container {
  display: block;
  position: relative;
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container {
    margin-bottom: 4.8rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .top-view {
  position: relative;
  -webkit-column-gap: 4.4rem;
  -moz-column-gap: 4.4rem;
  column-gap: 4.4rem;
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .top-view {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 2.0rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .top-view .desc {
  position: relative;
  width: 100%;
  line-height: 2.8rem;
  margin: 0;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .top-view .thumb-wrapper {
  display: block;
  position: relative;
  width: 46%;
  height: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .top-view .thumb-wrapper {
    width: 100%;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .top-view .main-img {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 0.6rem;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .part-title {
  position: relative;
  display: block;
  padding-bottom: 2.2rem;
  margin-top: 6.4rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid #D9D9D9;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .part-title {
    padding-bottom: 1.2rem;
    margin-top: 5.2rem;
    margin-bottom: 2rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right {
  position: relative;
  -webkit-column-gap: 4.0rem;
  -moz-column-gap: 4.0rem;
  column-gap: 4.0rem;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .right-part {
  position: relative;
  width: 32%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .right-part {
    width: 100%;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .right-part.horizontal-width {
  width: 48%;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .right-part.horizontal-width {
    width: 100%;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .right-part img {
  position: relative;
  width: 100%;
  border-radius: 0.6rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .right-part img {
    border-radius: 0.4rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right .left-part {
  position: relative;
  width: 100%;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container table {
  width: 100%;
  border: unset;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container th,
.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container td {
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 1.6rem 1.2rem;
}

@media only screen and (max-width: 768px) {

  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container th,
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container td {
    font-size: 1.2rem;
    padding: 1.2rem 0.6rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container th {
  font-weight: 700;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container td {
  font-weight: 500;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container p {
  margin: 2.2rem 0;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container p {
    margin: 2.0rem 0;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right {
  margin: 2.2rem 0;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .left-right {
    margin: 2.0rem 0;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 {
  position: relative;
  width: 100%;
  line-height: 2.8rem;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 th {
  font-weight: 700;
  padding: 0.8rem 3.2rem;
  text-align: center;
  background: #F3F3F4;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 th {
    padding: 0.8rem 0.4rem;
    font-size: 1.2rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 td {
  padding: 2rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 td {
    padding: 1.2rem 0.4rem;
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 th,
.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type1 td {
  border-color: #EEEEEE;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .common-description {
  display: block;
  position: relative;
  width: 100%;
  line-height: 2.8rem;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type2 {
  position: relative;
  width: 100%;
  border: unset;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type2 th,
.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type2 td {
  border: unset;
  padding: 0.5rem 0.4rem;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type3 {
  position: relative;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type3 td {
  border-color: #EEEEEE;
  padding: 1.4rem 2.6rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type3 td {
    padding: 1.2rem 0.4rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0px, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  border-left: 0.1rem solid #D9D9D9;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list {
    -ms-grid-columns: (minmax(0px, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper {
  position: relative;
  width: 100%;
  padding: 1.2rem;
  border-right: 0.1rem solid #D9D9D9;
  border-bottom: 0.1rem solid #D9D9D9;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper {
    padding: 0.6rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper:nth-child(1),
.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper:nth-child(2),
.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper:nth-child(3) {
  border-top: 0.1rem solid #D9D9D9;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper:nth-child(3) {
    border-top: unset;
  }
}



.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper .thumb-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 223 / 150;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 0.8rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper .thumb-img {
    border-radius: 0.4rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper .item-title {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .item-list .item-wrapper .item-title {
    font-size: 1.2rem;
    line-height: 2.0rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 {
  position: relative;
  width: 100%;
  line-height: 2.8rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 {
    line-height: 2.0rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 th {
  font-weight: 700;
  padding: 1.3rem;
  text-align: center;
  background: #F3F3F4;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 th {
    padding: 1.2rem 0.4rem;
    font-size: 1.2rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 td {
  padding: 1.3rem 1.6rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 td {
    padding: 1.2rem 0.4rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 th,
.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .table-type4 td {
  border-color: #EEEEEE;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .full-img {
  position: relative;
  width: 100%;
  border-radius: 0.6rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .content-container .full-img {
    border-radius: 0.4rem;
  }
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .bottom-desc {
  text-align: right;
  line-height: 1.4;
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .single-products-page .service-common-section .with-sidebar .sidebar-content .bottom-desc {
    margin-bottom: 2.8rem;
    text-align: center;
  }
}

.prev-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .prev-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.6rem;
  }
}

.prev-contact .btn-prev {
  background-color: #F3F3F4;
}

.prev-contact .btn-prev span {
  color: #333;
}

.single-products-page .service-common-section .with-sidebar .sidebar-content .btn-service {
  margin-top: 6.0rem;
}

@media only screen and (max-width: 768px) {

  .prev-contact .btn-prev,
  .prev-contact .btn-contact {
    width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 768px) {

  .prev-contact .btn-prev span,
  .prev-contact .btn-contact span {
    text-align: center;
    line-height: 1.4;
  }
}

.archive-products-page .archive-products-section:before {
  display: none;
}

.archive-products-page .archive-products-section .top-title {
  padding-bottom: 7.6rem;
}

.recruit-page article.main {
  width: 100%;
  background-color: #F6E821;
}

.recruit-page .main section {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.recruit-page .main section>div {
  line-height: 2.9;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 22em;
  font-size: 16px;
}

.recruit-page .main section>div>p {
  margin-top: 40px;
}

.recruit-page .em02 {
  letter-spacing: 0.2em;
}

.recruit-page .main section>div>h2 {
  margin-top: 40px;
  font-size: 16px;
  font-weight: normal;
}

.recruit-page article.content {
  background-color: #E9E7E7;
  width: 100%;
  padding-bottom: 80px;
}

.recruit-page .content>section {
  width: 1000px;
  margin: 0 auto;
}

.recruit-page .content>section>h3 {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.recruit-page .content>section p {
  padding: 35px 58px 35px 58px;
  margin-top: 0px;
}

.recruit-page .dekoboko-01 {
  background-color: #E9E7E7;
  width: 858px;
  margin: 0px auto 0px auto;
  line-height: 2.5;
  font-size: 16px;
}

.recruit-page .dekoboko-02 {
  background-color: #E9E7E7;
  width: 858px;
  margin: 80px auto 0px auto;
  line-height: 2.5;
  font-size: 16px;
}

.recruit-page .dekoboko-03 {
  background-color: #E9E7E7;
  width: 858px;
  margin: 80px auto 0px auto;
  line-height: 2.5;
  font-size: 16px;
}

.recruit-page .dekoboko-04 {
  background-color: #E9E7E7;
  width: 858px;
  margin: 80px auto 0px auto;
  line-height: 2.5;
  font-size: 16px;
}

.recruit-page .dekoboko-01 p {
  background-color: #F64169;
}

.recruit-page .dekoboko-02 p {
  background-color: #29ca29;
}

.recruit-page .dekoboko-03 p {
  background-color: #43C6C2;
}

.recruit-page .dekoboko-04 p {
  background-color: #9549D9;
}

.recruit-page article.job {
  width: 100%;
  background-color: #F6E821;
}

.recruit-page article.job>section {
  width: 858px;
  margin: 0 auto;
}

.recruit-page article.job>section>h3 {
  padding-top: 60px;
  padding-bottom: 30px;
  text-align: center;
}

.recruit-page article.job>section p {
  text-align: center;
  font-size: 18px;
  padding-top: 0px;
}

.recruit-page .job01 {
  margin-top: 50px;
}

.recruit-page .job01 p {
  float: left;
  width: 255px;
}

.recruit-page .job01 p:nth-child(2) {
  margin: 0px 46px;
}

.recruit-page .job02 {
  margin-top: 50px;
}

.recruit-page .job02 p:nth-child(1) {
  float: left;
  width: 255px;
  margin: 0 0px 0 16%;
}

.recruit-page .job02 p:nth-child(2) {
  float: right;
  width: 255px;
  margin: 0px 16% 0 0px;
}

.recruit-page footer {
  width: 1000px;
  min-height: 313px;
  background-size: cover;
  background-position: center;
  background-image: url(../img/f.png);
  background-repeat: no-repeat;
  margin: 40px auto 0 auto;
}

.recruit-page footer p {
  padding-top: 270px;
  text-align: center;
}

.recruit-page .effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
  transform: translate(0, 45px);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.recruit-page .effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.recruit-page .pc {
  display: initial !important;
}

.recruit-page .sp {
  display: none;
}

@media (min-width: 701px) and (max-width: 1000px) {
  .recruit-page .main section {
    width: 100%;
  }

  .recruit-page .main section>div {
    line-height: 2.2;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 33vw;
    font-size: 16px;
  }

  .recruit-page .content>section p {
    padding: 35px 58px 30px 58px;
    margin-top: -1px;
  }

  .recruit-page .dekoboko-01 {
    background-color: #E9E7E7;
    width: 90%;
    margin: 0px auto 0px auto;
    line-height: 2.2;
    font-size: 16px;
  }

  .recruit-page .dekoboko-02 {
    background-color: #E9E7E7;
    width: 90%;
    margin: 80px auto 0px auto;
    line-height: 2.2;
    font-size: 16px;
  }

  .recruit-page .dekoboko-03 {
    background-color: #E9E7E7;
    width: 90%;
    margin: 80px auto 0px auto;
    line-height: 2.2;
    font-size: 16px;
  }

  .recruit-page .dekoboko-04 {
    background-color: #E9E7E7;
    width: 90%;
    margin: 80px auto 0px auto;
    line-height: 2.2;
    font-size: 16px;
  }

  .recruit-page .job01 p {
    float: left;
    width: 31%;
  }

  .recruit-page .job01 p:nth-child(2) {
    margin: 0px 2vw;
  }

  .recruit-page .job02 {
    margin-top: 50px;
  }

  .recruit-page .job02 p:nth-child(1) {
    float: left;
    width: 31%;
    margin: 0 0px 0 17vw;
  }

  .recruit-page .job02 p:nth-child(2) {
    float: right;
    width: 31%;
    margin: 0px 17vw 0 0px;
  }

  .recruit-page article.job>section {
    width: 100%;
    margin: 0 auto;
  }

  .recruit-page footer {
    width: 100%;
    min-height: 313px;
    background-size: cover;
    background-position: center;
    background-image: url(../img/f.png);
    background-repeat: no-repeat;
    margin: 40px auto 0 auto;
  }

  .recruit-page .content>section {
    width: 100%;
    margin: 0 auto;
  }

  .recruit-page .dekoboko-01 p {
    background-color: #F64169;
  }

  .recruit-page .dekoboko-02 p {
    background-color: #29ca29;
  }

  .recruit-page .dekoboko-03 p {
    background-color: #43C6C2;
  }

  .recruit-page .dekoboko-04 p {
    background-color: #9549D9;
  }
}

@media (min-width: 940px) and (max-width: 1000px) {
  .recruit-page .main section>div>p {
    margin-top: 50px;
  }

  .recruit-page .main section>div {
    line-height: 2.7 !important;
    font-size: 16px;
  }
}

@media (min-width: 910px) and (max-width: 939px) {
  .recruit-page .main section>div>p {
    margin-top: 55px;
  }

  .recruit-page .main section>div {
    line-height: 2.5 !important;
    font-size: 16px;
  }
}

@media (min-width: 870px) and (max-width: 909px) {
  .recruit-page .main section>div>p {
    margin-top: 47px;
  }

  .recruit-page .main section>div {
    line-height: 2.5 !important;
    font-size: 16px;
  }
}

@media (min-width: 840px) and (max-width: 869px) {
  .recruit-page .main section>div>p {
    margin-top: 40px;
  }

  .recruit-page .main section>div {
    line-height: 2.5 !important;
    font-size: 16px;
  }
}

@media (min-width: 780px) and (max-width: 839px) {
  .recruit-page .main section>div>p {
    margin-top: 30px;
  }

  .recruit-page .main section>div {
    line-height: 2.5 !important;
    font-size: 16px;
  }
}

@media (min-width: 741px) and (max-width: 781px) {
  .recruit-page .main section>div>p {
    margin-top: 19px;
  }

  .recruit-page .main section>div {
    line-height: 2.5 !important;
    font-size: 16px;
  }
}

@media (min-width: 720px) and (max-width: 740px) {
  .recruit-page .main section>div>p {
    margin-top: 27px;
  }
}

@media (min-width: 701px) and (max-width: 721px) {
  .recruit-page .main section>div>p {
    margin-top: 17px;
  }
}

@media (min-width: 0px) and (max-width: 635px) {
  .recruit-page .main section>div>p {
    margin-top: 9.7vw;
    padding-left: 14.5%;
    padding-right: 11.5%;
    text-align: left;
    font-size: 4.3vw;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .recruit-page .em02 {
    letter-spacing: 0em;
  }

  .recruit-page .main section {
    width: 100%;
  }

  .recruit-page .main section>div {
    line-height: 8.5vw;
    top: 15%;
    font-size: 4.3vw;
  }

  .recruit-page .main section>div>h2 {
    margin-top: 9.7vw;
    font-weight: normal;
    padding-left: 14.5%;
    padding-right: 11.5%;
    text-align: left;
    font-size: 4.3vw;
  }

  .recruit-page .content>section {
    width: 100%;
  }

  .recruit-page .content>section>h3 {
    padding-top: 5vw;
    padding-bottom: 0vw;
    text-align: center;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .recruit-page .content>section p {
    padding: 3vw 3vw 3vw 4.2vw;
    width: 100%;
  }

  .recruit-page article.content {
    padding-bottom: 11vw;
  }

  .recruit-page .dekoboko-01 {
    background-color: #E9E7E7;
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    line-height: 8.5vw;
    font-size: 4.3vw;
    margin-top: 9.7vw;
  }
}

@media (min-width: 0px) and (max-width: 700px) and (min-width: 412px) and (max-width: 702px) {
  .recruit-page .main section>div>p {
    margin-top: 9.7vw;
    padding-left: 14.5%;
    padding-right: 16.5%;
    text-align: left;
    font-size: 3.6vw;
  }

  .recruit-page .main section>div>h2 {
    font-weight: normal;
    padding-left: 14.5%;
    padding-right: 16.5%;
    text-align: left;
    font-size: 3.6vw;
  }
}

@media (min-width: 0px) and (max-width: 700px) and (min-width: 0px) and (max-width: 411px) {
  .recruit-page .main section>div>p {
    margin-top: 9.7vw;
    padding-left: 14.5%;
    padding-right: 11.5%;
    text-align: left;
    font-size: 4.3vw;
  }

  .recruit-page .main section>div>h2 {
    margin-top: 9.7vw;
    font-weight: normal;
    padding-left: 14.5%;
    padding-right: 11.5%;
    text-align: left;
    font-size: 4.3vw;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .recruit-page .dekoboko-02 {
    background-color: #E9E7E7;
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    line-height: 8.5vw;
    font-size: 4.3vw;
    margin-top: 9.7vw;
  }

  .recruit-page .dekoboko-03 {
    background-color: #E9E7E7;
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    line-height: 8.5vw;
    font-size: 4.3vw;
    margin-top: 9.7vw;
  }

  .recruit-page .dekoboko-04 {
    background-color: #E9E7E7;
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    line-height: 8.5vw;
    font-size: 4.3vw;
    margin-top: 9.7vw;
  }

  .recruit-page .dekoboko-01 p {
    background-color: #F64169;
  }

  .recruit-page .dekoboko-02 p {
    background-color: #29ca29;
  }

  .recruit-page .dekoboko-03 p {
    background-color: #43C6C2;
  }

  .recruit-page .dekoboko-04 p {
    background-color: #9549D9;
  }

  .recruit-page article.job>section {
    width: 100%;
    margin: 0 auto;
  }

  .recruit-page article.job>section>h3 {
    padding-top: 6vw;
    padding-bottom: 3vw;
    text-align: center;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .recruit-page article.job>section p {
    font-size: 4.3vw;
    padding-top: 15px;
  }

  .recruit-page article.job>section p:nth-child(3) {
    padding-top: 12px;
  }

  .recruit-page .job01 {
    margin-top: 6vw;
  }

  .recruit-page .job01 p {
    float: none;
    width: 100%;
  }

  .recruit-page .job01 p:nth-child(2) {
    margin: 0px 0px;
  }

  .recruit-page .job02 p:nth-child(1) {
    float: none;
    width: 100%;
    margin: 0 0px 0 0%;
  }

  .recruit-page .job02 p:nth-child(2) {
    float: none;
    width: 100%;
    margin: 0px 0% 0 0px;
  }

  .recruit-page .job02 {
    margin-top: 0vw;
  }

  .recruit-page footer {
    width: 100%;
    min-height: 45vw;
    background-size: contain;
    background-position: bottom;
    background-image: url(../img/f-sp.png);
    background-repeat: no-repeat;
    margin: 0px auto 0 auto;
  }

  .recruit-page footer p {
    padding-top: 37vw;
    font-size: 3vw;
  }

  .recruit-page .sp {
    display: initial !important;
  }

  .recruit-page .pc {
    display: none !important;
  }
}

.recruit-page img {
  max-width: 100%;
}

.font-10-700 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.9rem;
}

.font-12-500 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.9rem;
}

.font-13-700 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 2.0rem;
}

.font-13-500 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.0rem;
}

.font-14-500 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
}

.font-14-700 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1rem;
}

.font-15-500 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.2rem;
}

@media only screen and (max-width: 768px) {
  .font-15-500 {
    font-size: 1.4rem;
  }
}

.font-15-700 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.2rem;
}

@media only screen and (max-width: 768px) {
  .font-15-700 {
    font-size: 1.4rem;
  }
}

.font-16-500 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2rem;
}

@media only screen and (max-width: 768px) {
  .font-16-500 {
    font-size: 1.4rem;
  }
}

.font-16-700 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .font-16-700 {
    font-size: 1.4rem;
  }
}

.font-17-500 {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .font-17-500 {
    font-size: 1.5rem;
  }
}

.font-17-700 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .font-17-700 {
    font-size: 1.5rem;
  }
}

.font-18-500 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.6rem;
}

@media only screen and (max-width: 768px) {
  .font-18-500 {
    font-size: 1.5rem;
  }
}

.font-18-700 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6rem;
}

.font-20-700 {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 2.6rem;
}

@media only screen and (max-width: 768px) {
  .font-20-700 {
    font-size: 1.6rem;
  }
}

.font-22-700 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.8rem;
}

@media only screen and (max-width: 768px) {
  .font-22-700 {
    font-size: 1.6rem;
  }
}

.font-29-700 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 3.5rem;
}

@media only screen and (max-width: 768px) {
  .font-29-700 {
    font-size: 2.1rem;
    line-height: 2.5rem;
  }
}

.font-26-700 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 3.7rem;
}

@media only screen and (max-width: 768px) {
  .font-26-700 {
    font-size: 2.0rem;
    line-height: 2.5rem;
  }
}

.font-28-700 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

@media only screen and (max-width: 768px) {
  .font-28-700 {
    font-size: 2.1rem;
    line-height: 2.5rem;
  }
}

.font-30-400 {
  font-size: 3.0rem;
  font-weight: 400;
  line-height: 3.6rem;
}

@media only screen and (max-width: 768px) {
  .font-30-400 {
    font-size: 2.0rem;
    line-height: 2.2rem;
  }
}

.font-30-700 {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .font-30-700 {
    font-size: 2.0rem;
    line-height: 2.2rem;
  }
}

.font-31-700 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 4.2rem;
}

@media only screen and (max-width: 768px) {
  .font-31-700 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}

.font-40-700 {
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .font-40-700 {
    font-size: 2.8rem;
    line-height: 3.9rem;
  }
}

.font-en {
  font-family: "Helvetica Neue";
}

.left-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.6rem;
  -moz-column-gap: 3.6rem;
  column-gap: 3.6rem;
}

@media only screen and (max-width: 768px) {
  .left-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3.2rem;
  }
}

.left-right.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .left-right.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.thumb-wrapper {
  display: block;
  position: relative;
}

.thumb-wrapper .thumb-img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.href-btn {
  padding: 1.2rem 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 5.5rem;
  border-radius: 90rem;
  color: #FFF;
  background: #003344;
}

.href-btn .arrow-icon {
  margin-top: 0.4rem;
  width: 1.8rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.href-btn .arrow-icon.reverse {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.section-title {
  position: relative;
  margin-bottom: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 2.6rem;
  }
}

.section-title .en-title {
  margin-bottom: 1.0rem;
  color: #878787;
}

@media only screen and (max-width: 768px) {
  .section-title .en-title {
    margin-bottom: 0.6rem;
  }
}

@media only screen and (max-width: 768px) {
  .section-title .jp-title {
    font-size: 2.0rem;
    line-height: 2.4rem;
  }
}

.section-text {
  position: absolute;
  font-family: "Helvetica Neue";
}

.section-text.service-text {
  top: -2.4rem;
  right: 0;
  width: 40.2rem;
}

@media only screen and (max-width: 768px) {
  .section-text.service-text {
    top: -5.2rem;
    width: 20rem;
  }
}

.section-text.labo-text {
  position: relative;
  width: 24.8rem;
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .section-text.labo-text {
    width: 12.4rem;
    margin-bottom: 2.0rem;
  }
}

.section-text.global-text {
  position: relative;
  width: 37.3rem;
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .section-text.global-text {
    width: 18rem;
    margin-bottom: 2.0rem;
  }
}

.section-text.news-text {
  position: relative;
  width: 53.3rem;
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .section-text.news-text {
    width: 26rem;
    margin-bottom: 2.8rem;
  }
}

.section-desc {
  line-height: 2.9rem;
  margin-bottom: 3.0rem;
}

@media only screen and (max-width: 768px) {
  .section-desc {
    line-height: 2.5rem;
    margin-bottom: 2.0rem;
  }
}

.sub-mainview {
  position: relative;
  width: 100%;
}

.sub-mainview .mainview-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 200;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .sub-mainview .mainview-img {
    aspect-ratio: 375 / 128;
  }
}

.sub-mainview .page-text {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFF;
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  .sub-mainview .page-text {
    width: 90%;
    max-width: 25.6rem;
    text-align: center;
  }
}

.news-list {
  position: relative;
  padding: 0 1.6rem;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .news-list {
    padding: 0;
  }
}

.news-list .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.8rem;
  -moz-column-gap: 2.8rem;
  column-gap: 2.8rem;
  width: 100%;
  position: relative;
  padding: 3.2rem 3.6rem;
  border-bottom: 1px solid #eeeeee;
}

@media only screen and (max-width: 768px) {
  .news-list .news-item {
    padding: 2.0rem 3.0rem 2.0rem 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.2rem;
  }
}

.news-list .news-item:first-child {
  border-top: 1px solid #eeeeee;
}

.news-list .news-item:after {
  position: absolute;
  content: '';
  right: 3.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.0rem;
  aspect-ratio: 12 / 8;
  background-image: url(../img/right-arrow-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .news-list .news-item:after {
    width: 1.6rem;
    right: 1.2rem;
  }
}

.news-list .news-item .date-cat {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.4rem;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news-list .news-item .date-cat .date {
  color: #003344;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 768px) {
  .news-list .news-item .date-cat .date {
    font-size: 1.2rem;
  }
}

.news-list .news-item .date-cat .cats-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4rem;
  -moz-column-gap: 0.4rem;
  column-gap: 0.4rem;
}

.news-list .news-item .date-cat .cat {
  height: 2.2rem;
  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;
  line-height: 100%;
  border-radius: 0.4rem;
  color: #FFF;
  background: #003344;
  white-space: nowrap;
  padding: 0.2rem 0.6rem;
}

@media only screen and (max-width: 768px) {
  .news-list .news-item .date-cat .cat {
    font-size: 1.1rem;
    height: 2.0rem;
  }
}

.news-list .news-item .date-cat .cat.SNS {
  background: #ff5a5a;
}

.other-info {
  padding-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .other-info {
    padding-bottom: 3.2rem;
  }
}

.other-info .label {
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 768px) {
  .other-info .label {
    margin-bottom: 3.2rem;
  }
}

.other-info .item-list {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0px, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0px, 1fr));
  -webkit-column-gap: 3.0rem;
  -moz-column-gap: 3.0rem;
  column-gap: 3.0rem;
}

@media only screen and (max-width: 768px) {
  .other-info .item-list {
    -ms-grid-columns: (minmax(0px, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    row-gap: 4.0rem;
  }
}

.other-info .item-list .item {
  position: relative;
  display: block;
  width: 100%;
}

.other-info .item-list .item.philosophy-item .thumb-wrapper {
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.other-info .item-list .item.philosophy-item .thumb-wrapper .thumb {
  width: 80%;
  height: auto;
}

.other-info .item-list .item .thumb-wrapper {
  position: relative;
  margin-bottom: 1.2rem;
  aspect-ratio: 440 / 289;
  border-radius: 0.7rem;
  overflow: hidden;
}

.other-info .item-list .item .thumb-wrapper .thumb {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

table,
th,
td {
  border: 1px solid #DDDDDD;
  border-collapse: collapse;
}

.pagination .pager__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.4rem;
  -moz-column-gap: 1.4rem;
  column-gap: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .pagination .pager__wrap {
    -webkit-column-gap: 0.8rem;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
  }
}

.pagination .pager__wrap .pager__bt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.pagination .pager__wrap .pager__bt .page-numbers {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 90%;
  background: #f2f2f3;
  color: #003344;
  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;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 768px) {
  .pagination .pager__wrap .pager__bt .page-numbers {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.pagination .pager__wrap .pager__bt .page-numbers.next,
.pagination .pager__wrap .pager__bt .page-numbers.prev {
  display: none;
}

.pagination .pager__wrap .pager__bt .page-numbers.current {
  background: #003344;
  color: #FFF;
}

.breadcrump {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
  -moz-column-gap: 1.2rem;
  column-gap: 1.2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  padding: 0.8rem 2.0rem;
}

.breadcrump i {
  padding-top: 0.1rem;
}

@media only screen and (max-width: 768px) {
  .breadcrump i {
    padding-top: 0.2rem;
  }
}

.with-sidebar {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.4rem;
  -moz-column-gap: 6.4rem;
  column-gap: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .with-sidebar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4.8rem;
  }
}

.with-sidebar .sidebar {
  position: relative;
  width: 24.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .with-sidebar .sidebar {
    width: 100%;
  }
}

.with-sidebar .sidebar .sidebar-title {
  position: relative;
  width: 100%;
  height: 6.0rem;
  padding: 1.2rem;
  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;
  background-color: #003344;
  color: #FFF;
}

.with-sidebar .sidebar .nav-menu {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.with-sidebar .sidebar .nav-menu .parent-item {
  position: relative;
  width: 100%;
  height: 5.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.2rem 3.2rem 1.2rem 2.0rem;
  background: #eeeeee;
  color: #003344;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.with-sidebar .sidebar .nav-menu .parent-item:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #999;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.with-sidebar .sidebar .nav-menu .parent-item:hover {
  opacity: 1;
}

.with-sidebar .sidebar .nav-menu .parent-item:hover:after {
  width: 100%;
}

.with-sidebar .sidebar .nav-menu .parent-item:last-child {
  border-bottom: 1px solid #ddd;
}

.with-sidebar .sidebar .nav-menu .parent-item.opened .btn-plus:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.with-sidebar .sidebar .nav-menu .parent-item .btn-plus {
  position: absolute;
  top: 50%;
  right: 1.0rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.0rem;
  height: 2.0rem;
  border-radius: 0.3rem;
  background: #003344;
  cursor: pointer;
}

.with-sidebar .sidebar .nav-menu .parent-item .btn-plus:after {
  position: absolute;
  content: '';
  top: calc(50% - 0.1rem);
  left: calc(50% - 0.5rem);
  width: 1.0rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  background: #fff;
}

.with-sidebar .sidebar .nav-menu .parent-item .btn-plus:before {
  position: absolute;
  content: '';
  top: calc(50% - 0.1rem);
  left: calc(50% - 0.5rem);
  width: 1.0rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  background: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.with-sidebar .sidebar .nav-menu .submenu {
  display: none;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

.with-sidebar .sidebar .nav-menu .submenu .child-item {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 3.2rem 1.2rem 4.0rem;
  background: #FFF;
  color: #003344;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.with-sidebar .sidebar .nav-menu .submenu .child-item i {
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  right: 1.0rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.with-sidebar .sidebar .nav-menu .submenu .child-item:hover {
  opacity: 1;
}

.with-sidebar .sidebar .nav-menu .submenu .child-item:hover i {
  right: 0.4rem;
}

.with-sidebar .sidebar .nav-menu .submenu .child-item:hover:after {
  width: 100%;
}

.with-sidebar .sidebar .nav-menu .submenu .child-item:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #999;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.with-sidebar .sidebar .sidebar-subitems {
  display: flex;
  flex-direction: column;
  row-gap: 3.6rem;
  position: relative;
  width: 100%;
  margin-top: 3.6rem;
}

.with-sidebar .sidebar .sidebar-subitems .sidebar-subitem {
  display: block;
  position: relative;
  width: 100%;
}

.with-sidebar .sidebar .sidebar-subitems .sidebar-subitem .subitem-link,
.with-sidebar .sidebar .sidebar-subitems .sidebar-subitem .subitem-img {
  display: block;
  position: relative;
  width: 100%;
}

.with-sidebar .sidebar-content {
  position: relative;
  width: 100%;
}

.href-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  color: #003344;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.href-link i {
  padding-top: 0.4rem;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.href-link:hover {
  opacity: 1;
}

.href-link:hover i {
  -webkit-transform: translateX(0.6rem);
  transform: translateX(0.6rem);
}

.href-link:hover:after {
  width: 100%;
}

.href-link:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #555;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.inner-link {
  display: block;
  position: relative;
  color: #003344;
  text-decoration: underline;
}

.scroll-anchor {
  scroll-margin-top: 14rem;
  scroll-margin-block-start: 14rem;
  scroll-margin-inline-start: 14rem;
  -ms-scroll-margin-top: 14rem;
  scroll-margin: 14rem;
}

.error-page {
  width: 100%;
  position: relative;
  display: block;
  padding-top: 12rem;
  padding-bottom: 12.6rem;
}

.error-page .p_breadcrumbs_section {
  position: relative;
  width: 100%;
  margin-bottom: 5.2rem;
}

.error-page .p_breadcrumbs_section ol {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
}

.error-page .btn_wrap {
  margin-top: 3.2rem;
}

.error-page .btn_wrap .btn {
  height: 4.4rem;
  padding: 0.8rem 3.2rem;
}

.footer {
  display: block;
  position: relative;
  width: 100%;
  padding: 9.8rem 0 0 0;
}

@media only screen and (max-width: 768px) {
  .footer {
    padding-top: 4.0rem;
  }
}

.footer .footer-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
  padding-bottom: 4.8rem;
  border-bottom: 1px solid #eee;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4.4rem;
  }
}

.footer .footer-body .logo-desc {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .logo-desc {
    display: block;
    margin: 0 auto;
  }
}

.footer .footer-body .logo-desc .logo {
  width: 18rem;
  margin-bottom: 2.8rem;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .logo-desc .logo {
    display: block;
    width: 14.4rem;
    margin: 0 auto 2.8rem auto;
  }
}

.footer .footer-body .logo-desc .desc {
  margin-bottom: 3.2rem;
}

.footer .footer-body .logo-desc .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.8rem;
  -moz-column-gap: 1.8rem;
  column-gap: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .logo-desc .social-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer .footer-body .logo-desc .social-links a {
  display: block;
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .logo-desc .social-links a {
    width: 4.0rem;
    height: 4.0rem;
  }
}

.footer .footer-body .logo-desc .social-links a img {
  position: relative;
  width: 100%;
  height: 100%;
}

.footer .footer-body .nav-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 5.8rem;
  -moz-column-gap: 5.8rem;
  column-gap: 5.8rem;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .nav-wrapper {
    -webkit-column-gap: 1.6rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
  }
}

.footer .footer-body .nav-wrapper .part1,
.footer .footer-body .nav-wrapper .part2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 5.8rem;
  -moz-column-gap: 5.8rem;
  column-gap: 5.8rem;
}

@media only screen and (max-width: 768px) {

  .footer .footer-body .nav-wrapper .part1,
  .footer .footer-body .nav-wrapper .part2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3.2rem;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
  }
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .nav-wrapper .part2 .nav-list:first-child {
    row-gap: 2.8rem;
  }
}

.footer .footer-body .nav-wrapper .nav-list {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.2rem;
}

.footer .footer-body .nav-wrapper .nav-list .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.2rem;
  padding-top: 1.2rem;
  padding-left: 1.2rem;
}

.footer .footer-body .nav-wrapper .nav-list .sub-item {
  display: block;
  position: relative;
}

.footer .footer-body .btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .btns {
    row-gap: 2.0rem;
    margin: 0 auto;
  }
}

.footer .footer-body .btns .btn {
  width: 18rem;
  height: 5.5rem;
  border: unset;
  border-radius: 90rem;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  .footer .footer-body .btns .btn {
    width: 24rem;
    height: 6.0rem;
    padding: 0.8rem;
  }
}

.footer .footer-body .btns .btn:after {
  border: unset;
}

.footer .footer-body .btns .btn:hover {
  color: #FFF;
  opacity: 1;
}

.footer .footer-body .btns .btn.btn-contact {
  background: #003344;
}

.footer .footer-body .btns .btn.btn-contact:before {
  background: #333;
}

.footer .footer-body .btns .btn.btn-info {
  background: #333;
}

.footer .footer-body .btns .btn.btn-info:before {
  background: #003344;
}

.footer .copyright {
  padding: 2.0rem 0 6.4rem 0;
  color: #868686;
  font-family: "Helvetica Neue";
}

@media only screen and (max-width: 768px) {
  .footer .copyright {
    font-size: 1.0rem;
    text-align: center;
    padding: 1.2rem 0 4.4rem 0;
  }
}

/*# sourceMappingURL=style.css.map */