@charset "UTF-8";
.l-container {
  min-width: var(--min-device-width);
}

.l-section {
  --l-section-inner-width-default: var(--site-width);
  --l-section-space-inline-default: var(--space-inline);
  --l-section-space-inline: var(--l-section-space-inline-override, var(--l-section-space-inline-default));
  --l-section-inner-width: var(--l-section-inner-width-override, var(--l-section-inner-width-default));
  --l-section-outer: max(0px, calc((var(--vw100) - var(--l-section-inner-width)) / 2));
  --l-section-gutter: max(var(--l-section-outer), var(--l-section-space-inline));
}
.l-section:where(._gutter) {
  padding-inline: var(--l-section-space-inline);
}
.l-section__inner {
  width: 100%;
  max-width: var(--l-section-inner-width);
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__inner:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__inner-2 {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__inner-2:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__full {
  margin-inline: calc(var(--l-section-gutter) * -1);
}

.l-row-gap {
  --l-row-gap-default: 60px;
  --l-row-gap: var(--l-row-gap-override, var(--l-row-gap-default));
  display: flex;
  flex-direction: column;
  row-gap: var(--l-row-gap);
}

.l-spacer._section {
  height: var(--space-block-section);
}
.l-spacer._xl {
  height: var(--space-block-xl);
}
.l-spacer._lg {
  height: var(--space-block-lg);
}
.l-spacer._md {
  height: var(--space-block-md);
}
.l-spacer._sm {
  height: var(--space-block-sm);
}
.l-spacer._xs {
  height: var(--space-block-xs);
}
.l-spacer._section-trim {
  height: var(--space-block-section-trim);
}
.l-spacer._xl-trim {
  height: var(--space-block-xl-trim);
}
.l-spacer._lg-trim {
  height: var(--space-block-lg-trim);
}
.l-spacer._md-trim {
  height: var(--space-block-md-trim);
}
.l-spacer._sm-trim {
  height: var(--space-block-sm-trim);
}
.l-spacer._xs-trim {
  height: var(--space-block-xs-trim);
}

.mw_confirm-show {
  display: none;
}

body:has(.mw_wp_form.mw_wp_form_confirm) .mw_confirm-hidden {
  display: none;
}
body:has(.mw_wp_form.mw_wp_form_confirm) .mw_confirm-show {
  display: revert;
}

/* pagenavi */
.wp-pagenavi {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 5px 50px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  padding-block: 10px;
  display: block;
  text-decoration: none;
  transition: var(--sec);
}
.wp-pagenavi a:focus-visible {
  opacity: 0.6;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:hover {
    opacity: 0.6;
  }
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: block;
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: var(--color-primary);
}
@media (width <= 828px) {
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    font-size: 22px;
  }
}
.wp-pagenavi .arr {
  display: block;
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
}
.wp-pagenavi .previouspostslink {
  text-align: end;
}

:where(.wp-block-post-content_news, .wp-gutenberg) {
  font-size: 1rem;
  line-height: 2.4375;
  --wp--preset--font-size--small: rem(14);
  --wp--preset--font-size--medium: rem(16);
  --wp--preset--font-size--large: rem(18);
  --wp--preset--font-size--x-large: rem(20);
}
@media (width <= 828px) {
  :where(.wp-block-post-content_news, .wp-gutenberg) {
    font-size: 28px;
    line-height: 52px;
    text-align: justify;
  }
}
:where(.wp-block-post-content_news, .wp-gutenberg) a:not([class]) {
  text-decoration: underline;
}
:where(.wp-block-post-content_news, .wp-gutenberg) a:not([class]):focus-visible {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  :where(.wp-block-post-content_news, .wp-gutenberg) a:not([class]):hover {
    text-decoration: none;
  }
}
:where(.wp-block-post-content_news, .wp-gutenberg) :where(p, ol, ul, table,
   [class*="wp-block"]):not(:last-child) {
  margin-bottom: 40px;
}

.wp-block-heading_news {
  margin-block-end: 135px;
  font-size: 28px;
  line-height: 49px;
}
@media (width <= 828px) {
  .wp-block-heading_news {
    margin-block-end: 85px;
    font-size: 44px;
    line-height: 54px;
  }
}

h2.wp-block-heading_news {
  font-size: 1.5rem;
}

h3.wp-block-heading_news {
  font-size: 1.375rem;
}

h4.wp-block-heading_news {
  font-size: 1.25rem;
}

h5.wp-block-heading_news {
  font-size: 1.125rem;
}

h6.wp-block-heading_news {
  font-size: 1rem;
}

:where(.wp-gutenberg :is(ul,ol):not([class])),
.wp-block-list_news {
  padding-left: 1.4em;
}

:where(.wp-gutenberg ul:not([class])),
ul.wp-block-list_news {
  list-style-type: disc;
}

:where(.wp-gutenberg ol:not([class])),
ol.wp-block-list_news {
  list-style-type: decimal;
}

:where(.wp-gutenberg li:not([class])),
.wp-block-list-item_news {
  list-style-type: inherit;
}

:where(.wp-block-post-content, .wp-gutenberg) :is(th, td) {
  padding: 5px;
  border: 1px solid;
  text-align: left;
}

.c-bread {
  padding-block-end: 24px;
}
@media (width <= 828px) {
  .c-bread {
    padding-inline: 52px;
    padding-block-end: 16px;
  }
}
.c-bread__list {
  word-break: break-all;
}
.c-bread__list > li {
  display: inline;
  margin-right: 0.2em;
}
.c-bread__list > li + li:before {
  content: "／";
  margin-inline-end: -7px;
}
@media (width <= 828px) {
  .c-bread__list > li + li:before {
    font-size: 24px;
    margin-inline-end: -6px;
  }
}
.c-bread__list a {
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 828px) {
  .c-bread__list a:hover {
    opacity: 0.6;
  }
}
@media (width <= 828px) {
  .c-bread__list a {
    font-size: 24px;
  }
}
@media (width <= 828px) {
  .c-bread__list span {
    font-size: 24px;
  }
}

.c-pagetitle {
  position: relative;
}
.c-pagetitle__wrapper {
  padding-block-start: 75px;
}
@media (width <= 828px) {
  .c-pagetitle__wrapper {
    padding-block-start: 210px;
  }
}
.c-pagetitle__name {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  line-height: 1.5;
  font-size: 38px;
  padding: 10px 44px 10px 43px;
  color: var(--color-light);
  background-color: rgba(15, 99, 154, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
@media (width <= 828px) {
  .c-pagetitle__name {
    font-size: 60px;
    padding: 16px 70px;
  }
}
.c-pagetitle__bg {
  width: 100%;
}
@media (1600px > width > 828px) {
  .c-pagetitle__bg {
    overflow: hidden;
  }
}
.c-pagetitle__bg img {
  width: 100%;
}
@media (1600px > width > 828px) {
  .c-pagetitle__bg img {
    min-width: 1600px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.c-pagetitle__mark {
  position: absolute;
  width: 1100px;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}
.c-pagetitle__mark img {
  width: 119px;
  display: block;
  margin: 0 0 0 auto;
}
@media (width <= 828px) {
  .c-pagetitle__mark img {
    width: 188px;
  }
}
@media (width <= 828px) {
  .c-pagetitle__mark {
    width: 100%;
    padding-inline-end: 28px;
    top: -60px;
  }
}

.scroll-up {
  opacity: 0 !important;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (width > 828px) {
  .scroll-up._up-02 {
    transform: translateY(60px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  }
  .scroll-up._up-03 {
    transform: translateY(90px);
    transition: opacity 2s ease-out, transform 2s ease-out;
  }
}
.scroll-up.is-show {
  opacity: 1 !important;
  transform: translateY(0);
}

.c-link {
  font-size: 14px;
  line-height: 1;
  color: var(--color-primary);
  padding-block: 6px;
  position: relative;
  text-decoration: none;
  transition: var(--sec);
  padding-inline-end: 15px;
  isolation: isolate;
}
@media (width > 828px) {
  .c-link:hover {
    opacity: 0.6;
  }
}
@media (width <= 828px) {
  .c-link {
    font-size: 24px;
    padding-block-end: 12px;
  }
}
.c-link::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -10;
}
.c-link__arr {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 107%;
  height: 8px;
  bottom: 0;
  left: 2px;
  opacity: 0.7;
}
@media (width <= 828px) {
  .c-link__arr {
    width: 112%;
    height: 12px;
  }
}
.c-link__arr::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 2.5px;
  background-color: var(--color-primary);
}
@media (width <= 828px) {
  .c-link__arr::before {
    right: 4px;
  }
}
.c-link__arr::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1px;
  bottom: 2px;
  right: 0;
  background-color: var(--color-primary);
  transform: rotate(35deg);
}
@media (width <= 828px) {
  .c-link__arr::after {
    width: 20px;
    height: 1.2px;
    bottom: 4px;
  }
}

.c-hov-scale {
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.c-hov-scale__target {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (width > 828px) {
  .c-hov-scale:hover .c-hov-scale__target {
    transform: scale(1.1);
  }
}

.c-slide-btn {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--color-primary);
  text-decoration: none;
  overflow: hidden;
}
.c-slide-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.5s;
}
.c-slide-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform-origin: 0% 50%;
  transition: transform ease 0.5s;
}

@media (width > 828px) {
  .c-slide-btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
  .c-slide-btn:hover::after {
    transform-origin: 100% 50%;
    transform: scaleX(0);
  }
}
[data-tel] a {
  color: inherit;
  text-decoration: underline;
}

[data-details] summary {
  cursor: pointer;
}
[data-details-panel] {
  overflow: hidden;
}

/*全画面*/
/*ヘッダー*/
.g-header .header {
  max-width: 1100px;
  margin: 0 auto;
  padding-block-start: 30px;
  position: relative;
}
.g-header .header__logo {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.g-header .header__nav {
  display: flex;
  gap: 176px;
  padding-block-start: 56px;
}
.g-header .header__nav ul {
  display: flex;
  gap: 107px;
  padding-inline: 30px 43px;
  padding-block-end: 29px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.g-header .header__nav a {
  white-space: nowrap;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  transition: var(--sec);
  padding: 12px 10px;
}
@media (width > 828px) {
  .g-header .header__nav a:hover {
    opacity: 0.6;
  }
}
.g-header .header__contact {
  width: fit-content;
  margin: 0 0 0 auto;
  padding-block-end: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  font-size: 11px;
  border-bottom: 1px solid currentColor;
  color: #87b1cc;
  transition: var(--sec);
  text-decoration: none;
}
@media (width > 828px) {
  .g-header .header__contact {
    position: relative;
    isolation: isolate;
  }
  .g-header .header__contact::before {
    content: "";
    position: absolute;
    inset: -15px -10px;
    z-index: -10;
  }
}
@media (width > 828px) {
  .g-header .header__contact:hover {
    opacity: 0.6;
  }
  .g-header .header__contact:hover img {
    opacity: 1;
  }
}
@media (width > 828px) {
  .g-header.header-scroll-min {
    height: 170.6px;
  }
  .g-header.header-scroll-min .header {
    padding-block-start: 12px;
  }
  .g-header.header-scroll-min .header__wrapper {
    width: 100%;
    position: fixed;
    top: -110px;
    left: 0;
    background-color: var(--color-light);
    transition: var(--sec);
    z-index: 1000;
  }
  .g-header.header-scroll-min .header__logo {
    width: 54px;
    bottom: 14px;
  }
  .g-header.header-scroll-min .header__nav {
    justify-content: center;
    gap: 266px;
    padding-block-start: 17px;
  }
  .g-header.header-scroll-min .header__nav ul {
    gap: 112px;
    padding-inline: 0;
    padding-block-end: 21px;
    border-bottom: none;
  }
  .g-header.header-scroll-min .header__nav a {
    font-size: 13px;
    line-height: 22px;
  }
  .g-header.header-scroll .header__wrapper {
    transition: var(--sec);
    top: 0;
  }
}

@media (width <= 828px) {
  .g-header .header {
    width: 100%;
    padding-block-start: 0;
    position: relative;
    height: 125px;
    border-bottom: 1px solid #cccccc;
  }
  .g-header .header__wrapper {
    min-width: 828px;
    max-width: 100%;
    width: 100%;
    position: fixed;
    height: auto;
    padding-inline: 40px;
    background-color: var(--color-light);
    z-index: 1000;
  }
  .g-header .header__logo {
    position: absolute;
    bottom: auto;
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
  }
  .g-header .header__contact {
    width: 100%;
    height: 120px;
    padding-block-end: 5px;
    justify-content: center;
    background-color: var(--color-light);
    gap: 17px;
    font-size: 38px;
    border-bottom: none;
    color: var(--color-primary);
    margin: 0;
    padding: 0;
  }
  .g-header .header__contact img {
    width: 49px;
  }
  .g-header .sp-header__nav {
    min-width: 828px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: var(--sec);
    padding: 109px 52px;
    background-color: var(--color-primary);
    overflow-y: scroll;
    overscroll-behavior: contain;
  }
  .g-header .sp-header__nav.open-menu {
    pointer-events: visible;
    opacity: 1;
  }
  .g-header .sp-header__nav ul {
    margin-block-end: 38.5px;
  }
  .g-header .sp-header__nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-light);
  }
  .g-header .sp-header__nav ul li:first-child {
    border-top: 1px solid var(--color-light);
  }
  .g-header .sp-header__nav ul li a {
    padding-block: 32px;
    font-size: 42px;
    line-height: 1.5;
    display: block;
    width: 100%;
    color: var(--color-light);
    position: relative;
    text-decoration: none;
  }
  .g-header .sp-header__nav ul li a::before {
    content: "";
    width: 35px;
    height: 13px;
    position: absolute;
    background-image: url(../img/cmn/c-icon_arr.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .g-header .hamburger {
    position: absolute;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 40px;
    top: 48px;
    right: 0;
    z-index: 1100;
  }
  .g-header .hamburger span {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-primary);
    transition: var(--sec);
  }
  .g-header .hamburger.active span:nth-child(1) {
    transform: translateY(16px) rotate(45deg);
    background-color: var(--color-light);
  }
  .g-header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .g-header .hamburger.active span:nth-child(3) {
    transform: translateY(-16px) rotate(-45deg);
    background-color: var(--color-light);
  }
}
/*フッター*/
.g-footer {
  padding-block: 95px 91px;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
@media (width <= 828px) {
  .g-footer {
    padding-inline: 123px;
    padding-block: 65px 36px;
  }
}
.g-footer .footer {
  display: grid;
  grid-template-columns: 1fr 298px;
}
@media (width > 828px) {
  .g-footer .footer {
    padding-inline: 30px;
  }
}
@media (width <= 828px) {
  .g-footer .footer {
    grid-template-columns: 1fr;
  }
}
.g-footer .footer__logo {
  display: block;
  width: 284.5px;
  margin-block-end: 37.6px;
}
@media (width <= 828px) {
  .g-footer .footer__logo {
    width: 100%;
    margin-block-end: 50px;
  }
}
.g-footer .footer__logo img {
  width: 100%;
}
.g-footer .footer__info-text {
  font-size: 14px;
  line-height: 13px;
  margin-block-end: 22px;
}
@media (width <= 828px) {
  .g-footer .footer__info-text {
    font-size: 26px;
    line-height: 24px;
    margin-block-end: 50px;
  }
}
.g-footer .footer__info-tel {
  text-decoration: none;
}
@media (width > 828px) {
  .g-footer .footer__info-tel {
    pointer-events: none;
  }
}
.g-footer .footer__copy {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 12px;
}
@media (width <= 828px) {
  .g-footer .footer__copy {
    font-size: 23px;
  }
}
.g-footer .footer__navi-wrapper {
  margin-block-start: -15px;
}
.g-footer .footer__navi {
  display: grid;
  grid-template-columns: 104px 109px;
  justify-content: space-between;
  row-gap: 2px;
  margin-block-end: 28px;
}
.g-footer .footer__navi a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: var(--sec);
  line-height: 1;
  padding-block: 14px;
}
@media (width > 828px) {
  .g-footer .footer__navi a:hover {
    opacity: 0.6;
  }
}
.g-footer .footer__navi svg {
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
}
.g-footer .footer__contact {
  width: 100%;
  height: 49px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid rgba(15, 99, 154, 0.7);
  text-decoration: none;
  transition: var(--sec);
}
.g-footer .footer__contact img {
  width: 20.5px;
}
@media (width > 828px) {
  .g-footer .footer__contact:hover {
    opacity: 0.6;
  }
  .g-footer .footer__contact:hover.footer__contact img {
    opacity: 1;
  }
}

/*メイン*/
.g-main {
  display: block;
}
.g-main:after {
  content: " ";
  display: block;
  clear: both;
}

.q-blog_datail {
  background-image: linear-gradient(90deg, #e2ecf3, #e2ecf3);
  background-size: 100% calc(100% - 75px);
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media (width <= 828px) {
  .q-blog_datail {
    background-size: 100% calc(100% - 207px);
  }
}
.q-blog_datail__top {
  padding-block: 37px 124px;
}
@media (width <= 828px) {
  .q-blog_datail__top {
    padding: 150px 27px 68px 27px;
  }
}
.q-blog_datail__top .mark {
  width: 116px;
  display: block;
  margin: 0 0 0 auto;
}
@media (width <= 828px) {
  .q-blog_datail__top .mark {
    width: 188px;
  }
}
.q-blog_datail .blog_link {
  margin: 0 auto;
  margin-block: 62px 293px;
  padding-block: 10px;
  width: fit-content;
  display: block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 828px) {
  .q-blog_datail .blog_link:hover {
    opacity: 0.6;
  }
}
@media (width <= 828px) {
  .q-blog_datail .blog_link {
    margin-block: 39px 266px;
    font-size: 22px;
  }
}
.q-blog_datail .blog_link svg {
  display: block;
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
}

.blog_editor {
  padding-block-end: 115.5px;
  background-color: var(--color-light);
  border-bottom: 8px solid var(--color-primary);
}
@media (width <= 828px) {
  .blog_editor {
    padding-block-end: 88px;
  }
}
.blog_editor .img_list {
  display: grid;
  grid-template-columns: repeat(4, 205px);
  gap: 16px;
  justify-content: center;
  margin-block-start: 43px;
}
@media (width <= 828px) {
  .blog_editor .img_list {
    grid-template-columns: 309px 309px;
    margin-block-start: 60px;
  }
}
.blog_editor .img_list img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  object-position: center;
}
@media (width <= 828px) {
  .blog_editor .img_list img {
    height: 309px;
  }
}
.blog_editor .head {
  display: flex;
  align-items: center;
  padding: 60px 118px 59px 118px;
  border-bottom: 1px solid #5792b8;
}
@media (width <= 828px) {
  .blog_editor .head {
    min-height: 161px;
    padding: 30px 19px 24px 20px;
  }
}
.blog_editor .head data {
  color: var(--color-primary);
  display: block;
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 14px;
  line-height: 1;
  padding-block: 8px;
  padding-inline-end: 44px;
  margin-inline-end: 50px;
  border-right: 1px solid #5792b8;
  white-space: nowrap;
}
@media (width <= 828px) {
  .blog_editor .head data {
    font-size: 20px;
    line-height: 1;
    padding-block: 10px;
    padding-inline-end: 33px;
    margin-inline-end: 36px;
  }
}
.blog_editor .head h1 {
  font-size: 30px;
  line-height: 43px;
  max-width: 555px;
}
@media (width <= 828px) {
  .blog_editor .head h1 {
    max-width: 530px;
    font-size: 44px;
    line-height: 54px;
    white-space: wrap;
  }
}

.blog_wrap {
  max-width: 868px;
  width: 100%;
  margin: 0 auto;
  padding-block-start: 93px;
  overflow: hidden;
}
@media (width <= 828px) {
  .blog_wrap {
    max-width: 634px;
    padding-block-start: 74px;
  }
}
.blog_wrap .thumb_org {
  width: 442px;
  height: 408px;
  object-fit: cover;
  object-position: center;
}
@media (width > 828px) {
  .blog_wrap .thumb_org {
    float: right;
    margin-inline-start: 25px;
  }
}
@media (width <= 828px) {
  .blog_wrap .thumb_org {
    width: 634px;
    height: 585px;
    margin-block-end: 32px;
  }
}
.blog_wrap p {
  font-size: 16px;
  line-height: 39px;
}
.blog_wrap p:not(:last-child) {
  margin-block-end: 43px;
}
@media (width <= 828px) {
  .blog_wrap p {
    font-size: 28px;
    line-height: 54px;
  }
  .blog_wrap p:not(:last-child) {
    margin-block-end: 60px;
  }
}
.blog_wrap img {
  max-width: 100%;
  height: auto;
}
.blog_wrap :is(h1,h2,h3,h4,h5,h6) {
  margin-bottom: 35px;
}
.blog_wrap h2 {
  font-size: 26px;
}
@media (width <= 828px) {
  .blog_wrap h2 {
    font-size: 40px;
  }
}
.blog_wrap h3 {
  font-size: 24px;
}
@media (width <= 828px) {
  .blog_wrap h3 {
    font-size: 38px;
  }
}
.blog_wrap h4 {
  font-size: 20px;
}
@media (width <= 828px) {
  .blog_wrap h4 {
    font-size: 36px;
  }
}
.blog_wrap h5 {
  font-size: 18px;
  border-bottom: 1px solid;
}
@media (width <= 828px) {
  .blog_wrap h5 {
    font-size: 32px;
  }
}
.blog_wrap th, .blog_wrap td {
  padding: 10px;
  border: 1px solid;
}
.blog_wrap ul, .blog_wrap ol {
  padding-left: 1.3em;
}
.blog_wrap li {
  list-style-type: inherit;
  line-height: 1.4;
}
.blog_wrap li:not(:last-child) {
  margin-bottom: 10px;
}
.blog_wrap a {
  text-decoration: underline;
  color: #999;
}

.q-blog {
  padding-block-start: 37px;
  background-image: linear-gradient(90deg, #e2ecf3, #e2ecf3);
  background-size: 100% calc(100% - 75px);
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media (width <= 828px) {
  .q-blog {
    padding-block-start: 150px;
    background-image: linear-gradient(90deg, #e2ecf3, #e2ecf3);
    background-size: 100% calc(100% - 207px);
  }
}
.q-blog .pagetitle {
  margin-block-end: 126px;
}
@media (width <= 828px) {
  .q-blog .pagetitle {
    margin-block-end: 90px;
    padding-inline: 27px;
  }
}
.q-blog .pagetitle .mark {
  width: 116px;
  margin: 0 0 0 auto;
  display: block;
}
@media (width <= 828px) {
  .q-blog .pagetitle .mark {
    width: 188px;
  }
}
.q-blog .pagetitle__h1 {
  margin-block-start: 126px;
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 48px;
  line-height: 55px;
  text-align: center;
}
@media (width <= 828px) {
  .q-blog .pagetitle__h1 {
    margin-block-start: 40px;
    font-size: 52px;
    line-height: 60px;
  }
}
.q-blog .card_wrapper {
  margin-block-end: 52px;
}
@media (width <= 828px) {
  .q-blog .card_wrapper {
    margin-block-end: 40px;
  }
}
.q-blog .card {
  padding: 33px 70px 33px 37px;
  display: flex;
  gap: 87px;
  align-items: center;
  background-color: var(--color-light);
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid #5792b8;
  transition: var(--sec);
}
@media (width <= 828px) {
  .q-blog .card {
    padding: 22px 80px 22px 25px;
    gap: 43px;
  }
}
.q-blog .card:first-child {
  border-top: 1px solid #5792b8;
}
@media (width > 828px) {
  .q-blog .card:hover {
    opacity: 0.6;
  }
  .q-blog .card:hover img {
    opacity: 1;
  }
}
.q-blog .card__img img {
  width: 238px;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
@media (width <= 828px) {
  .q-blog .card__img img {
    width: 262px;
    height: 242px;
  }
}
.q-blog .card__data {
  color: var(--color-primary);
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 14px;
  line-height: 16px;
  margin-block-end: 15px;
}
@media (width <= 828px) {
  .q-blog .card__data {
    font-size: 20px;
    line-height: 23px;
    margin-block-end: 10px;
  }
}
.q-blog .card__title {
  font-size: 26px;
  line-height: 45.5px;
}
@media (width <= 828px) {
  .q-blog .card__title {
    font-size: 32px;
    line-height: 43px;
  }
}
.q-blog .card__arr {
  position: absolute;
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media (width <= 828px) {
  .q-blog .card__arr {
    width: 32px;
    height: 6px;
    right: 50px;
  }
}
.q-blog .btn_wrapper {
  margin-block-end: 298px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 828px) {
  .q-blog .btn_wrapper {
    margin-block-end: 185px;
  }
}
.q-blog .btn_wrapper .prev, .q-blog .btn_wrapper .next {
  width: fit-content;
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: var(--sec);
  padding-block: 10px;
}
@media (width <= 828px) {
  .q-blog .btn_wrapper .prev, .q-blog .btn_wrapper .next {
    font-size: 22px;
  }
}
@media (width > 828px) {
  .q-blog .btn_wrapper .prev:hover, .q-blog .btn_wrapper .next:hover {
    opacity: 0.6;
  }
}
.q-blog .btn_wrapper .prev {
  text-align: right;
}
.q-blog .btn_wrapper .next svg {
  transform: scale(-1, 1);
}
.q-blog .btn_wrapper svg {
  display: block;
  fill: none;
  stroke: #5792b8;
}

.company-table {
  width: 100%;
}
.company-table tr {
  display: grid;
  grid-template-columns: 167px 1fr;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid rgba(15, 99, 154, 0.7);
}
@media (width <= 828px) {
  .company-table tr {
    grid-template-columns: 165px 1fr;
    padding: 42px 27px 42px 40px;
  }
}
.company-table tr:first-child {
  border-top: 1px solid rgba(15, 99, 154, 0.7);
}
.company-table th {
  padding-block: 10px;
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 14px;
  line-height: 1;
  border-right: 1px solid rgba(15, 99, 154, 0.7);
  height: 100%;
  display: flex;
  align-items: center;
}
@media (width <= 828px) {
  .company-table th {
    padding-block: 22px;
    font-size: 24px;
  }
}
.company-table td {
  padding-inline-start: 61px;
  line-height: 30px;
}
@media (width <= 828px) {
  .company-table td {
    padding-inline-start: 40px;
    font-size: 26px;
    line-height: 41px;
  }
}
.company-table.tr-bg-color tr:nth-child(even) {
  background-color: #ecf3f7;
}

.company-h2 {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 20px;
  line-height: 1;
  padding-inline-start: 19px;
  position: relative;
}
@media (width <= 828px) {
  .company-h2 {
    font-size: 42px;
    padding-inline-start: 40px;
  }
}
.company-h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: var(--color-primary);
}
@media (width <= 828px) {
  .company-h2::before {
    width: 13px;
  }
}

.q-company_front {
  padding-block-start: 190px;
}
@media (width <= 828px) {
  .q-company_front {
    padding-block-start: 110px;
  }
}

.q-company_access {
  padding-block-start: 209px;
}
@media (width <= 828px) {
  .q-company_access {
    padding-block-start: 101px;
    padding-inline: 54px;
  }
}
.q-company_access .company-h2 {
  margin-block-end: 19px;
}
@media (width <= 828px) {
  .q-company_access .company-h2 {
    margin-block-end: 29px;
  }
}
.q-company_access .company-access__map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-block-end: 25px;
}
@media (width <= 828px) {
  .q-company_access .company-access__map {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-block-end: 23px;
  }
}
.q-company_access .company-access__map iframe {
  width: 100%;
  height: 100%;
}
@media (width <= 828px) {
  .q-company_access .company-access__map iframe {
    height: 680px;
  }
}
.q-company_access .company-access__img img {
  width: 100%;
}
.q-company_access .company-access__info {
  padding-block: 35px;
  border-bottom: 1px solid #5792b8;
  border-top: 1px solid #5792b8;
  line-height: 28px;
}
@media (width <= 828px) {
  .q-company_access .company-access__info {
    padding-block: 26px;
    font-size: 26px;
    line-height: 45.5px;
  }
}

.q-company_history {
  padding-block-start: 214.5px;
  margin-block-end: 305px;
}
@media (width <= 828px) {
  .q-company_history {
    margin-block-end: 260px;
    padding-block-start: 106px;
  }
}
.q-company_history__content {
  padding-block: 111px 158px;
  background-color: var(--color-bg-blue);
}
@media (width <= 828px) {
  .q-company_history__content {
    padding-block: 56px 99px;
  }
}
.q-company_history .company-h2 {
  max-width: 1100px;
  margin: 0 auto;
  margin-block-end: 10px;
}
@media (width <= 828px) {
  .q-company_history .company-h2 {
    margin-inline: 54px;
    margin-block-end: 30px;
  }
}
.q-company_history .company-table {
  width: 100%;
}
.q-company_history .company-table tr {
  grid-template-columns: 158px 1fr;
  padding: 30px 30px 32.5px 27px;
}
@media (width <= 828px) {
  .q-company_history .company-table tr {
    grid-template-columns: 153px 1fr;
    padding: 23px 14px 24px 24px;
  }
}
.q-company_history .company-table th {
  font-size: 16px;
}
@media (width <= 828px) {
  .q-company_history .company-table th {
    padding-block: 6px;
    font-size: 24px;
  }
}
.q-company_history .company-table td {
  font-size: 18px;
  padding-inline-start: 68px;
  line-height: 27.6px;
}
@media (width <= 828px) {
  .q-company_history .company-table td {
    font-size: 26px;
    padding-inline-start: 35px;
    line-height: 41px;
    text-align: justify;
  }
}
.q-company_history .company-topics {
  margin-block-start: 81px;
}
@media (width <= 828px) {
  .q-company_history .company-topics {
    margin-block-start: 59px;
  }
}
.q-company_history .company-topics__title {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  width: fit-content;
  padding-inline: 5px;
  line-height: 1.2;
  background-color: var(--color-primary);
  color: var(--color-light);
  font-size: 18px;
}
@media (width <= 828px) {
  .q-company_history .company-topics__title {
    font-size: 30px;
    padding-inline: 10px;
  }
}
.q-company_history .company-topics__content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 8.5px;
  align-items: center;
}
@media (width <= 828px) {
  .q-company_history .company-topics__content {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.q-company_history .company-topics__img img {
  width: 100%;
}
.q-company_history .company-topics__text {
  height: 100%;
  display: flex;
  align-items: center;
  background-color: var(--color-light);
  border: 1px solid var(--color-primary);
  line-height: 36.8px;
  padding-inline-start: 71.5px;
}
@media (width > bo(sm)) {
  .q-company_history .company-topics__text {
    border-right: none;
  }
}
@media (width <= 828px) {
  .q-company_history .company-topics__text {
    padding: 31px 45px 22px 45px;
    border-bottom: none;
    font-size: 26px;
    line-height: 44px;
    text-align: justify;
  }
}

.q-contact-complete {
  padding-block: 110px;
  margin-block-end: 100px;
  background-color: var(--color-bg-blue);
}
@media (width > 828px) {
  .q-contact-complete {
    text-align: center;
  }
}
@media (width <= 828px) {
  .q-contact-complete {
    padding-block: 150px 150px;
  }
}
.q-contact-complete .main-text {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 32px;
  color: var(--color-primary);
  margin-block-end: 50px;
}
@media (width <= 828px) {
  .q-contact-complete .main-text {
    font-size: 42px;
    margin-block-end: 60px;
  }
}
.q-contact-complete .text {
  margin-block-end: 40px;
}
@media (width <= 828px) {
  .q-contact-complete .text {
    margin-block-end: 60px;
    font-size: 26px;
  }
}
.q-contact-complete .link {
  text-decoration: underline;
  transition: var(--sec);
  color: var(--color-primary);
}
@media (width > 828px) {
  .q-contact-complete .link:hover {
    opacity: 0.6;
  }
}
@media (width <= 828px) {
  .q-contact-complete .link {
    font-size: 26px;
  }
}

.q-contact_pagetitle {
  padding-block: 37px 129px;
}
@media (width <= 828px) {
  .q-contact_pagetitle {
    padding-block: 151px 83px;
    padding-inline: 28px;
  }
}
.q-contact_pagetitle .mark {
  display: block;
  width: 116px;
  margin: 0 0 0 auto;
}
@media (width <= 828px) {
  .q-contact_pagetitle .mark {
    width: 188px;
  }
}
.q-contact_pagetitle .pagetitle {
  margin-block-start: 30px;
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 48px;
  line-height: 1;
  text-align: center;
}
@media (width <= 828px) {
  .q-contact_pagetitle .pagetitle {
    margin-block-start: 23px;
    font-size: 52px;
    line-height: 60px;
  }
}

.q-contact_form {
  margin-block-end: 301px;
}
@media (width <= 828px) {
  .q-contact_form {
    margin-block-end: 247px;
  }
}
.q-contact_form .p-form {
  margin-block-start: 25px;
  height: 100px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 17px;
}
@media (width <= 828px) {
  .q-contact_form .p-form {
    height: 115px;
    margin-block-start: 16px;
    grid-template-columns: 208px 1fr;
    gap: 10px;
  }
  .q-contact_form .p-form._radio-sp {
    height: 129px;
  }
}
.q-contact_form .p-form:first-child {
  margin-block-start: 0;
}
.q-contact_form .p-form__label {
  padding-inline: 32px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-primary);
}
@media (width <= 828px) {
  .q-contact_form .p-form__label {
    flex-flow: column;
    align-items: start;
    padding-inline-start: 16px;
    justify-content: center;
  }
}
.q-contact_form .p-form__label .hissu {
  width: 30px;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-primary);
  background-color: var(--color-light);
  text-align: center;
}
@media (width <= 828px) {
  .q-contact_form .p-form__label .hissu {
    width: 45px;
    font-size: 18px;
    line-height: 21px;
  }
  .q-contact_form .p-form__label .hissu._sp-ver {
    display: inline-block;
    margin-inline-start: 52px;
  }
}
.q-contact_form .p-form__label .title {
  font-size: 14px;
  line-height: 1;
  color: var(--color-light);
}
@media (width <= 828px) {
  .q-contact_form .p-form__label .title {
    font-size: 24px;
    line-height: 27px;
  }
}
.q-contact_form .p-form__input textarea, .q-contact_form .p-form__input input {
  width: 100%;
  height: 100%;
  border: 1px solid #5792b8;
  border-left: none;
  border-right: none;
  padding-inline: 30px;
  border-radius: 0;
  font-family: var(--typography-base-font-family);
  font-weight: var(--typography-base-font-weight);
  font-size: var(--typography-base-font-size);
  line-height: var(--typography-base-line-height);
  --letter-spacing: var(--typography-base-letter-spacing);
}
@media (width <= 828px) {
  .q-contact_form .p-form__input textarea, .q-contact_form .p-form__input input {
    padding-inline: 13.5px;
    font-size: 24px;
  }
}
.q-contact_form .p-form__radio {
  width: 100%;
  height: 100%;
  padding-inline: 30px;
  display: flex;
  align-items: center;
  gap: 78px;
  border: 1px solid #5792b8;
  border-left: none;
  border-right: none;
}
@media (width <= 828px) {
  .q-contact_form .p-form__radio {
    display: grid;
    grid-template-columns: 240px auto;
    gap: 0;
    padding: 28px 0 28px 18px;
  }
}
.q-contact_form .p-form__radio label {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 9px;
  cursor: pointer;
}
@media (width <= 828px) {
  .q-contact_form .p-form__radio label {
    width: fit-content;
    font-size: 24px;
  }
}
.q-contact_form .p-form__radio input {
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #999999;
}
@media (width <= 828px) {
  .q-contact_form .p-form__radio input {
    width: 21px;
    height: 21px;
  }
}
.q-contact_form .foot {
  margin-block-start: 90px;
  display: grid;
  grid-template-columns: 532px 501px;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 828px) {
  .q-contact_form .foot {
    margin-block-start: 47px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.q-contact_form .foot__note {
  font-size: 14px;
  line-height: 30px;
}
@media (width <= 828px) {
  .q-contact_form .foot__note {
    font-size: 18px;
    line-height: 29px;
  }
}
.q-contact_form .send-btn {
  height: 148px;
  padding-inline-start: 48px;
}
@media (width <= 828px) {
  .q-contact_form .send-btn {
    height: 165px;
    padding-inline-start: 40px;
  }
}
.q-contact_form .send-btn::before {
  background: var(--color-primary);
}
.q-contact_form .send-btn::after {
  background: var(--color-light);
}
.q-contact_form .send-btn .text {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 26px;
  line-height: 1;
  position: relative;
  z-index: 4;
  color: var(--color-primary);
  transition: var(--sec);
}
@media (width <= 828px) {
  .q-contact_form .send-btn .text {
    font-size: 36px;
  }
}
.q-contact_form .send-btn .arr {
  width: 32px;
  height: 6px;
  fill: none;
  stroke: var(--color-primary);
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  transition: var(--sec);
}
@media (width <= 828px) {
  .q-contact_form .send-btn .arr {
    width: 57px;
    height: 11px;
    right: 53px;
  }
}
@media (width > 828px) {
  .q-contact_form .send-btn:hover .text {
    color: var(--color-light);
  }
  .q-contact_form .send-btn:hover .arr {
    stroke: var(--color-light);
  }
}

.q-news_detail {
  padding-block: 37px 292px;
}
@media (width <= 828px) {
  .q-news_detail {
    padding-block: 209px 278px;
  }
}
.q-news_detail h1 {
  margin-block-end: 130px;
  font-size: 28px;
  line-height: 49px;
}
@media (width <= 828px) {
  .q-news_detail h1 {
    margin-block-end: 89px;
    font-size: 44px;
    line-height: 54px;
  }
}
.q-news_detail__mark {
  width: 116px;
  margin: 0 0 0 auto;
  margin-block-end: 32px;
}
@media (width <= 828px) {
  .q-news_detail__mark {
    width: 193px;
    margin-block-end: 5px;
  }
}
.q-news_detail__mark img {
  width: 100%;
}
.q-news_detail .head {
  width: fit-content;
  margin: 0 auto;
}
@media (width <= 828px) {
  .q-news_detail .head {
    max-width: 601px;
  }
}
.q-news_detail .head__info {
  margin-block-end: 15px;
}
@media (width <= 828px) {
  .q-news_detail .head__info {
    margin-block-end: 3px;
  }
}
.q-news_detail .head__data {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 14px;
  line-height: 1.2;
}
@media (width <= 828px) {
  .q-news_detail .head__data {
    font-size: 20px;
  }
}
.q-news_detail .head__tag {
  margin-inline-start: 10px;
  font-size: 12px;
  line-height: 1;
  padding: 1px 5px;
}
@media (width <= 828px) {
  .q-news_detail .head__tag {
    margin-inline-start: 18px;
    font-size: 18px;
    padding: 2px 11px;
  }
}
.q-news_detail .head__tag._oshirase {
  background-color: var(--color-primary);
  color: var(--color-light);
}
.q-news_detail .head__tag._saiyo {
  border: 1px solid #5792b8;
  color: var(--color-primary);
}
.q-news_detail .head__tag._sonota {
  color: var(--color-light);
  background-color: #84a2b2;
  padding-inline: 12px;
}
@media (width <= 828px) {
  .q-news_detail .head__tag._sonota {
    padding-inline: 20px;
  }
}
.q-news_detail .content {
  margin: 0 auto;
  margin-block-end: 87px;
  padding-block: 109px 108px;
  border-bottom: 1px solid #5792b8;
  border-top: 1px solid #5792b8;
}
@media (width > 828px) {
  .q-news_detail .content {
    max-width: 1100px;
  }
}
@media (width <= 828px) {
  .q-news_detail .content {
    margin-block-end: 50px;
    padding-inline: 15px 11px;
    padding-block: 86px 90px;
  }
}
.q-news_detail .back-btn {
  padding-block: 10px;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  transition: var(--sec);
  font-size: 14px;
  color: var(--color-primary);
  line-height: 1;
}
@media (width > 828px) {
  .q-news_detail .back-btn:hover {
    opacity: 0.6;
  }
}
@media (width <= 828px) {
  .q-news_detail .back-btn {
    font-size: 24px;
  }
}
.q-news_detail .back-btn .arr {
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
  display: block;
}
.q-news_detail .editor p {
  font-size: 16px;
  line-height: 2.4375;
  margin-block-end: 40px;
}
.q-news_detail .editor p:last-child {
  margin-block-end: 0;
}
@media (width <= 828px) {
  .q-news_detail .editor p {
    font-size: 28px;
    line-height: 52px;
    text-align: justify;
    margin-block-end: 50px;
  }
  .q-news_detail .editor p:last-child {
    margin-block-end: 0;
  }
}
.q-news_detail .editor img {
  max-width: 100%;
  height: auto;
}
.q-news_detail .editor :is(h1,h2,h3,h4,h5,h6) {
  margin-bottom: 35px;
}
.q-news_detail .editor h2 {
  font-size: 26px;
}
@media (width <= 828px) {
  .q-news_detail .editor h2 {
    font-size: 40px;
  }
}
.q-news_detail .editor h3 {
  font-size: 24px;
}
@media (width <= 828px) {
  .q-news_detail .editor h3 {
    font-size: 38px;
  }
}
.q-news_detail .editor h4 {
  font-size: 20px;
}
@media (width <= 828px) {
  .q-news_detail .editor h4 {
    font-size: 36px;
  }
}
.q-news_detail .editor h5 {
  font-size: 18px;
  border-bottom: 1px solid;
}
@media (width <= 828px) {
  .q-news_detail .editor h5 {
    font-size: 32px;
  }
}
.q-news_detail .editor th, .q-news_detail .editor td {
  padding: 10px;
  border: 1px solid;
}
.q-news_detail .editor ul, .q-news_detail .editor ol {
  padding-left: 1.3em;
}
.q-news_detail .editor li {
  list-style-type: inherit;
  line-height: 1.4;
}
.q-news_detail .editor li:not(:last-child) {
  margin-bottom: 10px;
}
.q-news_detail .editor a {
  text-decoration: underline;
  color: #999;
}

.q-news_page-title {
  padding-block: 37px 97px;
}
@media (width <= 828px) {
  .q-news_page-title {
    padding-block: 150px 82px;
    padding-inline: 23px;
  }
}
.q-news_page-title__mark {
  width: 116px;
  margin: 0 0 0 auto;
  margin-block-end: 30px;
}
@media (width <= 828px) {
  .q-news_page-title__mark {
    width: 193px;
    margin-block-end: 2px;
  }
}
.q-news_page-title__mark img {
  width: 100%;
}
.q-news_page-title h1 {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 48px;
  line-height: 1;
  text-align: center;
}
@media (width <= 828px) {
  .q-news_page-title h1 {
    font-size: 52px;
  }
}

.q-news {
  margin-block-end: 298px;
}
@media (width <= 828px) {
  .q-news {
    margin-block-end: 190px;
  }
}
.q-news .news-category {
  margin-block-end: 89px;
  display: flex;
  justify-content: center;
  gap: 47px;
}
@media (width <= 828px) {
  .q-news .news-category {
    margin-block-end: 59px;
  }
}
.q-news .news-category li {
  font-size: 14px;
  line-height: 1.2;
}
@media (width <= 828px) {
  .q-news .news-category li {
    font-size: 24px;
  }
}
.q-news .news-category li.select {
  color: #0f639a;
}
.q-news .news-category li a {
  padding: 10px;
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 828px) {
  .q-news .news-category li a:hover {
    opacity: 0.6;
  }
}
.q-news .news {
  position: relative;
  display: block;
  text-decoration: none;
  transition: var(--sec);
  padding-block: 80px 86px;
}
@media (width > 828px) {
  .q-news .news {
    padding-inline: 30px 21px;
  }
}
@media (width <= 828px) {
  .q-news .news {
    padding-block: 53px 68px;
    padding-inline: 14px 6px;
  }
}
.q-news .news__wrapper {
  margin-block-end: 55px;
}
@media (width <= 828px) {
  .q-news .news__wrapper {
    margin-block-end: 39px;
  }
}
.q-news .news__content {
  border-bottom: 1px solid #5792b8;
}
.q-news .news__content:first-child {
  border-top: 1px solid #5792b8;
}
@media (width > 828px) {
  .q-news .news:hover {
    opacity: 0.6;
  }
}
.q-news .news__arr {
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
@media (width <= 828px) {
  .q-news .news__arr {
    right: 0;
  }
}
.q-news .news__head {
  margin-block-end: 17px;
}
@media (width <= 828px) {
  .q-news .news__head {
    margin-block-end: -4px;
  }
}
.q-news .news__data {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  line-height: 28px;
}
@media (width <= 828px) {
  .q-news .news__data {
    font-size: 20px;
  }
}
.q-news .news__tag {
  margin-inline-start: 10px;
  font-size: 12px;
  line-height: 1;
  padding: 1px 5px;
}
@media (width <= 828px) {
  .q-news .news__tag {
    margin-inline-start: 10px;
    font-size: 18px;
    padding: 1px 11px;
  }
}
.q-news .news__tag._oshirase {
  background-color: var(--color-primary);
  color: var(--color-light);
}
.q-news .news__tag._saiyo {
  border: 1px solid #5792b8;
  color: var(--color-primary);
}
.q-news .news__tag._sonota {
  color: var(--color-light);
  background-color: #84a2b2;
  padding-inline: 12px;
}
@media (width <= 828px) {
  .q-news .news__tag._sonota {
    padding-inline: 20px;
  }
}
.q-news .news__title {
  font-size: 24px;
  line-height: 42px;
  padding-inline-end: 50px;
}
@media (width <= 828px) {
  .q-news .news__title {
    font-size: 32px;
    line-height: 56px;
  }
}

.q-philosophy_head {
  padding-block-start: 220px;
}
@media (width <= 828px) {
  .q-philosophy_head {
    padding-block-start: 151px;
  }
}
.q-philosophy_head .philosophy-head__catch {
  display: block;
  margin: 0 auto;
}
.q-philosophy_head .philosophy-head__text {
  padding-block-start: 118px;
  font-size: 24px;
  line-height: 67.7px;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
}
@media (width <= 828px) {
  .q-philosophy_head .philosophy-head__text {
    padding-block-start: 161px;
    font-size: 32px;
    line-height: 90.5px;
    letter-spacing: 0.05em;
  }
}
.q-philosophy_head .philosophy-head__text::before {
  content: "";
  position: absolute;
  width: 61.5px;
  height: 1px;
  background-color: #5792b8;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 828px) {
  .q-philosophy_head .philosophy-head__text::before {
    top: 97px;
    width: 82px;
  }
}

.q-philosophy_greeting {
  margin-block-start: 240px;
  background-color: var(--color-bg-blue);
  padding-block: 130px 122px;
  position: relative;
}
@media (width <= 828px) {
  .q-philosophy_greeting {
    margin-block-start: 170px;
    padding: 100px 54px 102px 54px;
  }
}
.q-philosophy_greeting::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 6px;
  background-color: var(--color-primary);
  top: -6px;
  left: 0;
}
.q-philosophy_greeting::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 6px;
  background-color: var(--color-primary);
  bottom: -6px;
  right: 0;
}
.q-philosophy_greeting .philosophy-greeting__h2 {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 38px;
  line-height: 1;
  margin-block-end: 70px;
  text-align: center;
}
@media (width <= 828px) {
  .q-philosophy_greeting .philosophy-greeting__h2 {
    font-size: 52px;
    margin-block-end: 37px;
  }
}
.q-philosophy_greeting .philosophy-greeting__text {
  line-height: 38px;
  margin-block-end: 38px;
}
@media (width <= 828px) {
  .q-philosophy_greeting .philosophy-greeting__text {
    line-height: 55px;
    margin-block-end: 28px;
  }
}
.q-philosophy_greeting .philosophy-greeting__name {
  display: block;
}
@media (width > 828px) {
  .q-philosophy_greeting .philosophy-greeting__name {
    margin: 0 0 0 auto;
  }
}

.q-philosophy_precept {
  padding-block-start: 359.5px;
  margin-block-end: 438px;
}
@media (width <= 828px) {
  .q-philosophy_precept {
    padding-block-start: 197px;
    padding-inline: 54px;
    margin-block-end: 271px;
  }
}
.q-philosophy_precept .philosophy-precept {
  background-image: url(../img/philosophy/precept_bg_2x.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-block-end: 95px;
}
@media (width <= 828px) {
  .q-philosophy_precept .philosophy-precept {
    background-image: url(../img/philosophy/precept_bg_2x_sp.png);
    padding-block-end: 72px;
  }
}
.q-philosophy_precept .philosophy-precept__h2 {
  margin-block-end: 69px;
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-23px);
  text-align: center;
}
@media (width <= 828px) {
  .q-philosophy_precept .philosophy-precept__h2 {
    transform: translateY(-31px);
    font-size: 52px;
    margin-block-end: 20px;
  }
}
.q-philosophy_precept .philosophy-precept__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 828px) {
  .q-philosophy_precept .philosophy-precept__list {
    grid-template-columns: 1fr;
    padding-inline-start: 83px;
  }
}
.q-philosophy_precept .philosophy-precept__list p {
  font-size: 26px;
  line-height: 53px;
}
@media (width > 828px) {
  .q-philosophy_precept .philosophy-precept__list p:first-child {
    padding-inline-start: 137px;
  }
}
@media (width <= 828px) {
  .q-philosophy_precept .philosophy-precept__list p {
    font-size: 36px;
    line-height: 61px;
  }
}

.c-recruit_title__h2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 30px;
  line-height: 1;
  margin-block-end: 52px;
  gap: 22px;
}
@media (width <= 828px) {
  .c-recruit_title__h2 {
    font-size: 40px;
    margin-block-end: 46px;
    gap: 19px;
  }
}
.c-recruit_title__h2-deco {
  position: relative;
  display: block;
  width: 100%;
  height: 31px;
}
@media (width <= 828px) {
  .c-recruit_title__h2-deco {
    height: 44px;
  }
}
.c-recruit_title__h2-deco._l {
  border-right: 1px solid #999999;
}
.c-recruit_title__h2-deco._r {
  border-left: 1px solid #999999;
}
.c-recruit_title__h2-deco::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #999999;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.q-recruit_head .recruit__pagetitle {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 46px;
  line-height: 1;
  padding-block: 85px 86px;
  text-align: center;
}
@media (width <= 828px) {
  .q-recruit_head .recruit__pagetitle {
    padding-block: 185px 63px;
    font-size: 60px;
  }
}
.q-recruit_head .recruit__page-nav {
  display: flex;
  justify-content: center;
  background-color: var(--color-primary);
  padding-block: 18px 17px;
}
.q-recruit_head .recruit__page-nav li {
  color: var(--color-light);
  border-right: 1px solid var(--color-light);
  font-size: 14px;
  line-height: 24px;
}
@media (width <= 828px) {
  .q-recruit_head .recruit__page-nav li {
    font-size: 24px;
    line-height: 42px;
  }
}
.q-recruit_head .recruit__page-nav li:last-child {
  margin-inline-end: 0;
  padding-inline-end: 0;
  border-right: none;
}
.q-recruit_head .recruit__page-nav li a {
  padding: 18px 78px 17px 78px;
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 828px) {
  .q-recruit_head .recruit__page-nav li a:hover {
    opacity: 0.6;
  }
}
@media (width <= 828px) {
  .q-recruit_head .recruit__page-nav:nth-child(1) {
    padding-block: 20px 24px;
  }
  .q-recruit_head .recruit__page-nav:nth-child(1) li {
    height: 80px;
    display: flex;
    align-items: center;
  }
  .q-recruit_head .recruit__page-nav:nth-child(1) li:last-child {
    margin-inline-end: 0;
    padding-inline-end: 0;
  }
  .q-recruit_head .recruit__page-nav:nth-child(1) li a {
    padding: 42px 88px 38px 76px;
  }
  .q-recruit_head .recruit__page-nav:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 26px 29px;
    text-align: center;
    overflow: hidden;
  }
  .q-recruit_head .recruit__page-nav:nth-child(2) li:last-child {
    margin-inline-end: 0;
    padding-inline-end: 0;
  }
  .q-recruit_head .recruit__page-nav:nth-child(2) li a {
    padding: 26px 150px 29px 155px;
    white-space: nowrap;
  }
}

.q-recruit_main-img .main-img {
  padding-block-start: 111px;
  position: relative;
}
@media (width <= 828px) {
  .q-recruit_main-img .main-img {
    padding-block-start: 97px;
  }
}
.q-recruit_main-img .main-img__mark {
  position: absolute;
  width: 119px;
  right: 0;
  top: 59px;
}
@media (width <= 828px) {
  .q-recruit_main-img .main-img__mark {
    width: 188px;
    top: 13px;
    right: -5px;
  }
}
.q-recruit_main-img .main-img__img {
  width: 100%;
}

.q-recruit_message {
  padding-block-start: 187px;
}
@media (width <= 828px) {
  .q-recruit_message {
    padding-inline: 54px;
    padding-block-start: 118px;
  }
}
.q-recruit_message__inner {
  max-width: 1062px;
}
.q-recruit_message .recruit-message__text {
  line-height: 36.5px;
  margin-block-end: 25px;
}
@media (width <= 828px) {
  .q-recruit_message .recruit-message__text {
    line-height: 55px;
    margin-block-end: 44px;
  }
}
.q-recruit_message .recruit-message__name {
  display: block;
  margin: 0 0 0 auto;
}

.q-recruit_jukai {
  padding-block: 200px 75px;
  border-bottom: 1px solid #6fa1c2;
  overflow: hidden;
}
@media (width <= 828px) {
  .q-recruit_jukai {
    padding-block: 130px 76px;
  }
}
.q-recruit_jukai .jukai__img {
  width: 100%;
}
@media (1600px > width > 828px) {
  .q-recruit_jukai .jukai__img {
    min-width: 1600px;
    margin-inline-start: 50%;
    transform: translateX(-50%);
  }
}
.q-recruit_jukai .jukai__title {
  margin-block-end: 85px;
  padding-block: 6px 10px;
  text-align: center;
  font-size: 28px;
  line-height: 1;
  background-color: var(--color-primary);
  color: var(--color-light);
}
@media (width <= 828px) {
  .q-recruit_jukai .jukai__title {
    margin-block-end: 62px;
    padding-block: 10px 15px;
    font-size: 42px;
  }
}
.q-recruit_jukai .jukai__content {
  display: flex;
  gap: 112px;
  justify-content: center;
}
@media (width <= 828px) {
  .q-recruit_jukai .jukai__content {
    padding-inline-start: 149px;
    flex-flow: column;
    gap: 0;
  }
}
.q-recruit_jukai .jukai__text {
  font-size: 22px;
  line-height: 48.5px;
}
@media (width <= 828px) {
  .q-recruit_jukai .jukai__text {
    font-size: 36px;
    line-height: 62px;
  }
}

.q-recruit_about {
  padding-block-start: 220px;
}
@media (width <= 828px) {
  .q-recruit_about {
    padding-block-start: 103px;
  }
}
.q-recruit_about .recruit-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about {
    padding-inline: 50px 54px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.q-recruit_about .recruit-about__content {
  max-width: 520px;
  width: 100%;
  margin: 0 0 0 auto;
  padding-inline-end: 28px;
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about__content {
    max-width: 100%;
    padding-inline-end: 0;
  }
}
.q-recruit_about .recruit-about__h2 {
  font-size: 58px;
  line-height: 1;
  margin-block-end: 22px;
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about__h2 {
    font-size: 86px;
    white-space: nowrap;
    margin-block-end: 30px;
  }
}
.q-recruit_about .recruit-about__catch {
  font-size: 26px;
  line-height: 40px;
  margin-block-end: 7px;
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about__catch {
    font-size: 38px;
    line-height: 56px;
    margin-block-end: 3px;
  }
}
.q-recruit_about .recruit-about__text {
  line-height: 32px;
  margin-block-end: 26px;
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about__text {
    line-height: 52px;
    margin-block-end: 30px;
  }
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about__img {
    padding-inline-start: 4px;
  }
}
.q-recruit_about .recruit-about__img img {
  width: 100%;
  min-width: 800px;
  object-position: left;
}
@media (width <= 828px) {
  .q-recruit_about .recruit-about__img img {
    min-width: 0;
  }
}
.q-recruit_about .merit {
  padding-inline-start: 4px;
}
@media (width <= 828px) {
  .q-recruit_about .merit {
    padding-inline-start: 20px;
  }
}
.q-recruit_about .merit__title {
  width: 125px;
  height: 26px;
  padding-block-start: 2px;
  margin-block-end: 8px;
  display: block;
  color: var(--color-light);
  background-image: url(../img/recruit/merit-fukidashi_img_2x.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
@media (width <= 828px) {
  .q-recruit_about .merit__title {
    width: 250px;
    height: 52px;
    padding-block-start: 5px;
    margin-inline-start: 4px;
    font-size: 24px;
    margin-block-end: 11px;
  }
}
.q-recruit_about .merit li {
  margin-block-end: 11px;
  padding-block-end: 12px;
  border-bottom: 1px solid #6fa1c2;
  display: flex;
  align-items: center;
}
@media (width <= 828px) {
  .q-recruit_about .merit li {
    margin-block-end: 12px;
    padding-block-end: 15px;
  }
  .q-recruit_about .merit li:last-child {
    margin-block-end: 0;
  }
}
.q-recruit_about .merit__number {
  display: block;
  height: 60px;
  padding-block-start: 6px;
  padding-inline-end: 14px;
  margin-inline-end: 16px;
  color: var(--color-primary);
  border-right: 1px solid #6fa1c2;
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 46px;
  line-height: 1;
  white-space: nowrap;
}
@media (width <= 828px) {
  .q-recruit_about .merit__number {
    height: 98px;
    margin-inline-end: 20px;
    padding-inline-end: 20px;
    padding-block-start: 13px;
    font-size: 66px;
  }
}
.q-recruit_about .merit__text {
  font-size: 14px;
  line-height: 20px;
}
@media (width <= 828px) {
  .q-recruit_about .merit__text {
    font-size: 24px;
    line-height: 29px;
    white-space: nowrap;
  }
}
.q-recruit_about .merit__text .emp {
  margin-block-end: 3px;
  display: block;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}
@media (width <= 828px) {
  .q-recruit_about .merit__text .emp {
    margin-block-end: 6px;
    font-size: 30px;
  }
}
.q-recruit_about .merit__text .note {
  font-size: 9px;
  vertical-align: text-top;
  line-height: 1;
}
@media (width <= 828px) {
  .q-recruit_about .merit__text .note {
    font-size: 13px;
  }
}
.q-recruit_about .merit__text .text_s {
  font-size: 12px;
}
@media (width <= 828px) {
  .q-recruit_about .merit__text .text_s {
    font-size: 20px;
  }
}

.q-recruit_business {
  padding-block-start: 189px;
}
@media (width <= 828px) {
  .q-recruit_business {
    padding-block-start: 130px;
    padding-inline: 54px;
  }
}
.q-recruit_business .c-recruit_title__h2 {
  margin-block-end: 51px;
}
@media (width <= 828px) {
  .q-recruit_business .c-recruit_title__h2 {
    margin-block-end: 47px;
  }
}
.q-recruit_business .recruit-business {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 40px;
}
@media (width <= 828px) {
  .q-recruit_business .recruit-business {
    grid-template-columns: 720px;
    gap: 47px;
  }
}
.q-recruit_business .recruit-business__content img {
  width: 100%;
  margin-block-end: 11px;
}
@media (width <= 828px) {
  .q-recruit_business .recruit-business__content img {
    margin-block-end: 23px;
  }
}
.q-recruit_business .recruit-business__title {
  padding-inline-start: 14px;
  border-left: 6px solid var(--color-primary);
  font-size: 20px;
  line-height: 24px;
}
@media (width <= 828px) {
  .q-recruit_business .recruit-business__title {
    padding-inline-start: 23px;
    border-left: 8px solid var(--color-primary);
    font-size: 32px;
    line-height: 40px;
  }
}
.q-recruit_business .recruit-business__text {
  margin-block-start: 12px;
  padding-block-start: 7px;
  border-top: 1px solid #5792b8;
  font-size: 14px;
  line-height: 25.5px;
}
@media (width <= 828px) {
  .q-recruit_business .recruit-business__text {
    margin-block-start: 16px;
    padding-block-start: 14px;
    font-size: 28px;
    line-height: 50px;
    letter-spacing: 0.02em;
  }
}

.q-recruit_voice {
  padding-block-start: 205px;
}
@media (width <= 828px) {
  .q-recruit_voice {
    padding-block-start: 93px;
  }
}
.q-recruit_voice__wrapper {
  background-color: var(--color-bg-blue);
}
.q-recruit_voice .recruit-voice__h2 {
  padding-block: 11px 12px;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  color: var(--color-primary);
  border: 1px solid #5792b8;
  background-color: var(--color-light);
}
@media (width <= 828px) {
  .q-recruit_voice .recruit-voice__h2 {
    font-size: 42px;
    padding-block: 9px 16px;
  }
}
.q-recruit_voice .recruit-voice__wrapper {
  padding-block: 136px 132px;
}
@media (width <= 828px) {
  .q-recruit_voice .recruit-voice__wrapper {
    padding-block: 96px 85px;
    padding-inline: 54px;
  }
}
.q-recruit_voice .voice {
  display: grid;
  grid-template-columns: 500px 512px;
  justify-content: space-between;
}
@media (width <= 828px) {
  .q-recruit_voice .voice {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.q-recruit_voice .voice._01 {
  margin-block-end: 39px;
}
@media (width <= 828px) {
  .q-recruit_voice .voice._01 {
    margin-block-end: 44px;
  }
}
.q-recruit_voice .voice._02 {
  grid-template-columns: 512px 500px;
  padding-block-start: 118px;
  margin-block-start: 118px;
  background-image: linear-gradient(90deg, #0f639a 0 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
}
@media (width <= 828px) {
  .q-recruit_voice .voice._02 {
    grid-template-columns: 1fr;
    margin-block-start: 78px;
    padding-block-start: 80px;
  }
}
.q-recruit_voice .voice__info img {
  width: 100%;
  margin-block-end: 19px;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__info img {
    margin-block-end: 24px;
  }
}
.q-recruit_voice .voice__profile {
  padding-block: 10px;
  border-top: 1px solid #5792b8;
  border-bottom: 1px solid #5792b8;
  display: flex;
  align-items: center;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__profile {
    padding-block: 13px 12px;
  }
}
.q-recruit_voice .voice__profile .tag {
  padding: 1px 4px;
  color: var(--color-light);
  background-color: var(--color-primary);
  font-size: 14px;
  line-height: 16px;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__profile .tag {
    padding: 2px 8px;
    font-size: 24px;
    line-height: 26px;
  }
}
.q-recruit_voice .voice__profile .name {
  margin-inline-start: 19px;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-2px);
}
@media (width <= 828px) {
  .q-recruit_voice .voice__profile .name {
    font-size: 18px;
    margin-inline-start: 18px;
  }
}
.q-recruit_voice .voice__profile .initial {
  font-size: 26px;
  padding-inline-end: 1.6px;
  line-height: 30px;
  transform: translateY(-2px);
}
@media (width <= 828px) {
  .q-recruit_voice .voice__profile .initial {
    font-size: 36px;
    line-height: 42px;
    padding-inline-end: 3px;
    transform: translateY(-1px);
  }
}
.q-recruit_voice .voice__profile .year {
  margin-inline-start: 19px;
  padding-inline-start: 24px;
  font-size: 14px;
  line-height: 18px;
  border-left: 1px solid #5792b8;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__profile .year {
    margin-inline-start: 32px;
    padding-inline-start: 28px;
    font-size: 24px;
    line-height: 28px;
  }
}
.q-recruit_voice .voice__catch {
  margin-block-end: 12px;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__catch {
    margin-block-end: 10px;
  }
}
.q-recruit_voice .voice__catch .text {
  padding-block-end: 8px;
  font-size: 28px;
  line-height: 1.2;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__catch .text {
    font-size: 38px;
    padding-block-end: 10px;
  }
}
.q-recruit_voice .voice__catch .arr {
  display: block;
  fill: none;
  stroke: #5792b8;
  stroke-miterlimit: 10;
}
.q-recruit_voice .voice__sentence {
  padding-inline-start: 20px;
  font-size: 14px;
  line-height: 29px;
}
@media (width <= 828px) {
  .q-recruit_voice .voice__sentence {
    font-size: 28px;
    line-height: 52px;
    padding-inline-start: 32px;
  }
}
.q-recruit_voice .schedule {
  margin-inline-start: 10px;
  padding-block-end: 24px;
  background-color: var(--color-light);
  border: 1px solid #5792b8;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule {
    margin-inline-start: 17px;
    padding-block-end: 53px;
  }
}
.q-recruit_voice .schedule__title {
  width: 251px;
  height: 32px;
  margin-block-end: 10px;
  padding-block-start: 5px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  background-image: url(../img/recruit/schedule-fukidashi_2x.png);
  background-position: bottom left;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-light);
  transform: translateX(-10px) translateY(-12px);
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__title {
    width: 429px;
    height: 55px;
    margin-block-end: 19px;
    padding-block-start: 7px;
    font-size: 24px;
    transform: translateX(-17px) translateY(-20px);
  }
}
.q-recruit_voice .schedule__grid {
  margin-block-end: 3px;
  display: grid;
  grid-template-columns: repeat(5, 180px);
  gap: 10.5px;
  justify-content: center;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__grid {
    margin-block-end: 7px;
    grid-template-columns: 1fr;
    gap: 39px;
    padding-inline: 62px 57px;
  }
}
.q-recruit_voice .schedule__box {
  position: relative;
  min-height: 183px;
  height: 100%;
  background-image: linear-gradient(90deg, #e2ecf3, #e2ecf3);
  background-size: 100% calc(100% - 14px);
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__box {
    width: 584px;
    min-height: 0;
    height: auto;
    background-size: 100% calc(100% - 27px);
  }
}
.q-recruit_voice .schedule__work {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  width: 152px;
  height: 27px;
  background-color: var(--color-light);
  border: 1px solid var(--color-primary);
  overflow: hidden;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__work {
    width: 329px;
    height: 56px;
    grid-template-columns: 113px 1fr;
  }
}
.q-recruit_voice .schedule__work-content {
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__work-content {
    font-size: 42px;
  }
}
.q-recruit_voice .schedule__work-content .small {
  font-size: 10px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-10px);
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__work-content .small {
    font-size: 16px;
  }
}
.q-recruit_voice .schedule__time {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  letter-spacing: 0.02em;
  line-height: 1;
  background-color: var(--color-primary);
  color: var(--color-light);
  white-space: nowrap;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__time {
    font-size: 34px;
  }
}
.q-recruit_voice .schedule__text {
  padding: 13px 20px 0 20px;
  font-size: 12px;
  line-height: 21px;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__text {
    padding: 21px 42px 30px 42px;
    font-size: 26px;
    line-height: 45px;
  }
}
.q-recruit_voice .schedule__next-arr {
  width: 22px;
  height: 8px;
  position: absolute;
  bottom: 81px;
  right: -14px;
  display: flex;
  align-items: center;
  z-index: 2;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__next-arr {
    width: 19px;
    height: 41px;
    bottom: -30px;
    right: 50%;
    transform: translateX(50%);
    flex-flow: column;
  }
}
.q-recruit_voice .schedule__next-arr::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__next-arr::before {
    height: 100%;
    width: 1px;
  }
}
.q-recruit_voice .schedule__next-arr::after {
  content: "";
  display: block;
  width: 9px;
  height: 8px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__next-arr::after {
    width: 19px;
    height: 16.5px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}
.q-recruit_voice .schedule__note {
  padding-inline-end: 42px;
  font-size: 12px;
  line-height: 20px;
  text-align: end;
}
@media (width <= 828px) {
  .q-recruit_voice .schedule__note {
    margin-inline: 62px 57px;
    padding-inline-end: 0;
    font-size: 24px;
    line-height: 34px;
    text-indent: -1em;
    padding-left: 1em;
    text-align: start;
  }
}

.q-recruit_slide {
  margin-block-start: 258px;
}
@media (width <= 828px) {
  .q-recruit_slide {
    margin-block-start: 180px;
  }
}
.q-recruit_slide .js-slick-slider li {
  width: 380px;
  margin-inline-end: 20px;
}
@media (width <= 828px) {
  .q-recruit_slide .js-slick-slider li {
    width: 428px;
    margin-inline-end: 22px;
  }
}
.q-recruit_slide .js-slick-slider li img {
  width: 100%;
}

.q-recruit_link-btn {
  padding-block: 275px 180px;
}
@media (width <= 828px) {
  .q-recruit_link-btn {
    padding-block: 205px 126px;
  }
}
.q-recruit_link-btn .recruit-link {
  justify-content: center;
  height: 220px;
}
@media (width <= 828px) {
  .q-recruit_link-btn .recruit-link {
    height: 240px;
  }
}
.q-recruit_link-btn .recruit-link::before {
  background: var(--color-light);
}
.q-recruit_link-btn .recruit-link::after {
  background: var(--color-primary);
}
.q-recruit_link-btn .recruit-link .text {
  font-size: 30px;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 4;
  color: var(--color-light);
  transition: var(--sec);
}
@media (width <= 828px) {
  .q-recruit_link-btn .recruit-link .text {
    width: 100%;
    font-size: 36px;
    line-height: 59px;
    text-align: start;
    padding-inline-start: 54px;
  }
}
.q-recruit_link-btn .recruit-link .arr {
  fill: none;
  stroke: #fff;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  transition: var(--sec);
}
@media (width <= 828px) {
  .q-recruit_link-btn .recruit-link .arr {
    width: 49px;
    height: 10px;
    right: 47px;
  }
}
@media (width > 828px) {
  .q-recruit_link-btn .recruit-link:hover .text {
    color: var(--color-primary);
  }
  .q-recruit_link-btn .recruit-link:hover .arr {
    stroke: var(--color-primary);
  }
}

.q-recruit_pdf {
  margin-block-end: 337px;
}
@media (width <= 828px) {
  .q-recruit_pdf {
    padding-inline: 40px;
    margin-block-end: 242px;
  }
}
.q-recruit_pdf .pdf-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (width <= 828px) {
  .q-recruit_pdf .pdf-list {
    gap: 43px 41px;
  }
}
.q-recruit_pdf .pdf-list a {
  width: 251px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1;
  border: 1px solid #6fa1c2;
  transition: var(--sec);
}
@media (width <= 828px) {
  .q-recruit_pdf .pdf-list a {
    width: 353px;
    height: 125px;
    gap: 17px;
    font-size: 25px;
  }
}
.q-recruit_pdf .pdf-list a:hover {
  text-decoration: none;
}
.q-recruit_pdf .pdf-list a:hover img {
  opacity: 1;
}
@media (width > 828px) {
  .q-recruit_pdf .pdf-list a:hover {
    opacity: 0.6;
  }
}
.q-recruit_pdf .pdf-list__icon {
  display: block;
  width: 19px;
}
@media (width <= 828px) {
  .q-recruit_pdf .pdf-list__icon {
    width: 27px;
  }
}

.q-service_head {
  margin-block-start: 153px;
}
@media (width <= 828px) {
  .q-service_head {
    margin-block-start: 90px;
    padding-inline: 32px;
  }
}
.q-service_head .service-head__text {
  line-height: 46px;
  margin-block-end: 110px;
  text-align: center;
}
@media (width <= 828px) {
  .q-service_head .service-head__text {
    max-width: 720px;
    margin: 0 auto;
    margin-block-end: 92px;
    line-height: 67px;
  }
}
.q-service_head .service-head__img {
  width: 100%;
  max-width: 1037px;
  margin: 0 auto;
  display: block;
}

.q-service_list-head {
  padding-block-start: 285.5px;
}
@media (width <= 828px) {
  .q-service_list-head {
    padding-block-start: 231px;
  }
}
.q-service_list-head .service-list-head {
  position: relative;
  overflow: hidden;
}
.q-service_list-head .service-list-head__text {
  width: fit-content;
  padding: 18px 44px 14px 44px;
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  position: absolute;
  font-size: 28px;
  line-height: 1.2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2;
}
@media (width <= 828px) {
  .q-service_list-head .service-list-head__text {
    padding: 26px 64px 22px 64px;
    font-size: 44px;
    line-height: 1.2;
  }
}
.q-service_list-head .service-list-head__img {
  width: 100%;
}
@media (1600px > width > 828px) {
  .q-service_list-head .service-list-head__img {
    min-width: 1600px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

.q-service_list {
  padding-block: 181px 420px;
}
@media (width <= 828px) {
  .q-service_list {
    padding-block: 95px 294px;
    padding-inline: 54px;
  }
}
.q-service_list .service-list__intro {
  line-height: 46px;
  text-align: center;
}
@media (width <= 828px) {
  .q-service_list .service-list__intro {
    line-height: 67px;
  }
}
.q-service_list .service-list__list {
  margin-block-start: 168px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 31px;
}
@media (width <= 828px) {
  .q-service_list .service-list__list {
    margin-block-start: 94px;
    gap: 16px;
  }
}
.q-service_list .service-list__list li {
  width: 346px;
  background-color: var(--color-primary);
}
@media (width <= 828px) {
  .q-service_list .service-list__list li {
    width: 352px;
  }
}
.q-service_list .service-list__list li:nth-child(even) {
  background-color: #1d86c1;
}
.q-service_list .service-list__list p {
  color: var(--color-light);
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  padding-block: 20px 22px;
}
@media (width <= 828px) {
  .q-service_list .service-list__list p {
    font-size: 26px;
    padding-block: 16px 23px;
  }
}
.q-service_list .service-list__img {
  display: block;
  width: 100%;
}
.q-service_list .service-others {
  width: 100%;
  margin-block-start: 123px;
  padding-block-end: 75px;
  background-color: #ecf3f7;
  border: 1px solid #5792b8;
  border-top: none;
  position: relative;
}
@media (width <= 828px) {
  .q-service_list .service-others {
    margin-block-start: 68px;
    padding-block-end: 33px;
  }
}
.q-service_list .service-others::before {
  content: "";
  position: absolute;
  width: 495px;
  height: 1px;
  background-color: #5792b8;
  top: -1px;
  left: -1px;
}
@media (width <= 828px) {
  .q-service_list .service-others::before {
    width: 310px;
  }
}
.q-service_list .service-others::after {
  content: "";
  position: absolute;
  width: 495px;
  height: 1px;
  background-color: #5792b8;
  top: -1px;
  right: -1px;
}
@media (width <= 828px) {
  .q-service_list .service-others::after {
    width: 310px;
  }
}
.q-service_list .service-others__wrapper {
  overflow: hidden;
}
.q-service_list .service-others__title {
  transform: translateY(-14px);
  margin-block-end: 48px;
  text-align: center;
  font-size: 24px;
  line-height: 1;
}
@media (width <= 828px) {
  .q-service_list .service-others__title {
    margin-block-end: 17px;
    font-size: 26px;
  }
}
.q-service_list .service-others__text {
  font-size: 19px;
  line-height: 47px;
  width: 856px;
  margin: 0 auto;
}
@media (width <= 828px) {
  .q-service_list .service-others__text {
    width: 610px;
    font-size: 24px;
    line-height: 47px;
  }
}

.q-top_mv {
  padding-block-start: 38px;
  overflow: hidden;
}
@media (width <= 828px) {
  .q-top_mv {
    padding-block-start: 210px;
    position: relative;
  }
}
.q-top_mv .mv-wrapper {
  display: grid;
  grid-template-columns: 1fr 530px;
}
@media (1600px > width > 828px) {
  .q-top_mv .mv-wrapper {
    min-width: 1600px;
    margin-inline-start: 50%;
    transform: translateX(-50%);
  }
}
@media (width > 1600px) {
  .q-top_mv .mv-wrapper {
    grid-template-columns: 67% 33%;
  }
}
@media (width <= 828px) {
  .q-top_mv .mv-wrapper {
    grid-template-columns: 1fr;
    padding-inline: 54px;
  }
}
.q-top_mv .mv {
  position: relative;
  width: 1070px;
  height: 700px;
  overflow: hidden;
}
.q-top_mv .mv__slide-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-block-start: 36px;
}
@media (width <= 828px) {
  .q-top_mv .mv__slide-wrapper {
    padding-block-start: 0;
  }
}
@media (width > 1600px) {
  .q-top_mv .mv {
    width: 100%;
    height: auto;
    aspect-ratio: 1070/700;
  }
}
@media (width <= 828px) {
  .q-top_mv .mv {
    width: 100%;
    height: 871px;
  }
}
.q-top_mv .mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.q-top_mv .mv__slide--active {
  opacity: 1;
}
.q-top_mv .mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: mv-slideMove 8s linear infinite;
}
.q-top_mv .mv_catch-wrapper {
  margin-inline-start: 163px;
}
.q-top_mv .mv_catch-mark {
  width: 119px;
  margin-block-end: 128px;
}
.q-top_mv .mv_catch-mark img {
  width: 100%;
}
@media (width <= 828px) {
  .q-top_mv .mv_catch-mark {
    position: absolute;
    top: 150px;
    right: 23px;
    z-index: 2;
    width: 193px;
  }
}
.q-top_mv .mv_catch {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 32px;
  line-height: 1;
}
@media (width > 828px) {
  .q-top_mv .mv_catch {
    writing-mode: vertical-rl;
  }
}

@keyframes mv-slideMove {
  from {
    transform: translateX(0) scale(1.05);
  }
  to {
    transform: translateX(2%) scale(1.05);
  }
}
.q-top_mv-bottom {
  margin-block-start: 141.5px;
  display: flex;
  justify-content: center;
}
@media (width <= 828px) {
  .q-top_mv-bottom {
    margin-block-start: 66px;
    flex-flow: column;
    gap: 38px;
    padding-inline: 107px 101px;
    justify-content: start;
  }
  .q-top_mv-bottom .mv_catch {
    font-size: 50px;
    line-height: 87px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}
.q-top_mv-bottom__text {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 18px;
  line-height: 62px;
}
@media (width > 828px) {
  .q-top_mv-bottom__text {
    text-orientation: upright;
    writing-mode: vertical-rl;
  }
}
@media (width <= 828px) {
  .q-top_mv-bottom__text {
    font-size: 30px;
    line-height: 66px;
  }
}

.q-top_news {
  margin-block-start: 132px;
}
@media (width <= 828px) {
  .q-top_news {
    margin-block-start: 104px;
    padding-inline: 40px;
  }
}
.q-top_news .top-news {
  display: flex;
  justify-content: space-between;
  padding: 50px 33px;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  align-items: center;
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 828px) {
  .q-top_news .top-news:hover {
    opacity: 0.6;
  }
  .q-top_news .top-news:hover .c-link {
    opacity: 1;
  }
}
@media (width <= 828px) {
  .q-top_news .top-news {
    padding: 36px 13px;
  }
}
.q-top_news .top-news__content {
  display: flex;
  align-items: center;
}
.q-top_news .top-news__text {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 16px;
  line-height: 1;
}
@media (width <= 828px) {
  .q-top_news .top-news__text {
    font-size: 24px;
  }
}
.q-top_news .top-news__title {
  padding-inline-start: 45px;
  margin-inline-start: 37px;
  border-left: 1px solid rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 33px;
  align-items: center;
  line-height: 1;
}
@media (width <= 828px) {
  .q-top_news .top-news__title {
    flex-flow: column;
    gap: 3px;
    align-items: start;
    font-size: 26px;
    line-height: 1.2;
    padding-inline-start: 28px;
    margin-inline-start: 25px;
  }
}
.q-top_news .top-news__title data {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 12px;
}
@media (width <= 828px) {
  .q-top_news .top-news__title data {
    font-size: 22px;
    line-height: 1.2;
  }
}
.q-top_news .top-news .c-link {
  font-size: 12px;
}
@media (width <= 828px) {
  .q-top_news .top-news .c-link {
    display: block;
    width: 27px;
    height: 7px;
  }
  .q-top_news .top-news .c-link__arr {
    height: 7px;
  }
  .q-top_news .top-news .c-link__arr::before {
    right: 2px;
  }
  .q-top_news .top-news .c-link__arr::after {
    width: 10px;
    bottom: 2px;
  }
}

.q-top_about {
  padding-block-start: 245px;
}
@media (width <= 828px) {
  .q-top_about {
    padding-block-start: 124px;
    padding-inline: 54px;
  }
}
.q-top_about .top-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 828px) {
  .q-top_about .top-about {
    grid-template-columns: 1fr;
    gap: 57px;
  }
}
.q-top_about .top-about__content {
  max-width: 501px;
  padding-inline-start: 30px;
}
@media (width <= 828px) {
  .q-top_about .top-about__content {
    max-width: 719px;
    padding-inline-start: 0;
  }
}
.q-top_about .top-about__h2 {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 42px;
  line-height: 1;
  margin-block-end: 44px;
}
@media (width <= 828px) {
  .q-top_about .top-about__h2 {
    font-size: 52px;
    margin-block-end: 27px;
  }
}
.q-top_about .top-about__text {
  margin-block-end: 86px;
  text-align: justify;
}
@media (width <= 828px) {
  .q-top_about .top-about__text {
    margin-block-end: 15px;
  }
}
.q-top_about .top-about__img {
  width: 100%;
  height: 550px;
}
@media (width <= 828px) {
  .q-top_about .top-about__img {
    height: 720px;
  }
}

.q-top_service {
  padding-block-start: 211px;
  overflow: hidden;
}
@media (width <= 828px) {
  .q-top_service {
    padding-block-start: 98px;
    padding-block-end: 5px;
  }
}
@media (width <= 828px) {
  .q-top_service__inner {
    padding-inline: 54px;
  }
}
.q-top_service .top-service__h2 {
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 38px;
  line-height: 1.2;
  margin-block-end: 14px;
  padding-inline: 30px;
}
@media (width <= 828px) {
  .q-top_service .top-service__h2 {
    font-size: 52px;
    margin-block-end: 16px;
    padding-inline: 0;
  }
}
.q-top_service .top-service__img {
  margin-inline-end: calc(50% - 50vw);
  margin-block-end: 25px;
}
@media (width <= 828px) {
  .q-top_service .top-service__img {
    margin-inline-end: 0;
    margin-block-end: 20px;
  }
}
.q-top_service .top-service__img img {
  display: block;
  width: 100%;
  min-width: 1350px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
@media (width <= 828px) {
  .q-top_service .top-service__img img {
    min-width: 0;
  }
}
@media (width > 828px) {
  .q-top_service .top-service__content {
    padding-inline: 30px;
  }
}
.q-top_service .top-service__text {
  line-height: 33px;
  margin-block-end: 20px;
  text-align: justify;
}
@media (width <= 828px) {
  .q-top_service .top-service__text {
    line-height: 54px;
    margin-block-end: 12px;
  }
}

.q-top_blog {
  margin-block-start: 210px;
  padding-block: 87px 85px;
  background-color: var(--color-bg-blue);
}
@media (width <= 828px) {
  .q-top_blog {
    margin-block-start: 136px;
    padding-block: 70px 82px;
    padding-inline: 54px;
  }
}
.q-top_blog .top-blog {
  display: flex;
  justify-content: space-between;
}
@media (width <= 828px) {
  .q-top_blog .top-blog {
    display: grid;
    grid-template-columns: 339px 339px;
    row-gap: 46px;
  }
}
.q-top_blog .top-blog__h2 {
  text-align: center;
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 32px;
  line-height: 1;
  margin-block-end: 63px;
}
@media (width <= 828px) {
  .q-top_blog .top-blog__h2 {
    font-size: 46px;
    margin-block-end: 65px;
  }
}
.q-top_blog .top-blog__link {
  text-align: center;
  margin-block-start: 56px;
}
@media (width <= 828px) {
  .q-top_blog .top-blog__link {
    margin-block-start: 83px;
  }
}
.q-top_blog .card {
  display: block;
  max-width: 238px;
  padding-block-end: 14px;
  text-decoration: none;
  transition: var(--sec);
  border-bottom: 1px solid rgba(15, 99, 154, 0.7);
}
@media (width > 828px) {
  .q-top_blog .card:hover {
    opacity: 0.6;
  }
  .q-top_blog .card:hover img {
    opacity: 1;
  }
}
@media (width <= 828px) {
  .q-top_blog .card {
    max-width: 100%;
    padding-block-end: 23px;
  }
}
.q-top_blog .card__title {
  width: 207px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px;
}
@media (width <= 828px) {
  .q-top_blog .card__title {
    font-size: 22px;
    width: 291px;
    line-height: 28px;
  }
}
.q-top_blog .card__img {
  margin-block-end: 17px;
}
.q-top_blog .card__img img {
  width: 100%;
}
@media (width <= 828px) {
  .q-top_blog .card__img {
    margin-block-end: 25px;
  }
}
.q-top_blog .card__data {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  color: var(--color-primary);
  font-size: 12px;
  line-height: 1.2;
  margin-block-end: 5px;
}
@media (width <= 828px) {
  .q-top_blog .card__data {
    font-size: 17px;
  }
}
.q-top_blog .card__title-wrapper {
  position: relative;
}
@media (width > 828px) {
  .q-top_blog .card__title-wrapper {
    height: 40px;
    display: flex;
    align-items: center;
  }
}
.q-top_blog .card__arr {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
}

.q-top_recruit {
  padding-block-start: 225px;
}
@media (width <= 828px) {
  .q-top_recruit {
    padding-block-start: 173px;
  }
}
.q-top_recruit .top-recruit__content {
  position: relative;
}
.q-top_recruit .top-recruit__h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 38px;
  line-height: 1;
  color: var(--color-light);
}
@media (width <= 828px) {
  .q-top_recruit .top-recruit__h2 {
    font-size: 52px;
  }
}

.q-top_links {
  padding-block-start: 225px;
}
@media (width <= 828px) {
  .q-top_links {
    padding-block-start: 225px;
  }
}
.q-top_links .top-links {
  position: relative;
  text-decoration: none;
}
.q-top_links .top-links__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: space-between;
}
@media (width <= 828px) {
  .q-top_links .top-links__wrapper {
    grid-template-columns: 361px 361px;
    row-gap: 27px;
  }
}
.q-top_links .top-links__title {
  position: absolute;
  width: fit-content;
  bottom: 20px;
  left: 22px;
  color: var(--color-light);
  font-family: var(--typography-ff-emp-font-family);
  font-weight: var(--typography-ff-emp-font-weight);
  font-size: var(--typography-ff-emp-font-size);
  line-height: var(--typography-ff-emp-line-height);
  --letter-spacing: var(--typography-ff-emp-letter-spacing);
  font-size: 30px;
  line-height: 1.2;
}
@media (width <= 828px) {
  .q-top_links .top-links__title {
    font-size: 32px;
    bottom: 21px;
    left: 24px;
  }
}
.q-top_links .top-links__arr {
  display: block;
  position: absolute;
  bottom: 14px;
  right: 15px;
  overflow: hidden;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
@media (width <= 828px) {
  .q-top_links .top-links__arr {
    width: 46px;
    height: 46px;
    bottom: 15px;
    right: 17px;
  }
}
.q-top_links .top-links__arr::before {
  content: "";
  width: 101%;
  height: 101%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: var(--color-light);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.5s;
}
.q-top_links .top-links__arr::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--color-primary);
  transform-origin: 0% 50%;
  transition: transform ease 0.5s;
}
.q-top_links .top-links__arr svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  fill: none;
  stroke: var(--color-light);
  stroke-miterlimit: 10;
  z-index: 4;
  transition: var(--sec);
}
@media (width > 828px) {
  .q-top_links .top-links:hover .top-links__arr::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
  .q-top_links .top-links:hover .top-links__arr::after {
    transform-origin: 100% 50%;
    transform: scaleX(0);
  }
  .q-top_links .top-links:hover .top-links__arr svg {
    stroke: var(--color-primary);
  }
}
@media (width <= 828px) {
  .q-top_links .top-links:nth-child(3) {
    grid-column: span 2;
  }
  .q-top_links .top-links:nth-child(3) .top-links__title {
    color: var(--color-base);
  }
}

.q-top_foot {
  padding-block-start: 298px;
  margin-block-end: 360px;
}
@media (width <= 828px) {
  .q-top_foot {
    padding-block-start: 183px;
    margin-block-end: 260px;
  }
}
.q-top_foot .top-foot__link-group {
  display: grid;
  grid-template-columns: repeat(4, 266px);
  justify-content: space-between;
  margin-block-end: 29px;
}
@media (width <= 828px) {
  .q-top_foot .top-foot__link-group {
    grid-template-columns: 1fr 1fr;
    gap: 16.3px;
    margin-block-end: 26px;
  }
}
.q-top_foot .top-foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 54px 22px 45px;
  border: 1px solid rgba(15, 99, 154, 0.7);
}
@media (width <= 828px) {
  .q-top_foot .top-foot__bottom {
    padding: 22px 59px 22px 67px;
  }
}
.q-top_foot .top-foot__bottom-text {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media (width <= 828px) {
  .q-top_foot .top-foot__bottom-text {
    font-size: 30px;
    line-height: 53px;
  }
}
.q-top_foot .top-foot__logo-group {
  display: flex;
  gap: 22px;
  align-items: center;
}
@media (width <= 828px) {
  .q-top_foot .top-foot__logo-group {
    flex-flow: column;
    gap: 19px;
  }
}
.q-top_foot .top-foot__logo-group a {
  display: block;
  text-decoration: none;
}
.q-top_foot .top-foot__logo-group a img {
  width: 100%;
}
.q-top_foot .top-foot__logo-1 {
  width: 76px;
}
@media (width <= 828px) {
  .q-top_foot .top-foot__logo-1 {
    width: 102px;
  }
}
.q-top_foot .top-foot__logo-2 {
  width: 77px;
}
@media (width <= 828px) {
  .q-top_foot .top-foot__logo-2 {
    width: 98px;
  }
}

