@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 2s !important;
}

.anim--delay {
  animation-delay: 0.5s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 2s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 2s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 2s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 2s ease 0s 1 alternate forwards;
}

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding-left: 3.75rem;
  transition: all 0.2s ease 0s;
}
.mainHeader:hover {
  text-decoration: none;
}
@media all and (max-width: 1180px) {
  .mainHeader {
    padding-left: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .mainHeader {
    padding-left: 0.9375rem;
  }
}
.mainHeader__inner {
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media all and (max-width: 1024px) {
  .mainHeader__inner {
    height: 5rem;
  }
}
@media all and (max-width: 640px) {
  .mainHeader__inner {
    height: 3.75rem;
  }
}
.mainHeader__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mainHeader__logo {
  max-width: 10.75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 999;
  position: relative;
}
@media all and (max-width: 640px) {
  .mainHeader__logo {
    max-width: 6.25rem;
  }
}
.mainHeader__logo a {
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: hover) {
  .mainHeader__logo a:hover {
    text-decoration: none;
    opacity: 0.8;
    text-decoration: none;
  }
}
.mainHeader__logo a:active {
  text-decoration: none;
  opacity: 0.8;
  text-decoration: none;
}
.mainHeader__logo img {
  width: 100%;
  transition: all 0.2s ease 0s;
}
.mainHeader__logo img:hover {
  text-decoration: none;
}
.mainHeader__subNav {
  display: flex;
  margin-left: 2.1875rem;
  position: relative;
  z-index: 550;
}
.mainHeader__subNav__subLink {
  height: 6.25rem;
  min-width: 6.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  gap: 0.2em;
  padding-top: 0.3em;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .mainHeader__subNav__subLink {
    height: 5rem;
    min-width: 5rem;
  }
}
@media all and (max-width: 640px) {
  .mainHeader__subNav__subLink {
    height: 3.75rem;
    min-width: 3.75rem;
    font-size: 0.6875rem;
  }
}
@media (hover: hover) {
  .mainHeader__subNav__subLink:hover {
    text-decoration: none;
  }
  .mainHeader__subNav__subLink:hover .text {
    scale: 1.125;
  }
}
.mainHeader__subNav__subLink:active {
  text-decoration: none;
}
.mainHeader__subNav__subLink:active .text {
  scale: 1.125;
}
.mainHeader__subNav__subLink .icon {
  height: 1.6875rem;
}
@media all and (max-width: 1024px) {
  .mainHeader__subNav__subLink .icon {
    height: 1.25rem;
  }
}
.mainHeader__subNav__subLink .icon img {
  height: 100%;
  width: auto;
}
.mainHeader__subNav__subLink .text {
  transition: all 0.2s ease 0s;
}
.mainHeader__subNav__subLink .text:hover {
  text-decoration: none;
}
.mainHeader__subNav__subLink.recruit {
  background-color: #F2D522;
}
.mainHeader__subNav__subLink.contact {
  background-color: #E76D1E;
  color: #fff;
}

.spBT {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  appearance: none;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  background-color: #0066CC;
}
@media all and (max-width: 640px) {
  .spBT {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media all and (min-width: 1025px) {
  .spBT {
    display: none;
  }
}
.spBT__barWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  gap: 0.625rem;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap:hover {
  text-decoration: none;
}
@media all and (max-width: 560px) {
  .spBT__barWrap {
    gap: 1.7948vw;
  }
}
.spBT .bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.2s ease 0s;
  border-radius: 1px;
}
.spBT .bar:hover {
  text-decoration: none;
}
@media all and (max-width: 560px) {
  .spBT .bar {
    height: 0.2564vw;
  }
}
.spBT.active .spBT__text {
  opacity: 0;
}
.spBT.active .bar:nth-child(1) {
  rotate: 45deg;
  translate: 0 12px;
}
@media all and (max-width: 560px) {
  .spBT.active .bar:nth-child(1) {
    translate: 0 2.0512vw;
  }
}
.spBT.active .bar:nth-child(2) {
  scale: 0 1;
}
.spBT.active .bar:nth-child(3) {
  rotate: -45deg;
  translate: 0 -12px;
}
@media all and (max-width: 560px) {
  .spBT.active .bar:nth-child(3) {
    translate: 0 -2.0512vw;
  }
}
@media all and (max-width: 560px) {
  .spBT.active .bar {
    scale: 1.25 1;
  }
}

@media all and (max-width: 1024px) {
  .gNav {
    position: fixed;
    z-index: 500;
    background-color: #fff;
    width: 100%;
    top: 0;
    padding-top: 5rem;
    left: 0;
    opacity: 0;
    translate: 200% 0;
    transition: translate 0s ease 0.2s, opacity 0.2s ease 0s;
  }
  .gNav.active {
    opacity: 1;
    translate: 0 0;
    transition: translate 0s ease 0s, opacity 0.2s ease 0s;
  }
}
@media all and (max-width: 1024px) and (max-width: 640px) {
  .gNav {
    padding-top: 3.75rem;
  }
}
.gNav__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media all and (max-width: 1024px) {
  .gNav__list {
    flex-direction: column;
    gap: 0;
  }
}
.gNav__item {
  margin-left: 2.1875rem;
}
@media all and (max-width: 1180px) {
  .gNav__item {
    margin-left: 1.5625rem;
  }
}
@media all and (max-width: 1024px) {
  .gNav__item {
    border-top: 1px solid #cecece;
    width: 100%;
    margin-left: 0;
  }
}
.gNav__link {
  padding: 0.5em 0;
  line-height: 1.4;
  transition: all 0.2s ease 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-weight: 500;
  text-transform: uppercase;
}
.gNav__link:hover {
  text-decoration: none;
}
.gNav__link .main {
  transition: all 0.2s ease 0s;
}
.gNav__link .main:hover {
  text-decoration: none;
}
.gNav__link .sub {
  font-size: 0.6875rem;
  color: #0066CC;
  transition: all 0.2s ease 0s;
}
.gNav__link .sub:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .gNav__link:hover {
    text-decoration: none;
    text-decoration: none;
  }
  .gNav__link:hover .main {
    color: #0066CC;
    text-shadow: 0 0 0 currentColor, 0.01em 0 0 currentColor, -0.01em 0 0 currentColor, 0 0.01em 0 currentColor, 0 -0.01em 0 currentColor;
  }
  .gNav__link:hover .sub {
    color: #000;
  }
}
.gNav__link:active {
  text-decoration: none;
  text-decoration: none;
}
.gNav__link:active .main {
  color: #0066CC;
  text-shadow: 0 0 0 currentColor, 0.01em 0 0 currentColor, -0.01em 0 0 currentColor, 0 0.01em 0 currentColor, 0 -0.01em 0 currentColor;
}
.gNav__link:active .sub {
  color: #000;
}
@media all and (max-width: 1024px) {
  .gNav__link {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 1em;
  }
}

a {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

a[rel="noreferrer noopener"] {
  text-decoration: underline;
}

html {
  font-size: 16px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media all and (max-width: 640px) {
  html {
    font-size: 4.1024vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #000;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 640px) {
  body {
    font-size: 4.1024vw !important;
  }
}

img {
  height: auto;
}

.bold {
  font-weight: bold;
}

.mainContent {
  margin-top: 6.25rem;
}
@media all and (max-width: 1024px) {
  .mainContent {
    margin-top: 5rem;
  }
}
@media all and (max-width: 640px) {
  .mainContent {
    margin-top: 3.75rem;
  }
}

button,
select {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.o_tab {
  display: none !important;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

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

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

@media all and (min-width: 641px) {
  .text-right-pc {
    text-align: right;
  }
}

@media all and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  .o_tab {
    display: block !important;
  }
}
@media all and (max-width: 1180px) {
  .o_large {
    display: none !important;
  }
}

@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 640px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.br {
  display: none;
}
@media all and (min-width: 1025px) {
  .br.pc {
    display: inline;
  }
}
@media all and (max-width: 1180px) and (min-width: 1025px) {
  .br.pc2 {
    display: inline;
  }
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .br.tab {
    display: inline;
  }
}
@media all and (max-width: 640px) {
  .br.sp {
    display: inline;
  }
}

.color-key {
  color: #0066CC;
}

.color-white {
  color: #fff;
}

.pt-lg {
  padding-top: 7.5rem;
}
@media all and (max-width: 1024px) {
  .pt-lg {
    padding-top: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pt-lg {
    padding-top: 5rem;
  }
}

.pb-lg {
  padding-bottom: 7.5rem;
}
@media all and (max-width: 1024px) {
  .pb-lg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pb-lg {
    padding-bottom: 5rem;
  }
}

.pb-hg {
  padding-bottom: 8.75rem;
}
@media all and (max-width: 1024px) {
  .pb-hg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pb-hg {
    padding-bottom: 5rem;
  }
}

.mb-min {
  margin-bottom: 1.25rem;
}

.mb-sml {
  margin-bottom: 2.5rem;
}
@media all and (max-width: 640px) {
  .mb-sml {
    margin-bottom: 1.875rem;
  }
}

.mb-md {
  margin-bottom: 3.75rem;
}
@media all and (max-width: 640px) {
  .mb-md {
    margin-bottom: 2.5rem;
  }
}

.mb-lg {
  margin-bottom: 5rem;
}
@media all and (max-width: 1024px) {
  .mb-lg {
    margin-bottom: 3.75rem;
  }
}

.mt-lg {
  margin-top: 5rem;
}
@media all and (max-width: 1024px) {
  .mt-lg {
    margin-top: 3.75rem;
  }
}

.mb-hg {
  margin-bottom: 7.5rem;
}
@media all and (max-width: 1024px) {
  .mb-hg {
    margin-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .mb-hg {
    margin-bottom: 5rem;
  }
}

@media all and (min-width: 801px) {
  .anim--pcDelay1 {
    animation-delay: 0.5s !important;
  }
}

.inner {
  padding-left: 120px;
  padding-right: 120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 1024px) {
  .inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media all and (max-width: 640px) {
  .inner {
    padding-left: 5.128vw;
    padding-right: 5.128vw;
  }
}

.inner-box {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.bg-blue {
  background-color: #F5FAFF;
}

.max800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.max900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fz14 {
  font-size: 0.875em;
}

.fz16 {
  font-size: 1rem !important;
}

.fz20 {
  font-size: 1.25em;
}

.fz24 {
  font-size: 1.5em;
}

.commonHeading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0066CC;
  gap: 0.625rem;
  margin-bottom: 5rem;
  line-height: 1.2;
}
@media all and (max-width: 640px) {
  .commonHeading {
    margin-bottom: 3.125rem;
  }
}
.commonHeading .icon {
  width: 1.6875rem;
}
.commonHeading .icon img {
  width: 100%;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.sp-flex-end {
  display: flex;
  justify-content: flex-start;
}
@media all and (max-width: 640px) {
  .sp-flex-end {
    justify-content: flex-end;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
}

.commonBT {
  appearance: none;
  border: 0;
  background-image: none;
  transition: all 0.2s ease 0s;
  min-width: 15rem;
  padding: 0.625rem 1.25rem;
  position: relative;
  line-height: 1.4;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.0625rem solid #F2D522;
  background-color: #F2D522;
}
.commonBT:hover {
  text-decoration: none;
}
.commonBT--white {
  border-color: #fff !important;
  background-color: transparent !important;
  color: #fff !important;
}
.commonBT--prev {
  border-color: #000 !important;
  background-color: transparent !important;
  color: #000 !important;
  min-width: 8.75rem;
}
.commonBT:after {
  content: "";
  position: absolute;
  height: 0.0625rem;
  width: 1.25rem;
  background-color: currentColor;
  transition: all 0.2s ease 0s;
  right: 0.625rem;
  top: 50%;
  translate: 0 -50%;
}
.commonBT:after:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .commonBT:hover {
    text-decoration: none;
    color: #fff;
    background-color: #E76D1E;
    border-color: #E76D1E;
    text-shadow: 0 0 0 currentColor, 0.01em 0 0 currentColor, -0.01em 0 0 currentColor, 0 0.01em 0 currentColor, 0 -0.01em 0 currentColor;
  }
  .commonBT:hover:after {
    right: 0;
  }
}
.commonBT:active {
  text-decoration: none;
  color: #fff;
  background-color: #E76D1E;
  border-color: #E76D1E;
  text-shadow: 0 0 0 currentColor, 0.01em 0 0 currentColor, -0.01em 0 0 currentColor, 0 0.01em 0 currentColor, 0 -0.01em 0 currentColor;
}
.commonBT:active:after {
  right: 0;
}

.layout-column2 {
  display: flex;
  gap: 2.5rem 2.5rem;
}
@media all and (min-width: 641px) {
  .layout-column2.reverse {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 640px) {
  .layout-column2.sp-gap0 {
    gap: 0;
  }
}
.layout-column2 > * {
  flex: 1;
  flex-shrink: 0;
}
.layout-column2__img {
  flex: 1;
  flex-shrink: 0;
}
.layout-column2__img img {
  width: 100%;
}
.layout-column2__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-shrink: 0;
}
@media all and (max-width: 640px) {
  .layout-column2 {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-fv {
  width: 100%;
  position: relative;
  padding-left: 7.5rem;
}
@media all and (max-width: 1024px) {
  .top-fv {
    padding-left: 5rem;
  }
}
@media all and (max-width: 640px) {
  .top-fv {
    padding-left: 0.625rem;
  }
}
.top-fv:before {
  content: "";
  width: 100%;
  height: calc(100% - 15rem);
  position: absolute;
  background-color: #0066CC;
  top: 15.625rem;
  left: 0;
}
@media all and (max-width: 640px) {
  .top-fv:before {
    top: auto;
    bottom: 0;
    height: 50%;
  }
}
.top-fv__slide {
  overflow: hidden;
  border-radius: 0 0 0 1.875rem;
  position: relative;
  z-index: 5;
  background-color: #fff;
}
.top-fv__slide__pagination.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7.5rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 20;
  box-sizing: border-box;
}
@media all and (max-width: 1024px) {
  .top-fv__slide__pagination.swiper-pagination {
    width: 5rem;
  }
}
@media all and (max-width: 640px) {
  .top-fv__slide__pagination.swiper-pagination {
    width: 100%;
    justify-content: flex-end;
    padding-bottom: 0.625rem;
    padding-right: 0.625rem;
  }
}
.top-fv__slide__pagination.swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #fff;
  opacity: 0.5;
}
.top-fv__slide__pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.top-fv .swiper-wrapper {
  pointer-events: none;
  height: 100%;
}
.top-fv .swiper-wrapper .swiper-slide {
  width: 100%;
  aspect-ratio: 1160/519;
}
@media all and (max-width: 1024px) {
  .top-fv .swiper-wrapper .swiper-slide {
    aspect-ratio: 2/1;
  }
}
@media all and (max-width: 640px) {
  .top-fv .swiper-wrapper .swiper-slide {
    aspect-ratio: 2/1;
  }
}
.top-fv .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-fv__scroll {
  position: absolute;
  z-index: 15;
  top: 7.875rem;
  left: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0066CC;
  gap: 0.625rem;
  font-size: 0.875rem;
  translate: -50% 0;
  line-height: 1;
}
@media all and (max-width: 1024px) {
  .top-fv__scroll {
    left: 2.5rem;
  }
}
@media all and (max-width: 640px) {
  .top-fv__scroll {
    display: none;
  }
}
.top-fv__scroll:hover {
  text-decoration: none;
}
.top-fv__scroll .text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.top-fv__scroll .bar {
  height: 4.0625rem;
  width: 0.0625rem;
  position: relative;
}
.top-fv__scroll .bar:before {
  content: "";
  width: 100%;
  height: 97%;
  background-color: #0066CC;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollLine 2s infinite;
}
.top-fv__heading {
  position: absolute;
  z-index: 5;
  left: 2.5rem;
  top: 50%;
  translate: 0 -50%;
  font-size: 2.75rem;
  font-weight: bold;
  color: #0066CC;
  background-color: #fff;
  padding: 0 0.25em 0.1em;
  line-height: 1.4;
  display: block;
}
.top-fv__heading.nopad {
  padding-right: 0em;
}
@media all and (max-width: 1024px) {
  .top-fv__heading {
    font-size: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .top-fv__heading {
    font-size: 1.25rem;
    left: 0.3125rem;
  }
}

@keyframes scrollLine {
  0% {
    scale: 1 0;
    transform-origin: top;
  }
  30% {
    scale: 1 1;
    transform-origin: top;
  }
  50% {
    scale: 1 1;
    transform-origin: bottom;
  }
  80% {
    scale: 1 0;
    transform-origin: bottom;
  }
  90% {
    scale: 1 0;
    transform-origin: top;
  }
  100% {
    scale: 1 0;
    transform-origin: top;
  }
}
.top-news {
  background-color: #0066CC;
  overflow: hidden;
  padding-top: 0.625rem;
  padding-left: 7.5rem;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 1024px) {
  .top-news {
    padding-left: 5rem;
  }
}
@media all and (max-width: 640px) {
  .top-news {
    padding-left: 0.625rem;
  }
}
.top-news .inner-box {
  margin-left: 0;
}
.top-news__main {
  position: relative;
  border-radius: 0.625rem 0 0 0.625rem;
  background-color: #fff;
  padding: 1.5625rem 2.5rem;
}
@media all and (max-width: 640px) {
  .top-news__main {
    padding: 0.625rem 1.25rem;
  }
}
.top-news__main:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  translate: 95% 0;
}
.top-news__list {
  position: relative;
  z-index: 5;
  font-size: 0.875rem;
}
.top-news__list li {
  display: flex;
  line-height: 1.4;
  padding: 0.75em 0;
  position: relative;
}
@media all and (max-width: 640px) {
  .top-news__list li {
    flex-direction: column;
    gap: 0.3em;
  }
}
.top-news__list li:last-child:after {
  display: none;
}
.top-news__list li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.top-news__list .date {
  color: #0066CC;
  flex-shrink: 0;
  padding-right: 2em;
  margin-right: 2em;
  position: relative;
}
.top-news__list .date:after {
  content: ":";
  position: absolute;
  right: 0;
  color: #000;
}
@media all and (max-width: 640px) {
  .top-news__list .date:after {
    display: none;
  }
}
.top-news__list .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top-news__list .title a:hover {
  color: #0066CC;
}

.top-about {
  position: relative;
  padding-top: 3.75rem;
  color: #fff;
}
.top-about:before {
  content: "";
  width: 100%;
  position: absolute;
  height: calc(100% - 4.375rem);
  top: -0.625rem;
  background-color: #0066CC;
}
@media (max-width: 1140px) {
  .top-about:before {
    height: 100%;
  }
}
@media all and (min-width: 1025px) {
  .top-about__inner {
    padding-right: 3.75rem;
  }
}
.top-about__inner-box {
  max-width: 72.5rem;
}
.top-about__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .top-about__wrap {
    flex-direction: column;
    padding-bottom: 3.75rem;
  }
}
.top-about__content {
  width: 50%;
  max-width: 31.25rem;
  padding-top: 3.75rem;
  padding-bottom: 6.875rem;
}
@media all and (max-width: 1024px) {
  .top-about__content {
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
}
@media all and (max-width: 640px) {
  .top-about__content {
    width: 100%;
    display: contents;
  }
}
.top-about__heading {
  font-size: 1.875rem;
}
@media (max-width: 1080px) {
  .top-about__heading br {
    display: none;
  }
}
@media (max-width: 1080px) and (max-width: 640px) {
  .top-about__heading {
    order: -2;
    font-size: 1.25rem;
  }
  .top-about__heading br {
    display: inline;
  }
}
.top-about__img {
  width: 45%;
}
@media all and (max-width: 1024px) {
  .top-about__img {
    padding-bottom: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .top-about__img {
    width: 100%;
    order: -1;
    width: 95%;
    margin-left: auto;
    right: -1.25rem;
    position: relative;
  }
}

.top-service {
  padding: 3.75rem 0 7.5rem;
}
@media all and (max-width: 640px) {
  .top-service {
    padding-bottom: 6.25rem;
  }
}
.top-service__heading {
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #0066CC;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 3.75rem;
  gap: 0.25em;
}
@media all and (max-width: 640px) {
  .top-service__heading {
    font-size: 2.75rem;
  }
}
.top-service__heading .icon {
  width: 0.8em;
}
.top-service__heading .icon img {
  width: 100%;
}
.top-service__wrap {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
@media all and (max-width: 640px) {
  .top-service__wrap {
    gap: 5rem;
  }
}

.top-img {
  height: 30rem;
}
@media all and (max-width: 640px) {
  .top-img {
    height: 18.75rem;
  }
}
.top-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pageHeader__img {
  height: 13.75rem;
}
@media all and (max-width: 640px) {
  .pageHeader__img {
    height: 10rem;
  }
}
.pageHeader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: #0066CC;
  line-height: 1.2;
  padding: 1em 0;
  font-size: 0.6875rem;
}
.breadcrumb a {
  color: #0066CC;
}

.pageContainer {
  padding: 4.6875rem 0 7.5rem;
}
@media all and (max-width: 640px) {
  .pageContainer {
    padding: 3.75rem 0 5.625rem;
  }
}

.info-table {
  position: relative;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .info-table + .info-table:before {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .info-table.large dt {
    width: 10em;
  }
}
@media all and (min-width: 801px) {
  .info-table.large dt {
    padding-left: 1.5em;
  }
}
.info-table:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.info-table__row {
  padding: 1.5625rem 0;
  position: relative;
  display: flex;
}
@media all and (max-width: 800px) {
  .info-table__row {
    flex-direction: column;
  }
}
.info-table__row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.info-table dt {
  flex-shrink: 0;
  width: 9em;
  padding-right: 2em;
  margin-right: 2em;
  position: relative;
}
@media all and (max-width: 1024px) {
  .info-table dt {
    width: 6em;
  }
}
@media all and (max-width: 800px) {
  .info-table dt {
    font-weight: bold;
    width: 10em;
  }
}
.info-table dt:after {
  content: ":";
  position: absolute;
  right: 0;
}

.map-wrap {
  position: relative;
  height: 26.875rem;
}
@media all and (max-width: 640px) {
  .map-wrap {
    height: 13.75rem;
  }
}
.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media all and (max-width: 640px) {
  .serviceSection {
    gap: 0;
  }
  .serviceSection__content {
    display: contents;
  }
  .serviceSection__img {
    order: -1;
    margin-bottom: 1.875rem;
  }
  .serviceSection__heading {
    order: -2;
  }
}

.second-wrapper {
  padding: 7.5rem 0;
  background-color: #F5FAFF;
}
@media all and (max-width: 640px) {
  .second-wrapper {
    padding: 5.625rem 0;
  }
}

.service-images {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service-images img {
  width: 100%;
}
@media all and (max-width: 640px) {
  .service-images {
    gap: 0.3125rem;
  }
}

.about_us-lead {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0066CC;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media all and (max-width: 640px) {
  .about_us-lead {
    font-size: 1.25rem;
  }
}

.about_us-companies__item {
  padding: 3.75rem 2.5rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #0066CC;
  background-color: #fff;
}
@media all and (max-width: 1024px) {
  .about_us-companies__item {
    padding: 3.125rem 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .about_us-companies__item {
    padding: 2.5rem 1.25rem;
  }
}
.about_us-companies__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
@media all and (max-width: 640px) {
  .about_us-companies__wrap {
    flex-direction: column;
    gap: 0;
    align-items: normal;
  }
}
.about_us-companies__img {
  flex-shrink: 0;
  width: 38%;
}
@media all and (max-width: 640px) {
  .about_us-companies__img {
    width: 100%;
    order: -1;
    margin-bottom: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .about_us-companies__content {
    display: contents;
  }
}
.about_us-companies__heading {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1em;
  color: #0066CC;
}
@media all and (max-width: 640px) {
  .about_us-companies__heading {
    order: -2;
  }
}

.recruit-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media all and (max-width: 1024px) {
  .recruit-feature {
    gap: 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .recruit-feature {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
.recruit-feature.onAnim li {
  opacity: 1;
  translate: 0;
}
.recruit-feature li {
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1em;
  border-radius: 0.5rem;
  line-height: 1.4;
  transition: all 1.5s ease;
  opacity: 0;
  translate: 0 1.25rem;
}
.recruit-feature li.item1 {
  background-color: #E76D1E;
  color: #fff;
}
.recruit-feature li.item2 {
  background-color: #F2D522;
  transition-delay: 0.3s;
}
.recruit-feature li.item3 {
  background-color: #0066CC;
  color: #fff;
  transition-delay: 0.6s;
}

.faq-list__row {
  padding: 1.875rem 1.25rem;
  position: relative;
}
.faq-list__row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.faq-list__row:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.faq-list__row dt {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0066CC;
  margin-bottom: 1em;
}
.faq-list__row dt:before {
  content: "Q";
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
}

.news-list {
  position: relative;
  z-index: 5;
  font-size: 0.875rem;
}
.news-list li {
  display: flex;
  line-height: 2;
  padding: 1.5em 1.25em;
  position: relative;
}
@media all and (max-width: 640px) {
  .news-list li {
    flex-direction: column;
    gap: 0.3em;
  }
}
.news-list li:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.news-list li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.news-list .date {
  color: #0066CC;
  flex-shrink: 0;
  padding-right: 2em;
  margin-right: 2em;
  position: relative;
}
.news-list .date:after {
  content: ":";
  position: absolute;
  right: 0;
  color: #000;
}
@media all and (max-width: 640px) {
  .news-list .date:after {
    display: none;
  }
}
.news-list .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list .title a:hover {
  color: #0066CC;
}

.pager {
  margin-top: 5rem;
}
@media all and (max-width: 640px) {
  .pager {
    margin-top: 3.75rem;
  }
}
.pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pager .nav-links .prev {
  display: none;
}
.pager .nav-links .next {
  display: none;
}
.pager .nav-links a {
  background-color: #fff;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  color: #000;
  border-radius: 0;
  border: 0.0625rem solid #0066CC;
  transition: all 0.2s ease 0s;
}
.pager .nav-links a:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .pager .nav-links a:hover {
    text-decoration: none;
    background-color: #F5FAFF;
  }
}
.pager .nav-links a:active {
  text-decoration: none;
  background-color: #F5FAFF;
}
.pager .nav-links span.current {
  background-color: #fff;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  background-color: #0066CC;
  color: #fff;
  border-radius: 0;
}

.columnSingle {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  position: relative;
}
.columnSingle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 640px) {
  .columnSingle {
    padding-bottom: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
.columnSingle__header {
  margin-bottom: 3.125rem;
}
.columnSingle .title {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  color: #0066CC;
  padding-bottom: 1em;
  margin-bottom: 0.3em;
}
@media all and (max-width: 640px) {
  .columnSingle .title {
    font-size: 1.25rem;
  }
}
.columnSingle .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.columnSingle .date {
  display: block;
  text-align: right;
  font-size: 0.875rem;
}

.singleContent h1,
.singleContent h2,
.singleContent h3,
.singleContent h4,
.singleContent h5,
.singleContent h6 {
  font-weight: bold;
  line-height: 1.4;
  margin: 2em 0 1em;
}
.singleContent h1 {
  font-size: 1.45rem;
  color: #0066CC;
}
.singleContent h2 {
  font-size: 1.25rem;
  color: #0066CC;
}
.singleContent h3 {
  font-size: 1.25rem;
}
.singleContent h4 {
  font-size: 1.1rem;
}
.singleContent h5 {
  font-size: 1.1rem;
}
.singleContent h6 {
  font-size: 1.1rem;
}
.singleContent p {
  margin: 1em 0;
  line-height: 1.8;
}
.singleContent ul,
.singleContent ol {
  padding-left: 1.5em;
  margin: 1em 0;
}
.singleContent ul li,
.singleContent ol li {
  margin: 0.5em 0;
  line-height: 1.6;
}
.singleContent blockquote {
  margin: 2em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #666;
}
.singleContent img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
}
.singleContent figure {
  margin: 2em 0;
  text-align: center;
}
.singleContent figure figcaption {
  font-size: 0.875rem;
  color: #888;
  margin-top: 0.5em;
}
.singleContent table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.singleContent table th,
.singleContent table td {
  padding: 0.75em;
  border: 1px solid #ddd;
  text-align: left;
}
.singleContent table th {
  background-color: #f8f8f8;
}
.singleContent pre,
.singleContent code {
  font-family: Consolas, monospace;
  background: #f5f5f5;
  padding: 0.5em;
  border-radius: 4px;
  overflow-x: auto;
}
.singleContent pre {
  margin: 2em 0;
}
.singleContent strong {
  background-color: #0066CC;
  color: #fff;
  font-weight: bold;
  padding: 0 0.2em;
}
.singleContent a {
  color: #0066CC;
  text-decoration: underline;
}
.singleContent a:hover {
  text-decoration: none;
}
.singleContent .wp-block-button {
  margin: 2em 0;
}
.singleContent .wp-block-button .wp-block-button__link {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
}
.singleContent .wp-block-button .wp-block-button__link:hover {
  background: #555;
}

.formContainer {
  border-radius: 0.625rem;
  border: 0.0625rem solid #0066CC;
  background-color: #fff;
  padding: 5rem 1.875rem;
}
@media all and (max-width: 640px) {
  .formContainer {
    padding: 3.125rem 1.25rem;
  }
}

.formWrap {
  max-width: 740px;
  margin: 0 auto;
}
.formWrap__row {
  padding: 30px 0;
}
@media all and (max-width: 640px) {
  .formWrap__row {
    padding: 5.128vw 0;
  }
}
.formWrap__row.hasColumn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media all and (max-width: 640px) {
  .formWrap__row.hasColumn {
    grid-template-columns: 1fr;
    gap: 7.692vw;
  }
}
.formWrap__label {
  line-height: 1.6;
  margin-bottom: 0.65em;
  font-size: 0.875em;
}
.formWrap__label .req_label {
  color: #F70000;
  font-size: 0.9em;
}
.formWrap input[type=text],
.formWrap input[type=email],
.formWrap input[type=tel],
.formWrap textarea,
.formWrap select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0.75em 1.5em;
  border: 1px solid #ADADAD;
  background-color: #FAFAFA;
  border-radius: 0.625rem;
  width: 100%;
  display: block;
}
@media all and (max-width: 640px) {
  .formWrap input[type=text],
  .formWrap input[type=email],
  .formWrap input[type=tel],
  .formWrap textarea,
  .formWrap select {
    font-size: 15px;
  }
}
.formWrap select {
  background-image: url(../images/common/select_arrow.svg);
  background-position: right 1.5em center;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}
.formWrap .codedropz-upload-handler {
  border: 1px solid #DBDBDB;
  border-radius: 30px;
  background-color: #dbdbdb;
  font-size: 16px;
}
.formWrap .codedropz-upload-handler .codedropz-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.formWrap .codedropz-upload-handler .codedropz-upload-inner > span {
  font-size: 0.75em;
}
@media all and (max-width: 640px) {
  .formWrap .codedropz-upload-handler {
    font-size: 15px;
    border-radius: 2.564vw;
  }
}
.formWrap .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
.formWrap .codedropz-upload-handler .cd-upload-btn {
  margin-top: 0.5em;
  padding: 0.5em 2em;
  background-color: #000;
  color: #fff;
  display: flex;
  border-radius: 2em;
  font-weight: bold;
}
.formWrap textarea {
  padding: 1em 1.5em;
}
.formWrap textarea.short {
  height: 6.6em;
}
@media all and (max-width: 640px) {
  .formWrap textarea.short {
    height: 9em;
  }
}
.formWrap .wpcf7-not-valid-tip {
  color: #f00;
  font-weight: bold;
  text-align: right;
}
.formWrap .wpcf7-list-item {
  margin: 0;
}

.wpcf7-response-output {
  border: 0 !important;
  background-color: #efefef;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.5em !important;
}
@media all and (max-width: 640px) {
  .wpcf7-response-output {
    font-size: 3.0768vw;
  }
}

.confirm-hidden {
  display: none !important;
}

.form-acceptance {
  display: flex;
  justify-content: center;
}
.form-acceptance a {
  color: #0066CC;
  text-decoration: underline;
}
.form-acceptance a:hover {
  text-decoration: none;
}
.form-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 1.5rem;
  display: inline-block;
  line-height: 1.125rem;
}
.form-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #707070;
  border-radius: 0.125rem;
  box-sizing: border-box;
}
.form-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #707070;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form-acceptance input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}

.form-btWrap {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}

.privacy_policy-wrap {
  border-radius: 0.625rem;
  border: 0.0625rem solid #0066CC;
  background-color: #fff;
  padding: 5rem 1.875rem;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .privacy_policy-wrap {
    padding: 3.125rem 1.25rem;
  }
}
.privacy_policy-wrap__inner {
  max-width: 57.5rem;
  margin: 0 auto;
}
.privacy_policy-wrap p {
  margin-bottom: 2em;
}
.privacy_policy-wrap ul {
  margin-bottom: 2em;
}
.privacy_policy-wrap h2 {
  line-height: 2;
}
.privacy_policy-wrap .dotList {
  list-style: none;
}
.privacy_policy-wrap .dotList > li {
  position: relative;
  padding-left: 1em;
}
.privacy_policy-wrap .dotList > li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #333;
}

.recruit-link {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/recruit_bg.webp);
  padding: 9.375rem 0 2.5rem;
  color: #fff;
}
@media all and (max-width: 640px) {
  .recruit-link {
    padding: 3.75rem 0 1.875rem;
    background-position: left 30% center;
  }
}
.recruit-link__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 800px) {
  .recruit-link__inner {
    flex-direction: column;
    align-items: normal;
    gap: 2.5rem;
  }
}
.recruit-link__heading {
  font-weight: 900;
  font-size: 3.75rem;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 640px) {
  .recruit-link__heading {
    font-size: 2.5rem;
  }
}

.mainFooter {
  background-color: #0066CC;
  color: #fff;
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}
@media all and (max-width: 640px) {
  .mainFooter {
    padding: 3.75rem 0;
  }
}
.mainFooter a {
  color: #fff;
}
.mainFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mainFooter__logo {
  width: 10.75rem;
}
.mainFooter__logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.mainFooter__address {
  font-size: 0.875rem;
}

.subFooter {
  padding: 0.9375rem 0;
  line-height: 1.4;
}
.subFooter__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
}
@media all and (max-width: 640px) {
  .subFooter__inner {
    flex-direction: column;
  }
}