/* --------------------------------
   共通
-------------------------------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;
    color: #222;
    line-height: 1.8;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
/*    padding: 0 24px; */
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 500;
}

h1 {
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "Noto Serif JP",
        serif;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

h2 {
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "Noto Serif JP",
        serif;
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

h3 {
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "Noto Serif JP",
        serif;
    font-weight: bold;
    -webkit-text-stroke: 0.5px currentColor;
}

p {
    margin: 0 0 12px;
}

.small {
    font-size: 13px;
}

/* --------------------------------
   ヘッダー部分
-------------------------------- */
.intro {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    padding: 35px 0 35px;
    border-bottom: 1px solid #ddd;
}

.catch {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 18px;
}

.intro-text {
    font-size: 15px;
    line-height: 2;
}

.target-box {
    background: #f2f4f1;
    border-radius: 7px;
    padding: 25px 30px;
}

.target-box h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.target-box ul {
    padding-left: 20px;
    margin: 0;
}

.target-box li {
    font-size: 15px;
    margin-bottom: 5px;
}

/* --------------------------------
   特徴
-------------------------------- */
.pagefeatures {
    padding: 25px 0 30px;
    border-bottom: 1px solid #ddd;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.pagefeature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

.pagefeature {
    padding: 0 25px;
    border-right: 1px solid #ddd;
    margin-top: 0;
}

.pagefeature:first-child {
    padding-left: 10px;
}

.pagefeature:last-child {
    border-right: none;
    padding-right: 10px;
}

.pagefeature h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.pagefeature p {
    font-size: 15px;
    line-height: 1.9;
}

.pagefeature-note {
    font-size: 11px !important;
    margin-top: 10px;
}

/* --------------------------------
   受け入れ先
-------------------------------- */
.schools {
    padding: 25px 0 20px;
    border-bottom: 1px solid #ddd;
}

.schools-description {
    text-align: center;
    font-size: 15px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.school-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
/*    display: flex;  */
    gap: 10px;
    align-items: start;
}

.school-card {
/*    flex: min-content; */
    margin-top: 0;
/*    height: 100%; */
    border: 1px solid #ddd;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.school-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

.school-card-content {
    padding: 12px 13px 14px;
}

.school-name {
    text-align: center;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.school-card p {
    font-size: 14px;
    line-height: 1.7;
}

.button-area {
    text-align: center;
    margin-top: 18px;
}

.button {
    display: inline-block;
    min-width: 230px;
    padding: 7px 22px;
    border: 1px solid #829b9a;
    border-radius: 5px;
    color: #354e4d;
    text-decoration: none;
    font-size: 15px;
    background: #fff;
}

.button::after {
    content: "";
    margin-left: 12px;
    font-size: 18px;
}

/* --------------------------------
   理由
-------------------------------- */
.reason {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 50px;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.reason h2 {
    font-size: 21px;
    margin-bottom: 12px;
}

.reason p {
    font-size: 15px;
    line-height: 2;
}

.reason-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

/* --------------------------------
   実習事例
-------------------------------- */
.case {
    padding: 25px 0 20px;
}

.case h2 {
    font-size: 21px;
    margin-bottom: 2px;
}

.case-intro {
    font-size: 15px;
    margin-bottom: 12px;
}

.case-box {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 20px;
    align-items: center;
    padding: 10px 18px;
    background: #f4f6f3;
    border-radius: 7px;
}

.case-text h3 {
    font-size: 17px;
    margin-bottom: 2px;
}

.case-text .program-name {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
}

.case-text p {
    font-size: 14px;
    line-height: 1.8;
}

.case-image img {
    width: 100%;
/*    height: 105px; */
    object-fit: cover;
    display: block;
}

.case-button {
    margin: 10px 0px;
    text-align: left;
}

.case-button .button {
    min-width: 165px;
    font-size: 15px;
    padding: 7px 12px;
}

.footer-note {
    font-size: 13px;
    margin-top: 10px;
}
