@charset "UTF-8";

body {
    color: #333;
    letter-spacing: 0.1em;
    font-family: "Yu Gothic", "游ゴシック", sans-serif;
    font-weight: 400;
    font-size: 18px;
}
@media only screen and (max-width: 959px) {
	body{
		font-size:16px;
	}
}
@media only screen and (max-width: 767px) {
	body{
		font-size:14px;
	}
}

/*=============================================================================
変数設定
===============================================================================*/
:root {
  --main-blue-color: #003885;
  --font-size-phone: 14px;
}
/*=============================================================================*/

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

a:hover {
    opacity: 0.5;
}

p {
    line-height: 32px;
}

img {
    width: 100%;
}

.fadein {
    transform: translateY(120px);
    transition: all 0.5s;
}

.sp-only {
    display: none;
}

@media(max-width:1040px) {
    .sp-only {
        display: inline;
    }

    .pc-only {
        display: none;
    }
}

@keyframes showTextFromBottom {
    0% {
        transform: translateY(100%);

    }

    100% {
        transform: translateY(0px);
    }
}

.slide-fade span {
    animation: showText 0.5s backwards;
    display: inline-block;
}

.slide-fade>span {
    overflow: hidden;
}

.slide-fade>span>span {
    animation: showTextFromBottom 0.2s backwards;
}

/*=============================================================================
header
===============================================================================*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 80px;
    padding-inline: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.logo {
    width: 192px;
}

.header-right,
.header-right__link-list,
.header-right__btn,
.header-right__btn--inquiry a {
    display: flex;
}

.header-right,
.header-right__btn--inquiry a {
    align-items: center;
}

.header-right__link-list li {
    margin-left: 24px;
}

.header-right__btn--inquiry {
    margin-left: 16px;
}

.header-right__btn--inquiry {
    background-color: #003885;
}

.header-right__btn--inquiry a p {
    color: #ffffff;
}

.header-right__btn--inquiry {
    padding: 8px 16px;
    border-radius: 32px;
}

.header-right__btn--inquiry a p {
    margin-left: 4px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.header-right__btn a img {
    width: 24px;
}

.header-right__link-list a {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0em;
}

.header-right__link-list a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
}

.header-right__link-list a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    height: 32px;
    width: 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    z-index: 2;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
}

.hamburger span:nth-of-type(1) {
    top: 8%;
}

.hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-of-type(3) {
    bottom: 8%;
}

.open .hamburger span:nth-of-type(1) {
    top: 50%;
    transform: rotate(-45deg);
    background-color: #ffffff;
}

.open .hamburger span:nth-of-type(2) {
    opacity: 0;
}

.open .hamburger span:nth-of-type(3) {
    top: 50%;
    transform: rotate(45deg);
    background-color: #ffffff;
}

.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    opacity: 0.9;
    z-index: 1;
}

.open .mask {
    display: block;
}

@media(max-width:1040px) {
    header {
        height: 64px;
    }

    .header-right {
        position: fixed;
        top: 0;
        left: -300px;
        padding: 48px;
        transition: all 0.5s;
        z-index: 2;
    }

    .open .header-right {
        left: 0;
    }

    .header-right,
    .header-right__link-list,
    .header-right__btn {
        flex-direction: column;
    }

    .header-right {
        align-items: normal;
    }

    .header-right {
        position: absolute;
    }

    .logo {
        width: 160px;
    }

    .hamburger {
        display: block;
    }

    .header-right__link-list li,
    .header-right__btn--inquiry {
        margin: 8px 0;
    }

    .header-right__link-list a {
        color: #ffffff;
    }

    .header-right__link-list a::after {
        display: none;
    }
}

/*=============================================================================
main
===============================================================================*/
.mainvisual {
    position: relative;
    max-width: 1364px;
    height: 720px;
    padding-top: 80px;
    margin: 0 auto;
}

.mainvisual-img {
    display: flex;
    flex-direction: row-reverse;
}

.mainvisual img {
    width: 50%;
    object-fit: cover;
}

.mainvisual__key-msg {
    position: absolute;
    top: 120px;
    left: 40px;
    width: 648px;
    padding: 24px;
    border-radius: 24px;
}

.mainvisual__key-msg h1 {
    font-size: 48px;
    color: #003885;
}

.mainvisual__key-msg h2 {
    font-size: 24px;
}

.mainvisual__key-msg--inquiry {
    display: flex;
    position: absolute;
    bottom: 184px;
    left: 40px;
    text-align: center;
}

.mainvisual__key-msg--inquiry li>p {
    margin-bottom: 4px;
    -webkit-text-stroke-width: 1px;
    color: #ff7f00;
}

.mainvisual__key-msg--inquiry li:last-of-type>p {
    color: #003885;
}

.mainvisual__key-msg--inquiry li:last-of-type {
    margin-left: 48px;
}

