@charset "utf-8";

:root {
  --main_color: #243DBE;
  --sub_color: #FFD800;
}

html, body {
  overflow-x: hidden;
}

/* 見出し */
.c-section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--main_color);
  margin-bottom: 32px;
}
.c-section-title span {
  font-size: 54px;
}

/* ===============================================
 header
=============================================== */
.l-header {
  position: fixed;
  max-width: 1120px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  background: transparent;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 12px 20px;
  background: #fff;
}

.l-header__logo img {
  display: block;
  height: 48px;
  width: auto;
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 30px;
  font-weight: 700;
  color: var(--main_color);
  white-space: nowrap;
}

.l-header__tel img {
  width: 30px;
  height: 30px;
}

.c-btn--contact-header {
  display: inline-block;
  background: #f5c800;
  color: var(--main_color);
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity .2s;
}
.c-btn--contact-header:hover {
  opacity: .85;
}
.c-btn.c-btn--link-header {
  display: inline-block;
  border:1px solid var(--main_color);
  color: var(--main_color);
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity .2s;
}
.c-btn.c-btn--link-header:hover {
  opacity: .85;
}

.l-header__nav-wrap {
  border-top: none;
}

.l-header__nav {
  display: flex;
  align-items: center;
  width: 1120px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.l-header__nav a {
  flex: 1;
  display: block;
  text-align: center;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 14px 8px;
  border-right: 1px solid #ddd;
  transition: color .2s;
  font-weight: bold;
}
.l-header__nav a:last-child {
  border-right: none;
}
.l-header__nav a:hover {
  color: var(--main_color);
}

/* ===============================================
 p-hero
=============================================== */
.p-hero {
  background: url('../../imgs/home/mv_bg.jpg') center center / cover no-repeat;
  min-height: 560px;
}

.p-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1120px;
  margin: 0 auto;
  padding: 200px 0 40px;
  gap: 40px;
}

.p-hero__left {
  flex: 1;
  padding-top: 20px;
}
.p-hero__left img {
  display: block;
  width: 100%;
  max-width: 430px;
}

