/*------------------------------
Reset / Base styles
------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 390px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}

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

/*------------------------------
Accessibility focus style
------------------------------*/
/*------------------------------
Reduce motion if user prefers
------------------------------*/
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/*------------------------------
Animation
------------------------------*/
@keyframes slide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------
Components
------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: max(100%, 390px);
  background-color: #fff;
}
.header__contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 15px 30px;
}
@media (min-width: 980px) {
  .header__contents {
    padding: 20px 40px;
  }
}
.header__title {
  line-height: 0;
}
.header__title .header__link {
  display: inline-block;
  line-height: 0;
}
@media (max-width: 979px) {
  .header__title .header__link .header__image {
    width: 150px;
    height: 20px;
  }
}
.header__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.header__menu-toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #061b5d;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__menu-toggle:hover {
    opacity: 0.7;
  }
}
.header__menu-toggle::before, .header__menu-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.header__menu-toggle::before {
  top: 20px;
}
.header__menu-toggle::after {
  top: 28px;
}
.header__menu-toggle[aria-expanded=false]::before, .header__menu-toggle[aria-expanded=false]::after {
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out 0.2s;
}
.header__menu-toggle[aria-expanded=true]::before, .header__menu-toggle[aria-expanded=true]::after {
  transition: transform 0.2s ease-in-out 0.2s, top 0.2s ease-in-out;
}
.header__menu-toggle[aria-expanded=true]::before {
  top: 24px;
  transform: rotate(20deg);
}
.header__menu-toggle[aria-expanded=true]::after {
  top: 24px;
  transform: rotate(-20deg);
}
@media (min-width: 980px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__nav {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 979px) {
  .header__nav {
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(-4deg, #030d2e 15%, #061b5d 100%);
  }
}
@media (min-width: 980px) {
  .header__nav {
    position: relative;
    opacity: 1;
    pointer-events: auto;
  }
}
.header__nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 979px) {
  .header__nav.is-open .header__list {
    overflow-y: scroll;
    height: calc(100vh - 80px);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
@media (max-width: 979px) {
  .header__nav.is-open .header__list::-webkit-scrollbar {
    display: none;
  }
}
.header__list {
  padding: 20px 30px 0;
}
@media (min-width: 980px) {
  .header__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding: 0;
  }
}
.header__list .header__item .header__link {
  display: block;
}
@media (max-width: 979px) {
  .header__list .header__item .header__link {
    padding: 25px 0;
    text-align: center;
  }
}
.header__link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 979px) {
  .header__label {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
  }
}
.header__item--btn .header__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 16.8px;
  color: #fff;
  background-color: #061b5d;
}
@media (max-width: 979px) {
  .header__item--btn .header__link {
    display: none;
  }
}
.header__contact {
  width: min(100%, 630px);
  margin: 0 auto 40px;
}
@media (min-width: 980px) {
  .header__contact {
    display: none;
  }
}
.header__contact-headline {
  margin-bottom: 30px;
  padding-top: 35px;
  text-align: center;
  line-height: 30px;
  font-size: 3.6rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #fff;
}
.header__contact-label {
  font-size: 1.6rem;
  font-weight: 500;
}
.header__contact-contents {
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.header__contact-btn {
  margin-bottom: 20px;
}
.header__contact-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 300px);
  height: 60px;
  margin: 0 auto;
  padding: 0 30px;
  background-color: #061b5d;
  border-radius: calc(infinity * 1px);
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__contact-link:hover {
    opacity: 0.7;
  }
}
.header__contact-link .header__contact-label {
  font-size: 1.5rem;
  color: #fff;
}
.header__contact-link .icon--white {
  fill: #fff;
}
.header__contact-text {
  max-width: max-content;
  margin: 0 auto;
  font-size: 1.5rem;
}
.header__office-list {
  width: min(100%, 300px);
  margin: 0 auto 60px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header__office-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    width: min(100%, 689px);
    margin: 40px auto 50px;
  }
}
@media (min-width: 980px) {
  .header__office-list {
    display: none;
  }
}
.header__office-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .header__office-item {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .header__office-item:nth-of-type(odd) {
    width: 321px;
  }
}
@media (min-width: 768px) {
  .header__office-item:nth-of-type(even) {
    width: 338px;
  }
}
.header__office-item:last-of-type {
  margin-bottom: 0;
}
.header__office-name {
  width: 100%;
  margin-bottom: 5px;
  color: #fff;
}
.header__office-info {
  width: calc(100% - 65px);
  font-style: normal;
  font-size: 1.6rem;
  color: #fff;
}
.header__office-zip {
  display: block;
}
.header__office-address {
  display: block;
  margin-bottom: 3px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.header a.header__office-tel,
.header p.header__office-tel {
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.header a.header__office-tel {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header a.header__office-tel:hover {
    opacity: 0.7;
  }
}
.header__office-link {
  width: 50px;
  line-height: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__office-link:hover {
    opacity: 0.7;
  }
}
.header__bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #707070;
}
@media (min-width: 768px) {
  .header__bottom {
    width: min(100%, 689px);
    margin-inline: auto;
  }
}
@media (min-width: 980px) {
  .header__bottom {
    display: none;
  }
}
.header__copyright {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}

.breadcrumb {
  container-type: inline-size;
}
.breadcrumb__list {
  overflow-x: scroll;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: min(100%, 1200px);
  margin: 0 auto 99px;
  padding: 10px 30px;
  font-size: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.breadcrumb__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb__list {
    margin: 0 auto 124px;
    padding: 10px 40px;
  }
}
.breadcrumb__item {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 400;
}
.breadcrumb__item + .breadcrumb__item {
  padding-left: 24.61px;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 4.61px;
  height: 9.22px;
  margin: auto 10px;
  background: url(/wp-content/themes/ota-tekkosyo/img/breadcrumb_arrow.svg) left top/contain no-repeat;
}
.breadcrumb__link {
  color: #4866c4;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb__link:hover {
    opacity: 0.7;
  }
}

main {
  display: block;
  padding-top: 80px;
}