.mainvisual__key-msg--inquiry a {
    padding: 10px 24px;
    background-color: #ff7f00;
    border-radius: 48px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.mainvisual__key-msg--inquiry li:last-of-type a {
    background-color: #003885;
}

.mainvisual__key-msg--inquiry a:hover {
    transform: translateY(-4px);
}

.mainvisual__key-msg--inquiry img {
    width: 48px;
    height: auto;
    margin-right: 16px;
}




@media(max-width:1040px) {
    .mainvisual {
        padding-top: 64px;
    }

    .mainvisual img {
        width: 100%;
        height: 640px;
        object-fit: cover;
    }

    .mainvisual__key-msg {
        top: 160px;
        left: 50%;
        transform: translate(-50%);
        max-width: 335px;
        padding: 16px;
        background-color: #ffffff;
        opacity: 0.8;
    }

    .mainvisual__key-msg h1 {
        font-size: 32px;
    }

    .mainvisual__key-msg h2 {
        font-size: 16px;
    }

    .mainvisual__key-msg--inquiry {
        flex-direction: column;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 335px;
        bottom: 80px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 16px;
        border-radius: 24px;
    }

    .mainvisual__key-msg--inquiry li:last-of-type {
        margin-top: 32px;
        margin-left: 0px;
    }

    .mainvisual__key-msg--inquiry a {
        justify-content: center;
        padding: 8px 24px;
        border-radius: 32px;
        font-size: 16px;
    }

    .mainvisual__key-msg--inquiry img {
        width: 24px;
        height: auto;
    }
}

.banner {
    position: fixed;
    bottom: 16px;
    left: -300px;
    padding: 32px 16px;
    border-radius: 0 16px 16px 0;
    background-color: #003885;
    color: #ffffff;
    z-index: 10;
    transition: all 0.5s;
}

.banner__list li {
    margin-bottom: 16px;
    border-bottom: 2px solid #ffffff;
}

.banner__list li:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.banner__list--icon {
    width: 48px;
    margin: 0 auto;
}

.banner__list p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.banner-open .banner {
    left: 0;
}

@media(max-width:1400px) {
    .banner {
        bottom: 0;
        left: -640px;
        padding: 16px 16px;
    }

    .banner__list {
        display: flex;
    }

    .banner__list li {
        margin-bottom: 0;
        border-bottom: none;
        border-left: 2px solid #ffffff;
        padding-inline: 16px;
    }

    .banner__list li a {
        display: flex;
        align-items: center;
    }

    .banner__list--icon {
        width: 32px;
    }

    .banner__list p {
        padding-left: 18px;
    }
}

@media(max-width:1040px) {
    .banner {
        width: 100%;
        bottom: -100px;
        left: 0px;
        padding: 8px 8px;
        border-radius: 0;
        z-index: 10;
    }

    .banner__list {
        display: flex;
        justify-content: space-between;
    }

    .banner__list li {
        width: 30%;
        margin-bottom: 0;
        border-bottom: none;
        border-right: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
    }

    .banner__list li a {
        flex-direction: column;
        align-items: center;
    }

    .banner__list--icon {
        width: 24px;
    }

    .banner__list p {
        font-size: 10px;
        line-height: 10px;
        padding-left: 0;
    }

    .banner-open .banner {
        bottom: 0;
    }

}


.container {
    max-width: 1040px;
    margin: 0 auto;
    padding-inline: 20px;
}

section {
    padding-block: 80px;
}

@media(max-width:1040px) {
    section {
        padding-block: 48px;
    }
}

.section-title {
    display: block;
    margin: 0 auto 48px;
    width: fit-content;
    font-size: 40px;
    color: #003885;
    position: relative;
}

.section-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #003885;
}

@media(max-width:1040px) {
    .section-title {
        margin: 0 auto 24px;
        font-size: 32px;
    }
}

.service {
    background-color: #FAFAFA;
}

.service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service__list li {
    padding: 16px;
    height: 320px;
    border: 4px solid #003885;
    background-color: #ffffff;
    border-radius: 24px;
}

.service__list--content {
    display: flex;
}

.service__list--content--img {
    width: 32%;
    margin: 32px 16px 0 0;
}

.service__list--content--text {
    width: 68%;
    position: relative;
}

.service__list--content--text h3 {
    font-size: 24px;
    color: #003885;
}

