@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.arrow-btn {
  width: 200px;
  width: 12.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.arrow-btn__arrow {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 500;
}
.arrow-btn__arrow img {
  display: block;
  width: 48px;
  width: 3rem;
}

@media screen and (max-width: 768px) {
  .arrow-btn {
    width: 3rem;
  }
  .arrow-btn__arrow img {
    width: 0.875rem;
  }
}
.arrow-btn.js-fade.fade-up:hover {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.read-more-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(rgb(242, 113, 39)), to(rgb(242, 68, 5)));
  background: linear-gradient(90deg, rgb(242, 113, 39), rgb(242, 68, 5));
  color: #fff;
  border-radius: 160px;
  text-decoration: none;
  font-weight: bold;
  padding-top: 14px;
  padding-top: 0.875rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
}

.read-more-btn__link {
  width: 100%;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  padding-left: 72px;
  padding-right: 72px;
}

.arrow {
  position: relative;
  display: inline-block;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 15px;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}

.arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.read-more-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(rgb(242, 68, 5)), to(rgb(242, 113, 39)));
  background: linear-gradient(90deg, rgb(242, 68, 5), rgb(242, 113, 39));
  opacity: 1;
}

.read-more-btn:hover .read-more-btn__link {
  opacity: 1;
}

.read-more-btn.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .read-more-btn.u-desktop {
    display: inline-block;
  }
}