.mv {
  position: relative;
  width: 100%;
  height: 587px;
  overflow: hidden;
}
@media (min-width: 980px) {
  .mv {
    overflow: visible;
    height: 688px;
  }
}
.mv__slides {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #061b5d 3%, transparent 180px);
}
.mv__slides .mv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  transition: none;
  z-index: -1;
  background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_01.jpg");
  background-position: right -70px top;
  background-size: cover;
  background-repeat: no-repeat;
  animation-delay: 0s;
}
@media (min-width: 980px) {
  .mv__slides .mv__slide {
    background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_01.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mv__slides.start .mv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slide 12s infinite;
  transition: none;
  z-index: -1;
}
.mv__slides.start .mv__slide:nth-of-type(1) {
  background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_01.jpg");
  background-position: right -70px top;
  background-size: cover;
  background-repeat: no-repeat;
  animation-delay: 0s;
}
@media (min-width: 980px) {
  .mv__slides.start .mv__slide:nth-of-type(1) {
    background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_01.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mv__slides.start .mv__slide:nth-of-type(2) {
  background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_02.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation-delay: 3s;
}
@media (min-width: 980px) {
  .mv__slides.start .mv__slide:nth-of-type(2) {
    background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_02.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mv__slides.start .mv__slide:nth-of-type(3) {
  background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_03.jpg");
  background-position: 44% center;
  background-size: cover;
  background-repeat: no-repeat;
  animation-delay: 6s;
}
@media (min-width: 980px) {
  .mv__slides.start .mv__slide:nth-of-type(3) {
    background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_03.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mv__slides.start .mv__slide:nth-of-type(4) {
  background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_04.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation-delay: 9s;
}
@media (min-width: 980px) {
  .mv__slides.start .mv__slide:nth-of-type(4) {
    background-image: url("/wp-content/themes/ota-tekkosyo/img/mv_04.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mv__contents {
  position: relative;
  width: min(100%, 1200px);
  height: 587px;
  margin-inline: auto;
  padding: 0 30px;
}
@media (min-width: 980px) {
  .mv__contents {
    height: 688px;
    padding: 0 40px;
  }
}
.mv__headline {
  position: absolute;
  left: 30px;
  bottom: 84px;
  font-size: 0;
}
.mv__picture {
  display: block;
  margin-bottom: 10px;
}
.mv__image {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}
.mv__text {
  display: inline-block;
  padding: 7.5px 14px;
  font-size: 1.5rem;
  background-color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}
@media (min-width: 980px) {
  .mv__text {
    font-size: 2.5rem;
  }
}
.mv__scroll {
  display: none;
  position: absolute;
  right: 40px;
  bottom: 70px;
}
@media (min-width: 980px) {
  .mv__scroll {
    display: block;
  }
}
.mv__scroll-text {
  position: relative;
  writing-mode: vertical-lr;
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.mv__scroll-text::after {
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 1px;
  height: 100px;
  margin: auto;
  background-color: #fff;
  transform-origin: left top;
  animation: scrollLine 1.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

.top-business {
  background: url("/wp-content/themes/ota-tekkosyo/img/bg_business.svg") right -3px bottom 26px/333.65px no-repeat, linear-gradient(-4deg, #030d2e 15%, #061b5d 100%);
}
@media (min-width: 768px) {
  .top-business {
    background: url("/wp-content/themes/ota-tekkosyo/img/bg_business.svg") right -27px top 70px/800.75px no-repeat, linear-gradient(-4deg, #030d2e 15%, #061b5d 100%);
  }
}
.top-business__contents {
  position: relative;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 70px 30px 60px;
  color: #fff;
}
@media (min-width: 768px) {
  .top-business__contents {
    padding: 115px 40px 60px;
  }
}
.top-business__headline {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
@media (min-width: 768px) {
  .top-business__headline {
    padding: 0 15px;
    text-align: left;
    font-size: 5.6rem;
  }
}
.top-business__headline .top-business__label {
  display: block;
  padding-top: 13px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .top-business__headline .top-business__label {
    font-size: 2rem;
    font-weight: 500;
  }
}
.top-business__inner {
  position: relative;
  padding: 0 15px;
}
.top-business__catchcopy {
  text-align: center;
}
@media (min-width: 768px) {
  .top-business__catchcopy {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    text-align: left;
  }
}
.top-business__picture {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .top-business__picture {
    margin-bottom: 0;
  }
}
.top-business__subheadline {
  display: inline-block;
  margin-bottom: 14px;
  padding: 0 6px;
  color: #061b5d;
  background-color: #fff;
}
@media (min-width: 768px) {
  .top-business__subheadline {
    margin-bottom: 0;
  }
}
.top-business__text {
  margin-bottom: 40px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .top-business__text {
    max-width: 290px;
    margin-inline: auto;
  }
}
.top-business__list {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .top-business__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    width: calc(100% + 30px);
    translate: -15px 0;
  }
}
.top-business__item {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .top-business__item {
    width: calc(50% - 13.33px);
  }
}
@media (min-width: 980px) {
  .top-business__item {
    width: min(25% - 19.995px, 260px);
  }
}
@media (min-width: 768px) {
  .top-business__item + .top-business__item {
    margin-left: 26.66px;
  }
}
@media (min-width: 980px) {
  .top-business__item + .top-business__item {
    margin-left: 26.66px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .top-business__item:nth-of-type(2n + 1) {
    margin-left: 0;
  }
}
@media (min-width: 980px) {
  .top-business__item:nth-of-type(4n + 1) {
    margin-left: 0;
  }
}
.top-business__item.exception-01 .top-business__image {
  object-position: left top;
}
@media (min-width: 768px) {
  .top-business__item.exception-01 .top-business__image {
    object-position: center center;
  }
}
.top-business__item.exception-02 .top-business__image {
  object-position: left -80px;
}
@media (min-width: 768px) {
  .top-business__item.exception-02 .top-business__image {
    object-position: center center;
  }
}
@media (max-width: 767px) {
  .top-business__item:last-of-type {
    margin-bottom: 0;
  }
}
.top-business__item .top-business__image {
  aspect-ratio: 5/3;
  object-fit: cover;
}
@media (min-width: 768px) {
  .top-business__item .top-business__image {
    aspect-ratio: 13/16;
  }
}
.top-business__item-headline {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 16px;
  color: #fff;
  background-color: #061b5d;
}
@media (min-width: 768px) {
  .top-business__btn.sp {
    display: none;
  }
}
.top-business__btn.pc {
  display: none;
}
@media (min-width: 768px) {
  .top-business__btn.pc {
    display: block;
  }
}
@media (min-width: 768px) {
  .top-business__btn.pc .top-business__link {
    width: 180px;
    height: 50px;
    margin: 0 0 50px;
  }
}
@media (min-width: 980px) {
  .top-business__btn.pc {
    position: absolute;
    top: 0;
    right: 15px;
  }
}
.top-business__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 240px);
  height: 60px;
  margin-inline: auto;
  padding: 0 20px;
  background-color: #fff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-business__link:hover {
    opacity: 0.7;
  }
}
.top-business__link .top-business__label {
  font-size: 1.5rem;
  color: #061b5d;
}
.top-business__link .icon--navy {
  fill: #061b5d;
}

.top-company {
  overflow: hidden;
  background: #f4f4f4;
}
.top-company__contents {
  position: relative;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 70px 30px 120px;
  color: #fff;
}
@media (min-width: 768px) {
  .top-company__contents {
    padding: 140px 40px 240px;
  }
}
@media (min-width: 980px) {
  .top-company__contents::before {
    position: absolute;
    right: -46px;
    bottom: 96px;
    z-index: 1;
    content: "";
    display: inline-block;
    width: 1175.89px;
    height: 85.2px;
    background: url("/wp-content/themes/ota-tekkosyo/img/bg_otaironworkscoltd--pc.svg") left top/contain no-repeat;
  }
}
.top-company__headline {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #061b5d;
}
@media (min-width: 768px) {
  .top-company__headline {
    padding: 0 15px;
    text-align: left;
    font-size: 5.6rem;
  }
}
@media (min-width: 980px) {
  .top-company__headline {
    position: relative;
    z-index: 1;
  }
}
.top-company__headline .top-company__label {
  display: block;
  padding-top: 13px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .top-company__headline .top-company__label {
    font-size: 2rem;
    font-weight: 500;
  }
}
.top-company__inner {
  padding: 0 15px;
}
.top-company__text {
  margin-bottom: 40px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 767px) {
  .top-company__text {
    max-width: 290px;
    margin-inline: auto;
  }
}
@media (min-width: 980px) {
  .top-company__text {
    position: relative;
    z-index: 1;
    width: min(50% - 15px, 450px);
    line-height: 1.875;
  }
}
.top-company__photo {
  display: block;
  width: min(100% + 30px, 330px);
  margin: 0 auto 60px;
  translate: -15px 0;
}
@media (min-width: 768px) {
  .top-company__photo {
    width: calc(100% + 30px);
  }
}
@media (min-width: 980px) {
  .top-company__photo {
    position: absolute;
    top: 100px;
    right: -83px;
    width: 696px;
    height: 440px;
    margin-bottom: 0;
    translate: 0;
  }
}
.top-company__photo::after {
  position: absolute;
  left: -15.7px;
  bottom: -23.6px;
  content: "";
  display: block;
  width: 288.2px;
  height: 150.6px;
  background: url("/wp-content/themes/ota-tekkosyo/img/bg_otaironworkscoltd--sp.svg") left top/contain no-repeat;
}
@media (min-width: 980px) {
  .top-company__photo::after {
    display: none;
  }
}
@media (min-width: 980px) {
  .top-company__btn {
    position: relative;
    z-index: 1;
  }
}
.top-company__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 240px);
  height: 60px;
  margin-inline: auto;
  padding: 0 20px;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-company__link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 980px) {
  .top-company__link {
    height: 50px;
    margin-inline: 0;
  }
}
.top-company__link .top-business__label {
  font-size: 1.5rem;
  color: #fff;
}
.top-company__link .icon--white {
  fill: #fff;
}

.top-recruit {
  margin: -60px 30px 0;
  background-color: #4866c4;
  border-radius: 10px;
  box-shadow: 0 3px 9px rgba(6, 27, 93, 0.2);
}
@media (min-width: 980px) {
  .top-recruit {
    width: min(100%, 880px);
    margin: -40px auto 0;
  }
}
.top-recruit__contents {
  padding: 50px 10px 40px;
  text-align: center;
  color: #fff;
}
@media (min-width: 980px) {
  .top-recruit__contents {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: auto 430px;
    grid-auto-rows: auto;
    gap: 0 70px;
    padding: 10px;
  }
}
.top-recruit__headline {
  margin-bottom: 20px;
  padding: 0 15px;
  text-align: center;
  line-height: 1;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
@media (min-width: 768px) {
  .top-recruit__headline {
    font-size: 5.6rem;
  }
}
@media (min-width: 980px) {
  .top-recruit__headline {
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 30px 0 0;
    padding: 0 0 0 50px;
    text-align: left;
  }
}
.top-recruit__label {
  display: block;
  padding-top: 13px;
  font-size: 1.6rem;
}
@media (min-width: 980px) {
  .top-recruit__label {
    font-size: 2rem;
    font-weight: 500;
  }
}
.top-recruit__link {
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-recruit__link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 980px) {
  .top-recruit__link {
    grid-row: 1/3;
    grid-column: 2/3;
    margin-bottom: 0;
    border-radius: 0 10px 10px 0;
  }
}
.top-recruit__link::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/icon_circle_arrow.svg) left top/contain no-repeat;
}
.top-recruit__text {
  max-width: max-content;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .top-recruit__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 980px) {
  .top-recruit__text {
    grid-row: 2/3;
    grid-column: 1/2;
    margin: 0 0 30px;
    padding: 0 0 0 50px;
  }
}

.top-news__contents {
  position: relative;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 70px 30px 30px;
  color: #fff;
}
@media (min-width: 768px) {
  .top-news__contents {
    padding: 140px 40px 0;
  }
}
.top-news__headline {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #061b5d;
}
@media (min-width: 768px) {
  .top-news__headline {
    margin-bottom: 60px;
    padding: 0 15px;
    font-size: 5.6rem;
  }
}
@media (min-width: 980px) {
  .top-news__headline {
    position: relative;
    z-index: 1;
  }
}
.top-news__headline .top-news__label {
  display: block;
  padding-top: 13px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .top-news__headline .top-news__label {
    font-size: 2rem;
    font-weight: 500;
  }
}
.top-news__list {
  width: min(100%, 780px);
  margin: 0 auto 40px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .top-news__list {
    margin: 0 auto 50px;
  }
}
.top-news__item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #707070;
}
@media (min-width: 768px) {
  .top-news__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 30px;
  }
}
.top-news__item:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.top-news__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  .top-news__meta {
    flex-wrap: nowrap;
    gap: 0 10px;
    margin-bottom: 0;
  }
}
.top-news__date {
  font-size: 1.6rem;
  color: #061b5d;
}
@media (min-width: 768px) {
  .top-news__date {
    margin-right: 20px;
  }
}
.top-news__category {
  display: inline-block;
  padding: 0 10px 2px;
  white-space: nowrap;
  font-size: 1.6rem;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-news__category:hover {
    opacity: 0.7;
  }
}
.top-news__item-link {
  display: block;
  line-height: 1.875;
  color: #000;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-news__item-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .top-news__item-link {
    flex: 1 1 auto;
  }
}
.top-news__title {
  position: relative;
  padding-right: 40px;
}
@media (min-width: 768px) {
  .top-news__title {
    padding-right: 60px;
  }
}
.top-news__title::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/icon_circle_arrow.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .top-news__title::before {
    bottom: inherit;
  }
}
@media (min-width: 980px) {
  .top-news__btn {
    position: relative;
    z-index: 1;
  }
}
.top-news__btn .top-news__link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 240px);
  height: 60px;
  margin-inline: auto;
  padding: 0 20px;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-news__btn .top-news__link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 980px) {
  .top-news__btn .top-news__link {
    height: 50px;
  }
}
.top-news__btn .top-news__link .top-business__label {
  font-size: 1.5rem;
  color: #fff;
}
.top-news__btn .top-news__link .icon--white {
  fill: #fff;
}

.footer {
  background-color: #000;
}
.footer__contact {
  position: relative;
  padding: 70px 0 120px;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_footer.jpg) center top/829px 622px no-repeat;
}
@media (min-width: 768px) {
  .footer__contact {
    padding: 135px 0 55px;
    background-position: center center;
    background-size: cover;
  }
}
.footer__contact::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 520px;
  margin: auto;
  background: linear-gradient(180deg, #fff 40%, transparent 100%);
}
@media (min-width: 768px) {
  .footer__contact::before {
    height: 550px;
  }
}
.footer__contact::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 263px;
  margin: auto;
  background: linear-gradient(180deg, transparent 0%, #000 86.31%);
}
.footer__contact-headline {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #061b5d;
}
@media (min-width: 768px) {
  .footer__contact-headline {
    margin-bottom: 60px;
    padding: 0 15px;
    font-size: 5.6rem;
  }
}
@media (min-width: 980px) {
  .footer__contact-headline {
    position: relative;
    z-index: 1;
  }
}
.footer__contact-headline .footer__contact-label {
  display: block;
  padding-top: 13px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .footer__contact-headline .footer__contact-label {
    font-size: 2rem;
    font-weight: 500;
  }
}
.footer__contact-label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #061b5d;
}
.footer__contact-contents {
  position: relative;
  z-index: 1;
  width: min(100% - 60px, 630px);
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .footer__contact-contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 80px;
  }
}
.footer__contact-subheadline {
  max-width: max-content;
  margin: 0 auto 20px;
  font-size: 1.9rem;
}
@media (min-width: 768px) {
  .footer__contact-subheadline {
    max-width: inherit;
    width: 100%;
    text-align: center;
  }
}
.footer__contact-icon {
  margin-bottom: 20px;
  text-align: center;
  line-height: 0;
}
.footer__contact-btn {
  margin-bottom: 20px;
}
.footer__contact-btn .footer__contact-label {
  color: #fff;
}
.footer__contact-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 300px);
  height: 60px;
  margin: 0 auto;
  padding: 0 30px;
  background-color: #061b5d;
  border-radius: calc(infinity * 1px);
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__contact-link:hover {
    opacity: 0.7;
  }
}
.footer__contact-link .footer__contact-label {
  font-size: 1.5rem;
  color: #fff;
}
.footer__contact-link .icon--white {
  fill: #fff;
}
.footer__contact-text {
  max-width: max-content;
  margin: 0 auto;
  font-size: 1.5rem;
}
.footer__nav {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer__nav {
    display: none;
  }
}
.footer__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}
.footer__link {
  color: #fff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    opacity: 0.7;
  }
}
.footer__office-list {
  position: relative;
  z-index: 1;
  margin: -62px auto 0;
  padding: 0 45px 60px;
  background-color: #000;
}
@media (min-width: 768px) {
  .footer__office-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    width: 689px;
    margin: 0 auto;
    padding: 40px 0 50px;
  }
}
.footer__office-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__office-item {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .footer__office-item:nth-of-type(odd) {
    width: 321px;
  }
}
@media (min-width: 768px) {
  .footer__office-item:nth-of-type(even) {
    width: 338px;
  }
}
.footer__office-item:last-of-type {
  margin-bottom: 0;
}
.footer__office-name {
  width: 100%;
  margin-bottom: 5px;
  color: #fff;
}
.footer__office-info {
  width: calc(100% - 65px);
  font-style: normal;
  font-size: 1.6rem;
  color: #fff;
}
.footer__office-zip {
  display: block;
}
.footer__office-address {
  display: block;
  margin-bottom: 3px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.footer a.footer__office-tel,
.footer p.footer__office-tel {
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.footer a.footer__office-tel {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer a.footer__office-tel:hover {
    opacity: 0.7;
  }
}
.footer__office-link {
  width: 50px;
  line-height: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__office-link:hover {
    opacity: 0.7;
  }
}
.footer__bottom {
  width: calc(100% - 60px);
  margin-inline: auto;
  padding: 20px 0;
  text-align: center;
  background-color: #000;
  border-top: 1px solid #707070;
}
@media (min-width: 768px) {
  .footer__bottom {
    width: min(100%, 689px);
  }
}
.footer__copyright {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}

.sub-page__mv-contents, .contact__mv-contents, .single__mv-contents, .news__mv-contents, .requirements__mv-contents, .recruit__mv-contents, .company__mv-contents, .business__mv-contents {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: min(100%, 1200px);
  min-height: 250px;
  margin-inline: auto;
  padding: 0 40px;
}
@media (min-width: 768px) {
  .sub-page__mv-contents, .contact__mv-contents, .single__mv-contents, .news__mv-contents, .requirements__mv-contents, .recruit__mv-contents, .company__mv-contents, .business__mv-contents {
    align-items: flex-start;
    min-height: 300px;
  }
}
.sub-page__mv-headline, .contact__mv-headline, .single__mv-headline, .news__mv-headline, .requirements__mv-headline, .recruit__mv-headline, .company__mv-headline, .business__mv-headline {
  display: inline-block;
  padding: 10px 20px;
  line-height: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.business__mv {
  position: relative;
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_business.jpg") center bottom/127.22% no-repeat;
}
@media (min-width: 768px) {
  .business__mv {
    background-size: 1366px;
    background-position: top -255px center;
  }
}
@media (min-width: 1366px) {
  .business__mv::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: inline-block;
    content: "";
    width: 50vw;
    height: 300px;
    margin: auto;
    background-image: linear-gradient(0deg, #6ab1ff, #6eafff);
  }
}
@media (min-width: 1366px) {
  .business__mv::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: inline-block;
    content: "";
    width: 50vw;
    height: 300px;
    margin: auto;
    background-image: linear-gradient(0deg, #4f8afe, #437af1);
  }
}
.business__details-contents {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 60px 30px;
}
@media (min-width: 768px) {
  .business__details-contents {
    padding: 100px 40px 50px;
  }
}
.business__details-list {
  counter-reset: business;
}
.business__details-item {
  counter-increment: business;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .business__details-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.business__details-item:nth-of-type(even) .business__details-headline {
  background-color: #4866c4;
}
.business__details-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .business__details-group {
    width: calc(42.3% - 50px);
  }
}
.business__details-headline {
  position: relative;
  margin-bottom: 30px;
  padding: 3.75px 10px;
  font-size: 2.5rem;
  color: #fff;
  background-color: #061b5d;
}
.business__details-headline::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  content: "BUSINESS " counter(business, decimal-leading-zero);
  margin: auto;
  line-height: 1;
  font-size: 1.9rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  opacity: 0.2;
}
.business__details-text {
  margin: 0 15px 30px;
  line-height: 2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .business__details-text {
    margin: 0 0 40px;
  }
}
.business__details-service {
  position: relative;
  margin: 0 15px 30px;
}
@media (min-width: 768px) {
  .business__details-service {
    margin: 0;
  }
}
.business__details-service-headline {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: min(100%, 200px);
  margin-inline: auto;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #fff;
}
@media (min-width: 768px) {
  .business__details-service-headline {
    width: calc(100% - 20px);
    font-size: 1.6rem;
  }
}
@media (min-width: 1140px) {
  .business__details-service-headline {
    top: -12px;
    padding: 0;
  }
}
@media (min-width: 1140px) {
  .business__details-service-headline br {
    display: none;
  }
}
.business__details-service-list {
  padding: 60px 20px 20px;
  font-size: 0;
  border: 1px solid #061b5d;
}
@media (min-width: 1140px) {
  .business__details-service-list {
    padding: 32px 20px 20px;
  }
}
.business__details-service-item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 13px;
  font-size: 1.6rem;
  color: #061b5d;
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .business__details-service-item {
    display: inline-block;
    margin-right: 17px;
  }
}
@media (min-width: 980px) {
  .business__details-service-item {
    overflow-wrap: normal;
    word-break: normal;
  }
}
.business__details-service-item::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: #061b5d;
  border-radius: 50%;
}
.business__details-service-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .business__details-service-item br {
    display: none;
  }
}
.business__details-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  margin: 0 15px;
}
@media (min-width: 768px) {
  .business__details-gallery {
    gap: 30px;
    width: min(57.7%, 600px);
    margin: 0;
  }
}
.business__details-photo:not(:first-of-type) {
  width: calc(50% - 5px);
}
@media (min-width: 768px) {
  .business__details-photo:not(:first-of-type) {
    width: calc(50% - 15px);
  }
}
@media (min-width: 768px) {
  .business__details-photo:not(:first-of-type) .business__details-image {
    aspect-ratio: 19/14;
  }
}
.business__details-photo .business__details-image {
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (min-width: 768px) {
  .business__details-photo .business__details-image {
    aspect-ratio: 12/7;
  }
}
.company__mv {
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_company.jpg") center bottom/cover no-repeat;
}
.company__philosophy {
  position: relative;
  overflow: hidden;
}
.company__philosophy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 778.86px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_corporatephilosophy.svg) left top/contain no-repeat;
  translate: 20px 0;
}
@media (min-width: 768px) {
  .company__philosophy::before {
    width: 1335.2px;
    height: 84.96px;
    translate: 88px 23px;
  }
}
.company__philosophy-contents {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 30px 80px;
  text-align: center;
}
@media (min-width: 768px) {
  .company__philosophy-contents {
    padding: 100px 40px 75px;
  }
}
.company__philosophy-headline {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
}
.company__philosophy-founding {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 10px;
  color: #fff;
  background-color: #061b5d;
}
.company__greeting {
  background-color: #f4f4f4;
}
.company__greeting-contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 30px 80px;
}
@media (min-width: 768px) {
  .company__greeting-contents {
    padding: 100px 80px 75px;
  }
}
.company__greeting-profile {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .company__greeting-profile {
    width: 41.82%;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .company__greeting-profile {
    width: 435px;
  }
}
.company__greeting-thumb {
  margin-bottom: 25px;
  text-align: center;
}
.company__greeting-title, .recruit__message-title {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 400;
}
.company__greeting-name-ja, .recruit__message-name-ja {
  display: inline-block;
}
.company__greeting-name-en, .recruit__message-name-en {
  display: inline-block;
  margin-left: 8px;
  vertical-align: bottom;
  font-size: 1.2rem;
  color: #707070;
}
@media (min-width: 768px) {
  .company__greeting-details {
    width: calc(58.18% - 40px);
  }
}
@media (min-width: 1200px) {
  .company__greeting-details {
    width: calc(100% - 435px - 80px);
  }
}
.company__greeting-headline {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .company__greeting-headline {
    font-size: 2.5rem;
  }
}
.company__greeting-subheadline {
  margin-bottom: 30px;
  padding: 5px 10px;
  border-left: 6px solid #061b5d;
}
.company__greeting-text {
  line-height: 2.25;
  font-size: 1.6rem;
  font-weight: 400;
}
.company__greeting-text--emphasis {
  font-weight: 700;
  color: #061b5d;
}
.company__overview-contents {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 30px 0;
}
@media (min-width: 768px) {
  .company__overview-contents {
    padding: 100px 55px;
  }
}
.company__overview-headline {
  margin-bottom: 60px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .company__overview-headline {
    font-size: 3rem;
  }
}
.company__overview-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .company__overview-gallery {
    gap: 20px;
  }
}
.company__overview-item {
  width: calc(33.33% - 6.66px);
}
@media (min-width: 768px) {
  .company__overview-item {
    width: min(33.33% - 13.33px, 350px);
  }
}
.company__overview-dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: min(100%, 650px);
  margin: 0 auto 80px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .company__overview-dl {
    font-size: 1.6rem;
  }
}
.company__overview-dt {
  width: 120px;
  padding: 10px 0;
  color: #061b5d;
  border-bottom: 1px solid #707070;
}
@media (min-width: 768px) {
  .company__overview-dt {
    width: 115px;
    padding: 20px 0;
    background-color: transparent;
    border-bottom: 1px solid #061b5d;
  }
}
.company__overview-dd {
  width: calc(100% - 130px);
  margin-left: 10px;
  padding: 10px;
  border-bottom: 1px solid #707070;
}
@media (min-width: 768px) {
  .company__overview-dd {
    width: calc(100% - 115px - 20px);
    margin-left: 20px;
    padding: 20px 0;
  }
}
.company__overview-clients {
  position: relative;
  width: min(100%, 580px);
  margin: 0 auto 80px;
  border: 1px solid #061b5d;
}
@media (min-width: 768px) {
  .company__overview-clients {
    margin: 0 auto 100px;
  }
}
.company__overview-clients-headline {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  display: inline-block;
  max-width: 261px;
  margin: auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  background-color: #fff;
}
@media (min-width: 768px) {
  .company__overview-clients-headline {
    top: -18.75px;
    max-width: 330px;
    font-size: 2.5rem;
  }
}
.company__overview-clients-list {
  width: fit-content;
  margin-inline: auto;
  padding: 35px 27px 27px;
}
@media (min-width: 768px) {
  .company__overview-clients-list {
    padding: 55px 47px 47px;
  }
}
.company__overview-clients-item {
  position: relative;
  padding-left: 22px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .company__overview-clients-item {
    font-size: 1.6rem;
  }
}
.company__overview-clients-item::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: #061b5d;
}
.company__overview-clients-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.company__overview-figure {
  width: calc(100% + 60px);
  translate: -30px 0;
}
@media (min-width: 768px) {
  .company__overview-figure {
    width: calc(100% + 110px);
    translate: -55px 0;
  }
}
.company__history {
  overflow: hidden;
}
.company__history-contents {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 30px 80px;
}
@media (min-width: 768px) {
  .company__history-contents {
    padding: 100px 113.5px 45px;
  }
}
.company__history-headline {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .company__history-headline {
    font-size: 3rem;
  }
}
.company__history-list {
  position: relative;
  font-size: 0;
}
.company__history-list::before {
  position: absolute;
  top: 0;
  left: 132px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 2px;
  height: 100%;
  margin: auto;
  background-color: #061b5d;
}
.company__history-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.company__history-item:last-of-type .company__history-date {
  padding-bottom: 0;
}
.company__history-item:last-of-type .company__history-date::before {
  display: none;
}
.company__history-item:last-of-type .company__history-text {
  padding-bottom: 0;
}
.company__history-date {
  position: relative;
  display: inline-block;
  width: 134px;
  padding-right: 16px;
  padding-bottom: 44px;
  font-size: 4.2rem;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  color: #061b5d;
}
@media (min-width: 768px) {
  .company__history-date {
    width: 164px;
    padding-right: 32px;
  }
}
.company__history-date--small {
  font-size: 2.4rem;
}
.company__history-date::before {
  position: absolute;
  left: 0;
  right: 32px;
  bottom: 15px;
  display: inline-block;
  content: "";
  width: 48px;
  height: 16px;
  margin: auto;
  background-color: #061b5d;
  clip-path: polygon(0 0, 48px 0, 24px 16px);
}
.company__history-text {
  position: relative;
  width: calc(100% - 134px);
  padding-left: 19px;
  padding-bottom: 44px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .company__history-text {
    width: calc(100% - 164px);
    padding-left: 38px;
  }
}
@media (max-width: 767px) {
  .company__history-text br {
    display: none;
  }
}
.company__history-text .company__history-image {
  display: block;
  width: 300px;
  margin-top: 19px;
}
@media (min-width: 1200px) {
  .company__history-text .company__history-image {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    margin-top: 0;
  }
}
.company__history-bottom {
  position: relative;
}
.company__history-bottom .company__history-image {
  width: 1366px;
  height: 240px;
  aspect-ratio: 683/120;
  object-fit: cover;
}
@media (min-width: 1366px) {
  .company__history-bottom .company__history-image {
    width: 100%;
  }
}
.company__history-bottom::before {
  position: absolute;
  top: -31.5px;
  right: 0;
  display: inline-block;
  content: "";
  width: 272.93px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_history.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .company__history-bottom::before {
    top: -63px;
    left: 0;
    width: 467.88px;
    height: 84.96px;
    translate: 366px 0;
  }
}
.company__offices-contents {
  width: min(100%, 683px);
  margin: 0 auto;
  padding: 60px 30px 80px;
}
@media (min-width: 768px) {
  .company__offices-contents {
    padding: 100px 0;
  }
}
.company__offices-headline {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .company__offices-headline {
    font-size: 3rem;
  }
}
.company__offices-subheadline {
  position: relative;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #061b5d;
}
.company__offices-subheadline::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: #061b5d;
}
.company__offices-subheadline-label {
  display: inline-block;
  padding-right: 20px;
  background-color: #fff;
}
.company__offices-list:last-of-type .company__offices-item:last-of-type {
  margin-bottom: 0;
}
.company__offices-item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .company__offices-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.company__offices-details {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .company__offices-details {
    width: calc(100% - 400px - 50px);
    font-size: 1.6rem;
  }
}
.company__offices-name {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #061b5d;
}
@media (min-width: 768px) {
  .company__offices-name {
    font-size: 2rem;
  }
}
.company__offices-address {
  margin-bottom: 5px;
}
.company__offices-tel {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .company__offices-tel {
    margin-bottom: 40px;
  }
}
.company__offices-btn {
  margin-bottom: 20px;
}
.company__offices-btn .company__offices-label {
  color: #fff;
}
.company__offices-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 233px);
  height: 50px;
  padding: 0 20px;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .company__offices-link:hover {
    opacity: 0.7;
  }
}
.company__offices-link .company__offices-label {
  font-size: 1.5rem;
  color: #fff;
}
.company__offices-link .icon--white {
  fill: #fff;
}
.company__offices-map {
  width: 100%;
}
@media (min-width: 768px) {
  .company__offices-map {
    width: 400px;
    margin-left: 50px;
  }
}