.service__list--detail-btn {
    position: absolute;
    top: 200px;
    display: block;
    width: fit-content;
    margin-block: 16px;
    padding: 12px 24px;
    background-color: #003885;
    border-radius: 32px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.service__btn {
    display: block;
    width: fit-content;
    margin: 32px auto;
    padding: 16px 56px;
    background-color: #003885;
    border-radius: 36px;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

@media(max-width:1040px) {
    .service__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .service__list li {
        height: auto;
    }

    .service__list--content {
        flex-direction: column;
        align-items: center;
    }

    .service__list--content--img {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .service__list--content--img img {
        width: auto;
        height: 120px;
        object-fit: cover;
    }

    .service__list--content--text {
        width: 100%;
        /* text-align: center; */
    }

    .service__list--content--text h3 {
        width: fit-content;
        margin: 0 auto;
    }

    .service__list--detail-btn {
        display: block;
        width: fit-content;
        margin: 8px auto;
        position: static;
        display: block;
        transform: translateX(0);
        font-size: 16px;
    }

    .service__btn {
        font-size: 16px;
    }
}

.strength__list--content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 24px;
}

.strength__list--img {
    width: 50%;
    text-align: center;
}

.strength__list--img img {
    width: 64%;
}

.strength__list--content--text {
    width: 50%;
}


.strength__list li:nth-of-type(1) .strength__list--content,
.strength__list li:nth-of-type(3) .strength__list--content {
    flex-direction: row-reverse;
}

.strength__list--content--text h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

@media(max-width:1040px) {
    .strength .section-title {
        margin-inline: 20px;
    }

    .strength__list--content {
        flex-direction: column;
        align-items: center;
    }

    .strength__list--content--text {
        width: 100%;
    }

    .strength__list--img {
        text-align: center;
        width: 100%;
    }

    .strength__list--img img {
        width: 224px;
        height: 184px;
        object-fit: cover;
    }

    .strength__list li:nth-of-type(1) .strength__list--content,
    .strength__list li:nth-of-type(3) .strength__list--content {
        flex-direction: column;
    }

    .strength__list--content--text h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
}


.inquiry {
    background-color: #FAFAFA;
}

.inquiry__list--box {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-top: 48px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px rgba(17, 17, 26, 0.08);
    position: relative;
}

.inquiry__list--box::after {
    position: absolute;
    bottom: -48px;
    left: 20%;
    content: "";
    width: 1px;
    height: 48px;
    background-color: #333;
}

.inquiry__list--box:last-of-type:after {
    display: none;
}

.inquiry__list--img {
    width: 120px;
}

.inquiry__list--title {
    width: 240px;
    padding-inline: 16px;
    color: #003885;
}

.inquiry__list--title p {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: bold;
}

.inquiry__list--title h3 {
    font-size: 20px;
}

.inquiry__list--text {
    width: 600px;
}

.inquiry__list--content {
    width: calc(100% - 360px);
}

.inquiry__list--content li {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.inquiry__list--content--check {
    width: 32px;
    height: 32px;
    background-color: #003885;
    border-radius: 50%;
    margin-right: 16px;
}

.inquiry__list--content--check p {
    line-height: 32px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
}

@media(max-width:1040px) {
    .inquiry__list--box {
        flex-direction: column;
        padding: 16px;
    }

    .inquiry__list--img {
        width: 100%;
        text-align: center;
    }

    .inquiry__list--img img {
        height: 120px;
        width: auto;
        object-fit: cover;
    }

    .inquiry__list--title {
        width: 100%;
        text-align: center;
    }

    .inquiry__list--content {
        width: fit-content;
        margin: 0 auto;
    }

    .inquiry__list--content--text {
        width: 100%;
    }

}

.inquiry-form {
    background-color: #003885;
    padding-block: 48px;
}

.inquiry-form__content {
    background-color: #FAFAFA;
    padding: 24px;
    border-radius: 24px;
}

.inquiry-form__content--title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #003885;
    margin-bottom: 24px;
}

.inquiry-form__content--list {
    display: flex;
    justify-content: space-around;
}

.inquiry-form__content--list li {
    padding-block: 8px;
    width: 24%;
    border-radius: 24px;
    background-color: #003885;
}

.inquiry-form__content--list li a {
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
}

.inquiry-form__content--list li a img {
    width: 32px;
    margin-right: 8px;
}

@media(max-width:1040px) {
    .inquiry-form__content {
        max-width: 400px;
        margin: 0 auto;
    }

    .inquiry-form__content--title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .inquiry-form__content--list {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .inquiry-form__content--list li {
        padding-block: 8px;
        margin-block: 8px;
        width: 264px;
    }
}

.message__content {
    display: flex;
    justify-content: space-between;
}

.message__content--text,
.message__content--img {
    width: 48%;
}

.message__content--text h3 {
    font-size: 32px;
}

.message__content--text h4 {
    font-size: 24px;
    color: #003885;
    margin-bottom: 24px;
}

.message__content--text p:last-of-type{
    margin-top: 24px;
}

.message__content--text p:last-of-type {
    font-weight: bold;
}

.message__content--name-en {
    margin-bottom: 16px;
}

.message__content--img img {
    height: 100%;
    object-fit: cover;
}

@media(max-width:1040px) {
    .message__content {
        flex-direction: column;
        justify-content: space-between;
    }

    .message__content--text {
        width: 100%;
    }

    .message__content--img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .message__content--text h3 {
        font-size: 24px;
    }

    .message__content--name-en {
        margin-bottom: 16px;
    }

    .message__content--img img {
        margin-top: 16px;
    }
}


.noticecolumn {
    background-color: #FAFAFA;
}

.notice {
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0px 8px 0px 0px rgba(17, 17, 26, 0.08);
    padding-block: 24px;
}

.notice__list {
    margin: 24px 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.notice__list--title {
    font-size: 18px;
    color: #333;
}

.notice__list--date{
    color: #aaa;
}

.column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin: 64px auto 48px;
}

.column__list {
    padding: 16px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0px 8px 0px 0px rgba(17, 17, 26, 0.08);
    text-align: center;
}

.column__list--title {
    margin: 16px auto 16px 0;
    padding: 8px;
    width: fit-content;
    font-size: 16px;
    color: #333;
    border-radius: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

.column__list--img img {
    width: 100%;
    height: auto;
}

@media(max-width:1040px) {
    .notice__list--title {
        font-size: 16px;
    }

    .column {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .column__list{
        width: 100%;
        margin: 0 auto;
    }
}


.question__list li:last-of-type .question__list--content {
    border-bottom: 2px solid #505050;
}

.question__list--content {
    border-top: 2px solid #505050;
}

.question__list--content {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px 16px 24px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.question__list--content--num {
    font-size: 32px;
    margin-right: 24px;
}

.question__list--answer {
    display: none;
    padding: 16px 0 24px 80px;
    color: #333;
}

.question__list--content--dropdown {
    width: 24px;
    height: 24px;
    position: relative;
}

.question__list--content--dropdown span {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
}

.question__list--content--dropdown span:first-of-type {
    transform: rotate(90deg);
}

.question-open .question__list--content--dropdown span:first-of-type {
    transform: rotate(0deg);
}

.question-open .question__list--content--dropdown span {
    background-color: #ffffff;
}

.question-open .question__list--content {
    background-color: #505050;
    color: #ffffff;
}

@media(max-width:1040px) {
    .question__list--content p {
        display: flex;
        width: 85%;
    }

    .question__list--content {
        font-size: 16px;
    }

    .question__list--content--num {
        font-size: 24px;
    }
}


.company__content {
    display: flex;
    justify-content: space-between;
}

.company__content--text,
.company__content--map {
    width: 48%;
}

.company__content--text h3 {
    font-size: 32px;
    font-weight: bold;
}

.company__content--text dl {
    display: flex;
    flex-wrap: wrap;
}

.company__content--text dt {
    width: 30%;
}

.company__content--text dd {
    width: 70%;
}

.company__content--text dt,
.company__content--text dd {
    padding-block: 8px;
    border-bottom: 2px solid #b6b6b6;
}

.company__content--map iframe {
    width: 100%;
    height: 100%;
}

@media(max-width:1040px) {
    .company__content {
        flex-direction: column;
    }

    .company__content--text,
    .company__content--map {
        width: 100%;
    }

    .company__content--text {
        margin-bottom: 16px;
    }

    .company__content--map {
        height: 320px;
    }

    .company__content--text h3 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 24px;
    }
}


.form {
    background-color: #F1F1F1;
}

.form__list--content {
    padding-block: 16px;
}

.form__list--content-text {
    display: flex;
    margin-bottom: 16px;
}

.form__list--content-text--must,
.form__list--content-text--title {
    padding-inline: 16px;
    margin-right: 8px;
    font-weight: bold;
}

.form__list--content-text--must {
    background-color: #FF6200;
    border-radius: 8px;
    color: #ffffff;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
}

.form-submit {
    display: block;
    margin: 0 auto;
    padding: 16px 48px;
    background-color: #003885;
    color: #ffffff;
    border-radius: 32px;
    font-size: 24px;
    font-weight: bold;
}

::placeholder {
    color: #aaa;
    /* 薄いグレーにする */
}

.recaptcha {
    text-align: center;
}

.recaptcha a {
    text-decoration: underline;
}

@media(max-width:1040px) {
    .form__list--content {
        padding-block: 8px;
    }

    .form__list--content-text {
        margin-bottom: 8px;
    }

    .form__list--content-text--must,
    .form__list--content-text--title {
        padding-inline: 8px;
    }

    .form-input,
    .form-textarea {
        padding: 8px;
    }

    .form-submit {
        padding: 8px 24px;
        font-size: 16px;
    }
}


/*=============================================================================
article
===============================================================================*/

.article-title {
    width: 100%;
    height: 240px;
    background-color: #003885;
    padding-top: 80px;
    margin-bottom: 16px;
}

.article-title__content {
    display: flex;
    align-items: center;
    height: 100%;
}

.article-title__content h1 {
    font-size: 48px;
    color: #ffffff;
}

.breadcrumb-area {
    margin-bottom: 0px;
}

.breadcrumb-area a {
    text-decoration: underline;
}

@media(max-width:1040px) {
    .article-title {
        height: 200px;
        background-color: #003885;
        padding-top: 80px;
        margin-bottom: 16px;
    }

    .article-title__content h1 {
        font-size: 32px;
    }

    .breadcrumb-area {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

.concerms__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 184px;
    position: relative;
}

.concerms {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 8px 8px 8px 8px rgba(17, 17, 26, 0.08);
    margin-top: 40px;
}

.concerms__list--content h3 {
    margin-left: 32px;
    color: #003885;
    font-size: 16px;
    position: relative;
}

.concerms__list--content h3::before {
    position: absolute;
    top: 0;
    left: -32px;
    width: 24px;
    height: 24px;
    border: 1px solid #003885;
    border-radius: 12px;
    content: "✓";
    font-size: 12px;
    text-align: center;
}

.concerms__list--content--img {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 184px;
}

@media(max-width:1040px) {
    .concerms__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        margin: 0 auto;
        width: fit-content;
    }

    .concerms__list--content {
        width: fit-content;
    }

    .concerms__list--content--img {
        position: static;
        transform: translateX(0);
        margin: 0 auto;
    }

}

.solution {
    text-align: center;
}
@media screen and (max-width: 767px) {
 .solution {
    text-align: left;
 }
}

.labor-consultation-service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.labor-consultation-service__list>li {
    padding: 16px;
    height: 424px;
    border: 4px solid #003885;
    border-radius: 24px;
    position: relative;
}

.labor-consultation-service__list--content h3 {
    font-size: 22px;
    color: #003885;
    text-align: center;
}

.labor-consultation-service__list--content--img {
    margin: 0 auto;
    text-align: center;
}

.labor-consultation-service__list--content--img img {
    height: 120px;
    width: auto;
    object-fit: cover;
}

.labor-consultation-service__list--content--text {
    list-style: disc;
    padding-left: 16px;
}

.labor-consultation-service__list--content--text li {
    margin-bottom: 16px;
}

.labor-consultation-service__list--content--text li:last-of-type {
    margin-bottom: 0;
}

.labor-consultation-sterngth {
    background-color: #FAFAFA;
}

@media(max-width:1040px) {
    .labor-consultation-service__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .labor-consultation-service__list>li {
        height: auto;
    }

    .labor-consultation-service__list--content--text {
        margin: 0 auto;
        width: fit-content;
    }

    .labor-consultation-service__list--content--text li {
        width: fit-content;
    }
}

.labor-consultation-sterngth__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-block: 24px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px rgba(17, 17, 26, 0.08);
}

.labor-consultation-sterngth__list--img {
    width: 40%;
}

.labor-consultation-sterngth__list--text {
    width: 56%;
}

.labor-consultation-sterngth__list--text p:first-of-type {
    font-weight: bold;
}

.labor-consultation-sterngth__list--text h3 {
    font-size: 24px;
    color: #003885;
    margin-bottom: 16px;
}

@media(max-width:1040px) {
    .labor-consultation-sterngth__list li {
        flex-direction: column-reverse;
    }

    .labor-consultation-sterngth__list--img {
        width: 100%;
        text-align: center;
    }

    .labor-consultation-sterngth__list--img img {
        width: 224px;
        height: 184px;
        object-fit: cover;
    }

    .labor-consultation-sterngth__list--text {
        width: 100%;
    }
}

.other-services {
    background-color: #003885;
}

.other-services .section-title {
    color: #ffffff;
}

.other-services__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.other-services__links--link {
    display: flex;
    align-items: center;
    background-color: #FAFAFA;
    height: 64px;
    padding-inline: 16px;
    border-radius: 32px;
}

.other-services__links--link a {
    display: flex;
    align-items: center;
}

.other-services__links--link a img {
    width: 40px;
    margin-right: 4px;
}

.other-services__links--link a p {
    font-size: 14px;
    line-height: 20px;
}

@media(max-width:1040px) {
    .other-services__links {
        grid-template-columns: repeat(1, 1fr);
    }

    .other-services__links li {
        width: 80%;
        margin: 0 auto;
    }
}

.about-section-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.about-statement__img {
    height: 480px;
    margin-top: 32px;
    text-align: center;
}

.about-statement__img img {
    height: 100%;
    /* width: auto; */
    object-fit: cover;
}

.about-value__list li {
    margin-block: 32px;
}

.about-value__list h4 {
    font-size: 24px;
    color: #003885;
}

.about-value__list p {
    margin-left: 24px;
}

.about-hope__content {
    display: flex;
}

.about-hope__content--img,
.about-hope__content--text {
    width: 50%;
}

.about-hope__content--img {
    position: relative;
    margin-right: 32px;
}

.about-hope__content--img::after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    background-color: #003885;
    z-index: -1;
    transition: all 0.75s;
}

.slide-up.about-hope__content--img::after{
    height: 100%;
}

.about-hope__content--img p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 40px));
    color: #ffffff;
    font-size: 64px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.7s;
    transition-delay: 0.35s;
}

