/* Global */

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
	margin-bottom: 0 !important;
}

#dp-footer-bar {
    display: none;
}

#return_top {
    z-index: 9999;
}

body {
    font-size: 16px;
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

section {
    margin: 0;
    padding: 0;
}


h1 {
	font-family: "Noto Sans JP", sans-serif !important;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 0 5px #000000;
    text-align: left;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
}

h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
		font-family: 'M PLUS Rounded 1c', sans-serif !important;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

p,
ul,
li,
a,
span {
	line-height: 1.6;
	font-family: 'M PLUS Rounded 1c', sans-serif !important;
}

@media (max-width: 768px) {

    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    li {
        font-size: 14px;
    }
}

.sp-br {
    display: none;
}

@media (max-width: 768px) {
    .sp-br {
        display: block;
    }
}

.small-text {
    display: inline-block;
    padding: 10px;
    font-size: 14px;
    color: #666;
    text-align: left;
}

@media (max-width:768px) {
    .small-text {
        font-size: 12px;
        text-align: left;
    }
}

.emphasis {
    color: #11376B;
    font-weight: bolld;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* -------------------------------------------------------------------------------------------------------------------- */
/* .section-header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header>h2 {
    padding-top: 10px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 30px;
}

@media (max-width:768px) {
    .section-subtitle {
        font-size: 12px;
    }
}

/* -------------------------------------------------------------------------------------------------------------------- */
/* ボタン */
/* CTA */
.btn,
a.btn,
button.btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    color: #212529;
    border-radius: 5px;
}

.btn-wrap {
    margin: 30px 0;
    width: 100%;
}

a.btn-c {
    width: 60%;
    font-size: 24px;
    position: relative;
    padding: 0px 30px 15px 30px;
    color: #fff;
    background: #e94919;
    -webkit-box-shadow: 0 5px 0 #d44114;
    box-shadow: 0 5px 0 #d44114;
}

a.btn-c span {
    font-size: 16px;
    position: absolute;
    top: -10px;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.2rem 0;
    color: #d44114;
    border: 2px solid #d44114;
    border-radius: 100vh;
    background: #fff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c span:before,
a.btn-c span:after {
    position: absolute;
    left: calc(50% - 10px);
    content: "";
}

a.btn-c span:before {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #d44114 transparent transparent transparent;
}

a.btn-c span:after {
    bottom: -7px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

a.btn-c i {
    margin-right: 10px;
}

a.btn-c:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    color: #fff;
    background: #eb5b30;
    -webkit-box-shadow: 0 2px 0 #d44114;
    box-shadow: 0 2px 0 #d44114;
}

@media (max-width:1200px) {
    a.btn-c {
        width: 70%;
    }
}

@media (max-width:768px) {
    a.btn-c {
        font-size: 20px;
        width: 100%;
    }
}


/* 青ボタン */

a.btn--jump {
    display: block;
    width: 50%;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    background-color: #11376B;
    border-bottom: 5px solid #061224;
}

a.btn--jump:hover {
    margin-top: 3px;
    color: #fff;
    background: #11376B;
    border-bottom: 2px solid #061224;
}

a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

@media (max-width:768px) {
    a.btn--jump {
        width: 80%;
        font-size: 18px;
    }
}

/* <!-- 固定CTAボタン --> */
.fixed-cta {
    display: flex;
    padding: 10px 0;
    background-color: rgba(40, 40, 40, 0.700);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    text-align: center;
    z-index: 9998;
}

a.btn--orange {
    color: #fff;
    background-color: #d44114;
}

a.btn--orange:hover {
    color: #fff;
    background: #d44114;
}

a.btn-footer {
    width: 30%;
    font-size: 20px;
    position: relative;
    padding: 15px 30px 15px 20px;
}

@media (max-width: 1000px) {
    a.btn-footer {
        width: 60%;
		font-size: 18px;
    }
}

@media (max-width: 768px) {
    a.btn-footer {
        width: 80%;
		font-size: 16px;
    }
}

a.btn-footer i.fa {
    margin-right: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* first-view */

.first-view {
	background: url('../../img/first-view.jpg') no-repeat center/cover;
    border-image: fill 0 linear-gradient(#0078c215, #11376b);
    text-align: center;
    padding: 20px 0 30px;
    position: relative;
    margin: 0;
    height: 100%;
}

.first-view-title>span:nth-of-type(1) {
    font-size: 0.5em;
}

.orenge {
	font-family: "Noto Sans JP", sans-serif !important;
    color: #d44114;
    text-shadow: 0 0 5px #000000;
}

.first-view-description {
    width: 100%;
    background-color: #11376B;
    padding: 10px 40px;
}

.first-view-description>h3 {
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 24px;
    color: white;
}

@media (max-width:1000px) {
    .first-view-description>h3 {
        font-size: 20px;
    }
}

@media (max-width:768px) {
    .first-view-description>h3 {
        font-size: 18px;
    }
}

.first-view-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.first-view-points {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width:768px) {
    .first-view-points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        grid-template-areas:
            "item1 item1"
            "item2 item3";
        /* 三角形配置 */
        justify-items: center;
        align-items: center;
    }

    .point-item:nth-child(1) {
        grid-area: item1;
    }

    .point-item:nth-child(2) {
        grid-area: item2;
    }

    .point-item:nth-child(3) {
        grid-area: item3;
    }

}

.point-item {
    background: rgb(255, 255, 255);
    box-shadow: 2px 2px 10px #333;
    ;
    border: #0079c2 solid 4px;
    width: 200px;
    height: 200px;
    padding: 10px 20px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

@media (max-width:768px) {
    .point-item {
        width: 160px;
        height: 160px;
    }
}

.point-item p {
	font-family: "Noto Sans JP", sans-serif !important;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto;
    color: #0079c2;
	line-height: 1;
}

.point-item-details {
    font-size: 14px;
	font-weight: normal;
    color: #333;
    text-align: center;
    line-height: 1;
	margin-bottom: 5px;
}

@media (max-width:768px) {
    .point-item p {
        font-size: 18px;
    }

    .point-item-details {
        font-size: 12px;
        line-height: 1;
    }
}

.point-item-icon>i {
    margin-top: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* こんなお悩みはありませんか？ */

.pain-point-title {
    color: #fff;
    margin-bottom: 30px;
}
.pain-point-subtitle {
    color: #fff;
    margin-bottom: 0;
}

.pain-points {
    position: relative;
    background-color: #11376B;
    color: white;
    text-align: center;
}

.pain-points-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.pain-points-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: space-between;
}

.bubble>ul>li>i {
    margin-right: 10px;
    color: #11376B;
}


.bubble>ul>li:nth-of-type(1) {
    margin-bottom: 15px;
}

/* 吹き出し */
.bubble {
    height: 100%;
    height: 175px;
    position: relative;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    text-align: left;
    color: #333;
    width: 100%;
}

/* 吹き出しの三角形 */
.bubble::before {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid white;
}

.pain-point-icon {
    width: 80px;
    height: auto;
    z-index: 1;
}

.pain-points::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #11376B;
}

/* レスポンシブデザイン */
@media (max-width: 1000px) {
    .pain-points-content {
        flex-direction: column;
        gap: 30px;
    }

    .pain-points-item {
        width: 100%;
    }

    .bubble {
        height: 100%;
        text-align: left;
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }

    .pain-point-icon {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .pain-points-content {
        flex-direction: column;
        gap: 30px;
    }

    .pain-points-item {
        width: 100%;
    }

    .bubble {
        height: 100%;
        text-align: left;
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }

    .pain-point-icon {
        align-self: center;
    }
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* 解決できます */
.solution {
    height: 100%;
    text-align: center;
	background: linear-gradient(rgba(255, 255, 255, 0.7), rgb(255, 255, 255)), url('../../img/ぎふ就労支援センター.jpg') no-repeat center/cover;
}

.solution>.container>h2 {
    padding: 30px 0;
}


.section-desc {
    padding-bottom: 30px;
    margin: 0;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* 選ばれる5つの理由 */
.reason {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}


.reason-content {
    border: solid 2px #11376B;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.reason-item {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: visible;
}


.reason-number-one {
    position: absolute;
    top: -20px;
    left: 60px;
    font-size: 140px;
    font-weight: bold;
    font-family: 'Avenir';
    color: #fff;
    -webkit-text-stroke: 3px #11376B;
    text-shadow: 8px 4px 0px rgba(17, 55, 107, 1);
    z-index: 1;
    transform: translateX(10px) translateY(-10px);
}

@media (max-width:1200px) {
    .reason-number-one {
        top: -5px;
        left: 40px;
        font-size: 100px;
    }
}

@media (max-width:768px) {
    .reason-number-one {
        top: 5px;
        left: 30px;
        font-size: 82px;
        text-shadow: 6px 3px 0px rgba(17, 55, 107, 1);
    }
}

@media (max-width:568px) {
    .reason-number-one {
        top: 5px;
        left: 30px;
        font-size: 62px;
        text-shadow: 6px 3px 0px rgba(17, 55, 107, 1);
    }
}

.reason-title {
    width: 60%;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px #11376B;
}

@media (max-width:768px) {
    .reason-title {
        width: 80%;
        font-size: 18px;
        border-bottom: solid 1px #11376B;
        margin-top: 30px;
    }
}

.description {
    width: 70%;
}

@media (max-width:768px) {
    .description {
        width: 100%;
    }
}

.reason-description {
    text-align: left;
    margin-bottom: 30px;
}

.reason-img-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    overflow: hidden;
}

@media (max-width:768px) {
    .reason-img-container {
        flex-direction: column;
        align-items: center;
    }
}

.reason-img {
    flex: 1;
    max-width: calc(33.333% - 15px);
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width:768px) {
    .reason-img {
        flex: none;
        width: 80%;
        max-width: 100%;
        height: 100px;
    }
}

/* 月収モデル */
.income-model {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
	width: 75%;
    font-family: "Noto Sans JP", sans-serif;
}

.income-model-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.user-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    background: #fff;
}

.income-model-header h2 {
    font-size: 16px;
    color: #0079c2;
    margin: 0;
}

.income-details {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.income-details .formula {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-left: 25%;
}

.income-details .formula .highlight {
    font-weight: bold;
    color: #d44114;
}

.income-details .total {
	text-decoration: underline;
	text-underline-offset: 5px;
    text-align: right;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.income-details .total span {
    color: #d44114;
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 1000px) {
	.income-details .formula {
		margin-left: 10%;
	}
}

@media (max-width: 768px) {
    .income-model {
        padding: 15px;
		width: 100%;
    }

    .user-icon {
        width: 40px;
        height: 40px;
    }

    .income-model-header h2 {
        font-size: 14px;
    }

    .income-details .formula {
        font-size: 14px;
		margin-left: 10%;
    }

    .income-details .total {
        font-size: 16px;
    }

    .income-details .total span {
        font-size: 20px;
    }
}
/* ---------------------------------------------------------------------------------------------------------------- */
/* * 利用者の声 */
.testimonials-section {
    background: linear-gradient(to bottom, #f7e7ce, #fff8e8);
    overflow: hidden;
    padding-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width:1000px) {
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(to right, #3b82f6, #2dd4bf); */
    background: #0079c2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-title {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin: 0 0 4px;
}

.user-subtitle {
    text-align: left;
    font-size: 14px;
    color: #3b82f6;
    margin: 0;
}

.testimonial-content {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }
	
	.testimonial-content {
    font-size: 14px;
	}

}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .avatar {
        width: 48px;
        height: 48px;
    }

    .user-title {
        font-size: 16px;
    }

    .user-subtitle {
        font-size: 12px;
    }

    .testimonial-content {
        font-size: 14px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* 仕事内容 */
.work {
    padding-bottom: 30px;
}

.work-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
}

@media (max-width:1000px) {
    .work-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
}

@media (max-width:768px) {
    .work-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
}

.work-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    height: 100%;
    justify-content: space-between;
    border: #0079c2 solid 2px;
    padding: 20px 30px;

}

.card-title {
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

@media (max-width:768px) {
    .card-title {
        font-size: 18px;
    }
}

.card-title:after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, rgb(0, 121, 194), transparent);
    background: linear-gradient(to right, rgb(0, 121, 194), transparent);
}


.work-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-img>img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.work-img>p {
    font-size: 1.4rem;
    color: #11376B;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* 制作実績 */
.achievement {
    background: linear-gradient(to bottom, #f7e7ce, #fff8e8);
    padding-bottom: 30px;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* サポート体制 */
.support {
    padding-bottom: 30px;
}

.support-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-item {
    padding: 20px 30px;
    border: #0079c2 solid 2px;
    display: flex;
    width: 100%;
    gap: 30px;
}



.support-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width:1000px) {
    .support-item {
        flex-direction: column;
        align-items: center;
    }

    .support-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
    }
}

.support-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.support-title {
    display: inline-block;
    font-size: 20px;
    margin: 0 auto 20px;
    padding-bottom: 5px;
}

@media (max-width:768px) {


    .support-title {
        display: block;
        width: 80%;
        font-size: 18px;
    }
}

.support-title:after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, rgb(0, 121, 194), transparent);
    background: linear-gradient(to right, rgb(0, 121, 194), transparent);
}

.support-content p {
    display: inline-block;
}

.support-item.support-content>h3 {
    font-size: 1px;
}

.support-img {
    flex: 0 0 400px;
    max-width: 100%;
	width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-img>img {
	display: block;
	width: 100%; 
	height: 100%; 
    object-fit: cover;
    object-position: center;
}

@media (max-width:1000px) {
    .support-img {
        flex: 0 0 200px;
        width: 100%;
		height: auto;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .support-img>img {
        width: 100%;
		height: auto;
		margin-right: 20px;
        object-fit: cover;
        object-position: center;
    }
}


/* ---------------------------------------------------------------------------------------------------------------- */
/* ご利用の流れ */

.frow-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.flow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    /* 縦線用 */
}

.flow-steps:before {
    content: "";
    position: absolute;
    top: 0;
	left: 35px;/* アイコン中央に合わせる */
    width: 2px;
    height: 100%;
    border-left: 2px dotted #0079c2;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    /* アイコンとコンテンツの配置用 */
}

.article ul li {
    margin-bottom: 30px;
}

.flow-step-icon {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    background: #F0F0F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.flow-step-content {
    flex: 1;
}

.flow-step-content p {
    margin: 0;
}

.flow-step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

.flow-step-title span {
    color: #0079c2;
    font-size: 16px;
    font-weight: normal;
    margin-right: 15px;
}

@media (max-width:768px) {
    .flow-step-icon {
        width: 50px;
        height: 50px;
    }
	
	.flow-steps:before {
		left: 25px;
    /* アイコン中央に合わせる */
	}


    .flow-step-title {
        font-size: 16px;
    }

    .flow-step-title span {
        font-size: 14px;
    }

}


/* --------------------------------------------------------------------------------------------------------------- */
/* 一日の流れ */
.day-schedule {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 15px;
}

.day-schedule>.container {
    padding-left: 50px;
}

.overview-box {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid #0079c2;
    background-color: #f0f0f0;
    text-align: center;
}


.overview-content p {
    font-size: 16px;
    margin-bottom: 0;
}


.timeline {
    position: relative;
    margin: 0;
    padding: 0;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: #0079c2;
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 60px;
}

.timeline-item:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 11px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #0079c2;
    border-radius: 50%;
}

.timeline-time {
    position: absolute;
    left: -50px;
    top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    width: 50px;
    text-align: right;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

@media (max-width:768px) {
    .timeline-time {
        font-size: 16px;
    }

    .timeline-content h4 {
        font-size: 16px;
        font-weight: bold;
    }
	
}


/* --------------------------------------------------------------------------------------------------------------- */
/* 募集要項 */
.recruitment {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.recruitment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    margin: 0 auto;
}

.recruitment-table th,
.recruitment-table td {
    padding: 20px;
}

.recruitment-table th {
    width: 20%;
    text-align: center;
    font-weight: bold;
    color: #333;
    background-color: #e8f4fa;
}

.recruitment-table td {
    text-align: left;
    color: #555;
    background-color: #f9f9f9;
}

.recruitment-table tr:nth-child(odd) th,
.recruitment-table tr:nth-child(odd) td {
    background-color: #e8f4fa;
}

.recruitment-table tr:nth-child(even) th,
.recruitment-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {

    .recruitment-table th,
    .recruitment-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* FAQコンテナ */
.faq {
    padding-bottom: 30px;
}

.faq-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 15px;
    background-color: #fff;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.faq-question i {
    margin-left: 30px;
}


.faq-q {
    font-weight: bold;
    color: #0079c2;
    margin-right: 30px;
}

.faq-text {
    text-align: left;
    margin-right: auto;
}

.faq-toggle {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    margin-left: 30px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer>p:nth-of-type(1) {
    font-weight: bold;
}


.faq-a {
    color: red;
    font-weight: bold;
}

/* 開閉アイコンの回転 */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .faq-container {
        padding: 10px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------------------------------- */
/* フォーム */
/* フォームの説明文 */
.form-description {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}


label {
    font-size: 18px;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* 注意書き */
.form-note {
    margin: 30px auto 60px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

/* リンクのデザイン */
.form-note a {
    color: #007bff;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    label {
        font-size: 16px;
    }

    input,
    textarea {
        font-size: 16px;
        padding: 20px;
        /* モバイルで操作しやすいように余白を広げる */
    }

    textarea {
        min-height: 200px;
        resize: vertical;
    }

/*     .form-submit-btn {
        width: 100%;
        padding: 20px;
        font-size: 18px;
    } */
	
	.form-note {
    font-size: 13px;
	}
}

/* ---------------------------------------------------------------------------------------------------------------- */
/* footer */

.footer {
    background: #061224;
    color: #ffffff;
    padding: 20px 10px;
    margin: 0 auto;
}

.footer-container {
    max-width: 1200px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-company-info {
    text-align: left;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.company-name {
    font-size: 14px;
    margin-bottom: 15px;
}

.address,
.contact {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
}

.contact a:hover {
    color: #999;
}

.footer-copyright {
    display: inline-block;
    text-align: right;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.footer a {
    color: #007bff;
    text-decoration: underline;
}

.footer a:hover {
    color: #999;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-container {
        height: 160px;
        flex-direction: column;
        /* align-items: center; */
        gap: 0;
    }

    .footer-company-info {
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}