.recruit__mv {
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_recruit--sp.png") center bottom/cover no-repeat;
}
@media (min-width: 768px) {
  .recruit__mv {
    background: url("/wp-content/themes/ota-tekkosyo/img/mv_recruit--pc.png") center center/cover no-repeat;
  }
}
.recruit__mv-headline {
  position: relative;
}
.recruit__mv-headline::before {
  position: absolute;
  left: -28px;
  bottom: calc(100% - 2px);
  display: inline-block;
  content: "";
  width: 236.1px;
  height: 42.48px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_recruit.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .recruit__mv-headline::before {
    top: 0;
    left: 170px;
    bottom: 0;
    width: 472.2px;
    height: 84.96px;
  }
}
.recruit__message-contents {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 30px 80px;
}
@media (min-width: 768px) {
  .recruit__message-contents {
    padding: 100px 40px;
  }
}
.recruit__message-headline {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit__message-headline {
    margin-bottom: 55px;
    text-align: left;
  }
}
.recruit__message-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 297.78px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_message.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .recruit__message-headline::before {
    top: 28.5px;
    left: -30px;
    right: inherit;
    width: 510.48px;
    height: 84.96px;
  }
}
.recruit__message-thoughts {
  margin-bottom: 38px;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit__message-thoughts {
    margin-bottom: 36px;
  }
}
.recruit__message-profile {
  width: min(100%, 680px);
  margin: 0 auto;
}
.recruit__message-thumb {
  width: min(100%, 300px);
  margin: 0 auto 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit__message-thumb {
    width: min(100%, 680px);
  }
}
@media (max-width: 767px) {
  .recruit__message-thumb .recruit__message-image {
    aspect-ratio: 6/7;
    object-fit: cover;
  }
}
.recruit__message-text {
  margin-bottom: 20px;
  padding: 0 20px;
  line-height: 2.25;
}
@media (min-width: 768px) {
  .recruit__message-text {
    margin-bottom: 50px;
    padding: 0;
  }
}
.recruit__message-info {
  text-align: right;
}
.recruit__message-title {
  margin-right: 90px;
}
.recruit__voice {
  position: relative;
}
.recruit__voice::before {
  position: absolute;
  top: 417px;
  left: 0;
  right: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 1999px;
  margin: auto;
  background: linear-gradient(180deg, rgba(72, 102, 196, 0.3), transparent);
}
@media (min-width: 768px) {
  .recruit__voice::before {
    top: 506px;
    height: 1477px;
  }
}
.recruit__voice-contents {
  width: min(100%, 810px);
  margin: 0 auto;
  padding: 0 50px 80px;
}
@media (min-width: 768px) {
  .recruit__voice-contents {
    padding: 0 40px 100px;
  }
}
.recruit__voice-headline {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit__voice-headline {
    margin-bottom: 134px;
  }
}
.recruit__voice-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 182.98px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_voice.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .recruit__voice-headline::before {
    width: 313.68px;
    height: 84.96px;
  }
}
.recruit__voice-text {
  margin-bottom: 50px;
  line-height: 2;
}
@media (min-width: 768px) {
  .recruit__voice-text {
    width: min(100%, 680px);
    margin: 0 auto 40px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .recruit__voice-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px 30px;
  }
}
.recruit__voice-item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .recruit__voice-item {
    width: calc(50% - 15px);
  }
}
.recruit__voice-item:last-of-type {
  margin-bottom: 0;
}
.recruit__voice-link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .recruit__voice-link:hover {
    opacity: 0.7;
  }
}
.recruit__voice-thumb {
  margin-bottom: 20px;
}
.recruit__voice-list-text {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit__voice-list-text {
    font-size: 2rem;
  }
}
.recruit__voice-list-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.recruit__voice-list-group svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .recruit__voice-list-group svg {
    width: 30px;
    height: 30px;
  }
}
.recruit__voice-list-data {
  font-size: 1.6rem;
  font-weight: 400;
}
.recruit__numbers-contents {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 50px 80px;
}
@media (min-width: 768px) {
  .recruit__numbers-contents {
    padding: 0 40px 100px;
  }
}
.recruit__numbers-headline {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit__numbers-headline {
    margin-bottom: 134px;
  }
}
.recruit__numbers-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 311.5px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_numbers.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .recruit__numbers-headline::before {
    width: 534px;
    height: 84.96px;
  }
}
.recruit__numbers-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: min(100%, 960px);
  margin: 0 auto;
  container-type: inline-size;
}
.recruit__numbers-item {
  width: 300px;
  min-height: 300px;
  padding: 30px 30px 10px;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 9px rgba(72, 102, 196, 0.12);
}
.recruit__numbers-item.employees .recruit__numbers-list-icon {
  margin-bottom: 30px;
}
.recruit__numbers-item.employees .recruit__numbers-list-text {
  text-align: center;
}
.recruit__numbers-item.employees .recruit__numbers-list-text--num {
  font-size: 7rem;
  color: #4866c4;
}
.recruit__numbers-item.gender .recruit__numbers-list-headline {
  margin-bottom: 6px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.recruit__numbers-item.gender .recruit__numbers-list-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.recruit__numbers-item.gender .recruit__numbers-list-group .recruit__numbers-list-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}