.slide-up.about-hope__content--img p{
    opacity: 1;
    transform: translate(-50%, -50%);
}

.about-hope__content--text h3 {
    font-size: 24px;
}

.about-hope__content--text p:first-of-type {
    margin-bottom: 24px;
}

.about-message__img {
    height: 400px;
    margin-top: 32px;
}

.about-message__img img {
    height: 100%;
    object-fit: cover;
}

.about-message__text {
    margin-top: 32px;
}

@media(max-width:1040px) {
    .about-section-title {
        font-size: 24px;
    }

    .about-statement__img {
        height: 240px;
        text-align: center;
    }

    .about-value__list h4 {
        font-size: 20px;
    }

    .about-hope__content {
        flex-direction: column;
    }

    .about-hope__content--img,
    .about-hope__content--text {
        width: 100%;
    }

    .about-hope__content--img {
        height: 160px;
        margin: 0 0 24px 0;
    }

    .about-hope__content--img p {
        font-size: 48px;
    }
}


.price__table--list {
    margin-bottom: 80px;
}

.price__table--list h3 {
    font-size: 24px;
    color: #003885;
    border-bottom: 2px solid #003885;
    margin-bottom: 8px;
}

.price__table--list--text {
    font-weight: bold;
}

.price__table--list table {
    border: 1px solid #aaa;
    border-collapse: collapse;
    width: 100%;
    margin-top: 16px;
}

