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

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

ul[role='list'],
ol[role='list'] {
    list-style: none
}

body {
    min-height: 100vh;
    line-height: 1.5
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
    color: currentColor
}

img,
picture {
    max-width: 100%;
    display: block
}

input,
button,
textarea,
select {
    font: inherit
}

textarea:not([rows]) {
    min-height: 10em
}

:target {
    scroll-margin-block: 5ex
}

:root {
    --color-blue: #0074d9;
}

.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  flex-shrink: 0;
}

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

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

.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.header__menu-item {
  margin: 0;
}

.header__menu-link {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.header__menu-link:hover {
  color: #007bff;
}

.header__menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.header__menu-link:hover::after {
  width: 100%;
}

.header__contact {
  flex-shrink: 0;
}

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.header__tel:hover {
  color: #007bff;
}

.header__tel-label {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 0.2rem;
}

.header__tel-number {
  font-size: 1.1rem;
  font-weight: bold;
  color: #007bff;
}

/* レスポンシブ対応 */

@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .header__nav {
    order: 3;
    width: 100%;
  }
  
  .header__menu {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .header__menu-link {
    font-size: 0.8rem;
  }
  
  .header__contact {
    order: 2;
  }
  
  .header__tel {
    align-items: center;
  }
  
  .header__tel-label {
    font-size: 0.6rem;
  }
  
  .header__tel-number {
    font-size: 1rem;
  }
}

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

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer__copyright {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

/* Layout: .l-row
-------------------------------------------------- */

.l-row {
    display: flex;
    gap: 2rem;
    /* カラム間の余白。必要に応じて調整 */
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
    /* 必要に応じて調整 */
    width: 100%;
}

/* Layout: .l-container
-------------------------------------------------- */

.l-container {
    padding: 0 1.25em;
    margin: 0 auto;
}

@media (min-width: 769px) {

.l-container {

        max-width: 1120px;
        margin: 0 auto;
        padding: 0 1.5rem;
        box-sizing: border-box
}
    }

/* Component: .c-button
-------------------------------------------------- */

/* 基本ボタン */

.c-button {
    display: inline-block;
    padding: 0.75em 2em;
    font-size: 1rem;
    font-family: inherit;
    color: #fff;
    color: var(--color-button-text, #fff);
    background: #007bff;
    background: var(--color-button-bg, #007bff);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

/* Modifier: プライマリ */

.c-button--primary {
    background: #007bff;
    background: var(--color-primary, #007bff);
    color: #fff;
    color: var(--color-on-primary, #fff);
}

/* Modifier: セカンダリ */

.c-button--secondary {
    background: #6c757d;
    background: var(--color-secondary, #6c757d);
    color: #fff;
    color: var(--color-on-secondary, #fff);
}

/* Modifier: 無効状態 */

.c-button:disabled,
.c-button--disabled {
    background: #ccc;
    background: var(--color-disabled, #ccc);
    color: #fff;
    color: var(--color-on-disabled, #fff);
    cursor: not-allowed;
    opacity: 0.7;
}

/* サイズバリエーション */

.c-button--small {
    padding: 0.5em 1.2em;
    font-size: 0.9rem;
}

.c-button--large {
    padding: 1em 2.5em;
    font-size: 1.2rem;
}

/* アイコン付きボタン */

.c-button__icon {
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
    font-size: 1.2em;
}

/* ホバー・フォーカス */

.c-button:hover,
.c-button:focus {
    background: #0056b3;
    background: var(--color-button-hover, #0056b3);
    color: #fff;
    color: var(--color-button-text-hover, #fff);
    outline: none;
}

/* Component: .c-block
-------------------------------------------------- */

.c-block {
    background: #fff;
    background: var(--color-block-bg, #fff);
    border-radius: 1.2em;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1.5px 4px rgba(0, 0, 0, 0.08);
    padding: 2.5em 2em;
    flex: 1 1 0;
    min-width: 220px;
    max-width: 100%;
    transition:
        box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.15s cubic-bezier(.4, 0, .2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-block:hover,
.c-block:focus-within {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px) scale(1.03);
}

.c-block__text {
    font-size: 1.1rem;
    color: #0074d9;
    color: var(--color-blue);
    letter-spacing: 0.02em;
}

/* ヒーローエリア */

.p-top-hero {
    position: relative;
}

.p-top-hero__background {
        display: block;
        width: 100%;
        height: 70vh;
        background-image: url(../images/hero.png);
        background-size: cover;
        background-position: 60% center;
        background-repeat: no-repeat;
    }

@media (min-width: 769px) {

.p-top-hero__background {
            height: 100vh
    }
        }

.p-top-hero__title {
        color: #000000;
        background-color: rgba(255,255,255,0.71765);
        font-size: 1.7rem;
        padding: 0.25em;
        font-weight: bold;
        text-align: center;
        position: absolute;
        top: 80%;
        left: 45%;
        width: 100%;
        transform: translate(-50%, -50%);
    }

@media (min-width: 769px) {

.p-top-hero__title {
            font-size: 3rem;
            left: 25%
    }
        }

.p-top-hero__title span {
            display: inline-block;
            text-align: left;
        }

/* PRエリア */

.p-top-about {
    padding: 24px 0;
}

@media (min-width: 769px) {

.p-top-about {
        padding: 32px 0
}
    }

@media (min-width: 769px) {

.p-top-about__inner {
            display: flex;
            gap: 2rem
    }
        }

.p-top-about__image {
        margin: 40px 0;
    }

@media (min-width: 769px) {

.p-top-about__image {
            flex: 1
    }
        }

.p-top-about__title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.5;
    }

@media (min-width: 769px) {

.p-top-about__content {
            flex: 1
    }
        }

/* サポートエリア */

.p-top-support {
    padding: 24px 0;

}

@media (min-width: 769px) {

.p-top-support {
        padding: 32px 0

}
    }

@media (min-width: 769px) {

.p-top-support__inner {
            display: flex;
            gap: 2rem
    }
        }

.p-top-support__item {
        position: relative;
        background: #fff;
        padding: 2.5rem 2rem;
        margin: 0 auto 32px;
        box-sizing: border-box;
        z-index: 1;
        /* 枠線の内側 */
        border: 2px solid #e6b74a;

    }

@media (min-width: 769px) {

.p-top-support__item {
            flex: 1

    }
        }

.p-top-support__item::before {
            content: "";
            position: absolute;
            pointer-events: none;
            box-sizing: border-box;
            border: 2px solid #e6b74a;
            z-index: 0;
        }

.p-top-support__item::before {
            top: 12px;
            left: 12px;
            right: -12px;
            bottom: -12px;
        }

.p-top-support__title {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: .5em;
        line-height: 1.5;
    }

/* 研修エリア */

.p-top-training {
    padding: 24px 0;
}

@media (min-width: 769px) {

.p-top-training {
        padding: 48px 0
}
    }

.p-top-training__inner {
        position: relative;
        background: #fff;
        box-sizing: border-box;
        padding: 2.5rem 2rem;
        margin: 0 auto;
        z-index: 1;
    }

@media (min-width: 769px) {

.p-top-training__inner {
            border: 2px solid #e6b74a;
            padding: 4rem 3rem
    }
        }

.p-top-training__title {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        text-align: left;
        position: relative;
        z-index: 1;
    }

@media (min-width: 769px) {

.p-top-training__title {
            font-size: 2.4rem
    }
        }

.p-top-training__lead {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.8;
        position: relative;
        z-index: 1;
    }

.p-top-training__block {
        margin-bottom: 2.2rem;
        position: relative;
        z-index: 1;
    }

.p-top-training__subtitle {
        font-size: 1.15rem;
        font-weight: bold;
        margin-bottom: 0.7em;
        line-height: 1.5;
    }

.p-top-training__text {
        font-size: 1rem;
        margin-bottom: 0.7em;
        line-height: 1.8;
    }

.p-top-training__list {
        margin: 0 0 1.2em 1.2em;
        padding: 0;
        list-style: disc inside;
        font-size: 1rem;
        line-height: 1.8;
    }

.p-top-training__note {
        font-size: 1rem;
        margin-top: 2.5rem;
        line-height: 1.7;
        font-weight: 500;
        position: relative;
        z-index: 1;
    }

/* 募集エリア */

.p-top-recruit {

    padding: 24px 0;
}

@media (min-width: 769px) {

.p-top-recruit {
        padding: 32px 0
}
    }

.p-top-recruit__bg {
        display: block;
        width: 100%;
        height: 180px;
        background-image: url(../images/recruit_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        margin-bottom: 24px;
    }

@media (min-width: 769px) {

.p-top-recruit__bg {
            height: 250px;
            margin: 80px 0
    }
        }

.p-top-recruit__title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        font-size: 2rem;
        text-align: center;
        font-weight: bold;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

/* 募集要項（上部・テーブル・ボタン） */

.p-recruit-detail {
    position: relative;
    margin: 0 auto 48px;
    max-width: 1000px;
    padding: 0 1rem;
    overflow: hidden;
}

.p-recruit-detail__header {
        margin-bottom: 2.5rem;
    }

.p-recruit-detail__job-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 0.5em;
        line-height: 1.3;
    }

.p-recruit-detail__lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

.p-recruit-detail__images {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }

@media (min-width: 769px) {

.p-recruit-detail__images {
            flex-direction: row;
            gap: 2rem;
            align-items: flex-start
    }
        }

.p-recruit-detail__images img {
            max-width: 50%;
            -o-object-fit: cover;
               object-fit: cover;
            height: 100%;
        }

.p-recruit-detail__image {
        width: 100%;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        background: #f7f7f7;
    }

/* =============================
       募集要項テーブル
       ============================= */

.p-recruit-detail__section-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1.2em;
        letter-spacing: 0.02em;
    }

.p-recruit-detail__table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 2.5rem;
        background: #fff;
        font-size: 1rem;
    }

.p-recruit-detail__table th,
        .p-recruit-detail__table td {
            padding: 1.1em 1em;
            border-bottom: 1px solid #e5e5e5;
            text-align: left;
            vertical-align: top;
        }

.p-recruit-detail__table th {
            background: #f7f7f7;
            font-weight: bold;
            width: 8em;
            white-space: nowrap;
        }

.p-recruit-detail__table tr:last-child th,
        .p-recruit-detail__table tr:last-child td {
            border-bottom: none;
        }

.p-recruit-detail__table small {
            font-size: 0.92em;
            color: #666;
        }

/* =============================
       募集要項ボタン
       ============================= */

.p-recruit-detail__button-wrap {
        text-align: center;
    }

.p-recruit-detail__button {
        display: inline-block;
        background: #111;
        color: #fff;
        font-size: 1.1rem;
        font-weight: bold;
        padding: 1em 2.5em;
        border-radius: 2em;
        -webkit-text-decoration: none;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        margin-top: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

.p-recruit-detail__button:hover,
        .p-recruit-detail__button:focus {
            background: #e6b74a;
            color: #111;
        }

.p-recruit-detail__body {
        position: relative;
    }

.p-recruit-detail__accent {
        display: none;
    }

@media (min-width: 1024px) {

.p-recruit-detail__accent {
            display: block;
            position: absolute;
            top: 0;
            right: -120px;
            width: 100px;
            height: 100%;
            z-index: 1;
            pointer-events: none
    }
        }

.p-recruit-detail-accent {
    display: none;
}

@media (min-width: 1024px) {

.p-recruit-detail-accent {
        display: block;
        width: 100%;
        height: 600px;
        background-image: url(../images/accent_right.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 200px;
        left: 46vw;
        z-index: 100
}
    }

/* =============================
   当社についてセクション（p-about-company）
   ============================= */

.p-about-company {
    padding: 40px 0;
    background: #f9f9f9;
}

.p-about-company__inner {
        background: #fff;
        border-radius: 16px;
        border: 1.5px solid #222;
        max-width: 1100px;
        margin: 0 auto;
        padding: 48px 32px 48px 32px;
        box-sizing: border-box;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

.p-about-company__title {
        font-size: 2.2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 2.5rem;
        letter-spacing: 0.04em;
    }

.p-about-company__content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

@media (min-width: 900px) {

.p-about-company__content {
            flex-direction: row;
            gap: 3.5rem;
            align-items: flex-start
    }
        }

.p-about-company__image {
        flex: 0 0 380px;
        max-width: 380px;
        width: 100%;
    }

.p-about-company__image img {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            -o-object-fit: cover;
               object-fit: cover;
            background: #f7f7f7;
        }

.p-about-company__text {
        flex: 1 1 0;
        font-size: 1.08rem;
        line-height: 2.0;
        color: #222;
    }

.p-about-company__text p {
            margin-bottom: 1.3em;
        }

.p-about-company__text p:last-child {
            margin-bottom: 0;
        }

/* =============================
       会社概要セクション
       ============================= */

.p-about-company__profile {
        margin-top: 3rem;
        padding-top: 2.5rem;
        border-top: 1px solid #e5e5e5;
    }

.p-about-company__profile-title {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-align: center;
        letter-spacing: 0.03em;
    }

.p-about-company__profile-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
    }

.p-about-company__profile-list dt {
            font-weight: bold;
            color: #111;
            font-size: 1.05rem;
            margin-bottom: 0.3em;
            letter-spacing: 0.02em;
        }

@media (min-width: 769px) {

.p-about-company__profile-list dt {
                display: inline-block;
                width: 150px;
                flex-shrink: 0;
                margin-bottom: 0;
                margin-right: 2rem
        }
            }

.p-about-company__profile-list dd {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333;
            margin: 0;
        }

@media (min-width: 769px) {

.p-about-company__profile-list dd {
                display: inline-block;
                flex: 1
        }
            }

@media (min-width: 769px) {

            .p-about-company__profile-list dt,
            .p-about-company__profile-list dd {
                display: inline-block;
                vertical-align: top;
            }
        }

/* =============================
   認定標識セクション（p-license）
   ============================= */

.p-license {
    margin: 0;
    padding: 0 0 100px 0;
    background-image: url(../images/license_bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.p-license__heading {
        background: #ededed;
        padding: 0.7em 0 0.7em 2.5vw;
        margin-top: 40px;
        margin-bottom: 0;
        text-align: center;
    }

.p-license__heading-label {
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.04em;
        color: #111;
        line-height: 1.2;
    }

.p-license__inner {
        background: #fff;
        border-radius: 20px;
        border: 1.5px solid #222;
        max-width: 950px;
        margin: 32px auto 0 auto;
        padding: 48px 32px 48px 32px;
        box-sizing: border-box;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.p-license__title {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 2.5rem;
        letter-spacing: 0.04em;
    }

.p-license__table {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }

.p-license__row {
        display: flex;
        align-items: flex-start;
        border: none;
        gap: 2.5vw;
        padding: 0.2em 0;
        border-bottom: 1px solid #e5e5e5;
    }

.p-license__row:last-child {
        border-bottom: none;
    }

.p-license__th {
        flex: 0 0 180px;
        font-weight: normal;
        color: #222;
        font-size: 1.08rem;
        line-height: 2.1;
        letter-spacing: 0.01em;
        text-align: left;
        padding-right: 1.5vw;
        word-break: keep-all;
    }

.p-license__td {
        flex: 1 1 0;
        color: #222;
        font-size: 1.08rem;
        line-height: 2.1;
        letter-spacing: 0.01em;
        text-align: left;
        word-break: break-word;
    }

/* 地図エリア */

.p-about-company__map iframe {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

@media (min-width: 769px) {

.p-about-company__map iframe {
            height: 400px
    }
        }

.u-hidden-sp {
    display: none;
}

@media (min-width: 769px) {
    .u-hidden-sp {
        display: block;
    }
}