.recruit__numbers-item.gender .recruit__numbers-list-group .recruit__numbers-list-text--num {
  margin-right: 20px;
}
.recruit__numbers-item.gender .recruit__numbers-list-group:nth-of-type(odd) .recruit__numbers-list-text--num,
.recruit__numbers-item.gender .recruit__numbers-list-group:nth-of-type(odd) .recruit__numbers-list-text--gendar {
  color: #061b5d;
}
.recruit__numbers-item.gender .recruit__numbers-list-group:nth-of-type(even) .recruit__numbers-list-text--num,
.recruit__numbers-item.gender .recruit__numbers-list-group:nth-of-type(even) .recruit__numbers-list-text--gendar {
  color: #4866c4;
}
.recruit__numbers-item.gender .recruit__numbers-list-group:last-of-type {
  margin-bottom: 0;
}
.recruit__numbers-item.gender .recruit__numbers-list-group .recruit__numbers-list-text--gendar {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.recruit__numbers-item.gender .recruit__numbers-list-group .recruit__numbers-list-text--unit {
  display: block;
  font-size: 3rem;
  font-weight: 700;
}
.recruit__numbers-item.gender .recruit__numbers-list-icon {
  width: 43px;
}
.recruit__numbers-item.gender .recruit__numbers-list-text--num {
  font-size: 8rem;
}
.recruit__numbers-item.overtime .recruit__numbers-list-icon {
  margin-bottom: 10px;
  text-align: right;
}
.recruit__numbers-item.overtime .recruit__numbers-list-text {
  margin-bottom: 10px;
}
.recruit__numbers-item.overtime .recruit__numbers-list-text + .recruit__numbers-list-text {
  margin-bottom: 0;
}
.recruit__numbers-item.overtime .recruit__numbers-list-text--large-num {
  font-size: 12rem;
}
.recruit__numbers-item.overtime .recruit__numbers-list-text--num {
  font-size: 8rem;
  color: #4866c4;
}
.recruit__numbers-item.overtime .recruit__numbers-list-text--large-num {
  line-height: 0;
}
.recruit__numbers-item.overtime .recruit__numbers-list-text--unit {
  font-size: 3.5rem;
  font-weight: 700;
}
.recruit__numbers-item.holidays .recruit__numbers-list-text--num {
  font-size: 12rem;
}
.recruit__numbers-item.holidays .recruit__numbers-list-text--unit {
  font-size: 3rem;
  font-weight: 700;
}
.recruit__numbers-item.paid-leave .recruit__numbers-list-headline {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.recruit__numbers-item.paid-leave .recruit__numbers-list-text--large-num {
  font-size: 10rem;
}
.recruit__numbers-item.paid-leave .recruit__numbers-list-text--num {
  font-size: 8rem;
  color: #4866c4;
}
.recruit__numbers-item.paid-leave .recruit__numbers-list-text--unit {
  font-size: 3rem;
  font-weight: 700;
}
.recruit__numbers-item.tenure .recruit__numbers-list-icon {
  margin-bottom: 20px;
}
.recruit__numbers-item.tenure .recruit__numbers-list-text {
  margin-bottom: 20px;
}
.recruit__numbers-item.tenure .recruit__numbers-list-text:last-of-type {
  margin-bottom: 0;
}
.recruit__numbers-item.tenure .recruit__numbers-list-text--large-num {
  font-size: 12rem;
}
.recruit__numbers-item.tenure .recruit__numbers-list-text--num {
  font-size: 8rem;
}
.recruit__numbers-item.tenure .recruit__numbers-list-text--unit {
  font-size: 3rem;
  font-weight: 700;
}
.recruit__numbers-item.qualification {
  width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    padding: 30px 50px 10px;
    width: 630px;
  }
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification {
    justify-content: space-between;
    gap: 0 10px;
    width: 100%;
    font-size: 11rem;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-headline {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-headline {
    margin-bottom: 20px;
  }
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-headline {
    margin: 0 0 20px 35px;
    text-align: left;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-group {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-group {
    margin-bottom: 20px;
  }
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-group {
    margin-bottom: 40px;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-group-headline {
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-group-headline {
    font-size: 1.6rem;
  }
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-group-headline {
    font-size: 2rem;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-group-text {
  line-height: 1;
  font-size: 0;
}
.recruit__numbers-item.qualification .recruit__numbers-list-icon {
  margin-bottom: 45px;
  line-height: 0;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-icon {
    width: 100%;
    margin-bottom: 20px;
  }
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-icon {
    width: auto;
    margin-bottom: 0;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-text {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-text {
    width: 100%;
    margin-bottom: 0;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-text--num {
  font-size: 11rem;
  color: #4866c4;
}
@media (min-width: 768px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-text--num {
    font-size: 7rem;
  }
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-text--num {
    font-size: 11rem;
  }
}
.recruit__numbers-item.qualification .recruit__numbers-list-text--unit {
  font-size: 3rem;
  font-weight: 700;
}
.recruit__numbers-item.qualification .recruit__numbers-list-text {
  text-align: center;
}
@container (min-width: 960px) {
  .recruit__numbers-item.qualification .recruit__numbers-list-text {
    text-align: right;
  }
}
.recruit__numbers-list-icon {
  text-align: center;
}
.recruit__numbers-list-text {
  font-size: 2rem;
  font-weight: 700;
}
.recruit__numbers-list-text--num {
  margin-right: 10px;
  color: #061b5d;
}
.recruit__numbers-list-text--small {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
.recruit__numbers-list-text--num {
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  font-style: italic;
  font-family: "Barlow", sans-serif;
}
.recruit__benefits-contents {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 30px 80px;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit__benefits-contents {
    padding: 0 40px 80px;
  }
}
.recruit__benefits-headline {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit__benefits-headline {
    margin-bottom: 134px;
    text-align: left;
  }
}
.recruit__benefits-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 299.74px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_benefits.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .recruit__benefits-headline::before {
    top: 28.5px;
    left: 9px;
    right: inherit;
    width: 513.84px;
    height: 84.96px;
  }
}
.recruit__benefits-list {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .recruit__benefits-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 80px;
  }
}
.recruit__benefits-item {
  margin-bottom: 30px;
  padding: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 9px rgba(72, 102, 196, 0.12);
}
@media (min-width: 768px) {
  .recruit__benefits-item {
    width: calc(50% - 10px);
  }
}
.recruit__benefits-item:last-of-type {
  margin-bottom: 0;
}
.recruit__benefits-list-headline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.recruit__benefits-list-num {
  margin-right: 12px;
  line-height: 1;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  font-family: "Barlow", sans-serif;
  color: #4866c4;
}
.recruit__benefits-text {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}
.recruit__benefits-text + .recruit__benefits-thumb {
  margin-top: 20px;
}
.recruit__benefits-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .recruit__benefits-cta {
    font-size: 2.5rem;
  }
}
.recruit__benefits-cta::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 12px;
  margin: auto;
  background-color: #fafa05;
}
.recruit__benefits-link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 300px);
  height: 80px;
  margin: 0 auto;
  padding: 0 30px;
  background-color: #4866c4;
  border-radius: calc(infinity * 1px);
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .recruit__benefits-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .recruit__benefits-link {
    width: min(100%, 480px);
    height: 120px;
    padding: 0 50px;
  }
}
.recruit__benefits-link::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  display: inline-block;
  content: "";
  width: 162.42px;
  height: 37.95px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_entry.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .recruit__benefits-link::before {
    right: -10px;
    bottom: -4px;
    width: 354.36px;
    height: 82.8px;
  }
}
.recruit__benefits-link .recruit__benefits-label {
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .recruit__benefits-link .recruit__benefits-label {
    font-size: 2.5rem;
  }
}
.recruit__benefits-link svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .recruit__benefits-link svg {
    width: 50px;
    height: 50px;
  }
}

.voice {
  container-type: inline-size;
}
.voice__mv {
  background: radial-gradient(circle at 72.9% 50%, rgba(72, 102, 196, 0.302) 0%, rgba(178, 190, 227, 0.722) 58.1%, #f8f8f8 100%);
}
.voice .voice-01 {
  position: relative;
}
.voice .voice-01 .voice__mv-contents::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 278px;
  height: 306px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/mv_voice_01.png) center bottom/contain no-repeat;
  translate: -118px 0;
}
@media (min-width: 768px) {
  .voice .voice-01 .voice__mv-contents::before {
    width: 463px;
    height: 509px;
    translate: -269px 0;
  }
}
.voice .voice-01 .voice__mv-headline-label {
  position: relative;
}
.voice .voice-01 .voice__mv-headline-label::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  display: inline-block;
  content: "";
  width: 265.37px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_voice-01.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice .voice-01 .voice__mv-headline-label::before {
    top: 28.5px;
    left: -30px;
    right: inherit;
    width: 454.92px;
    height: 84.96px;
  }
}
.voice .voice-01 .voice__mv-group {
  width: min(100%, 330px);
  margin: 60px auto 0;
}
@media (min-width: 768px) {
  .voice .voice-01 .voice__mv-group {
    width: 60%;
    margin: 206px 0 0 auto;
    padding-left: 30px;
  }
}
@media (min-width: 980px) {
  .voice .voice-01 .voice__mv-group {
    width: 50%;
  }
}
.voice .voice-02 {
  position: relative;
}
.voice .voice-02 .voice__mv-contents::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 245.39px;
  height: 306px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/mv_voice_02.png) center bottom/contain no-repeat;
  translate: 118px 0;
}
@media (min-width: 768px) {
  .voice .voice-02 .voice__mv-contents::before {
    width: 417px;
    height: 520px;
    translate: 221px 0;
  }
}
.voice .voice-02 .voice__mv-headline-label {
  position: relative;
}
.voice .voice-02 .voice__mv-headline-label::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  display: inline-block;
  content: "";
  width: 271.95px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_voice-02.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice .voice-02 .voice__mv-headline-label::before {
    top: 28.5px;
    left: -30px;
    right: inherit;
    width: 466.2px;
    height: 84.96px;
  }
}
.voice .voice-02 .voice__mv-group {
  width: min(100%, 330px);
  margin: 60px auto 0;
}
@media (min-width: 768px) {
  .voice .voice-02 .voice__mv-group {
    width: 60%;
    margin: 206px auto 0 0;
    padding-left: 30px;
  }
}
@media (min-width: 980px) {
  .voice .voice-02 .voice__mv-group {
    width: 50%;
    margin-left: 141px;
  }
}
.voice .voice-02 .voice__mv-catchcopy {
  margin: 0 auto 40px 0;
}
.voice .voice-02 .voice__mv-meta {
  margin-left: 0;
  margin-right: auto;
}
.voice .voice-03 {
  position: relative;
}
.voice .voice-03 .voice__mv-contents::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 216.42px;
  height: 306px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/mv_voice_03.png) center bottom/contain no-repeat;
  translate: -118px 0;
}
@media (min-width: 768px) {
  .voice .voice-03 .voice__mv-contents::before {
    width: 360px;
    height: 509px;
    translate: -220px 0;
  }
}
.voice .voice-03 .voice__mv-headline-label {
  position: relative;
}
.voice .voice-03 .voice__mv-headline-label::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  display: inline-block;
  content: "";
  width: 271.81px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_voice-03.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice .voice-03 .voice__mv-headline-label::before {
    top: 28.5px;
    left: -30px;
    right: inherit;
    width: 465.96px;
    height: 84.96px;
  }
}
.voice .voice-03 .voice__mv-group {
  width: min(100%, 330px);
  margin: 60px auto 0;
}
@media (min-width: 768px) {
  .voice .voice-03 .voice__mv-group {
    width: 60%;
    margin: 206px 0 0 auto;
    padding-left: 30px;
  }
}
@media (min-width: 980px) {
  .voice .voice-03 .voice__mv-group {
    width: 50%;
  }
}
.voice .voice-04 {
  position: relative;
}
.voice .voice-04 .voice__mv-contents::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 254.52px;
  height: 306px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/mv_voice_04.png) center bottom/contain no-repeat;
  translate: 118px 0;
}
@media (min-width: 768px) {
  .voice .voice-04 .voice__mv-contents::before {
    width: 440px;
    height: 529px;
    translate: 221px 0;
  }
}
.voice .voice-04 .voice__mv-headline-label {
  position: relative;
}
.voice .voice-04 .voice__mv-headline-label::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  display: inline-block;
  content: "";
  width: 269.64px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_voice-04.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice .voice-04 .voice__mv-headline-label::before {
    top: 28.5px;
    left: -30px;
    right: inherit;
    width: 462.24px;
    height: 84.96px;
  }
}
.voice .voice-04 .voice__mv-group {
  width: min(100%, 330px);
  margin: 60px auto 0;
}
@media (min-width: 768px) {
  .voice .voice-04 .voice__mv-group {
    width: 60%;
    margin: 206px auto 0 0;
    padding-left: 30px;
  }
}
@media (min-width: 980px) {
  .voice .voice-04 .voice__mv-group {
    width: 50%;
    margin-left: 130px;
  }
}
.voice .voice-04 .voice__mv-catchcopy {
  margin: 0 auto 40px 0;
}
.voice .voice-04 .voice__mv-meta {
  margin-left: 0;
  margin-right: auto;
}
.voice__mv-contents {
  overflow: hidden;
  position: relative;
  width: min(100%, 1200px);
  height: 340px;
  margin-inline: auto;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .voice__mv-contents {
    height: 580px;
    padding: 0;
  }
}
.voice__mv-headline {
  position: absolute;
  top: -69px;
  left: 40px;
  width: min(100% - 40px, 1200px);
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .voice__mv-headline {
    top: -90px;
    margin-bottom: 55px;
  }
}
@container (min-width: 1200px) {
  .voice__mv-headline {
    left: 80px;
    right: 0;
    width: min(100% - 80px, 1200px);
    margin: auto;
  }
}
.voice__mv-headline-label {
  position: relative;
}
.voice__mv-top {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.voice__mv-catchcopy {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: fit-content;
  margin: 0 0 40px auto;
}
@media (min-width: 768px) {
  .voice__mv-catchcopy {
    margin: 0 0 50px 0;
  }
}
.voice__mv-catchcopy--letter {
  display: inline-block;
  padding: 2px 10px;
  font-size: 1.5rem;
  color: #4866c4;
  background-color: #fff;
}
@media (min-width: 768px) {
  .voice__mv-catchcopy--letter {
    padding: 8px 10px;
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .voice__mv-catchcopy--letter.sp {
    display: none;
  }
}
.voice__mv-catchcopy--letter.pc {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .voice__mv-catchcopy--letter.pc {
    display: none;
  }
}
.voice__mv-initial {
  margin-bottom: 12px;
  line-height: 1;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  font-family: "Barlow", sans-serif;
}
@media (min-width: 768px) {
  .voice__mv-initial {
    font-size: 4rem;
  }
}
.voice__mv-meta {
  width: fit-content;
  margin-left: auto;
}
@media (min-width: 768px) {
  .voice__mv-meta {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .voice__mv-data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
  }
}
.voice__mv-data-type {
  display: inline-block;
  margin-bottom: 6px;
  padding: 0 6px 1px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #000;
}
@media (min-width: 768px) {
  .voice__mv-data-type {
    margin-bottom: 0;
    padding: 0 6px 2px;
    font-size: 1.6rem;
  }
}
.voice__mv-data-join {
  font-size: 1.2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .voice__mv-data-join {
    font-size: 1.6rem;
  }
}
.voice__details-contents {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: 50px 45px 60px;
}
@media (min-width: 768px) {
  .voice__details-contents {
    padding: 100px 40px 80px;
  }
}
.voice__details-headline {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #4866c4;
}
@media (min-width: 768px) {
  .voice__details-headline {
    font-size: 3rem;
  }
}
.voice__details-text {
  margin-bottom: 30px;
}
.voice__details-text:last-of-type {
  margin-bottom: 0;
}
.voice__details-text + .voice__details-headline {
  margin-bottom: 36px;
}
.voice__details-photo {
  margin-bottom: 36px;
}
.voice__schedule {
  background-color: #f5f7fc;
}
.voice__schedule-contents {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 60px 30px;
}
@media (min-width: 768px) {
  .voice__schedule-contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 40px 80px;
  }
}
.voice__schedule-headline {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .voice__schedule-headline {
    width: 100%;
    margin-bottom: 134px;
  }
}
.voice__schedule-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 333.69px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_schedule.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice__schedule-headline::before {
    width: 572.04px;
    height: 84.96px;
  }
}
.voice__schedule-list {
  position: relative;
  width: fit-content;
  margin: 0 auto 50px;
  font-size: 0;
}
@media (min-width: 768px) {
  .voice__schedule-list {
    width: calc(100% - 390px - 50px);
    margin: 0;
  }
}
.voice__schedule-list::before {
  position: absolute;
  top: 0;
  left: 96px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 2px;
  height: calc(100% - 40px);
  margin: auto;
  background-color: #4866c4;
}
.voice__schedule-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.voice__schedule-item:last-of-type .voice__schedule-date {
  margin-bottom: 0;
}
.voice__schedule-item:last-of-type .voice__schedule-text {
  margin-bottom: 0;
}
.voice__schedule-date {
  position: relative;
  display: inline-block;
  width: 96px;
  margin-bottom: 30px;
  padding-right: 25px;
  line-height: 1;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  font-family: "Barlow", sans-serif;
  color: #000;
}
.voice__schedule-date::before {
  position: absolute;
  top: 0;
  right: -7px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: #4866c4;
  border-radius: 50%;
}
.voice__schedule-text {
  position: relative;
  width: calc(100% - 96px);
  margin-bottom: 30px;
  padding-left: 25px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .voice__schedule-text br {
    display: none;
  }
}
.voice__schedule-text .voice__schedule-image {
  display: block;
  width: 300px;
  margin-top: 19px;
}
@media (min-width: 1200px) {
  .voice__schedule-text .voice__schedule-image {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    margin-top: 0;
  }
}
.voice__schedule-photo-list {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .voice__schedule-photo-list {
    width: min(100%, 390px);
    margin-left: 50px;
    padding: 0;
  }
}
.voice__schedule-photo-item {
  text-align: center;
}
.voice__schedule-photo-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.voice__schedule-image {
  aspect-ratio: 6/5;
  object-fit: cover;
}
@media (max-width: 767px) {
  .voice__schedule-image {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .voice__schedule-image {
    aspect-ratio: 39/25;
  }
}
.voice__message-contents {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .voice__message-contents {
    padding: 100px 40px;
  }
}
.voice__message-headline {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .voice__message-headline {
    width: 100%;
    margin-bottom: 175px;
  }
}
.voice__message-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 297.78px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_message.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice__message-headline::before {
    width: 510.48px;
    height: 84.96px;
  }
}
.voice__message-thoughts {
  margin-bottom: 100px;
}
.voice__benefits-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .voice__benefits-cta {
    font-size: 2.5rem;
  }
}
.voice__benefits-cta::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 12px;
  margin: auto;
  background-color: #fafa05;
}
.voice__benefits-link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 300px);
  height: 80px;
  margin: 0 auto;
  padding: 0 30px;
  background-color: #4866c4;
  border-radius: calc(infinity * 1px);
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .voice__benefits-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .voice__benefits-link {
    width: min(100%, 480px);
    height: 120px;
    padding: 0 50px;
  }
}
.voice__benefits-link::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  display: inline-block;
  content: "";
  width: 162.42px;
  height: 37.95px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_entry.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice__benefits-link::before {
    right: -10px;
    bottom: -4px;
    width: 354.36px;
    height: 82.8px;
  }
}
.voice__benefits-link .voice__benefits-label {
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .voice__benefits-link .voice__benefits-label {
    font-size: 2.5rem;
  }
}
.voice__benefits-link svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .voice__benefits-link svg {
    width: 50px;
    height: 50px;
  }
}
.voice__archive {
  container-type: inline-size;
}
.voice__archive-contents {
  width: min(100%, 1070px);
  margin: 0 auto;
  padding: 0 30px 30px;
}
@media (min-width: 768px) {
  .voice__archive-contents {
    padding: 0 40px 80px;
  }
}
.voice__archive-headline {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .voice__archive-headline {
    width: 100%;
    margin-bottom: 134px;
  }
}
.voice__archive-headline::before {
  position: absolute;
  top: 28.5px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 182.98px;
  height: 49.56px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_voice.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .voice__archive-headline::before {
    width: 313.68px;
    height: 84.96px;
  }
}
@container (max-width: 979px) {
  .voice__archive-nav {
    overflow-x: scroll;
    width: calc(100% + 30px);
  }
}
.voice__archive-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 30px;
  width: 930px;
}
@container (min-width: 980px) {
  .voice__archive-list {
    width: 900px;
    margin: 0 auto;
  }
}
.voice__archive-item {
  width: 280px;
}
.voice__archive-link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .voice__archive-link:hover {
    opacity: 0.7;
  }
}
.voice__archive-thumb {
  margin-bottom: 20px;
}
.voice__archive-image {
  aspect-ratio: 7/5;
  object-fit: cover;
}
.voice__archive-initial {
  margin-bottom: 8px;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 600;
  font-style: italic;
  font-family: "Barlow", sans-serif;
}
.voice__archive-list-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.voice__archive-list-group svg {
  flex: 0 0 auto;
}
.voice__archive-list-data {
  font-size: 1.6rem;
  font-weight: 400;
}