.price__table--list .col1 {
    width: 35%;
}

.price__table--list .col2 {
    width: calc;
}

.price__table--list th,
.price__table--list td {
    border: 1px solid #aaa;
    text-align: center;
    padding-block: 8px;
}

.price__table--list th {
    background-color: #003885;
    color: #ffffff;
    font-weight: bold;
}

.price__table--list--other li {
    margin-bottom: 64px;
}

.price__table--list--other h4 {
    font-size: 20px;
    color: #003885;
    margin-top: 24px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.price__table--list--other .price__table--list--text {
    margin-top: 0;
}

@media(max-width:1040px) {
    .price__table--list th,
    .price__table--list td{
        font-size: 14px;
    }
}

.strength-msg{
    padding-block: 32px;
}

.strength-msg h2{
    font-size: 32px;
    margin: 48px auto;
}

@media(max-width:1040px){
    .strength-msg h2{
        font-size: 24px;
    }
}




/*=============================================================================
footer
===============================================================================*/

.footer-top {
    background-color: #333333;
    padding-block: 32px;
}

.footer-top a {
    color: #ffffff;
}

.footer-top__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
}

.footer-top__links--logo {
    width: 240px;
    margin: 0 auto;
}

.footer-top__links>li h3 {
    margin-bottom: 16px;
}

.footer-top__links--title {
    font-size: 16px;
    color: #ffffff;
    margin-block: 8px;
}

.footer-top__links--link {
    color: #ffffff;
    list-style: disc;
    /* list-style-position: inside; */
}

.footer-top__links--link li {
    margin-left: 24px;
    margin-block: 8px;
}

.footer-top__links--link a {
    font-size: 13px;
}