.p-hero__right {
  flex-shrink: 0;
  width: 450px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.p-hero__form-title {
  background: var(--main_color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 14px;
}

/* フォーム */
.c-form {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-form__row {
  display: flex;
  gap: 15px;
}

.c-form__label {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  max-width: 110px;
  width: 100%;
}

.c-form__required,
.c-form__optional {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding: 1px 5px;
  border-radius: 3px;
}
.c-form__required {
  background: var(--sub_color);
  color: var(--main_color);
}
.c-form__optional {
  background: #ededed;
  color: #000;
}

.c-form__input,
.c-form__select {
  width: 100%;
  max-width: 290px;
  font-size: 13px;
  color: #333;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 8px 10px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
}
.c-form__input--name {
  max-width: 140px;
}
.c-form__input:focus,
.c-form__select:focus {
  border-color: var(--main_color);
  background: #fff;
}

.c-form__input-group {
  display: flex;
  gap: 8px;
}
.c-form__input-group .c-form__input {
  flex: 1;
}

.c-form__row--max {
  flex-wrap: wrap;
  gap: 8px;
}
.c-form__row--max .c-form__label {
  width: 100%;
  max-width: 100%;
}
.c-form__input--textarea {
  resize: vertical;
  min-height: 80px;
  width: 100%;
  max-width: 100%;
}

.c-btn--submit {
  display: block;
  width: 100%;
  max-width: 200px;
  background: #f5c800;
  color: var(--main_color);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 4px;
  padding: 14px;
  cursor: pointer;
  margin: 4px auto 0;
  transition: opacity .2s;
}
.c-btn--submit:hover {
  opacity: .85;
}
/* CF7のデフォルトスタイルをリセット */
.wpcf7-form-control {
  appearance: none;
  -webkit-appearance: none;
}

.c-form__select.wpcf7-form-control {
  width: 290px;
  max-width: 290px;
  font-size: 13px;
  color: #333;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 8px 10px;
  box-sizing: border-box;
  outline: none;
}

.c-form__input--textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 80px;
  width: 100%;
  max-width: 100%;
}

/* ===============================================
 p-feature-banner
=============================================== */
.p-feature-banner {
  background: url('../../imgs/home/feature-banner_bg.jpg') center center / cover no-repeat;
  padding: 60px 0;
}

.p-feature-banner .l-inner {
  width: 1120px;
  margin: 0 auto;
}

.p-feature-banner__heading {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.p-feature-banner__heading .u-bg-blue {
  background: var(--main_color);
  padding: 4px 12px;
  border-radius: 5px;
  margin-right: 7px;
}
.p-feature-banner__heading .u-color-yellow {
  color: var(--sub_color);
}

.p-feature-banner__cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

.c-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.c-feature-card__icon {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-feature-card__text {
  font-size: 24px;
  font-weight: bold;
  color: var(--main_color);
  text-align: center;
  line-height: 1.2;
}

/* ===== p-catch ===== */
.p-catch__heading-wrap {
  background: var(--main_color);
  padding: 40px 0;
}

.p-catch__heading {
  width: 1120px;
  margin: 0 auto;
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  line-height: 1.7;
  text-align: center;
}
.p-catch__heading--large {
  font-size: 52px;
}
.p-catch__heading h2 {
  font-size: 32px;
  font-weight: bold;
}
h2 .p-catch__heading--large {
  font-size: 60px;
}
.p-catch__heading--large.u-underline {
    position:relative;
}
.p-catch__heading--large.u-underline:after{
    position:absolute;
    content:'';
    background: var(--sub_color);
    width:200px;
    height:4px;
    bottom:0;
    left:-10px;
}

.u-color-yellow {
  color: #f5c800;
}
.u-quotation {
  font-size: 42px;
}

.p-catch__photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.p-catch__photo-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.p-catch__photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-catch__desc-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 45px 160px 45px 40px;
  width: 800px;
  border-radius: 20px 0 0 0;
}

.p-catch__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.u-text-blue {
  color: var(--main_color);
  font-weight: bold;
}

/* ===== p-contact ===== */
.p-contact {
  background: url('../../imgs/home/contact_bg.jpg') center center / cover no-repeat;
  padding: 60px 0;
}

.p-contact__inner {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-contact__title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
}

.p-contact__links {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

.p-contact__tel,
.p-contact__mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-contact__link-label {
  font-size: 24px;
  color: #fff;
}

.c-btn--tel,
.c-btn--form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 550px;
  padding: 18px 24px;
  background: #f5c800;
  color: var(--main_color);
  font-size: 36px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity .2s;
}
.c-btn--tel:hover,
.c-btn--form:hover {
  opacity: .85;
}
.c-btn--tel img,
.c-btn--form img {
  width: 35px;
  height: 35px;
}

/* ===== p-trouble ===== */
.p-trouble {
  background: url('../../imgs/home/trouble-section_bg.jpg') center center / cover no-repeat;
  padding: 60px 0;
}

.p-trouble .l-inner {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.p-trouble .c-section-title {
  width: 71%;
}

.p-trouble__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 71%;
}

.p-trouble__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  color: var(--main_color);
}

.p-trouble__check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--main_color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-trouble__check::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px,-1px);
}

.p-features__bridge {
  position: relative;
  padding: 40px 0 100px;
}
.p-features__bridge::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--main_color);
}
.p-features__bridge::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 20px solid var(--main_color);
}