.requirements__mv {
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_requirements.jpg") center bottom/cover no-repeat;
}
.requirements__table-contents {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 60px 30px;
}
@media (min-width: 768px) {
  .requirements__table-contents {
    padding: 100px 40px 80px;
  }
}
.requirements__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 22px 10px;
  margin-bottom: 20px;
}
.requirements__link {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  font-size: 1.4rem;
  color: #4866c4;
  border: 1px solid #4866c4;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.requirements__link:hover {
  color: #fff;
  background-color: #4866c4;
}
.requirements__link--select {
  color: #fff;
  background-color: #4866c4;
}
.requirements__link--select::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 12px;
  margin: auto;
  background-color: #4866c4;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.requirements__overview-dl {
  display: none;
  margin-bottom: 100px;
}
.requirements__overview-dl.is-active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.requirements__overview-dt {
  width: min(25%, 200px);
  padding: 20px 0;
  font-size: 1.4rem;
  color: #4866c4;
  border-bottom: 2px solid #4866c4;
}
@media (min-width: 768px) {
  .requirements__overview-dt {
    padding: 40px 0 30px;
    font-size: 1.6rem;
  }
}
.requirements__overview-dd {
  width: min(72.5%, 580px);
  padding: 20px 0;
  font-size: 1.4rem;
  font-weight: 400;
  border-bottom: 2px solid #707070;
}
@media (min-width: 768px) {
  .requirements__overview-dd {
    padding: 40px 0 30px;
    font-size: 1.6rem;
  }
}
.requirements__benefits {
  text-align: center;
}
.requirements__benefits-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .requirements__benefits-cta {
    font-size: 2.5rem;
  }
}
.requirements__benefits-cta::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 12px;
  margin: auto;
  background-color: #fafa05;
}
.requirements__benefits-link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 300px);
  height: 80px;
  margin: 0 auto;
  padding: 0 30px;
  background-color: #4866c4;
  border-radius: calc(infinity * 1px);
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .requirements__benefits-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .requirements__benefits-link {
    width: min(100%, 480px);
    height: 120px;
    padding: 0 50px;
  }
}
.requirements__benefits-link::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  display: inline-block;
  content: "";
  width: 162.42px;
  height: 37.95px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/bg_entry.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .requirements__benefits-link::before {
    right: -10px;
    bottom: -4px;
    width: 354.36px;
    height: 82.8px;
  }
}
.requirements__benefits-link .requirements__benefits-label {
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .requirements__benefits-link .requirements__benefits-label {
    font-size: 2.5rem;
  }
}
.requirements__benefits-link svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .requirements__benefits-link svg {
    width: 50px;
    height: 50px;
  }
}