@media(max-width:1040px) {
    .footer-top__links {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .footer-top__links--link {
        list-style: none;
    }

    .footer-top__links--title {
        margin: 0 auto;
        width: fit-content;
        font-size: 16px;
        cursor: pointer;
        position: relative;
    }

    .footer-top__links--title::after {
        position: absolute;
        top: 8px;
        right: -24px;
        width: 0;
        height: 0;
        content: "";
        border-style: solid;
        border-color: #ffffff transparent transparent transparent;
        border-width: 8.66px 5px 0px 5px;
        ;
    }

    /* .footer-top__links--link {
        display: none;
    } */

    .footer-top__links--link li {
        text-align: center;
    }
}

.footer-btm {
    display: flex;
    justify-content: space-between;
    padding-block: 32px;
}

.footer-btm__left--info {
    display: flex;
    align-items: center;
}

.footer-btm__left--info p {
    margin-left: 24px;
}

.footer-btm__left--links {
    margin-top: 24px;
}

.footer-btm__left--links a {
    margin-right: 24px;
    text-decoration: underline;
}

.footer-btm__rigtht {
    display: flex;
    align-items: center;
}

.footer-btm__rigtht--icon {
    width: 64px;
}

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

.footer-btm__rigtht--info--num {
    font-size: 28px;
    font-weight: bold;
}

/*ロゴ追加20250622  START*/
.footer-btm__rigtht--logos {
    display: flex;
	gap: 5px;
}
/*.footer-btm__rigtht--logos a {
    display: inline-flex; 
}*/
.footer-btm__rigtht--logos img.footer-logo {
    height: 80px;
    width: auto;
}
/*ロゴ追加20250622  END*/

@media(max-width:1364px) {
    .footer-btm {
        padding-bottom: 80px;
    }
}

@media(max-width:1040px) {
    .footer-btm {
        flex-direction: column;
        padding-bottom: 0;
    }

    .footer-btm__left--info {
        flex-direction: column;
        text-align: center;
    }

    .footer-btm__left--links {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-btm__left--links a {
        margin-right: 0;
    }

    .footer-btm__rigtht {
        flex-direction: column;
        margin-bottom: 120px;
    }
}


/*=============================================================================
responsive
===============================================================================*/










/*=============================================================================
service一覧
===============================================================================*/
.service_list_block{
    margin-top: 30px;
    position: relative;
}
.service_list {
    position: relative;
    margin-bottom: 40px;
    display: flex;
}
.service_list_l{
	width: 45%;
    margin: 0 20px;
}
.service_concerns_r{
	width: 55%;
    margin: 20px;
}
.service_concerns_r p{
	font-weight:bold;
}
.service_concerns_r ul {
    padding-left: 20px;
    list-style: disc;
}

.service_list_l .section_sub_title {
    margin: 20px 0;
}
.service_list_l .blue_round_btn {
    margin: 20px 0;
}
.blue_round_btn {
    background-color: var(--main-blue-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #fff;
    margin: 40px 0;
}
.white_back {
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 5px 0px 0px rgba(163, 163, 163, 0.17);
    box-shadow: 0px 5px 0px 0px rgba(163, 163, 163, 0.17);
    border-radius: 5px;
    border: 1px solid #eee;
}
@media only screen and (max-width: 959px) {
    .service_list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .service_list_l {
        width: 100%;
        margin: 0 10px;
    }
	.section_sub_title {
        font-size: 22px;
        margin: 30px auto;
        text-align: center;
        line-height: 30px;
    }
	.service_concerns_r {
        width: 100%;
        margin: 0;
    }
}


/*=============================================================================
TOPページサービス上の補助金・助成金バナー
===============================================================================*/

.service-top-banners {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.banner-box {
  max-width: 400px;
  position: relative;
}

.banner-box img {
  width: 100%;
  border-radius: 8px;
}


.banner-label {
  margin-bottom: 8px;
}

.banner-top {
  font-weight: bold;
  color: #003885;
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
}

.banner-bottom {
  font-size: 17px;
  color: #333;
}


/*=============================================================================
ブロックパターン用CSS
===============================================================================*/

/*=============================================================================
utils
===============================================================================*/

.patterns {
    font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
}

.patterns-en {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #003885;
}

.patterns-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

@media(max-width:1040px) {
    .patterns-en {
        font-size: 16px;
        margin-bottom: 10px;
    }

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

/*=============================================================================
タイトルパターン
===============================================================================*/

.patterns-title__bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/title_bg.jpg) no-repeat center/cover;
    margin-bottom: 47px;
    padding: 100px 0;
}

.patterns-title__title {
    font-weight: 900;
    font-size: 42px;
    color: #fff;
    text-align: center;
}

.patterns-title__subtitle {
    font-weight: 900;
    font-size: 36px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 10px;
}

.patterns-title__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

@media(max-width:1040px) {
    .patterns-title__bg {
        padding: 60px 0;
    }

    .patterns-title__title {
        font-size: 28px;
    }

    .patterns-title__subtitle {
        font-size: 20px;
        padding: 0 20px;
    }

    .patterns-title__text {
        font-size: 14px;
        padding: 0 20px;
    }
}

/*=============================================================================
ポイントセクション
===============================================================================*/

.patterns-point {
    max-width: 1000px;
    margin: 0 auto;
}

.patterns-point__container {
    counter-reset: point-counter;
}


.patterns-point__contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    counter-increment: point-counter;
}

.patterns-point__contents:nth-child(even) {
    flex-direction: row-reverse;
}

.patterns-point__picture {
    width: 42%;
}

.patterns-point__subtitle {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 600;
    border-bottom: 1px solid #003885;
    margin-bottom: 29px;
}

.patterns-point__subtitle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 38px;
    height: 3px;
    background-color: #003885;
}

.patterns-point__item {
    flex: 1;
}

.patterns-point__item--number {
    font-size: 70px;
}

.patterns-point__item--number {
    font-size: 0; /* 既存のテキストを非表示 */
}

.patterns-point__item--number::before {
    content: counter(point-counter, decimal-leading-zero);
    font-size: 70px; /* 自動生成された番号のサイズ */
}

.patterns-point__text {
    font-size: 16px;
    font-weight: 400;
}

@media(max-width:1040px) {
    .patterns-point {
        padding-inline: 20px;
    }

    .patterns-point__picture {
        width: 50%;
    }

    .patterns-point__contents {
        flex-direction: column;
    }

}


/*=============================================================================
料金プランセクション
===============================================================================*/

.patterns-price {
    max-width: 1000px;
    margin: 0 auto;
}

.patterns-price__contents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 480px));
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 21px;
}