.p-trouble__solve {
  font-size: 36px;
  font-weight: bold;
  color: var(--main_color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-trouble__solve-deco {
  height: 42px;
  width: auto;
  vertical-align: middle;
}
.p-trouble__brand img {
  height: 58px;
  width: auto;
  vertical-align: middle;
}

.p-features {
  padding: 0 0 120px;
  position: relative;
}
.p-features::before {
  content: '';
  position: absolute;
  background: url(../../imgs/home/features-section_bg_left.svg) center center / cover no-repeat;
  width: 1120px;
  height: 830px;
  top: -7%;
  left: -43%;
  z-index: -1;
}
.p-features::after {
  content: '';
  position: absolute;
  background: url(../../imgs/home/features-section_bg_right.svg) center center / cover no-repeat;
  width: 1400px;
  height: 710px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.p-features .c-section-title {
  text-align: center;
}
.p-features .l-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.p-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.c-feature-item {
  background: #f0f3ff;
  border-radius: 8px;
  overflow: hidden;
}

.c-feature-item__image {
  width: 100%;
  aspect-ratio: 27 / 16;
  overflow: hidden;
}
.c-feature-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-feature-item__body {
  padding: 40px;
}

.c-feature-item__title {
  font-size: 30px;
  font-weight: bold;
  color: var(--main_color);
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.c-feature-item__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
}

/* ===== p-area ===== */
.p-area {
  background: url('../../imgs/home/area-section_bg.jpg') center center / cover no-repeat;
  padding: 120px 0;
}

.p-area .l-inner {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-area__map {
  width: 100%;
  background: url('../../imgs/home/area-section_img.png') center center / contain no-repeat;
  background-color: #fff;
  border-radius: 12px;
  aspect-ratio: 56 / 15;
}

/* ===== p-jobs ===== */
.p-jobs {
  background: #fff;
  padding: 60px 0;
}

.p-jobs .l-inner {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-jobs .c-section-title {
  font-size: 54px;
}

.p-jobs__subtitle {
  font-size: 24px;
  color: var(--main_color);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: bold;
}

.p-jobs__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #dde4f0;
  border-radius: 8px;
  overflow: hidden;
}

.c-job-row {
  display: flex;
  align-items: center;
  background: #f0f4fc;
  border-bottom: 1px solid #dde4f0;
}
.c-job-row:last-child {
  border-bottom: none;
}

.c-job-row__icon {
  flex-shrink: 0;
  max-width: 170px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.c-job-row__icon img {
  width: 100%;
  object-fit: contain;
}

.c-job-row__name {
  flex-shrink: 0;
  font-size: 30px;
  font-weight: bold;
  color: var(--main_color);
  padding: 24px 40px;
  max-width: 330px;
  width: 100%;
  position: relative;
}
.c-job-row__name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: #dde4f0;
}

.c-job-row__desc {
  flex: 1;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  padding: 24px;
}

/* ===== l-footer ===== */
.l-footer {
  background: var(--main_color);
  padding: 48px 0 24px;
}

.l-footer__inner {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}

.l-footer__service {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 16px;
}
.l-footer__service span {
  color: var(--sub_color);
}

.l-footer__company {
  font-size: 24px;
  font-weight: bold;
}

.l-footer__address {
  font-size: 16px;
  color: #fff;
}

.l-footer__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-top: 4px;
  font-weight: bold;
}
.l-footer__tel span {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 14px;
  padding: 4px 8px;
}

.l-footer__copy {
  font-size: 12px;
  color: #778eff;
  margin-top: 24px;
  padding-top: 16px;
  width: 100%;
  text-align: center;
}
a.c-btn.c-btn--link-footer {
    color:#fff;
    margin-top:20px;
    text-decoration:underline;
}
a.c-btn.c-btn--link-footer:hover {
    text-decoration:none;
}

/* -----------------------------------------------
   1120px以下
----------------------------------------------- */
@media screen and (max-width: 1120px) {
  .l-header {
    max-width: 100%;
    border-radius: 0;
  }
  .l-header__nav {
    width: 100%;
  }
  .p-hero__inner {
    width: 100%;
    padding: 160px 20px 40px;
  }
  .p-feature-banner .l-inner {
    width: 100%;
    padding: 0 20px;
  }
  .p-catch__heading {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .p-contact__inner,
  .p-trouble .l-inner,
  .p-area .l-inner,
  .p-jobs .l-inner,
  .l-footer__inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .p-features .l-inner {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .c-btn--tel,
  .c-btn--form {
    width: 100%;
    max-width: 440px;
    font-size: 28px;
  }
}

/* -----------------------------------------------
   900px以下
----------------------------------------------- */
@media screen and (max-width: 900px) {
  .l-header__tel {
    font-size: 22px;
  }
  .l-header__tel img {
    width: 22px;
    height: 22px;
  }
  .c-btn--contact-header {
    font-size: 13px;
    padding: 10px 14px;
  }
  .p-hero__inner {
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    gap: 24px;
  }
  .p-hero__right {
    width: 100%;
    max-width: 550px;
  }
  .p-feature-banner__heading {
    font-size: 30px;
  }
  .p-catch__desc-box {
    width: 66.666%;
    padding: 32px 40px;
  }
  .p-contact__links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .c-btn--tel,
  .c-btn--form {
    max-width: 500px;
    font-size: 24px;
  }
  .p-features__grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------
   737px以下（スマートフォン）
----------------------------------------------- */
@media screen and (max-width: 737px) {
  /* header */
  .l-header__inner {
    padding: 10px 16px;
  }
  .l-header__logo img {
    height: 34px;
  }
  .l-header__tel {
    display: none;
  }
  .c-btn--contact-header {
    font-size: 12px;
    padding: 9px 12px;
  }
  .c-btn.c-btn--link-header {
    font-size: 12px;
    padding: 9px 12px;
  }
  .l-header__nav a {
    font-size: 12px;
    padding: 10px 4px;
  }

  /* p-hero */
  .p-hero {
    min-height: auto;
  }
  .p-hero__inner {
    flex-direction: column;
    align-items: center;
    padding: 120px 16px 32px;
    gap: 20px;
  }
  .p-hero__left img {
    max-width: 100%;
  }
  .p-hero__right {
    width: 100%;
  }
  .p-hero__form-title {
    font-size: 14px;
    padding: 12px;
  }
  .c-form {
    padding: 12px;
  }
  .c-form__row {
    flex-direction: column;
    gap: 6px;
  }
  .c-form__label {
    max-width: 100%;
    font-size: 14px;
  }
  .c-form__input,
  .c-form__select {
    max-width: 100%;
    font-size: 14px;
  }
  .c-form__input--name {
    max-width: 100%;
  }
  .c-form__row--max .c-form__label {
    max-width: 100%;
  }
  .c-btn--submit {
    max-width: 100%;
    font-size: 15px;
  }

  /* p-feature-banner */
  .p-feature-banner {
    padding: 40px 0;
  }
  .p-feature-banner .l-inner {
    padding: 0 16px;
  }
  .p-feature-banner__heading {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .p-feature-banner__cards {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .c-feature-card__icon {
    width: 130px;
    height: 130px;
  }
  .c-feature-card__text {
    font-size: 20px;
  }

  /* p-catch */
  .p-catch__heading-wrap {
    padding: 28px 0;
  }
  .p-catch__heading {
    width: 100%;
    padding: 0 16px;
    font-size: 24px;
    line-height: 1.6;
  }
  .p-catch__heading h2 {
    font-size: 20px;
  }
  .p-catch__heading--large {
    font-size: 32px;
  }
  h2 .p-catch__heading--large {
    font-size: 38px;
  }
  .u-quotation {
    font-size: 28px;
  }
  .p-catch__photos {
    grid-template-columns: 1fr;
  }
  .p-catch__photo-item {
    aspect-ratio: 3 / 2;
  }
  .p-catch__photo-item--has-desc {
    display: none;
  }
  .p-catch__desc-box {
    position: static;
    width: 100%;
    padding: 28px 16px;
    border-radius: 0;
    box-sizing: border-box;
  }
  .p-catch__desc {
    font-size: 15px;
  }

  /* p-contact */
  .p-contact {
    padding: 40px 0;
  }
  .p-contact__inner {
    padding: 0 16px;
    gap: 16px;
  }
  .p-contact__title {
    font-size: 44px;
  }
  .p-contact__links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .p-contact__tel,
  .p-contact__mail {
    width: 100%;
  }
  .p-contact__link-label {
    font-size: 16px;
    text-align: center;
  }
  .c-btn--tel,
  .c-btn--form {
    width: 100%;
    max-width: 100%;
    font-size: 22px;
    padding: 16px 20px;
  }
  .c-btn--tel img,
  .c-btn--form img {
    width: 26px;
    height: 26px;
  }

  /* p-trouble */
  .p-trouble {
    padding: 40px 0;
  }
  .p-trouble .l-inner {
    padding: 0 16px;
    align-items: flex-start;
  }
  .p-trouble .c-section-title {
    width: 100%;
    text-align: center;
    line-height: 1.2;
  }
  .p-trouble__list {
    width: 100%;
  }
  .p-trouble__item {
    font-size: 16px;
  }
  .p-trouble__check {
    width: 24px;
    height: 24px;
  }

  /* c-section-title */
  .c-section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .c-section-title span {
    font-size: 38px;
  }

  /* p-features */
  .p-features__bridge {
    padding: 24px 0 60px;
  }
  .p-trouble__solve {
    font-size: 20px;
    flex-wrap: wrap;
    text-align: center;
    padding: 0 16px;
    flex-direction: column;
  }
  .p-trouble__solve-deco {
    height: 28px;
    display: none;
  }
  .p-trouble__brand img {
    height: 60px;
  }
  .p-features {
    padding: 0 0 60px;
  }
  .p-features::before,
  .p-features::after {
    display: none;
  }
  .p-features .l-inner {
    padding: 0 16px;
  }
  .p-features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .c-feature-item__body {
    padding: 24px 16px;
  }
  .c-feature-item__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .c-feature-item__desc {
    font-size: 14px;
  }

  /* p-area */
  .p-area {
    padding: 60px 0;
  }
  .p-area .l-inner {
    padding: 0 16px;
  }
  .p-area__map {
    aspect-ratio: 4 / 3;
    background-size: cover;
  }

  /* p-jobs */
  .p-jobs {
    padding: 40px 0;
  }
  .p-jobs .l-inner {
    padding: 0 16px;
    align-items: flex-start;
  }
  .p-jobs .c-section-title {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }
  .p-jobs__subtitle {
    font-size: 16px;
    text-align: center;
  }
  .c-job-row {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .c-job-row__icon {
    max-width: 80px;
    padding: 10px 12px;
  }
  .c-job-row__name {
    font-size: 20px;
    padding: 12px 16px;
    max-width: none;
    flex: 1;
  }
  .c-job-row__desc {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    flex-basis: 100%;
    border-top: 1px solid #dde4f0;
  }

  /* l-footer */
  .l-footer {
    padding: 36px 0 20px;
  }
  .l-footer__inner {
    padding: 0 16px;
    gap: 6px;
  }
  .l-footer__service {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .l-footer__company {
    font-size: 18px;
  }
  .l-footer__address {
    font-size: 13px;
  }
  .l-footer__tel {
    font-size: 14px;
  }
  .l-footer__copy {
    font-size: 11px;
    margin-top: 16px;
  }
}


/* ===== thanks ===== */
.thanks_item {
  text-align: center;
  padding: 200px 20px 80px;
}

.thanks_item-tlt {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.thanks_item-txt {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.thanks_item-note {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn a {
  display: inline-block;
  padding: 14px 48px;
  background: var(--main_color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: opacity 0.2s;
}

.btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .thanks_item {
    padding: 180px 16px 60px;
  }
  .thanks_item-tlt {
    font-size: 18px;
  }
  .thanks_item-txt {
    font-size: 14px;
  }
  .btn a {
    padding: 14px 32px;
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
  }
}