.news__mv {
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_news.jpg") center bottom/cover no-repeat;
}
.news__archive-contents {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 60px 30px;
}
@media (min-width: 768px) {
  .news__archive-contents {
    padding: 100px 40px 80px;
  }
}
.news__category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 60px;
}
.news__category-link {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  font-size: 1.4rem;
  color: #061b5d;
  border: 1px solid #061b5d;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.news__category-link:hover {
  color: #fff;
  background-color: #061b5d;
}
.news__category-link--select {
  color: #fff;
  background-color: #061b5d;
}
.news__archive-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #707070;
}
.news__archive-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .news__archive-group {
    flex-wrap: nowrap;
  }
}
.news__archive-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}
@media (min-width: 768px) {
  .news__archive-meta {
    flex-wrap: nowrap;
    margin-right: 20px;
  }
}
.news__archive-date {
  font-size: 1.6rem;
  color: #061b5d;
}
@media (min-width: 768px) {
  .news__archive-date {
    width: 90px;
    margin-right: 20px;
  }
}
.news__archive-category {
  display: inline-block;
  padding: 0 10px 2px;
  white-space: nowrap;
  font-size: 1.6rem;
  color: #fff;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__archive-category:hover {
    opacity: 0.7;
  }
}
.news__archive-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__archive-link:hover {
    opacity: 0.7;
  }
}
.news__archive-thumb {
  display: block;
  width: min(100%, 580px);
  margin-left: auto;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__archive-thumb:hover {
    opacity: 0.7;
  }
}
.pagination__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.pagination .page-numbers {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  color: #000;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #061b5d;
}
.pagination a.page-numbers {
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.pagination a.page-numbers:hover {
  color: #fff;
  background-color: #061b5d;
}

.single__mv {
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_news.jpg") center bottom/cover no-repeat;
}
.single__article-contents {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 60px 30px;
}
@media (min-width: 768px) {
  .single__article-contents {
    padding: 100px 40px 60px;
  }
}
.single__article-contents p {
  overflow: hidden;
  line-height: 2;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__article-contents p {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
}
.single__article-contents h1.wp-block-heading {
  margin-bottom: 10px;
  font-size: 3.6rem;
  font-weight: 500;
  color: #061b5d;
}
@media (min-width: 768px) {
  .single__article-contents h1.wp-block-heading {
    margin-bottom: 20px;
    font-size: 4.8rem;
  }
}
.single__article-contents h2.wp-block-heading {
  margin-bottom: 10px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #061b5d;
}
@media (min-width: 768px) {
  .single__article-contents h2.wp-block-heading {
    margin-bottom: 20px;
    font-size: 3.6rem;
  }
}
.single__article-contents h3.wp-block-heading {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
  color: #061b5d;
}
@media (min-width: 768px) {
  .single__article-contents h3.wp-block-heading {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}
.single__article-contents h4.wp-block-heading {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #061b5d;
}
@media (min-width: 768px) {
  .single__article-contents h4.wp-block-heading {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.single__article-contents figure.wp-block-image {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__article-contents figure.wp-block-image {
    margin-bottom: 40px;
  }
}
.single__article-contents ul.wp-block-list {
  margin-bottom: 20px;
  list-style: disc inside;
}
@media (min-width: 768px) {
  .single__article-contents ul.wp-block-list {
    margin-bottom: 40px;
  }
}
.single__article-contents ul.wp-block-list li {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.single__article-contents blockquote.wp-block-quote {
  margin-bottom: 40px;
  font-weight: 400;
}
.single__article-contents .wp-block-buttons {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__article-contents .wp-block-buttons {
    margin-bottom: 40px;
  }
}
.single__article-contents .wp-block-buttons a {
  padding: 13.75px 30px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .single__article-contents .wp-block-buttons a:hover {
    opacity: 0.7;
  }
}
.single__article-title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
  color: #061b5d;
}
.single__article-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0;
}
.single__article-date {
  margin-right: 10px;
  font-size: 1.6rem;
  font-weight: 400;
}
.single__article-category {
  padding: 1px 6px 3px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .single__article-category:hover {
    opacity: 0.7;
  }
}
.single__article-thumb {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__article-thumb {
    margin-bottom: 40px;
  }
}
.single__article-text {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.single__article-subtitle {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #061b5d;
}
.single__article-photo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 40px;
}
.single__article-photo .single__article-image {
  margin: 0 auto;
}
.single__btn {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .single__btn {
    position: relative;
    z-index: 1;
  }
}
.single__btn .single__btn-link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 180px);
  height: 60px;
  margin-inline: auto;
  padding: 0 20px;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .single__btn .single__btn-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .single__btn .single__btn-link {
    height: 50px;
  }
}
.single__btn .single__btn-link .single__btn-label {
  font-size: 1.5rem;
  color: #fff;
}
.single__btn .single__btn-link .icon--white {
  fill: #fff;
}
.contact__mv {
  background: url("/wp-content/themes/ota-tekkosyo/img/mv_contact.jpg") center bottom/cover no-repeat;
}
.contact__section-contents {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 60px 30px 20px;
}
@media (min-width: 768px) {
  .contact__section-contents {
    padding: 100px 40px 20px;
  }
}
.contact__section-headline {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: keep-all;
  color: #061b5d;
}
@media (min-width: 768px) {
  .contact__section-headline {
    text-align: center;
    font-size: 2.4rem;
  }
}
.contact__section-text {
  margin-bottom: 58.75px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .contact__section-text {
    text-align: center;
    font-size: 1.6rem;
  }
}
.contact__section-text br.pc {
  display: none;
}
@media (min-width: 768px) {
  .contact__section-text br.pc {
    display: inline;
  }
}
.contact__section-tel {
  position: relative;
}
.contact__section-tel-headline {
  position: absolute;
  top: -11.25px;
  left: 0;
  right: 0;
  width: fit-content;
  margin-inline: auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #fff;
}
@media (min-width: 768px) {
  .contact__section-tel-headline {
    top: -18.75px;
    padding: 0 30px;
    font-size: 2.5rem;
  }
}
.contact__section-tel-list {
  width: 100%;
  margin: 0 auto 40px;
  padding: 40px 20px 20px;
  font-size: 0;
  border: 1px solid #061b5d;
}
@media (min-width: 768px) {
  .contact__section-tel-list {
    width: min(100%, 580px);
    padding: 60px 20px 40px;
  }
}
.contact__section-tel-item {
  width: 250px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .contact__section-tel-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 350px;
    margin: 0 auto 30px;
  }
}
.contact__section-tel-item:last-of-type {
  margin-bottom: 0;
}
.contact__section-tel-office {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .contact__section-tel-office {
    flex: 1 0 auto;
    margin-top: 5px;
  }
}
.contact__section-tel-office-label {
  display: inline-block;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background-color: #061b5d;
}
.contact__section-tel-link, .contact__section-tel-text {
  display: inline-block;
  width: 250px;
  margin-bottom: 8px;
  line-height: 1;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #061b5d;
}
.contact__section-tel-link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__section-tel-link:hover {
    opacity: 0.7;
  }
}
.contact__section-tel-annotation {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
.contact__form {
  background-color: #f4f4f4;
}
.contact__form-contents {
  width: min(100%, 760px);
  margin: 0 auto 60px;
  padding: 60px 30px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .contact__form-contents {
    padding: 60px 40px;
  }
}
.contact__form-item {
  margin-bottom: 30px;
}
.contact__form-item input[type=text],
.contact__form-item input[type=tel],
.contact__form-item input[type=email],
.contact__form-item textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 10px;
  background-color: #fff;
}
.contact__form-item input[type=text]::placeholder,
.contact__form-item input[type=tel]::placeholder,
.contact__form-item input[type=email]::placeholder,
.contact__form-item textarea::placeholder {
  color: #707070;
}
.contact__form-item textarea {
  min-height: 300px;
  resize: vertical;
}
.contact__form-item .error {
  font-size: 1.4rem !important;
  padding-top: 8px;
  color: #fa0505 !important;
}
.contact__form-item--privacy {
  margin-bottom: 60px;
}
.contact__form-item--actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  gap: 20px;
}
.contact__form-annotation {
  font-size: 1.2rem;
  color: #707070;
}
.contact__form-label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #061b5d;
}
.contact__form-required {
  display: inline-block;
  margin-top: 1px;
  padding: 1px 6px 3px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #4866c4;
}
.contact__form-inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px 20px;
}
.contact__form-inputs > .horizontal-item + .horizontal-item {
  margin: 0 !important;
}
.contact__form-inputs > .horizontal-item > label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=radio])::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background-color: #fff;
  border: 1px solid #061b5d;
  border-radius: 100%;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=radio])::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 3px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background-color: #061b5d;
  border-radius: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=radio]:checked)::before {
  background: #fff;
  border: 1px solid #061b5d;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=radio]:checked)::after {
  opacity: 1;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=checkbox])::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #000;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=checkbox])::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 6px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #061b5d;
  border-bottom: 3px solid #061b5d;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.2s ease-in-out;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=checkbox]:checked)::before {
  background: #fff;
  border: 1px solid #061b5d;
}
.contact__form-inputs > .horizontal-item > label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
  transform: rotate(45deg);
}
.contact__form-inputs > .horizontal-item > label > input {
  display: none;
}
.contact__form-privacy-text {
  overflow-y: scroll;
  width: 100%;
  height: 256px;
  padding: 20px;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 400;
  word-break: break-all;
  background-color: #fff;
}
.contact__form-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 240px);
  height: 60px;
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  background-color: #061b5d;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__form-btn:hover {
    opacity: 0.7;
  }
}
.contact__form-btn::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(/wp-content/themes/ota-tekkosyo/img/icon_circle_arrow--white.svg) left top/contain no-repeat;
}
.contact__form-btn--back {
  background-color: #707070;
}
.contact__form-btn--back::after {
  display: none;
}
.contact__btn {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .contact__btn {
    position: relative;
    z-index: 1;
  }
}
.contact__btn .contact__btn-link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 180px);
  height: 60px;
  margin-inline: auto;
  padding: 0 20px;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__btn .contact__btn-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .contact__btn .contact__btn-link {
    height: 50px;
  }
}
.contact__btn .contact__btn-link .contact__btn-label {
  font-size: 1.5rem;
  color: #fff;
}
.contact__btn .contact__btn-link .icon--white {
  fill: #fff;
}