.patterns-price__item {
    width: 100%;
    position: relative;
    background: #e2edf3;
    border-radius: 20px;
    padding: 44px 40px 28px;
    
}

.patterns-price__item--title {
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background: #003885;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    padding: 11px 10% 14px; 
    white-space: nowrap;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.15);
}

.patterns-price__item--price {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: #003885;
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
}

.patterns-price__item--small {
    font-size: 22px;
    font-weight: 900;
}

.patterns-price__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    min-height: 100px;
    background: #fff;
    padding: 0 15px 0 20px;
}

.patterns-price__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.patterns-price__text--small {
    font-size: 12px;
    font-weight: 400;
}

.patterns-price__small {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

@media(max-width:1040px) {

    .patterns-price {
        padding-inline: 20px;
    }

    .patterns-price__contents {
        flex-direction: column;
    }

    .patterns-price__picture,
    .patterns-price__item {
        width: 100%;
    }

    .patterns-price__contents {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .patterns-price__item {
        padding: 32px 20px 28px;
    }

    .patterns-price__item--title {
        font-size: 20px;
        padding: 8px 20px 10px;
    }

    .patterns-price__item--price {
        font-size: 40px;
    }

    .patterns-price__box {
        width: 100%;
        min-height: auto;
        margin-top: 16px;
        padding: 16px;
    }
}

/*=============================================================================
フローパターン
===============================================================================*/

.patterns-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.patterns-flow__contents {
    max-width: 800px;
    counter-reset: step-counter;
    margin: 0 auto;
    position: relative;
}

.patterns-flow__contents::before {
    content: '';
    position: absolute;
    left: 76px;
    top: 152px;
    bottom: 52px;
    z-index: -1;
    width: 2px;
    border-left: 2px dashed #003885;
    border-left-style: dashed;
    stroke-dasharray: 4 4;
}

.patterns-flow__item {
    counter-increment: step-counter;
    display: flex;
    justify-content: space-between;
    gap: 31px;
    margin-bottom: 52px;
}

.patterns-flow__item:last-child {
    margin-bottom: 0;
}

.patterns-flow__step--number::before {
    content: counter(step-counter, decimal-leading-zero);
}

.patterns-flow__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    width: 152px;
    height: 152px;
    background: #003885;
    border-radius: 100%;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 30px 40px 27px;
}

.patterns-flow__icon figure {
    margin-bottom: 10px;
}

.patterns-flow__step {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    color: #fff;
}

.patterns-flow__area {
    padding-top: 30px;
    padding-right: 36px;
}

.patterns-flow__area h3 {
    border-bottom: 1px solid #003885;
    font-size: 22px;
    font-weight: 900;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #003885;
}

.patterns-flow__area p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

@media(max-width:1040px) {
    .patterns-flow {
        padding-inline: 20px;
    }

    .patterns-flow__contents::before {
        content: '';
        position: absolute;
        left: 60px;
        top: 120px;
        bottom: 40px;
        z-index: -1;
        width: 2px;
        border-left: 2px dashed #003885;
        border-left-style: dashed;
        stroke-dasharray: 4 4;
    }

    .patterns-flow__item {
        align-items: center;
    }

    .patterns-flow__icon {
        width: 120px;
        height: 120px;
        padding: 0 32px 0;
    }

    .patterns-flow__area {
        padding: 0 16px;
    }
}

/*=============================================================================
メッセージセクション
===============================================================================*/

.patterns-message {
    max-width: 1000px;
    margin: 0 auto;
}

.patterns-message__contents {
    position: relative;
    width: 920px;
    background: #E2EDF3;
    margin-top: 38px;
    padding: 35px 40px 35px 340px;
    margin-bottom: 80px;
    margin-left: auto;
}

.patterns-message__contents figure {
    position: absolute;
    top: -38px;
    left: -80px;
    width: 370px;
}

.patterns-message__ceo {
    font-size: 14px;
    line-height: 1.5;
}

.patterns-message__name {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.patterns-message__text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.patterns-message__area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

}

.patterns-message__area figure {
    width: 460px;
    flex-shrink: 0;
}

.patterns-message__item h3 {
    position: relative;
    font-size: 32px;
    font-weight: 900;
    color: #003885;
    border-bottom: 1px solid #003885;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
        
        
.patterns-message__item h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 38px;
    height: 3px;
    background-color: #003885;
}

.patterns-message__item p {
    font-size: 16px;
    line-height: 1.8;
}

@media(max-width:1040px) {
    .patterns-message {
        padding-inline: 20px;
    }

    .patterns-message__contents {
        width: 100%;
        padding: 0 20px 0;
        margin: 0 auto 40px;
        background: none;
    }

    .patterns-message__contents figure {
        position: static;
        width: 100%;
        margin: 0 auto 40px;
    }

    .patterns-message__name {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .patterns-message__area {
        flex-direction: column;
    }

    .patterns-message__area figure {
        width: 100%;
    }

    .patterns-message__item h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

/*=============================================================================
パーツパターンcss
===============================================================================*/

/*=============================================================================
utils
===============================================================================*/

.parts {
    font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
}

.parts-header {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.parts-en {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: #003885;
}

.parts-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.parts-subarea {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.parts-subtitle {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.8;
    color: #003885;
    border-bottom: 1px solid #003885;
    margin-bottom: 20px;
}

.parts-subtitle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 38px;
    height: 3px;
    background-color: #003885;
}

.parts-subtitle4 {
    width: fit-content;
    background: #e2edf3;
    padding: 4px 15px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.8;
    color: #003885;
    margin-bottom: 20px;
}

.parts-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.parts-subtext {
    font-size: 16px;
    line-height: 1.8;
}

.parts-subtext strong,
.parts-subtitle__subtext strong,
.parts-subtitle4__subtext strong {
    font-weight: 900;
}

.parts-subtext a,
.parts-subtitle__subtext a,
.parts-subtitle4__subtext a {
    color: #003885;
    border-bottom: 1px solid #003885;
}

@media(max-width:1040px) {
    .parts-en {
        font-size: 16px;
    }

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

    .parts-header {
        padding-inline: 20px;
    }

    .parts-subarea {
        padding-inline: 20px;
    }

    .parts-subtitle {
        font-size: 20px;
    }

    .parts-subtitle4 {
        font-size: 18px;
    }

    .parts-text {
        font-size: 14px;
    }

    .parts-subtext {
        font-size: 14px;
    }
}

/*=============================================================================
ボタンパーツ
===============================================================================*/

.parts-btn01 {
    width: fit-content;
    margin: 0 auto 40px;
}

.parts-btn01__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 900;
    color: #003885;
    text-decoration: none;
    transition: all 0.3s;
}

.parts-btn01__text {
    line-height: 1.4;
    border-bottom: 2px solid #003885;
    padding-bottom: 4px;
}

.parts-btn01__text:hover {
    opacity: 0.7;
}

.parts-btn01__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #003885;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.parts-btn01__icon::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}

.parts-btn02 {
    position: relative;
    width: fit-content;
    background-color: #003885;
    border-radius: 50px;
    margin: 0 auto 40px;
}

.parts-btn02__link {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    padding: 22px 78px;
    text-decoration: none;
    transition: all 0.3s;
}


.parts-btn02__text {
    line-height: 1.4;
}

.parts-btn02__text:hover {
    opacity: 0.7;
}

.parts-btn02__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
}

.parts-btn02__icon::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #003885;
    margin-left: 2px;
}


/*=============================================================================
見出しパーツ
===============================================================================*/

.parts-header {
    max-width: 1000px;
    margin: 0 auto 60px;
}

/*=============================================================================
カラムパーツ
===============================================================================*/

.parts-columns {
    max-width: 1000px;
    margin: 0 auto;
}

.parts-columns__contents {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.parts-columns__item figure {
    margin-bottom: 20px;
}

.parts-columns__title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 6px;
}

.parts-columns__text {
    font-size: 16px;
    line-height: 1.8;
}

@media(max-width:1040px) {
    .parts-columns {
        padding-inline: 20px;
    }

    .parts-columns__contents {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        align-items: center;
    }

    .parts-columns__item {
        width: 80%;
        margin: 0 auto 20px;
    }
}

/*=============================================================================
リストパーツ
===============================================================================*/

.parts-list {
    max-width: 800px;
    margin: 0 auto;
}

.parts-list__contents {
    background: #e2edf3;
    border-radius: 20px;
    padding: 30px 60px;
}

.parts-list__item {
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #dedede;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.parts-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.parts-dotted__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.parts-dotted__circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #003885;
    border-radius: 100%;
    flex-shrink: 0 ;
}

@media(max-width:1040px) {
    .parts-list {
        padding-inline: 20px;
        margin-bottom: 40px;
    }

    .parts-list__item {
        font-size: 14px;
    }
}

/*=============================================================================
フローパーツ
===============================================================================*/

.parts-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.parts-flow__contents {
    position: relative;
    counter-reset: flow-counter;
}

.parts-flow__contents::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 50px;
    bottom: 100px;
    z-index: -1;
    width: 2px;
    border-left: 2px dashed #003885;
    border-left-style: dashed;
    stroke-dasharray: 4 4;
}