.read-more-btn.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .read-more-btn.u-mobile {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .read-more-btn {
    width: 100%;
    max-width: 28.125rem;
    margin: 0 auto;
  }
  .read-more-btn__link {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.topics-category {
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.topics-category .category-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19.2px;
  gap: 1.2rem;
}
.topics-category .category-tab-list .category-tab {
  width: 160px;
  width: 10rem;
  background: #fff;
  border: 1.5px solid #f27127;
  border-radius: 24px;
}
.topics-category .category-tab-list .category-tab__link {
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 8px 35.2px;
  padding: 0.5rem 2.2rem;
  font-weight: bold;
  color: #f25B16;
  padding-top: 4px;
  padding-bottom: 4px;
}
.topics-category .category-tab-list .category-tab:hover {
  background: #f27127;
  color: #fff;
}
.topics-category .category-tab-list .category-tab.gray-tab {
  border: 1px solid #c7c7c7;
}
.topics-category .category-tab-list .category-tab.gray-tab .category-tab__link {
  color: #c7c7c7;
}
.topics-category .category-tab-list .category-tab.gray-tab:hover {
  background: #f27127;
  color: #fff;
}

.footer {
  background: #333;
  color: #fff;
  padding: 270px 0 20px 0;
  text-align: center;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1184px;
  margin: 0 auto;
}

.footer__logo {
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer__logo--img {
  width: 151px;
  margin-bottom: 20px;
}

.footer__address {
  font-size: 13px;
  font-weight: 400;
}

.footer-right {
  margin-top: auto;
  margin-bottom: 0;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 72px 0;
}

.footer__nav-item a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
}

.footer__copy {
  font-size: 12px;
  color: #aaa;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 120px 0 40px 0;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__logo {
    width: 100%;
  }
  .footer__logo--img {
    margin: 0 auto;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__copy {
    text-align: center;
  }
}
.header {
  width: 100%;
}
.header__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  width: 64px;
  width: 4rem;
  margin-top: 17px;
  margin-top: 1.0625rem;
  margin-left: 64px;
  margin-left: 4rem;
}

.drawer-menu {
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  background-color: #f25B16;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-menu__btn {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}
.drawer-menu__btn--line {
  width: 32px;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 0;
}
.drawer-menu__btn--line:first-of-type {
  top: 10px;
}
.drawer-menu__btn--line:nth-of-type(2) {
  top: 20px;
}
.drawer-menu__btn--line:last-of-type {
  top: 30px;
}

.header {
  width: 100%;
  background: transparent;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 32px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.drawer-menu {
  cursor: pointer;
  z-index: 120;
}

.drawer-menu__btn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}

.drawer-menu__btn--line {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  -webkit-transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  -webkit-box-shadow: -2px 0 16px rgba(0, 0, 0, .08);
          box-shadow: -2px 0 16px rgba(0, 0, 0, .08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px 32px 24px 32px;
}

.drawer.is-open {
  right: 0;
}

.drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #ff7f2a;
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 32px;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.drawer__nav {
  margin-top: 80px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.drawer__nav-link {
  font-size: 19.2px;
  font-size: 1.2rem;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.drawer__nav-link:hover {
  color: #ff7f2a;
}

.drawer__cta {
  margin: 32px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.drawer__cta-btn {
  background: -webkit-gradient(linear, left top, right top, from(#ff7f2a), to(#ff914d));
  background: linear-gradient(90deg, #ff7f2a 0%, #ff914d 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 14px 40px;
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 16px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.drawer__cta-btn:hover {
  background: #e66a1a;
}

.drawer__logo {
  margin-top: 24px;
  text-align: center;
}

.drawer__logo img {
  width: 120px;
  height: auto;
}

.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .4);
  z-index: 150;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.drawer-overlay.is-open {
  display: block;
}

.drawer-menu.active .drawer-menu__btn--line:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}

.drawer-menu.active .drawer-menu__btn--line:nth-child(2) {
  opacity: 0;
}

.drawer-menu.active .drawer-menu__btn--line:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header__wrapper {
    padding: 12px 8px;
  }
  .drawer {
    width: 90vw;
    padding: 24px 12px 16px 12px;
  }
  .header__logo {
    margin-left: 0;
  }
}
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1300px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  color: #333;
  font-size: 88px;
  font-size: 5.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 19.2px;
  margin-bottom: 1.2rem;
  text-align: center;
  line-height: 1;
}

.section-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  color: #f25B16;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 38.4px;
  margin-bottom: 2.4rem;
  text-align: center;
}

.page-title {
  font-family: "Barlow Condensed", sans-serif;
  color: #333;
  font-size: 112px;
  font-size: 7rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 19.2px;
  margin-bottom: 1.2rem;
  line-height: 1;
  margin-left: 8.8888%;
}

.page-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  color: #f25B16;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 38.4px;
  margin-bottom: 2.4rem;
  margin-left: 8.8888%;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 0.875rem;
  }
  .page-title {
    font-size: 3.5rem;
  }
  .page-subtitle {
    font-size: 0.9375rem;
  }
}
.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.about-company {
  padding-top: 176px;
  padding-top: 11rem;
  padding-bottom: 176px;
  padding-bottom: 11rem;
  background-color: #f7f7f7;
}

.about-company-table {
  margin-left: 25px;
  margin-left: 1.5625rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  max-width: 950px;
  max-width: 59.375rem;
  margin: 0 auto;
  background-color: #fff;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  padding: 40px 32px;
  padding: 2.5rem 2rem;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}
.about-company-table table {
  width: 100%;
}
.about-company-table th, .about-company-table td {
  padding: 24px 10px;
  padding: 1.5rem 0.625rem;
  text-align: left;
  vertical-align: top;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  line-height: 2;
}
.about-company-table th {
  font-weight: bold;
  width: 160px;
  color: #f25B16;
}
.about-company-table tr:not(:last-child) td, .about-company-table tr:not(:last-child) th {
  border-bottom: 1px solid #c7c7c7;
}

@media screen and (max-width: 768px) {
  .about-company {
    padding-top: 5rem;
    padding-bottom: 6.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .about-company-table table,
  .about-company-table tbody,
  .about-company-table tr,
  .about-company-table th,
  .about-company-table td {
    display: block;
    width: 100%;
  }
  .about-company-table tr {
    margin-bottom: 1.5rem;
  }
  .about-company-table tr:not(:last-child) th {
    border-bottom: unset;
  }
  .about-company-table tr:last-child {
    border-bottom: 1px solid #c7c7c7;
  }
  .about-company-table th {
    font-weight: bold;
    padding: 0;
    padding-bottom: 1rem;
    color: #f25B16;
    border-bottom: none;
  }
  .about-company-table td {
    font-size: 0.9375rem;
    padding: 0;
    padding-bottom: 1rem;
    border-bottom: none;
  }
  .about-company-table {
    padding-bottom: 4rem;
  }
}
.about-greeting__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 176px;
  padding-bottom: 11rem;
}
.about-greeting__img {
  width: 31.0416666667%;
}
.about-greeting__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-greeting__texts {
  width: 55.5555555556%;
}
.about-greeting__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#f27127), to(#f25B16));
  background: linear-gradient(90deg, #f27127 0%, #f25B16 100%);
  padding: 4px 18px;
  padding: 0.25rem 1.125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.about-greeting__desc {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.about-greeting__name {
  font-size: 16px;
  font-size: 1rem;
}
.about-greeting__name span {
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .about-greeting__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 5rem;
  }
  .about-greeting__img {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .about-greeting__texts {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .about-greeting__title {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
  }
  .about-greeting__title:first-child {
    margin-bottom: 1.25rem;
  }
  .about-greeting__desc {
    font-size: 0.9375rem;
    margin-bottom: 2.5rem;
  }
  .about-greeting__name {
    font-size: 0.9375rem;
  }
  .about-greeting__name span {
    font-size: 1.25rem;
  }
}
.about-message {
  padding-top: 176px;
  padding-top: 11rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
.about-message__contents {
  width: 91.1111111111%;
  margin-left: auto;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
.about-message__texts {
  width: 45.7317073171%;
}
.about-message__lead {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 64px;
  margin-bottom: 4rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.about-message__lead span {
  color: #f25B16;
}
.about-message__desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}
.about-message .about-message-img {
  width: 52.5152439024%;
}
.about-message .about-message-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .about-message {
    padding-top: 5rem;
  }
  .about-message__contents {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-message__lead {
    font-size: 1.625rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .about-message__texts {
    width: 100%;
    margin-bottom: 3.5rem;
  }
  .about-message .about-message-img {
    width: 100%;
  }
}
.about-visual {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
.about-visual .about-visual-img {
  width: 100%;
  height: auto;
}
.about-visual .about-visual-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.topics-list {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto 48px auto;
  margin: 0 auto 3rem auto;
}
.topics-list .topics-article-list {
  list-style: none;
}
.topics-list .topics-article-list .topics-article-item {
  border-bottom: 1px solid #eee;
  padding: 32px 0;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  gap: 2rem;
}
.topics-list .topics-article-list .topics-article-item .topics-article-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.topics-list .topics-article-list .topics-article-item .topics-article-img {
  width: 28.5714285714%;
  aspect-ratio: 280/180;
  overflow: hidden;
}
.topics-list .topics-article-list .topics-article-item .topics-article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics-list .topics-article-list .topics-article-item .topics-article-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.topics-list .topics-article-list .topics-article-item .topics-article-content .topics-article-meta {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.topics-list .topics-article-list .topics-article-item .topics-article-content .topics-article-meta .topics-article-date {
  font-family: "Barlow Condensed", sans-serif;
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-right: 11.2px;
  margin-right: 0.7rem;
}
.topics-list .topics-article-list .topics-article-item .topics-article-content .topics-article-meta .topics-article-cat {
  color: #f25B16;
  font-size: 15.2px;
  font-size: 0.95rem;
  border: 1px solid #f27127;
  border-radius: 12px;
  padding: 1.6px 32px;
  padding: 0.1rem 2rem;
  background: #fff;
  margin-left: 3.2px;
  margin-left: 0.2rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.topics-list .topics-article-list .topics-article-item .topics-article-content .topics-article-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.topics-list .topics-article-list .topics-article-item .topics-article-content .topics-article-desc {
  color: #888;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;
}

.topics-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
.topics-pagination .pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11.2px;
  gap: 0.7rem;
}
.topics-pagination .pagination-list .pagination-item a {
  display: block;
  padding: 8px 19.2px;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background: #fff;
  color: #f25B16;
  font-weight: bold;
  text-decoration: none;
  border: 1.5px solid #f27127;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.topics-pagination .pagination-list .pagination-item.active a, .topics-pagination .pagination-list .pagination-item a:hover {
  background: #f27127;
  color: #fff;
}

.business-flow {
  padding: 64px 0 48px 0;
  padding: 4rem 0 3rem 0;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  background-image: url(../images/business/flow-bg.jpg);
  background-position: center;
  background-size: cover;
}
.business-flow .flow-list {
  width: 100%;
  max-width: 900px;
  max-width: 56.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  margin: 0 auto;
}
.business-flow .flow-list .flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
  gap: 3rem;
  border-bottom: 1px solid #c7c7c7;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
.business-flow .flow-list .flow-step .flow-content .flow-title {
  color: #333;
  font-weight: bold;
  font-size: 34px;
  font-size: 2.125rem;
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem;
}
.business-flow .flow-list .flow-step .flow-content .flow-desc {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.flow-num__text {
  font-weight: bold;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#f27127), to(#f25B16));
  background: linear-gradient(90deg, #f27127 0%, #f25B16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flow-num__number {
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  line-height: 0.9;
  background: -webkit-gradient(linear, left top, right top, from(#f27127), to(#f25B16));
  background: linear-gradient(90deg, #f27127 0%, #f25B16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .business-flow .flow-list .flow-step {
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
  .business-flow .flow-list .flow-step .flow-content .flow-title {
    font-size: 1.375rem;
  }
  .business-flow .flow-list .flow-step .flow-content .flow-desc {
    font-size: 0.9375rem;
  }
  .flow-num {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow-num__text {
    font-size: 1.5rem;
  }
  .flow-num__number {
    font-size: 3.5rem;
  }
}
.business-service {
  background: -webkit-gradient(linear, left top, left bottom, from(#f27127), to(#f25B16));
  background: linear-gradient(180deg, #f27127 0%, #f25B16 100%);
  padding: 64px 0 48px 0;
  padding: 4rem 0 3rem 0;
  padding-bottom: 210px;
  padding-bottom: 13.125rem;
  text-align: center;
  overflow: hidden;
}
.business-service__lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
.business-service .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  gap: 2rem;
  margin: 0 auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}
.business-service .service-list .service-item {
  background: transparent;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  text-align: left;
}
.business-service .service-list .service-item .service-img {
  width: 100%;
  aspect-ratio: 365/244;
}
.business-service .service-list .service-item .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 365/244;
}
.business-service .service-list .service-item__contents {
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: #fff;
}
.business-service .service-list .service-item__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  color: #f25B16;
  line-height: 1.5;
  margin-bottom: 8px;
}
.business-service .service-list .service-item__desc {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
}

.service-item-last-child {
  position: relative;
}

.service-item-last-child::after {
  content: url("../images/business/service-bg-mark.png");
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

@media screen and (max-width: 768px) {
  .business-service {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .business-service__lead {
    margin-bottom: 2.5rem;
  }
  .business-service .service-list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .business-service .service-list .service-item__title {
    font-size: 1.375rem;
  }
  .business-service .service-list .service-item__desc {
    font-size: 0.9375rem;
  }
  .service-item-last-child::after {
    top: 20%;
    left: 0;
    -webkit-transform: scale(0.35);
            transform: scale(0.35);
  }
}
.business-strengths {
  background: #fff;
  padding: 64px 0 48px 0;
  padding: 4rem 0 3rem 0;
}
.business-strengths .strength-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.business-strengths .strength-list .strength-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business-strengths .strength-list .strength-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.business-strengths .strength-list .strength-item__img {
  width: 54.6527777778%;
  aspect-ratio: 787/515;
}
.business-strengths .strength-list .strength-item__content {
  width: 47.7777777778%;
  margin-left: -8%;
  background-color: #fff;
  padding: 46px 56px;
  padding: 2.875rem 3.5rem;
  position: relative;
  z-index: 10;
}
.business-strengths .strength-list .strength-item .strength-item__content--2nd {
  margin-left: unset;
  margin-right: -8%;
}
.business-strengths .strength-list .strength-item__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.5;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#f27127), to(#f25B16));
  background: linear-gradient(90deg, #f27127 0%, #f25B16 100%);
  padding: 4px 18px;
  padding: 0.25rem 1.125rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.business-strengths .strength-list .strength-item__desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .business-strengths .strength-list .strength-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business-strengths .strength-list .strength-item__img {
    width: 100%;
  }
  .business-strengths .strength-list .strength-item__content {
    width: 91.466666%;
    margin: 0 auto;
    margin-top: -10%;
    padding: 2rem 1rem;
  }
  .business-strengths .strength-list .strength-item__title {
    font-size: 1.375rem;
    margin: 0 auto;
    margin-bottom: 1.25rem;
  }
  .business-strengths .strength-list .strength-item__desc {
    font-size: 0.9375rem;
  }
  .business-strengths .strength-list .strength-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business-strengths .strength-list .strength-item .strength-item__content--2nd {
    margin-left: unset;
    margin-right: unset;
  }
}
.contact-section {
  padding: 176px 0 80px 0;
}
.contact-section__header {
  text-align: left;
  margin-bottom: 24px;
}
.contact-section__title {
  margin-bottom: 8px;
}
.contact-section__subtitle {
  color: #ff6b00;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
  display: block;
}
.contact-section__visual {
  width: 100%;
  max-height: 260px;
  overflow: hidden;
  margin-bottom: 40px;
}
.contact-section__visual img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 260px;
}
.contact-section__form-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 1224px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.contact-section__form-area .wpcf7 {
  width: 100%;
}
.contact-section__left {
  width: 29.5608108108%;
}
.contact-section__form-area form {
  width: 100%;
}
.contact-section__steps {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  margin-bottom: 120px;
}
.contact-section__steps ol {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.contact-section__steps ol li {
  color: #bdbdbd;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 8px;
  position: relative;
}
.contact-section__steps ol li.active {
  color: #222;
}
.contact-section__steps ol li.active::before {
  position: absolute;
  content: "";
  background-color: #333;
  top: 47%;
  left: -8%;
  width: 12px;
  height: 3px;
  border-radius: 20px;
}
.contact-section__steps ol li .contact-section__steps-number {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
}
.contact-section__info-box {
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px 16px;
  margin-bottom: 32px;
}
.contact-section__info-box .contact-section__tel-box,
.contact-section__info-box .contact-section__line-box {
  margin-bottom: 12px;
}
.contact-section__info-box .contact-section__tel-box .contact-section__text,
.contact-section__info-box .contact-section__line-box .contact-section__text {
  display: block;
  font-size: 13px;
  color: #222;
  margin-bottom: 4px;
  position: relative;
}
.contact-section__info-box .contact-section__tel-box .contact-section__text,
.contact-section__info-box .contact-section__line-box .contact-section__text {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.contact-section__info-box .contact-section__tel-box .contact-section__text::before,
.contact-section__info-box .contact-section__line-box .contact-section__text::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background-color: #333;
  left: 0;
}
.contact-section__info-box .contact-section__tel-box .icon-tel,
.contact-section__info-box .contact-section__line-box .icon-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
  margin-right: 12px;
  width: 28px;
  height: 30px;
  font-family: "Barlow Condensed", sans-serif;
  color: #333;
}
.contact-section__info-box .contact-section__tel-box .icon-line,
.contact-section__info-box .contact-section__line-box .icon-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 12px;
}
.contact-section__info-box .contact-section__tel-box .contact-section__tel,
.contact-section__info-box .contact-section__tel-box .contact-section__line,
.contact-section__info-box .contact-section__line-box .contact-section__tel,
.contact-section__info-box .contact-section__line-box .contact-section__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 28px;
  font-size: 1.75rem;
  color: #333;
  padding-left: 12px;
  padding-left: 0.75rem;
}
.contact-section__info-box .contact-section__tel-box .contact-section__tel,
.contact-section__info-box .contact-section__line-box .contact-section__tel {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.contact-section__info-box .contact-section__tel-box .contact-section__line,
.contact-section__info-box .contact-section__line-box .contact-section__line {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: 6px;
  margin-top: 0.375rem;
}
.contact-section__info-box .contact-section__tel-box .contact-section__line-link,
.contact-section__info-box .contact-section__line-box .contact-section__line-link {
  display: inline-block;
  text-decoration: none;
  width: 100%;
}
.contact-section__info-box .contact-section__tel-box .contact-section__line-text,
.contact-section__info-box .contact-section__line-box .contact-section__line-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding-top: 4rem;
  }
  .contact-section__form-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-section__left {
    width: 100%;
  }
  .contact-section__form-area form {
    width: 100%;
  }
  .contact-section__info-box {
    text-align: center;
  }
  .contact-section__info-box .contact-section__tel-box .contact-section__text,
  .contact-section__info-box .contact-section__line-box .contact-section__text {
    padding-left: 0;
    padding-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .contact-section__info-box .contact-section__tel-box .contact-section__tel,
  .contact-section__info-box .contact-section__tel-box .contact-section__line,
  .contact-section__info-box .contact-section__line-box .contact-section__tel,
  .contact-section__info-box .contact-section__line-box .contact-section__line {
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-section__info-box .contact-section__tel-box .contact-section__text::before {
    left: -5%;
  }
  .contact-section__info-box .contact-section__line-box .contact-section__text::before {
    left: -8%;
  }
}
.contact-form {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
@media (max-width: 600px) {
  .contact-form {
    padding: 20px 8px;
  }
}
.contact-form__row {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 600px) {
  .contact-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact-form__row--privacy {
  margin-bottom: 24px;
}
.contact-form__row--submit {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__label {
  min-width: 90px;
  font-weight: bold;
  font-size: 15px;
  margin-right: 16px;
}
.contact-form__lavels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35%;
}
.contact-form__cat {
  display: inline-block;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: bold;
  background-color: #f25B16;
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  margin-right: 24px;
  margin-right: 1.5rem;
}
.contact-form__cat--gray {
  color: #c7c7c7;
  background-color: #fff;
  border: 1px solid #c7c7c7;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 15px;
  background: #f7f7f7;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ff6b00;
  outline: none;
}
.contact-form textarea {
  min-height: 260px;
  resize: vertical;
}
.contact-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.contact-form__radio-group label {
  font-size: 15px;
  font-weight: normal;
}
.contact-form__radio-group label input {
  margin-right: 4px;
}
.contact-form__submit {
  min-width: 260px;
  background: -webkit-gradient(linear, left top, right top, from(#ff6b00), to(#ff7e2d));
  background: linear-gradient(90deg, #ff6b00 0%, #ff7e2d 100%);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 24px;
  padding: 12px 48px;
  cursor: pointer;
}
.contact-form__submit:hover {
  background: -webkit-gradient(linear, left top, right top, from(#ff7e2d), to(#ff6b00));
  background: linear-gradient(90deg, #ff7e2d 0%, #ff6b00 100%);
}

@media screen and (max-width: 768px) {
  .contact-form {
    width: 100%;
  }
  .contact-form__lavels {
    width: 100%;
    margin-bottom: 8px;
  }
  .contact-form__radio-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form textarea {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
/* チェックボックスのアイコン */
.contact-form__radio-group input[type=checkbox],
.contact-form__row--privacy input[type=checkbox] {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
  border-radius: 3px;
}
.contact-form__radio-group input[type=checkbox]:checked:before,
.contact-form__row--privacy input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}

.contact-form__row--privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
}
.contact-form__row--privacy input[type=checkbox] {
  margin-right: 10px;
}

.contact-section__thanks-area {
  width: 100%;
  text-align: center;
}

.contact-section__thanks-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  margin-bottom: 43px;
  margin-bottom: 2.6875rem;
}

.contact-section__thanks-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}

.business {
  padding-top: 120px;
  padding-bottom: 120px;
}

.business__inner {
  width: 100%;
  max-width: 1440px;
  max-width: 90rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.business__image-wrapper {
  width: 50.9722222222%;
}

.business__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business__content {
  padding-left: 9%;
  padding-right: 8%;
  width: 49.0277777778%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business__label {
  color: #f25B16;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}

.business__title {
  font-size: 88px;
  font-size: 5.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  margin-bottom: 64px;
}

.business__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .business {
    padding-top: 72px;
  }
  .business__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business__title {
    font-size: 4rem;
  }
  .business__image-wrapper {
    width: 100%;
  }
  .business__image-wrapper img {
    aspect-ratio: 375/355;
  }
  .business__content {
    width: 100%;
    padding-top: 80px;
  }
}
.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: -13%;
}
.contact__block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 100px 0;
}
.contact__block--line {
  background-color: #f25B16;
}
.contact__block--tel {
  background-color: #f27127;
}
.contact__block--tel .contact__text {
  margin-bottom: 0;
}
.contact__block--form {
  background-color: #f25B16;
}
.contact__text {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
}
.contact .contact-btn {
  width: 71.5883668904%;
  max-width: 320px;
  margin: 0 auto;
}
.contact .contact-btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
}
.contact .contact-btn__link img {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 30px;
  margin-right: 1.875rem;
}
.contact .contact-btn__text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #333;
}
.contact .contact-btn-line__link {
  background-color: #fff;
}
.contact .contact-btn-tel__link .contact-btn__text {
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
}
.contact .contact-btn-form__link {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.message {
  background-image: url(../images/top/fv-orange-bg.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.message__inner {
  padding-top: 220px;
  padding-bottom: 205px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  max-width: 1000px;
  max-width: 62.5rem;
  margin: 0 auto;
}

.message__title {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.message__text {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 2.8;
}
.message__text span {
  display: block;
}

.message__btns-text {
  display: none;
}

.message__btns-area {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .message__title {
    font-size: 1.625rem;
    text-align: center;
  }
  .message__inner {
    padding-top: 80px;
    padding-bottom: 48px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .message__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message__text span {
    display: inline;
  }
  .message__btns-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .message__btns-text {
    display: block;
    margin-right: 1.25rem;
  }
}
.main-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  min-height: 400px;
  position: relative;
}

.main-visual__catch {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px 40px;
}

.main-visual__catch-text {
  font-size: 80px;
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 32px;
  white-space: nowrap;
}

/* スクロールダウンの位置 */
.main-visual__scroll {
  position: absolute;
  left: 10%;
  bottom: 12%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 10;
}

/* 線のアニメーション部分 */
.main-visual__scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.main-visual__image-wrapper {
  width: 57.3611111111%;
}

.main-visual__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .main-visual {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4.5rem;
  }
  .main-visual__catch {
    padding-top: 6.25rem;
    padding-bottom: 1.875rem;
  }
  .main-visual__catch-text {
    font-size: 2.875rem;
  }
  .main-visual__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 375/299;
  }
  .main-visual__scroll--mobile {
    position: absolute;
    left: 50%;
    bottom: 3%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
  .main-visual__scroll--mobile span {
    font-size: 0.75rem;
    font-family: "Noto Sans JP", sans-serif;
    color: #f25B16;
    font-weight: 700;
    letter-spacing: 130%;
  }
  .main-visual__scroll--mobile::before {
    -webkit-animation: scroll 2s infinite;
            animation: scroll 2s infinite;
    background-color: #000;
    top: -70px;
    content: "";
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
}
.recruite-Top {
  width: 100%;
  background-image: url(../images/top/Top-recruite.jpg);
  background-size: cover;
  background-position: center;
}

.recruite-Top__wrapper {
  max-width: 1200px;
  max-width: 75rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  padding-right: 50px;
  padding-right: 3.125rem;
  padding-top: 122px;
  padding-bottom: 122px;
  margin: 0 auto;
}

.recruite-Top__content {
  max-width: 432px;
}

.recruite-Top__label {
  color: #ff7f2a;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}

.recruite-Top__title {
  font-size: 88px;
  font-size: 5.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 64px;
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  line-height: 1;
}

.recruite-Top__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 64px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .recruite-Top__wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  .recruite-Top__title {
    font-size: 4rem;
  }
}
.topics {
  background: #fff;
  padding: 60px 20px;
}

.topics__wrapper {
  max-width: 1200px;
  max-width: 75rem;
  padding-top: 176px;
  padding-bottom: 126px;
  padding-left: 50px;
  padding-left: 3.125rem;
  padding-right: 50px;
  padding-right: 3.125rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.topics__content {
  max-width: 432px;
  margin-bottom: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.topics__label {
  display: inline-block;
  color: #f25B16;
  font-weight: normal;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border: 1px solid #f25B16;
}

.topics__title {
  font-size: 88px;
  font-size: 5.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  margin-bottom: 64px;
}

.topics__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topics__item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-size: 1rem;
}

.topics__tops {
  border-top: #aaa;
  margin-bottom: 12px;
}

.topics__date {
  color: #aaa;
  margin-right: 12px;
}

.topics__category {
  background: #ff7f2a;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 14.4px;
  font-size: 0.9rem;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .topics__wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .topics__list {
    margin-bottom: 1.25rem;
  }
}
/* 初期状態 */
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  pointer-events: none;
}

/* 表示後 */
.js-fade.is-active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  pointer-events: auto;
}

/* 方向バリエーション */
.fade-up {
  -webkit-transform: translateY(70%);
          transform: translateY(70%);
}

.fade-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fade-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.recruit-recruitment {
  margin: 80px 0 64px 0;
  margin: 5rem 0 4rem 0;
}
.recruit-recruitment .recruitment__item .recruitment-btn {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#f27127), to(#f25B16));
  background: linear-gradient(90deg, #f27127 0%, #f25B16 100%);
  color: #fff;
  font-weight: bold;
  border-radius: 24px;
  padding: 11.2px 35.2px;
  padding: 0.7rem 2.2rem;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 19.2px;
  margin-top: 1.2rem;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.recruit-recruitment .recruitment__item .recruitment-btn:hover {
  opacity: 0.8;
}

.recruitment {
  max-width: 1184px;
  margin: 0 auto;
}
.recruitment__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  gap: 2.5rem;
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}
.recruitment__img {
  width: 39.1891891892%;
}
.recruitment__table {
  width: 50%;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}
.recruitment__table table {
  width: 100%;
}
.recruitment__table th, .recruitment__table td {
  text-align: left;
  vertical-align: top;
  line-height: 2;
  border-bottom: 1px solid #c7c7c7;
  padding-top: 40px;
  padding-bottom: 40px;
}
.recruitment__table th {
  width: 120px;
  font-weight: bold;
  vertical-align: middle;
  color: #f25B16;
}
.recruitment__table tr:first-child td, .recruitment__table tr:first-child th {
  border-top: 1px solid #c7c7c7;
}

@media (max-width: 900px) {
  .recruit-recruitment .recruitment-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruit-recruitment .recruitment-block .recruitment-img {
    margin: 0 auto 1.2rem auto;
  }
  .recruit-recruitment .recruitment-block .recruitment-table {
    width: 100%;
    padding: 1.2rem 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruitment__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruitment__img {
    width: 100%;
  }
  .recruitment__table {
    width: 100%;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .recruitment tr:first-child td, .recruitment tr:first-child th {
    border-top: none;
  }
  .recruitment .recruitment__table tr:first-child {
    border-top: 1px solid #c7c7c7;
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  .recruitment {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .recruitment__item {
    display: block;
  }
  .recruitment__img {
    width: 100%;
    margin-bottom: 2rem;
  }
  .recruitment__table {
    width: 100%;
    padding: 0;
  }
  .recruitment__table table,
  .recruitment__table tbody,
  .recruitment__table tr,
  .recruitment__table th,
  .recruitment__table td {
    display: block;
    width: 100%;
  }
  .recruitment__table tr {
    border-bottom: 1px solid #c7c7c7;
    padding: 0;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .recruitment__table th {
    font-size: 1.125rem;
    padding: 0;
    border: none;
  }
  .recruitment__table td {
    font-size: 0.9375rem;
    padding: 0;
    border: none;
  }
}
.interview-schedule-timeline {
  color: #fff;
  padding: 48px 16px 40px 16px;
  padding: 3rem 1rem 2.5rem 1rem;
  border-radius: 16px;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  max-width: 1184px;
}
.interview-schedule-timeline .timeline-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 40px;
}
.interview-schedule-timeline .timeline-list::before {
  content: "";
  position: absolute;
  width: 84%;
  top: 29%;
  left: 8%;
  right: 0;
  height: 2px;
  border-top: 2px dashed #666;
  z-index: 0;
}
.interview-schedule-timeline .timeline-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.interview-schedule-timeline .timeline-item .timeline-time {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
}
.interview-schedule-timeline .timeline-item .timeline-dot {
  width: 16px;
  height: 16px;
  background: #f25B16;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.interview-schedule-timeline .timeline-item .timeline-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #f25B16;
  margin-bottom: 12px;
}
.interview-schedule-timeline .timeline-item .timeline-desc {
  font-size: 12px;
  font-size: 0.75rem;
  color: #888;
  line-height: 2;
  max-width: 144px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .recruit-interview-detail .interview-schedule-timeline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
  }
  .recruit-interview-detail .interview-schedule .interview-schedule-imglist {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interview-schedule-timeline .timeline-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .interview-schedule-timeline .timeline-list::before {
    top: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 1px dashed #666;
  }
  .interview-schedule-timeline .timeline-item {
    min-width: 0;
    max-width: none;
    text-align: left;
    margin-bottom: 2.2rem;
  }
  .interview-schedule-timeline .timeline-item .timeline-time {
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
  }
  .interview-schedule-timeline .timeline-item .timeline-dot {
    margin: 0 0.7rem 0 0;
    display: inline-block;
    vertical-align: middle;
  }
  .interview-schedule-timeline .timeline-item .timeline-title {
    display: inline-block;
    margin-left: 0.5rem;
  }
}
.recruit-interview {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 160px;
  padding-bottom: 10rem;
  text-align: center;
}

.recruit-interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 64px;
  gap: 4rem;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 768px) {
  .recruit-interview__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.recruit-interview-main {
  background: #fff;
  padding-top: 160px;
  padding-top: 10rem;
}
.recruit-interview-main .interview-header-bg {
  background-image: url("../images/interview/recruit-interview-header-bg.png");
  padding: 40px 0 56px 0;
  padding: 2.5rem 0 3.5rem 0;
  position: relative;
  z-index: 1;
}
.recruit-interview-main .interview-header-bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 50%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f27127), to(#f25B16));
  background: linear-gradient(180deg, #f27127 0%, #f25B16 100%);
  z-index: 5;
}

.recruit-interview-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  gap: 4rem;
  padding: 64px 0 48px 0;
  padding: 4rem 0 3rem 0;
  color: #fff;
  z-index: 10;
}
.recruit-interview-lead .interview-lead-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 340px;
          flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  z-index: 10;
}
.recruit-interview-lead .interview-lead-left .interview-lead-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35.2px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #f25B16;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  z-index: 10;
}
.recruit-interview-lead .interview-lead-left .interview-lead-sub {
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #f25B16;
  margin-bottom: 35.2px;
  margin-bottom: 2.2rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 10;
}
.recruit-interview-lead .interview-lead-left .interview-lead-sub::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #f25B16;
  margin-right: 16px;
  margin-right: 1rem;
  vertical-align: middle;
}
.recruit-interview-lead .interview-lead-left .interview-lead-desc {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  line-height: 2;
  z-index: 10;
}
.recruit-interview-lead .interview-lead-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  gap: 3rem;
  z-index: 10;
}
.recruit-interview-lead .interview-lead-right .interview-lead-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit-interview-lead .interview-lead-right .interview-lead-person .interview-lead-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 19.2px;
  margin-bottom: 1.2rem;
  background: #fff;
}
.recruit-interview-lead .interview-lead-right .interview-lead-person .interview-lead-name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.recruit-interview-lead .interview-lead-right .interview-lead-person .interview-lead-role {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 19.2px;
  margin-bottom: 1.2rem;
}
.recruit-interview-lead .interview-lead-right .interview-lead-person .interview-lead-btn {
  display: inline-block;
  background: #fff;
  color: #f25B16;
  font-weight: bold;
  border-radius: 24px;
  padding: 11.2px 35.2px;
  padding: 0.7rem 2.2rem;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  margin-top: auto;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.recruit-interview-lead .interview-lead-right .interview-lead-person .interview-lead-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .recruit-interview-main .interview-header-bg::after {
    height: 84%;
    top: 16%;
  }
  .recruit-interview-lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .recruit-interview-lead .interview-lead-left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 300px;
            flex: 1 1 300px;
  }
  .recruit-interview-lead .interview-lead-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.recruit-interview-detail .interview-detail-block {
  padding-bottom: 140px;
}
.recruit-interview-detail .interview-detail-block .interview-detail-mainvisual {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/667;
  overflow: hidden;
  z-index: 1;
}
.recruit-interview-detail .interview-detail-block .interview-detail-mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-heading {
  position: absolute;
  top: 31.034482%;
  left: 8.8888%;
}
.recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-lead {
  font-size: 40px;
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-meta {
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-meta span {
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
}
.recruit-interview-detail .interview-schedule {
  background: #fafafa;
  border-radius: 16px;
  padding: 56px 24px;
  padding: 3.5rem 1.5rem;
  max-width: 1200px;
  max-width: 75rem;
  margin: 0 auto;
}
.recruit-interview-detail .interview-schedule .interview-schedule-title {
  color: #333;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 19.2px;
  margin-bottom: 1.2rem;
  text-align: center;
}
.recruit-interview-detail .interview-schedule .interview-schedule-table {
  width: 100%;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.recruit-interview-detail .interview-schedule .interview-schedule-table th, .recruit-interview-detail .interview-schedule .interview-schedule-table td {
  padding: 11.2px 8px;
  padding: 0.7rem 0.5rem;
  text-align: center;
  vertical-align: top;
}
.recruit-interview-detail .interview-schedule .interview-schedule-table th {
  font-weight: bold;
  color: #f25B16;
}
.recruit-interview-detail .interview-schedule .interview-schedule-imglist {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 19.2px;
  gap: 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1088px;
  margin: 0 auto;
}
.recruit-interview-detail .interview-schedule .interview-schedule-imglist__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 240/171;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview-qa {
  position: relative;
  padding-top: 164px;
  border-radius: 50px 50px 0 0;
  margin-top: -70px;
  background-color: #fff;
  z-index: 10;
}
.interview-qa__item {
  max-width: 1184px;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8.78388%;
}
.interview-qa__img {
  width: 50.4222972973%;
}
.interview-qa__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-qa__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 260px;
}
.interview-qa__q {
  color: #f25B16;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.interview-qa__a {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.interview-qa__last {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .recruit-interview-detail {
    margin-bottom: 5rem;
  }
  .recruit-interview-detail .interview-detail-block {
    padding-bottom: 0;
  }
  .recruit-interview-detail .interview-detail-block .interview-detail-mainvisual {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 375/580;
  }
  .recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-heading {
    top: 50%;
  }
  .recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-lead {
    font-size: 1.375rem;
  }
  .recruit-interview-detail .interview-detail-block .interview-detail-mainvisual .interview-detail-meta {
    font-size: 1.25rem;
  }
  .interview-qa {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .interview-qa__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interview-qa__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .interview-qa__q {
    font-size: 1.125rem;
  }
  .interview-qa__a {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .interview-schedule_sp {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.recruit-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1302px;
  max-width: 81.375rem;
  padding-top: 168px;
  margin-left: auto;
  margin-right: 0;
}
.recruit-message__texts {
  width: 37.2222222222%;
}
.recruit-message__lead {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
.recruit-message__lead span {
  color: #f25B16;
}
.recruit-message__desc {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.recruit-message__img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
.recruit-message__img img {
  display: block;
  height: auto;
  max-width: 216px;
  max-height: 512px;
  aspect-ratio: 216/542;
  position: relative;
}
.recruit-message__img img:first-child {
  top: 89px;
}
.recruit-message__img img:last-child {
  top: 172px;
}
.recruit-message__bg-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
  font-size: 218px;
  font-size: 13.625rem;
  color: #f7f7f7;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 80px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .recruit-message__texts {
    width: 100%;
  }
  .recruit-message__lead {
    font-size: 1.375rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .recruit-message__img {
    width: 100%;
  }
  .recruit-message img:first-child {
    top: 44px;
  }
  .recruit-message img:last-child {
    top: 87px;
  }
  .recruit-message__bg-text {
    font-size: 4.5625rem;
  }
}
.recruit-qa {
  margin: 80px 0 64px 0;
  margin: 5rem 0 4rem 0;
}
.recruit-qa .qa-list {
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 160px;
}
.recruit-qa .qa-list .qa-item {
  background: #f7f7f7;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  margin-bottom: 19.2px;
  margin-bottom: 1.2rem;
  padding-left: 48px;
  padding-left: 3rem;
}
.recruit-qa .qa-list .qa-item .qa-q {
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  line-height: 2;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #c7c7c7;
}
.recruit-qa .qa-list .qa-item .qa-q span {
  color: #f25B16;
}
.recruit-qa .qa-list .qa-item .qa-a {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
.recruit-qa .qa-list .qa-item .qa-a span {
  color: #f25B16;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .recruit-qa {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .recruit-qa .qa-list .qa-item {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.post-article {
  width: 100%;
  max-width: 1100px;
  max-width: 68.75rem;
  padding: 100px 50px;
  padding: 6.25rem 3.125rem;
  margin: 0 auto;
}
.post-article__categorys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-article__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
.post-article__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
}
.post-article__category {
  max-width: 120px;
  max-width: 7.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #f25B16;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 4px 26px;
  padding: 0.25rem 1.625rem;
  border: 1px solid #f25B16;
  border-radius: 1.875rem;
}
.post-article__content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.post-article__content h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  font-weight: 700;
  border-bottom: 2px solid #c7c7c7;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.post-article__content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  line-height: 1.5;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  padding-left: 2%;
}
.post-article__content h3::before {
  content: "";
  display: block;
  width: 4px;
  width: 0.25rem;
  height: 100%;
  background-color: #c7c7c7;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .post-article {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .post-article__title {
    font-size: 1.5rem;
  }
}
.sub-visual {
  width: 100%;
  margin-top: 90px;
  padding-top: 104px;
}

.sub-visual-img {
  width: 100%;
  display: block;
  aspect-ratio: 1440/640;
}
/*# sourceMappingURL=styles.css.map */