.not-found__section-contents {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 30px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .not-found__section-contents {
    padding: 100px 40px 20px;
    text-align: left;
  }
}
.not-found__section-headline {
  margin-bottom: 30px;
  font-weight: 500;
  color: #061b5d;
}
@media (min-width: 768px) {
  .not-found__section-headline {
    margin-bottom: 40px;
  }
}
.not-found__section-headline--large {
  display: block;
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-size: 3.8rem;
}
@media (min-width: 768px) {
  .not-found__section-headline--large {
    font-size: 5.6rem;
  }
}
.not-found__section-headline--small {
  display: block;
  padding-top: 13px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .not-found__section-headline--small {
    font-size: 2rem;
  }
}
.not-found__section-text {
  width: fit-content;
  margin: 0 auto 30px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 768px) {
  .not-found__section-text {
    margin: 0 0 60px 0;
    text-align: left;
    font-size: 1.6rem;
  }
}
.not-found__btn {
  margin-bottom: 60px;
}
@media (min-width: 980px) {
  .not-found__btn {
    position: relative;
    z-index: 1;
  }
}
.not-found__btn .not-found__btn-link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: min(100%, 240px);
  height: 60px;
  margin-inline: auto;
  padding: 0 20px;
  background-color: #061b5d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .not-found__btn .not-found__btn-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .not-found__btn .not-found__btn-link {
    width: min(100%, 180px);
    height: 50px;
    margin-inline: 0;
  }
}
.not-found__btn .not-found__btn-link .not-found__btn-label {
  font-size: 1.5rem;
  color: #fff;
}
.not-found__btn .not-found__btn-link .icon--white {
  fill: #fff;
}