.parts-flow__item {
    position: relative;
    counter-increment: flow-counter;
    display: block;
    width: 100%;
    background: #FAFAFA;
    border-radius: 20px;
    padding: 24px 60px 30px 54px;
    margin-left: 61px;
    margin-bottom: 30px;
}

.parts-flow__item:last-child {
    margin-bottom: 0;
}

.parts-flow__circle {
    position: absolute;
    top: -15px;
    left: -61px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background-color: #003885;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.parts-flow__number::before {
    content: counter(flow-counter, decimal-leading-zero);
}

.parts-flow__wrap {
    flex: 1;
}

.parts-flow__title {
    border-bottom: 1px solid #003885;
    font-size: 22px;
    font-weight: 900;
    color: #003885;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.parts-flow__text {
    font-size: 16px;
    line-height: 1.8;
}

@media(max-width:1040px) {
    .parts-flow {
        padding-inline: 20px;
    }

    .parts-flow__contents::before {
        left: 30px;
        top: 40px;
        bottom: 190px;
    }
    
    .parts-flow__title {
        font-size: 20px;
    }

    .parts-flow__text {
        font-size: 14px;
    }

    .parts-flow__item {
        width: auto;
        margin-left: 50px;
        padding: 20px;
    }

    .parts-flow__circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
        left: -50px;
        top: -12px;
    }
}