/*==================================================
# 共通
==================================================*/
:root {
    --font-NotoSansJP-family: "Noto Sans JP", sans-serif;
    --font-Montserrat-family: "Montserrat", sans-serif;
    --font-ZenKakuGothicNew-family: "Zen Kaku Gothic New", sans-serif;
    --color-orange: #F5901D;
    --color-text: #333;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-NotoSansJP-family);
    font-size: clamp(14px, calc((16 * 100vw) / 1440), 16px);
    line-height: calc(26 / 16);
    letter-spacing: calc(0.84 / 16 * 1em);
    color: #333;
}


.js-fadeIn {
    opacity: 0;
    transition: all 0.5s ease 0s;
    transform: translateY(20px);
}

.pc-only {
    display: none;
}

.u-tab-none {
    display: none;
}

.c-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 12px;
}


@media screen and (min-width: 1024px) {
    .u-tab-show {
        display: none;
    }

    .u-tab-none {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }

    .c-inner {
        padding: 0 30px;
        max-width: 1060px;
    margin: 0 auto;
    }
}

/* セクションタイトル */
.c-section-head--white {
    color: #fff;
}

.c-section-head--orange {
    color: var(--color-orange);
}

.c-section-head__en-title {
    font-family: var(--font-Montserrat-family);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: calc(0.52 / 13 * 1em);
    display: block;
    padding-left: 16px;
    position: relative;
}

.c-section-head__en-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-text);
    border-radius: 50%;
}

.c-section-head--white .c-section-head__en-title::before {
    background-color: #fff;
}

.c-section-head--orange .c-section-head__en-title::before {
    background-color: var(--color-orange);
}

.c-section-head__title {
    font-size: 30px;
    font-weight: 700;
    line-height: calc(45 / 30);
    letter-spacing: calc(1.2 / 30 * 1em);
}

.c-section-head__text {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: calc(24 / 15);
    letter-spacing: calc(0.9 / 15 * 1em);
}

@media screen and (min-width: 769px) {
    .c-section-head__en-title {
        font-size: 14px;
    }

    .c-section-head__title {
        font-size: 40px;
    }

    .c-section-head__column {
        display: flex;
        gap: 9px;
        align-items: baseline;
        margin-top: 6px;
    }

    .c-section-head__text {
        margin-top: 0;
        font-size: 20px;
    }
    
}

/* ボタン */
.c-button-wrap {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.c-button-wrap.pc-only {
    display: none;
}

.c-button-wrap__item {
    width: 100%;
    max-width: 315px;
}

.c-button {
    border-radius: 80px;
    display: block;
    transition: all 0.3s ease 0s;
    padding: 10px 0;
    text-align: center;
}

.c-button--download {
    border: 2px solid var(--color-orange);
    background-color: #fff;
}

.c-button--contact {
    background-color: var(--color-text);
    border: 2px solid var(--color-text);
}

.c-button:hover {
    opacity: 0.7;
}

.c-button__text {
    font-size: 15px;
    font-weight: 700;
    line-height: calc(22.08 / 15);
    position: relative;
    padding-left: 30px;
}

.c-button__text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-46%);
    width: 21px;
    aspect-ratio: 1 / 1;
}

.c-button--download .c-button__text {
    color: var(--color-orange);
}

.c-button--download .c-button__text:before {
    background: url(../img/icon_doc.svg) no-repeat center center /contain;
}

.c-button--contact .c-button__text {
    color: #fff;
}

.c-button--contact .c-button__text:before {
    background: url(../img/icon_mail.svg) no-repeat center center /contain;
}

@media screen and (min-width: 769px) {
    .c-button-wrap.pc-only {
        display: flex;
    }

    .c-button-wrap.sp-only {
        display: none;
    }

    .c-button-wrap {
        flex-direction: row;
        gap: clamp(10px, calc(24 / 1440 * 100vw), 24px);
    }

    .c-button-wrap__item {
        max-width: 225px;
        
    }

    .c-button {
        padding: 9px 0;
    }

    .c-button--download {
    }

    .c-button--contact {
        background-color: var(--color-orange);
        border: 2px solid var(--color-orange);
    }

    .c-button--black {
        background-color: var(--color-text);
        border: 2px solid var(--color-text);
        
    }

    .footer__cta  .c-button--contact {
        background-color: var(--color-text);
        border: 2px solid var(--color-text);
    }


}

/* 開発領域 */

.c-dev-area {
    position: relative;
    z-index: 1;
    padding: 76px 0 83px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--color-orange) 50%, var(--color-orange) 100%);
    
}

.c-dev-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-60%);
    width: calc(918 / 375 * 100vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--color-orange);
    z-index: -1;
}

.c-dev-area__list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 36px 8px;
}

.c-dev-area__item {
    width: calc(50% - 4px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.c-dev-area__image img {
    border-radius: 10px;
}

.c-dev-area__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    flex: 1;
    width: 100%;

}

.c-dev-area__title {
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    line-height: calc(18 / 14);
    letter-spacing: calc(1.6 / 14 * 1em);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-dev-area__sub-list {
    margin-top: 8px;
    border-radius: 10px;
    border: 3px solid #F58505;
    background: #F58505;
    padding: 10px 8px 16px;
    flex: 1;

}

.c-dev-area__sub-item {
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: calc(18 / 12);
    letter-spacing: calc(0.1 / 12 * 1em);
}

@media screen and (min-width: 769px) {
    .c-dev-area {
        padding: 146px 0 135px;
        background: #fff;
    }

    .c-dev-area::before {
        transform: translateX(-56%);
    }

    .c-dev-area::before {
        width: calc(2998 / 1440 * 100vw);
    }

    .c-dev-area__list {
        margin-top: 60px;
        gap: 36px 16px;
    }

    .c-dev-area__item {
        width: calc(25% - 16px * 3 / 4);
    }

    .area__content {
        width: 100%;
    }

    .c-dev-area__title {
        font-size: 16px;
    }

    .c-dev-area__sub-list {
        padding: 14px 4px 20px 18px;
    }

    .c-dev-area__sub-item {
        font-size: 14px;

    }
}

/* よくあるご質問 */
.c-faq {
    padding: 70px 0 80px;

}

.c-faq__list {
    margin-top: 36px;

}

.c-faq__item {

}

.c-faq__item-question {
    display: flex;
    align-items: center;
    padding: 12px 0 12px 6px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

.c-faq__item:nth-child(even) .c-faq__item-question {
    background-color: #F7F7F7;
}

.c-faq__item-question-q {
    color: #F19813;
    font-family: var(--font-Montserrat-family);
    font-size: 24px;
    font-weight: 700;
    line-height: calc(36 / 24);
    letter-spacing: calc(0.72 / 24 * 1em);
    margin-right: 8px;
}

.c-faq__item-question-text {
    font-weight: 700;
    line-height: calc(22 / 14);
    letter-spacing: calc(0.42 / 14 * 1em);
    margin-right: 23px;
}

.c-faq__item-question-icon {
    background-color: var(--color-orange);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    transform: rotate(-90deg);
    flex-shrink: 0;
    margin-left: auto;

}

.c-faq__item-question.is-open .c-faq__item-question-icon {
    transform: rotate(0deg);
}

.c-faq__item-question-icon img {
    width: 10px;
}

.c-faq__item-answer {
    padding: 12px 10px 12px 9px;
    align-items: center;
    display: none;
    border-top: 1px solid #E0E0E0;

}

.c-faq__item-answer-inner {
    display: flex;
    align-items: center;
}

.c-faq__item-answer-a {
    color: #F19813;
    font-family: var(--font-Montserrat-family);
    font-size: 20px;
    font-weight: 700;
    line-height: calc(36 / 24);
    letter-spacing: calc(0.72 / 24 * 1em);
    margin-right: 11px;
}

.c-faq__item-answer-text {
    font-weight: 700;
    line-height: calc(22 / 14);
    letter-spacing: calc(0.42 / 14 * 1em);
}

@media screen and (min-width: 769px) {
    .c-faq {
        padding: 120px 0;
    }

    .c-faq__list {
        margin-top: 42px;
    }

    .c-faq__item-question {
        padding: 29px 37px 29px 31px;

    }

    .c-faq__item-question-q {
        font-size: 32px;
        margin-right: 15px;
    }

    .c-faq__item-question-text {

    }

    .c-faq__item-question-icon {

    }

    .c-faq__item-answer {
        padding: 29px 0 29px 36px;
    }

    .c-faq__item-answer-a {
        margin-right: 26px;
    }
}

/* 資料ダウンロード */
.c-download {
    padding: 82px 0 74px;
    background: #F7F7F7;
}

.c-download__description {
    margin-top: 24px;
}

.c-download__container {
    position: relative;
    margin-top: 34px;
}

.c-download__link {
    display: flex;
    flex-direction: column;
    
    border-radius: 15px;
    padding: 24px;
    position: relative;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.c-download__link:hover {
    opacity: 0.7;
}

.c-download__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange);
    border-radius: 15px;
    z-index: -1;
}

.c-download__link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/download_img.png?v=2) no-repeat center center /cover;
    opacity: 0.1;
}

.c-download__content {
    display: flex;
    flex-direction: column;
    padding-right: 63px;
    position: relative;
}

.c-download__content02 {
    display: flex;
    flex-direction: column;
}

.c-download__content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    aspect-ratio: 1 / 1;
    background: url(../img/icon_arrow_circle.svg) no-repeat center center /contain;
    transition: all 0.3s ease 0s;
}

.c-download__link:hover .c-download__content::after {
    transform: translate(4px, -50%);
}
.c-download__title {
    font-size: 18px;
    font-weight: 700;
}

.c-download__text {
    font-weight: 700;
    font-size: 16px;
    line-height: calc(25.6 / 16);
    letter-spacing: calc(0.96 / 16 * 1em);
    margin-top: 16px;
}

.c-download__button {
    margin-top: 16px;
}

.c-download__pagination.swiper-pagination {
    bottom: -28px;
}

.c-download__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 7px!important;
}

.c-download__pagination .swiper-pagination-bullet-active {
    background: #C7C7C7;
}


@media screen and (min-width: 769px) {
    .c-download {
        padding: 110px 0;
    }

    .c-download__container {
        margin-top: 34px;
    }

    .c-download__list {
        gap: 21px;
    }
    
    .c-download__item {
        width: calc(33.333% - 21px * 2 / 3);
    }
}

/* お問い合わせ */
.c-contact {
    padding: 77px 0 115px;
}

.c-contact__form {
    margin-top: 45px;
}

.c-form {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
}
  
.c-form__field+ .c-form__field {
    margin-top: 30px;
}

.c-form__label {
    font-weight: 700;
}

.c-form__name-wrap {
    display: flex;
    gap: 8px;
}

.c-form__required {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    background: #F5901D;
    padding: 2px 6px;
    margin-left: 15px;
    display: inline-block;
}

.c-form__data {
    margin-top: 10px;
}

.c-form__data-acceptance {
    text-align: center;
    }

.c-form__data-acceptance a, .c-form__data-acceptance .wpcf7-list-item-label {
    font-size: 14px;
    font-weight: 700;
}

.c-form__data-acceptance a {
    text-decoration: underline;
    color: var(--color-orange);
}

.c-form__data input::placeholder, .c-form__data textarea::placeholder {
    color: #C4C4C4;
}

.c-form__input,
.c-form__textarea,
.c-form__select 
{
    background-color: #fff;
  cursor: pointer;
  outline: none;
  appearance: none;
  color: var(--color-text);
  border-radius: 5px;
    border: 0.8px solid #D9D9D9;
    padding: 18px 16px;
    width: 100%;
    font-size: 14px;
}

.c-form__radio {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-form__radio .wpcf7-list-item {
    margin-left: 0;
}

.c-form__radio input[type="radio"] {
    width: 1px;
    height: 1px;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.c-form__radio .wpcf7-list-item-label {
    font-weight: 700;
    padding-left: 26px;
    position: relative;
}

.c-form__radio .wpcf7-list-item-label:before, .c-form__radio .wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
}

.c-form__radio .wpcf7-list-item-label:before {
    width: 16px;
    height: 16px;
    border: 1px solid #DEDEDE;
    background-color: #fff;
}

.c-form__radio .wpcf7-list-item-label:after {
    background: var(--color-orange);
    width: 8px;
    height: 8px;
    left: 4px;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.c-form__radio input[type="radio"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;
}

.c-form__select {
    
    background-image: url(../img/icon_select.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    color: #C4C4C4;
    background-color: #fff;
}

.c-form__select option:first-child {
    color: #C4C4C4;
}

.c-form__textarea {
    height: 137px;
}

.c-form__other-input {
    margin-left: 28px;
}

input[type="checkbox"].c-form__checkbox {
    width: 1px;
    height: 1px;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.c-form__checkbox + .wpcf7-list-item-label {
    padding-left: 20px;
    position: relative;
}

.c-form__checkbox + .wpcf7-list-item-label:before, .c-form__checkbox + .wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    
}

.c-form__checkbox + .wpcf7-list-item-label:before {
    width: 16px;
    height: 16px;
    background: #D9D9D9;
    left: -4px;
    top: 3px;
}

.c-form__checkbox + .wpcf7-list-item-label:after {
    width: 10px;
    height: 10px;
    background-color: var(--color-orange);
    opacity: 0;
    left: -1px;
    top: 6px;
    transition: all 0.3s ease 0s;
}

.c-form__checkbox:checked + .wpcf7-list-item-label:after {
    opacity: 1;
}

.c-form__submit-button {
    margin-top: 24px;
    text-align: center;
}

.c-form__submit-input {
    display: inline-block;
    min-width: 174px;
    min-height: 48px;
    transition: opacity 0.3s;
    color: #fff;
    background-color: var(--color-orange);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 80px;
    font-family: var(--font-NotoSansJP-family);
    
}

.c-form__submit-input:hover {
    opacity: 0.7;
}

span.wpcf7-spinner {
    display: none;
  }

  .c-contact__tel {
    margin: 40px auto 0;
    max-width: 483px;
    border-radius: 20px;
    border: 1px solid #F5901D;
    padding:24px 0 16px;
  }

  .c-contact__tel-title {
    text-align: center;
    color: #111;
font-size: 16px;
font-weight: 600;
letter-spacing: 1.6px;
  }

.c-contact__tel-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    width: fit-content;
    margin: -4px auto 0;
    text-align: center;
    color: #F5901D;
    font-family: var(--font-ZenKakuGothicNew-family);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    padding-left: 34px;
    background: url(../img/icon_tel.svg) no-repeat left -5px bottom 5px / contain;
    background-size: 36px;
}

.c-contact__tel-link:hover {
    opacity: 0.7;
}


  @media screen and (min-width: 769px) {
    .c-contact {
        padding: 113px 0 303px;
    }

    .c-contact__form {
        margin-top: 54px;
    }

    .c-form__input,
.c-form__textarea,
.c-form__select {
    font-size: 16px;
}

    .c-form__name-wrap {
        gap: 17px;
    }

    .c-form__radio {
        gap: 24px;
        flex-direction: row;
    }

    .c-form__radio--column {
        flex-direction: column;
        gap: 8px;
    }

    .c-form__field:has(.c-form__data-acceptance) {
        margin-top: 110px;
    }


    .c-form__submit-button {
        margin-top: 44px;
    }

    .c-contact__tel {
        margin: 80px auto 0;

    }

    .c-contact__tel-text {
        font-size: 40px;
    background: url(../img/icon_tel.svg) no-repeat left -5px bottom 7px / contain;
    background-size: 40px;

    }
    
  }

/* ページネーション */
.c-pagination {
    margin: 38px auto 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.c-pagination a {
    transition: all 0.3s ease 0s;
}

.c-pagination a:hover {
    opacity: 0.7;
}

.c-pagination .navigation {
    width: 100%;
}

.c-pagination .pagination__arrow {
    width: 40px;
    height: 40px;
}

.c-pagination .page-numbers {
    width: 33px;
    font-size: 13px;
    font-weight: 600;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    background-color: #fff;
    border: 1px solid var(--color-orange);
}

.c-pagination .page-numbers.next, .c-pagination .page-numbers.prev {
    border: none;
    padding: 0;
}

.c-pagination span.current {
    color: #fff;
    background-color: var(--color-orange);
    }

.c-pagination .page-numbers {
    padding: 0 10px;
}

/* 記事詳細 */
  .c-single-article__content h2 {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-top: 36px;
    margin-bottom: 20px;
  }
  
  .c-single-article__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 71px 0 24px;
  }
  
  .c-single-article__content p {
    margin-bottom: 24px;
  }
  
  .c-single-article__content a {
    text-decoration: underline;
    color: var(--color-orange);
    transition: all 0.3s ease 0s;
  }

  .c-single-article__content a:hover {
    opacity: 0.7;
  }

  .c-single-article__content a.common-btn--404 {
    display: grid;
    text-decoration: none;
    color: #fff;
  }

  .c-single-article__content ul, .c-single-article__content ol {
    margin-bottom: 24px;
  }
  
  .c-single-article__content ul li {
    position: relative;
    padding-left: 1em;
  }
  
  .c-single-article__content ul li::after {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 4px;
    background-color: var(--color-orange);
  }
  
  .c-single-article__content ul li+ li {
    margin-top: 4px;
  }

  .c-single-article__content ol li {
    margin-bottom: 12px;
  }

  .c-single-article__content figure {
    margin-bottom: 40px;

     }

  @media screen and (min-width: 769px) {
    .c-single-article__content h2 {
        font-size: 28px;
    }

    .c-single-article__content h3 {
        font-size: 24px;
    }
   }

/*==================================================
# ヘッダー
==================================================*/
.header {
    background-color: #fff;
    height: 90px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__inner {
    padding: 0 10px;
    height: inherit;
}

.header__column {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    max-width: 95px;
    width: 100%;
}

.header__logo a {
    transition: all 0.3s ease 0s;
}

.header__logo a:hover {
    opacity: 0.7;
}

.header__drawerIcon {
    width: 54px;
    height: 54px;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }  

  .header__drawerIconBar {
    width: 24px;
    height: 1px;
    background-color: var(--color-orange);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  
  .header__drawerIconBar:nth-child(1) {
    top: 22px;  
  }

  .header__drawerIconBar:nth-child(2) {
    top: 30px;
  }
  
  .header__drawerIcon.open .header__drawerIconBar:nth-child(1) {
    top: 27px;
    transform: translateX(-50%) rotate(30deg);
  }

  .header__drawerIcon.open .header__drawerIconBar:nth-child(2) {
    top: 27px;
    transform: translateX(-50%) rotate(-30deg);
  }

  .sp-nav__wrapper {
	height: 100dvh;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 900;
}

.sp-nav__wrapper.open {
	opacity: 1;
	visibility: visible;
}

.sp-nav {
	background-color: var(--color-orange);
    color: #fff;
	height: 100dvh;
	left: 0;
	opacity: 0;
	overflow: scroll;
    padding: 100px 0 20px;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 299;
}

.sp-nav.open {
	opacity: 1;
	visibility: visible;
}

.sp-nav__inner {
	height: 100%;
	padding: 0 20px;
    max-width: 400px;
    margin: 0 auto;
}

.sp-nav__items {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.sp-nav__item {
	width: 100%;
}

.sp-nav__item + .sp-nav__item {
	padding-top: 10px;
}


.sp-nav__accordion-title::before,
.sp-nav__accordion-title::after {
	background: #fff;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	right: 20px;
	top: 50%;
	transition: 0.3s;
	width: 14px;
}

.sp-nav__accordion-title::before {
	transform: translateY(-50%);
}

.sp-nav__accordion-title::after {
	transform: translateY(-50%) rotate(90deg);
}

.sp-nav__accordion-title.is-open::after {
	transform: translateY(-50%);
}


.sp-nav__accordion-title, .sp-nav__link {
	border-bottom: 1px solid #fff;
	display: block;
	font-weight: 500;
	padding-bottom: 10px;
	position: relative;
}


.sp-nav__accordion-items {
	background-color: #fff;
	display: none;
	margin-top: 10px;
}

.sp-nav__accordion-items a {
	color: var(--color-orange);
	display: block;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 10px 10px;
}


.sp-nav__footer-list {
    margin-top: 50px;
}

.sp-nav__footer-item + .sp-nav__footer-item {
	margin-top: 10px;
}

.sp-nav__footer-item {
}

.sp-nav__logo {
	margin: 20px auto;
    max-width: 140px;
}

.sp-nav__logo-link {
	display: block;
	padding: 10px;
	text-align: center;
}

.header__nav {
    display: none;
}

@media screen and (min-width: 769px) {

    .header__logo {
        max-width: clamp(180px, calc(270 / 1440 * 100vw), 270px);
    }

    .sp-nav__footer-link.c-button--contact {
        background-color: var(--color-text);
    border: 2px solid var(--color-text);
    } 

}

@media screen and (min-width: 1024px) {
    .header {
        height: 80px;
        transition: all 0.3s ease 0s;
    }

    

    .header__inner {
        padding: 0 10px;
    }


    .header__nav-list {
        display: flex;
        align-items: center;
    }

    .header__nav-modal-wrap {
        height: inherit;
        position: relative;
    }

    .header__nav-modal-title {
        transition: all 0.3s ease 0s;
        font-size: 15px;
        padding: 12px 24px;
        font-weight: 700;
        display: flex;
    align-items: center;
    }

    .header__nav-modal-title--white {
        color: #fff;
    }

    .header.is-scrolled .header__nav-modal-title--white {
        color: var(--color-text);
    }


.header__nav-modal-title::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(135deg);
    transition: .3s;
}

.header__nav-modal-title--white::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

.header.is-scrolled .header__nav-modal-title--white::before {
    border-top: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
}

.header__nav-modal-wrap:hover .header__nav-modal-title::before {
    top: 21px;
    transform: rotate(-45deg);
}

.header__nav-modal {
    padding: 10px 0;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    min-width: 222px;
    background: var(--color-orange);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.header__nav-modal-wrap:hover .header__nav-modal {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) rotateX(0deg);
}

.header__nav-modal-link {
    padding: 12px 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: block;
    position: relative;
    transition: all 0.3s ease 0s;
    height: inherit;
    font-size: 15px;
}

.header__nav-modal-link:hover {
    opacity: 0.7;
}

    .header__nav-link {
        display: block;
        padding: 12px clamp(12px, calc(20 / 1440 * 100vw), 20px);
        font-size: clamp(14px, calc(15 / 1440 * 100vw), 15px);
        font-weight: 700;
        transition: all 0.3s ease 0s;
    }

    .header__nav-link:hover {
        opacity: 0.7;
    }

    .header__nav-link--white {
        color: #fff;
    }

    .header__cta {
        margin-left: 12px;
        display: flex;
        align-items: center;
        gap: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .header.is-mv-page {
        background: transparent;
    }

    .header.is-scrolled {
        background-color: #fff;
    }

    .header__logo {

        margin-right: 10px;
    }

    .header__nav {
        display: block;
        flex: 1;
    }

    .header__nav-list {
        justify-content: flex-end;

    }

    .header.is-scrolled .header__nav-link--white {
        color: var(--color-text);
    }

    .header__drawerIcon {
        display: none;
    }

    .sp-nav__wrapper {
        display: none;
    }

    .header__cta {
        width: 100%;
        max-width: 360px;
        flex: 1;

    }

    .header__cta-item {
        width: 100%;
    }
    .header__cta-item--download {
        max-width: 160px;
    }

    .header__cta-item--contact {
        max-width: 174px;
    }
}


/*==================================================
# フッター
==================================================*/
.footer {
    background: var(--color-orange);
    padding: 24px 0 55px;
    position: relative;
    z-index: 1;
}

.footer:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -90%);
    max-width: 375px;
    aspect-ratio: 379 / 106;
    background: url(../img/footer_img.png) no-repeat center center /contain;
}

.footer__logo {
    max-width: 142px;
    margin: 0 auto;
}

.footer__logo-link {
    transition: all 0.3s ease 0s;
}

.footer__logo-link:hover {
    opacity: 0.7;
}

.footer__cta {
    margin-top: 12px;

}

.footer__menu-column {
    display: flex;
    gap: 20px;
    margin-top: 38px;
}

.footer__menu-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__menu-list.pc-only {
    display: none;
}

.footer__menu-link {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease 0s;
    display: block;
}

.footer__menu-link:hover {
    opacity: 0.7;
}

.footer__right {
    margin-top: 42px;
}

.footer__copy {
    text-align: center;

}

.footer__copy-text {
    color: #FFF;
    font-family: Montserrat;
    font-size: 11px;
    line-height: 11px; /* 100% */
    letter-spacing: 0.44px;

}

.footer__page-top {
    margin-top: 16px;
    text-align: right;
}

.footer__page-top-text {
    color: #FFF;
    font-family: var(--font-Montserrat-family);
    font-size: 12px;
    line-height: calc(18 / 12);
    letter-spacing: calc(0.36 / 12 * 1em);
    padding-right: 32px;
    position: relative;
}

.footer__page-top-text::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: url(../img/icon_arrow_to-top.svg) no-repeat center center /contain;
}

@media screen and (min-width: 769px) {
    .footer {
        padding: 72px 0 70px;
    }

    .footer:before {
        max-width: 800px;
        transform: translate(-50%, -99%);
        top: 15px;
    }

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

    .footer__left {
        width: calc(642 / 1000 * 100%);
        position: relative;
    }

    .footer__left::before {
        content: "";
        position: absolute;
        top: 50%;
        right: -4%;
        transform: translateY(-50%);
        width: 1px;
        height: 277px;
        background: #fff;
    }

    .footer__menu-column {
        gap: clamp(20px, calc(40 / 1440 * 100vw), 40px);
    }

    .footer__menu-list.pc-only {
        display: flex;
    }

    .footer__menu-list {
        gap: 0;
    }

    .footer__menu-item + .footer__menu-item {
        margin-top: 0;
    }

    .footer__menu-link {
        padding: 12px 0;
        font-size: clamp(14px, calc(17 / 1440 * 100vw), 17px);
        border-bottom: none;
        font-weight: 400;
    }

    .footer__right {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        width: calc(284 / 1000 * 100%);

    }

    .footer__logo {
        margin-left: 0;
    }

    .footer__copy {
        margin-top: 85px;

    }
    .footer__copy-text {
        font-size: 11px;
    }
    
}



/*==================================================
# トップページ
==================================================*/
.index-bg {
        overflow: hidden;
        position: relative;
        z-index: 1;
        background: var(--color-orange);
    }


    .index-bg::after {
        content: "";
        position: absolute;
        top: 28%;
        left: 53%;
        transform: translate(-11%, -50%);
        width: calc(440 / 375 * 100vw);
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background-color: #F08914;
        z-index: -1;
    }

@media screen and (min-width: 1024px) {

    .index-bg::after {
        width: calc(800 / 1440 * 100vw);
        top: 46%;
    left: 68%;
    }
}

/* MV */
.index-mv {
    padding: 16px 0 60px;
    position: relative;
    z-index: 1;
}

.index-mv::before {
    content: "";
    position: absolute;
    bottom: 206px;
    left: 50%;
    transform: translateX(-56%);
    width: calc(720 / 375 * 100vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #fff;
    z-index: -1;
}
.index-mv__inner {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

.index-mv__en-title {
    color: var(--color-orange);
    font-family: var(--font-Montserrat-family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: calc(0.72 / 12 * 1em);
}

.index-mv__title {
    font-family: var(--font-ZenKakuGothicNew-family);
    color: #111;
    font-size: 40px;
    font-weight: 700;
    line-height: calc(54 / 40);
    letter-spacing: calc(2.8 / 40 * 1em);
    margin-top: 2px;
}

.index-mv__text {
    margin-top: 12px;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: calc(22.4 / 13);
    letter-spacing: calc(0.84 / 13 * 1em);

}

.index-mv__image {
    margin: 20px calc(50% - 50vw) 0;
    width: 100vw;
}

.index-mv__cta {
    margin-top: 18px;
}

@media screen and (min-width: 769px) {
    .index-mv {
        padding: 96px 0 200px;
        background: none;
    }

    .index-mv::before {
        bottom: 0;
        width: calc(2998 / 1440 * 100vw);
        z-index: 0;
    }


    .index-mv__inner {
        display: flex;
        align-items: center;
        max-width: 1191px;
        padding: 0 30px 0 72px;
        position: relative;
    }

    .index-mv__content {
        width: 100%;
        max-width: 476px;
        min-width: 420px;
        flex-shrink: 0;
    }

    .index-mv__title {
        font-size: 54px;
        margin-top: 16px;
        line-height: calc(64 / 54);
    }

    .index-mv__text {
        margin-top: 22px;
        font-size: 14px;
    }

    .index-mv__image {
        margin: 0 0 0 -55px;
    }

    .index-mv__cta {
        margin-top: 26px;
    }

    .index-mv__scroll {
        position: absolute;
        bottom: -200px;
        right: -80px;
    }

    .index-mv__scroll span {
        color: #fff;
        font-size: 12px;
        font-family: var(--font-Montserrat-family);
        font-weight: 500;
        position: relative;
        writing-mode: vertical-rl;
        padding-top: 165px;
    }

    .index-mv__scroll span::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 150px;
        background: #fff;
        animation: scroll-down 2s infinite;
    }
    
    @keyframes scroll-down {
        0% {
            transform: scale(1, 0);
            transform-origin: 0 0;
        }
        50% {
            transform: scale(1, 1);
            transform-origin: 0 0;
        }
        50.1% {
            transform: scale(1, 1);
            transform-origin: 0 100%;
        }
        100% {
            transform: scale(1, 0);
            transform-origin: 0 100%;
        }
    }
}

/* サービス */
.index-service {
    padding-bottom: 100px;
}

.index-service__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 27px;
}

.index-service__link {
    display: block;
    transition: all 0.3s ease 0s;
}

.index-service__link:hover {
    opacity: 0.7;
}

.index-service__image {
    border-radius: 20px;
    background: #FFF;
    padding: 12px 44px;
}

.index-service__content {
    margin-top: 16px;
    position: relative;
    padding-right: 64px;
}

.index-service__content::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}

.index-service__content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13.5px;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13 / 10;
    background: url(../img/icon_arrow.svg) no-repeat center center /contain;
    transition: all 0.3s ease 0s;
}

.index-service__link:hover .index-service__content::before {
    transform: translate(4px, -50%);
}

.index-service__link:hover .index-service__content::after {
    transform: translateY(-50%) translateX(4px);
}

.index-service__title {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: calc(40 / 20);
    letter-spacing: calc(1.6 / 20 * 1em);
}

.index-service__text {
    margin-top: 6px;
    color: #FFF;
    font-weight: 700;
    line-height: calc(22.4 / 14);
    letter-spacing: calc(0.84 / 14 * 1em);
}

@media screen and (min-width: 769px) {
    .index-service {
        padding-top: 54px;
        position: relative;
        z-index: 1;
    }


    .index-service__list {
        margin-top: 53px;
        gap: calc(76 / 1000 * 100%);
        flex-direction: row;
    }

    .index-service__item {
        flex: 1;
    }

    .index-service__image img {
        max-width: 313px;
        margin: 0 auto;
    }

    .index-service__content {
        margin-top: 30px;
        padding-right: 68px;
    }

    .index-service__title {
        font-size: 24px;
    }

    .index-service__text {
        margin-top: 16px;
        font-size: 14px;
    }
}


/* 3つの強み */
.index-feature {
    padding: 63px 0 72px;

}

.index-feature__list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}


.index-feature__title {
    color: var(--color-orange);
    font-size: 18px;
    font-weight: 700;
    line-height: calc(26 / 18);
    letter-spacing: calc(1.6 / 18 * 1em);
}

.index-feature__text {
    margin-top: 16px;
    font-weight: 700;
    line-height: calc(26 / 14);
    letter-spacing: calc(0.84 / 14 * 1em);
}

.index-feature__image {
    margin-top: 30px;
    padding: 0 42px;
}

@media screen and (min-width: 769px) {
    .index-feature {
        padding: 105px 0 88px;
    }

    .index-feature__list {
        margin: 43px auto 0;
        gap: 108px;
        max-width: 824px;
    }

    .index-feature__item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .index-feature__item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .index-feature__content {
        width: calc(396 / 824 * 100%);
    }

    .index-feature__title {
        font-size: 24px;
    }

    .index-feature__text {
        margin-top: 20px;
        font-size: 14px;
    }

    .index-feature__image {
        margin-top: 0;
        padding: 0;
        width: calc(336 / 824 * 100%);
    }

}


/* お客様の声 */
.index-voice {
    padding: 65px 0 85px;
    background: #F7F7F7;
}

.index-voice__list {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.index-voice__head {
    border-radius: 20px 20px 0px 0px;
    background: #F5901D;
    padding: 10px;
    display: flex;
    align-items: center;
}

.index-voice__label {
    font-size: 13px;
    font-weight: 700;
    line-height: calc(16 / 13);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-orange);
    border-radius: 8px;
    background: #FFF;
    padding: 4px 6px;
    flex-shrink: 0;
    position: relative;
}

.index-voice__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
    width: 10px;
    aspect-ratio: 7.45 / 10;
    background: url(../img/icon_balloon.svg) no-repeat center center /contain;
}

.index-voice__label span {
    font-family: var(--font-Montserrat-family);
    font-size: 12px;
    font-weight: 700;
    line-height: calc(16 / 12);
    letter-spacing: calc(0.36 / 12 * 1em);
}

.index-voice__problem {
    color: #FFF;
    font-weight: 700;
    line-height: calc(20 / 14);
    letter-spacing: calc(0.14 / 14 * 1em);
    padding-left: 40px;
    position: relative;
}

.index-voice__problem::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 8px;
    aspect-ratio: 25 / 33;
    width: 25px;
    background: url(../img/icon_traced.svg) no-repeat center center /contain;
}

.index-voice__column {
    border-radius: 0px 0px 20px 20px;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(64, 50, 0, 0.10);
    padding: 16px 18px 32px;

}


.index-voice__title {
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 700;
    line-height: calc(24 / 16);
    letter-spacing: calc(0.48 / 16 * 1em);
}

.index-voice__text {
    margin-top: 16px;
    font-weight: 700;
    line-height: calc(26 / 14);
    letter-spacing: calc(0.42 / 14 * 1em);
}

.index-voice__image {
    margin: 10px auto 0;
    max-width: 165px;

}

@media screen and (min-width: 769px) {
    .index-voice {
        padding: 108px 0 132px;
    }

    .index-voice__list {
        margin-top: 66px;
        gap: 80px;
    }

    .index-voice__head {
        padding: 15px 45px;
    }

    .index-voice__label {
        font-size: 14px;
        letter-spacing: 0;
    }

    .index-voice__problem {
        font-size: 18px;
        padding-left: 57px;
    }

    .index-voice__problem::before {
        top: -7px;
        left: 18px;
        width: 32px;
    }

    .index-voice__column {
        padding: 30px 47px 40px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .index-voice__body {
        width: calc(640 / 906 * 100%);

    }

    .index-voice__title {
        font-size: 24px;
    }

    .index-voice__text {
        margin-top: 24px;
    }

    .index-voice__image {
        margin-top: 0;
        width: calc(226 / 906 * 100%);
        max-width: 226px;

    }
}

/* ご利用までの流れ */
.index-flow {
    padding: 74px 0;
    background-color: var(--color-orange);
}

.index-flow__list {
    margin: 66px auto 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 600px;
}

.index-flow__item {
    border-radius: 10px;
    background: #FFF;
    position: relative;
    padding: 13px 20px 22px;
    z-index: 1;
}

.index-flow__item:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid #9B5505;

}

.index-flow__number {
    color: var(--color-orange);
    font-family: var(--font-Montserrat-family);
    font-size: 24px;
    font-weight: 600;
    line-height: calc(48 / 24);
    letter-spacing: calc(1.44 / 24 * 1em);
    width: 75px;
    height: 75px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%);
    padding-bottom: 16px;
    z-index: -1;
}

.index-flow__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-orange);
    line-height: calc(36 / 18);
    letter-spacing: calc(0.54 / 18 * 1em);
    text-align: center;
}

.index-flow__text {
    margin-top: 6px;
    font-weight: 700;
    line-height: calc(22 / 14);
    letter-spacing: calc(0.42 / 14 * 1em);
}

.index-flow__image {
    margin-top: 12px;

}

.index-flow__image img {
    border-radius: 10px;
    aspect-ratio: 308 / 134;
    object-fit: cover;
}

@media screen and (min-width: 1024px) {
    .index-flow {
        padding: 112px 0 106px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .index-flow:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: -16%;
        width: calc(800 / 1440 * 100%);
        transform: translateY(50%);
        aspect-ratio: 1 / 1;
        background-color: #F08914;
        border-radius: 50%;
        z-index: -1;
    }

    .index-flow__list {
        margin-top: 82px;
        gap: 25px;
        flex-wrap: wrap;
        flex-direction: row;
        max-width: 100%;
    }

    .index-flow__item {
        padding: 28px 12px;
        width: 100%;
        width: calc(25% - 25px * 3 / 4);
        display: flex;
        flex-direction: column;
    }

    .index-flow__item:not(:last-child):before {
        bottom: 50%;
        left: auto;
        right: -23px;
        transform: translateY(50%) rotate(270deg);
    }

    .index-flow__body {
        padding-bottom: 12px;
    }

    .index-flow__number {
        font-size: 32px;

    }

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

    .index-flow__image {
        margin-top: auto;
    }

    .index-flow__image img {
        aspect-ratio: 191 / 134;
    }
}

/*==================================================
# オンサイトページ
==================================================*/
.c-page-head {
    padding: 26px 0 115px;
    position: relative;
    z-index: 1;
}

.c-page-head:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
     z-index: -1;
}

.p-onsite-head:before {
    background: url(../img/p-onsite-head_bg.png) no-repeat left bottom /cover;
}

.c-page-head::after {
    content: "";
    position: absolute;
    top: 132px;
    right: 0;
    aspect-ratio: 280 / 544;
    width: 140px;
    background: url(../img/page-head_bg.png) no-repeat center center /contain;
    z-index: -1;
}

.c-page-head__inner {
    padding: 0 12px 0 15px;
    max-width: 400px;
    margin: 0 auto;
}

.c-page-head__en-title {
    color: #FFF;
    font-family: var(--font-Montserrat-family);
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 0.72px;
}

.c-page-head__title {
    color: #FFF;
    font-family: var(--font-ZenKakuGothicNew-family);
    font-size: 34px;
    font-weight: 700;
    line-height: calc(44 / 34);
    letter-spacing: calc(2.8 / 34 * 1em);
    margin-top: 4px;
}

.c-page-head__text {
    font-size: 13px;
    font-weight: 700;
    line-height: calc(22.4 / 13);
    color: #fff;
    margin-top: 12px;
    letter-spacing: calc(0.84 / 13 * 1em);
}

@media screen and (min-width: 769px) {
    .c-page-head {
        padding: 70px 0 160px;
    }

    .p-onsite-head:before {
        background: url(../img/p-onsite-head_bg_pc.png) no-repeat left bottom /cover;
    }

    .c-page-head::after {
        background: url(../img/page-head_bg_pc.png) no-repeat center center /contain;
        aspect-ratio: 978 / 1238;
        width: 489px;
        top: 0;
    }

    .c-page-head__inner {
        padding: 0 30px;
        max-width: 1060px;
    }

    .c-page-head__title {
        font-size: 44px;
        margin-top: 7px;
    }

    .c-page-head__text {
        margin-top: 16px;
        font-size: 14px;
    }
}

/* 2種類の支援方法 */
.p-onsite-methods {
    padding: 32px 0 44px;
}

.c-methods {
    position: relative;
    z-index: 1;
}

.c-methods__list {
    margin-top: 22px;

}

.c-methods__item + .c-methods__item {
    margin-top: 48px;
}

.c-methods__head {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    color: var(--color-orange);

}

.c-methods__number {
font-family: var(--font-ZenKakuGothicNew-family);
font-size: 60px;
font-weight: 700;
line-height: 1;
letter-spacing: calc(1.6 / 60 * 1em);

}


.c-methods__title {
    font-size: 24px;
    font-weight: 700;
}

.c-methods__title-text {
    font-weight: 700;
    display: block;
    margin-top: -4px;
}

.c-methods__info {
    margin-top: 24px;
}

.c-methods__info-term {
    border-radius: 7px;
    background: var(--color-orange);
    padding: 7px 10px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.c-methods__info-term::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top: 8px solid var(--color-orange);
}

.c-methods__info-description {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 30px;
}

.c-methods__info-description:last-child {
    padding-bottom: 0;
}

.c-methods__image {
    max-width: 348px;
    margin: 6px auto 0;
}

.p-onsite-methods .c-methods__image {
    margin-top: 36px;
}

.c-methods__image-text {
    font-weight: 700;
    margin-top: 9px;
    text-align: center;
    display: block;
}

@media screen and (min-width: 769px) {
    .p-onsite-methods {
        padding: 92px 0 114px;
    }

    .c-methods__list {
        margin-top: 40px;
    }

    .c-methods__item {
        display: flex;
        gap: calc(37 / 1000 * 100%);

    }

    .p-offsite-methods .c-methods__item {
        align-items: center;
    }

    .c-methods__item + .c-methods__item {
        margin-top: 70px;
        flex-direction: row-reverse;
    }

    .c-methods__content {
        width: calc(535 / 1000 * 100%);
    }

    .c-methods__item:first-child .c-methods__content {
        padding-top: 45px;
    }

    .c-methods__item:nth-child(2) .c-methods__content {
        padding-bottom: 16px;
    }

    .c-methods__head {
        gap: 15px;
    }

    .c-methods__number {
        font-size: 70px;
    }

    .c-methods__title {
        font-size: 32px;
    }

    .c-methods__info {
        margin-top: 32px;
    }

    .c-methods__info-term {
        padding: 5px 17px;
        font-size: 18px;
    }

    .c-methods__image {
        max-width: 428px;
        width: calc(428 / 1000 * 100%);
        margin: 0;
    }
}


/* 支援可能な人材タイプ */
.p-onsite-people {
    padding: 64px 0 72px;
    background: #F7F7F7;
}

.p-onsite-people__list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.p-onsite-people__image {
    max-width: 348px;
    margin: 0 auto;
}

.p-onsite-people__body {
    margin-top: 10px;

}

.p-onsite-people__title {
    border-radius: 10px 10px 0px 0px;
    background: #0F0F0F;
    padding: 14px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;

}

.p-onsite-people__sub-list {
    border-radius: 0px 0px 10px 10px;
    background: #fff;
    padding: 16px 18px 16px 32px;
    list-style: disc;

}

.p-onsite-people__sub-item {
    font-weight: 600;
    line-height: calc(20 / 14);
    letter-spacing: calc(0.84 / 14 * 1em);
    font-size: 14px;
}

@media screen and (min-width: 769px) {
    .p-onsite-people {
        padding: 122px 0 125px;
    }

    .p-onsite-people__list {
        margin-top: 50px;
        flex-direction: row;
        gap: calc(55 / 1000 * 100%);
    }

    .p-onsite-people__item {
        width: calc(100% / 3 - calc(55px * 2 / 3));
    }

    .p-onsite-people__image {
        max-width: 100%;
    }

}

/* 開発領域 */
.p-onsite-dev-area {
    background: linear-gradient(180deg, #F7F7F7 0%, #F7F7F7 50%, var(--color-orange) 50%, var(--color-orange) 100%);
}
@media screen and (min-width: 769px) {
.p-onsite-dev-area {
    background: #F7F7F7;
}

}

/* 事例紹介 */

.c-cases {
    padding: 64px 0 78px;
    background-color: #F7F7F7;

}


.c-cases__list {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}


.c-cases__head {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-text);
    padding: 12px 7px;
    border-radius: 10px;
    position: relative;
}

.c-cases__head:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 51px;
    aspect-ratio: 51 / 38;
    background: url(../img/icon_arrow_down_gray.svg) no-repeat center center /contain;

}

.c-cases__label {
    font-size: 13px;
    font-weight: 700;
    line-height: calc(16 / 13);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
   
    border-radius: 8px;
    padding: 4px 8px;
    flex-shrink: 0;
    position: relative;
}

.c-cases__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
    width: 10px;
    aspect-ratio: 7.45 / 10;
    background: url(../img/icon_balloon.svg) no-repeat center center /contain;
}

.c-cases__label span {
    font-family: var(--font-Montserrat-family);
    font-size: 12px;
    font-weight: 700;
    line-height: calc(16 / 12);
    letter-spacing: calc(0.36 / 12 * 1em);
}

.c-cases__problem {
    color: #fff; 
    font-weight: 700;
    line-height: calc(20 / 14);
    letter-spacing: calc(0.14 / 14 * 1em);
    padding-left: 33px;
    position: relative;
}

.c-cases__problem::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 2px;
    aspect-ratio: 25 / 33;
    width: 25px;
    background: url(../img/icon_traced.svg) no-repeat center center /contain;
}

.c-cases__body {
    margin-top: 47px;

}

.c-cases__title {
    border-radius: 20px 20px 0px 0px;
    background: #F5901D;
    padding: 14px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: calc(22 / 16);
    letter-spacing: calc(0.48 / 16 * 1em);
}

.c-cases__content {
     border-radius: 0px 0px 20px 20px;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(64, 50, 0, 0.10);
    padding: 20px 17px;

}

.c-cases__text {
    font-weight: 700;
    line-height: calc(24 / 14);
    letter-spacing: calc(0.42 / 14 * 1em);
}

.c-cases__image {
    max-width: 202px;
    margin: 0 auto;
}

.p-offsite-voice .c-cases__image {
    margin-top: 12px;
}

.p-offsite-voice .c-cases__item:nth-child(2) .c-cases__image {
    max-width: 154px;
}



@media screen and (min-width: 769px) {
    .c-cases {
        padding: 108px 0 78px;
        background: #F6F6F6;
    }

    .c-cases__list { 
        margin-top: 60px;
        flex-direction: row;
        gap: calc(70 / 1000 * 100%);
    }

    .c-cases__item {
        flex: 1;
        display: flex;
    flex-direction: column;
    }

    .c-cases__head {
        padding: 17px 13px;
    }

    .c-cases__head:before {
        width: 63px;
    }

    .c-cases__problem {
        padding-left: 40px;
        font-size: 14px;

    }
    .c-cases__problem::before {
        top: 15px;
        left: 10px;
        width: 23px;
     }

     .c-cases__body {
        margin-top: 53px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
     }

     .c-cases__title {
        padding: 20px 28px;
        font-size: 18px;
     }

     .c-cases__content {
        padding: 17px 26px 17px 34px;
        display: flex;
        flex-grow: 1;
     }

     .c-cases__image {
        max-width: none;
        float: right;
        width: var(--img-width); 
        height: 100%; 
        shape-outside: inset(calc(100% - var(--img-height)) 0 0 0); 
        object-fit: contain;
        object-position: bottom;
     }

     .c-cases__item:first-child .c-cases__image {
        --img-width: 200px;
        --img-height: 202px;
     }

     .c-cases__item:nth-child(2) .c-cases__image {
        --img-width: 189px;
        --img-height: 189px;
     }

     .p-offsite-voice .c-cases__image {
        margin-top: 0;
     }

     .p-offsite-voice .c-cases__item:nth-child(2) .c-cases__image {
        max-width: 100%;
    }



}


/* 拠点 */
.c-area {
    padding: 76px 0 87px;
    background: var(--color-orange);

}

.c-area__list {
    margin-top: 52px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
}

.c-area__item {
    width: calc(50% - 6px);
}

.c-area__image img {
    border-radius: 10px;
    aspect-ratio: 169 / 128;
    object-fit: cover;
}

.c-area__title {
    margin-top: 8px;
    font-weight: 700;
    color: #fff;
}

@media screen and (min-width: 769px) {
    .c-area {
        padding: 112px 0 86px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .c-area::before {
        content: "";
        position: absolute;
        top: 144px;
        right: -241px;
        width: 800px;
        aspect-ratio: 1 / 1;
        background: #F08914;
        border-radius: 50%;
        z-index: -1;
    }
    .c-area__list {
        margin-top: 56px;
        gap: 42px 80px;
    }

    .c-area__list--col3 {
        gap: 34px;
    }

    .c-area__item {
        width: calc(50% - 40px);
    }

    .c-area__list--col3 .c-area__item {
        width: calc(100% / 3 - calc(34px * 2 / 3));
    }

    .c-area__image img {
        aspect-ratio: 459 / 282;
    }

    .c-area__title {
        margin-top: 20px;
        font-size: 24px;
    }

}



/*==================================================
# オフサイト
==================================================*/

.p-offsite-head:before {
    background: url(../img/p-offsite-head_bg.png) no-repeat left bottom /cover;
    }

@media screen and (min-width: 769px) {
    .p-offsite-head:before {
        background: url(../img/p-offsite-head_bg_pc.png) no-repeat left bottom /cover;
    }
    .c-page-head__text {
        max-width: 764px;
    }
}

/* 選べる2つの契約体型 */
    .p-offsite-methods {
        padding: 64px 0 44px;
    }

@media screen and (min-width: 769px) {
    .p-offsite-methods {
        padding: 72px 0 133px;
    }
}

/* 開発拠点 */
.p-offsite-base {
    padding: 64px 0 28px;
    background: #F7F7F7;
}


.p-offsite-base__list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-offsite-base__item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(198, 198, 198, 0.35);
    padding: 16px 20px 24px;
}

.p-offsite-base__image {
    max-width: 348px;
    margin: 0 auto;
}

.p-offsite-base__title {
    color: var(--color-orange);
    font-size: 24px;
    font-weight: 700;
    line-height: calc(34 / 24);
    letter-spacing: calc(0.84 / 24 * 1em);
}

.p-offsite-base__text {
    font-weight: 600;
    margin-top: 12px;
}

.p-offsite-base__sub-title {
    color: #111;
    font-size: 16px;
    font-weight: 700;

}

.p-offsite-base__sub-content {
    margin-top: 22px;
    border-radius: 20px;
    background: #F7F7F7;
    padding: 18px;
}

.p-offsite-base__sub-list {
    
}


.p-offsite-base__sub-item {
    font-size: 14px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 24px;
    position: relative;

}

.p-offsite-base__sub-item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    aspect-ratio: 18 / 18;
    background: url(../img/icon_check.svg) no-repeat center center /contain;
}

@media screen and (min-width: 769px) {
    .p-offsite-base {
        padding: 116px 0 144px;
    }

    
    .p-offsite-base__list {
        margin-top: 54px;
        gap: calc(84 / 1000 * 100%);
        flex-direction: row;
    }

    .p-offsite-base__item {
        padding: 24px 24px 40px;
        flex: 1;
    }

    .p-offsite-base__image {
        max-width: 420px;
    }

    .p-offsite-base__text {
        font-size: 14px;
    }

    .p-offsite-base__sub-content {
        margin-top: 28px;
        padding: 18px 23px;
    }


}

/* 開発対応領域 */
.p-offsite-dev-area {
    background: linear-gradient(180deg, #F7F7F7 0%, #F7F7F7 50%, var(--color-orange) 50%, var(--color-orange) 100%);
}

@media screen and (min-width: 769px) {
    .p-offsite-dev-area {
       background: #F7F7F7;
    }
}

/* 拠点 */

@media screen and (min-width: 769px) {
    .p-offsite-area {
        padding: 112px 0 115px;
    }
}

/* 事例紹介 */
@media screen and (min-width: 769px) {
    .p-offsite-voice {
        padding: 108px 0 119px;

    }

    .p-offsite-voice .c-cases__item:first-child .c-cases__image, .p-offsite-voice .c-cases__item:nth-child(2) .c-cases__image {
        --img-width: 180px;
        --img-height: 180px;
     }
}

/*==================================================
# お役立ちコラム
==================================================*/
.home-head:before {
    background: url(../img/home-head_bg.png) no-repeat left bottom /cover;
   
}

@media screen and (min-width: 769px) {
    .home-head:before {
        background: url(../img/home-head_bg_pc.png) no-repeat left bottom /cover;
    }
}

.home-article {
    padding-top: 50px;
    position: relative;
    z-index: 1;
}

.c-search-box input {
    border: 1px solid #AFAFAF;
    padding: 17px 16px 17px 44px;
    border-radius: 8px;
    background-image: url(../img/icon_search.svg);
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 16px 16px;
    width: 100%;
    font-size: 16px;
}

.c-search-box input:placeholder {
    color: #AFAFAF;
}

.home-article__column {

    margin-top: 33px;
    padding-bottom: 57px;

}

.home-article__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.home-article__tag-link {
    border-radius: 4px;
    border: 1px solid #333;
    background: #FFF;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px ;
    display: block;
    transition: all 0.3s ease 0s;
}

.home-article__tag-link:hover {
    opacity: 0.7;
}

.c-article-column {
    display: flex;
    flex-direction: column;
    gap: 56px;
}


.c-article-column__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.c-blog-card__link {
    display: block;
    transition: all 0.3s ease 0s;
}

.c-blog-card__link:hover {
    opacity: 0.7;
}

.c-blog-card__image img {
    border-radius: 10px;
    aspect-ratio: 351 / 226;
    object-fit: cover;
}

.c-blog-card__body {
    margin-top: 9px;
   padding-right: 50px;
    position: relative;
}


.c-blog-card__body::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 37px;
    aspect-ratio: 1 / 1;
    background: url(../img/icon_arrow_circle_orange.svg) no-repeat center center /contain;
    transition: all 0.3s ease 0s;
}

.c-blog-card__link:hover .c-blog-card__body::after {
    transform: translate(4px,-50%);
}

.c-blog-card__date {
    font-size: 12px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.3px;
    display: block;
}

.c-blog-card__title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: calc(1.6 / 18 * 1em);
    margin-top: 4px;
}

.c-blog-card__text {
    font-weight: 700;
    margin-top: 8px;
    font-size: 14px;
    
}


.c-blog-card__tag-list {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
}

.c-blog-card__tag-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: calc(0.84 / 12 * 1em);
    display: block;
    transition: all 0.3s ease 0s;
}

.c-blog-card__tag-link:hover {
    opacity: 0.7;
}

.home-article .c-download, .p-single + .c-download {
    padding-bottom: 180px;
}

@media screen and (min-width: 769px) {
    .home-article {
        padding-top: 78px;
    }

    .home-article__column {
        margin-top: 57px;
    }

    .home-article__tag-list {
        gap: 15px;
    }

    .home-article__tag-link {
        font-size: 14px;
        padding: 12px 12px 12px 14px;
    }

    .c-article-column {
        
        flex-direction: row;
        justify-content: space-between;
    }

    .c-article-column__content {
        width: calc(683 / 1000 * 100%);
    }

    .c-article-column__list {
        gap: 44px 37px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .c-article-column__item {
        width: calc(50% - 37px / 2);
    }

    .c-blog-card__image img {
        aspect-ratio: 323 / 226;
     }

     .c-blog-card__title {
        font-size: 20px;
     }

     .c-search-box input {
        padding-top: 16px;
        padding-bottom: 16px;
     }

     .home-article .c-download, .p-single + .c-download {
        padding-bottom: 308px;
     }


}

/* サイドバー */
.c-sidebar {
    position: relative;
    z-index: 1;
}

.c-sidebar-title {
    font-weight: 500;
    font-size: 14px;
}

.c-sidebar__category-list {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.c-sidebar__category-item {
    width: calc(100% / 3 - 7px * 2 / 3);

}

.c-sidebar__category-link {
    position: relative;
    z-index: 1;
    display: block;
    transition: all 0.3s ease 0s;
    border-radius: 8px;
}

.c-sidebar__category-link:hover {
    opacity: 0.7;
}

.c-sidebar__category-link img {
    border-radius: 8px;
    aspect-ratio: 111 / 86;
    object-fit: cover;
}

.c-sidebar__category-text {
    color: #FFF;
    text-align: center;
    font-weight: 700;
    line-height: calc(20 / 14);
    letter-spacing: calc(1 / 14 * 1em);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 88px;
    display: block;
    width: 100%;
}

.c-sidebar-ranking {
    margin-top: 35px;

}

.c-sidebar__ranking-list {
    margin-top: 15px;

}

.c-sidebar__ranking-item + .c-sidebar__ranking-item {
    margin-top: 26px;

}

.c-sidebar__ranking-link {
    display: block;
    transition: all 0.3s ease 0s;
}

.c-sidebar__ranking-link:hover {
    opacity: 0.7;
}

.c-sidebar__ranking-thumb img {
    aspect-ratio: 350 / 137;
    object-fit: cover;
    border-radius: 10px;

}

.c-sidebar__ranking-title {
    margin-top: 13px;
    font-weight: 700;
    font-size: 14px;
}



.c-sidebar__cta {
    margin: 36px auto 0;
    max-width: 244px;
}

.c-sidebar__cta-item + .c-sidebar__cta-item {
    margin-top: 12px;
}

.c-sidebar__share {
    margin-top: 36px;
    text-align: center;

}

.c-sidebar__share-list {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.c-sidebar__share-button {
    display: block;
    width: 32px;
    height: 32px;

}

@media screen and (min-width: 769px) {
    .c-sidebar {
        width: calc(244 / 1000 * 100%);
    }

    .c-sidebar__category-list {
        gap: 20px;
    }

    .c-sidebar__category-item {
        width: calc(50% - 10px);
    }

    .c-sidebar-ranking {
        margin-top: 25px;
    }
    .c-sidebar__ranking-item + .c-sidebar__ranking-item {
        margin-top: 36px;
    
    }

.c-sidebar__cta {
    margin-top: 33px;
    }




}

/*==================================================
# 記事詳細
==================================================*/
.p-single {
    padding: 60px 0;
}

.c-single-article__title {
    font-size: 22px;
    font-weight: 700;
}

.c-single-article__date {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.c-single-article__thumbnail {
    margin-top: 20px;
}

.c-single-article__thumbnail img {
    border-radius: 20px;
}

.c-single-article__content {
    margin-top: 20px;
}

@media screen and (min-width: 769px) {
    .p-single {
        padding-top: 100px;
    }

    .c-single-article__title {
        font-size: 28px;
    }

    .c-single-article__date {
        font-size: 14px;
    }

    .c-single-article__thumbnail {
        margin-top: 30px;
    }

    .c-single-article__content {
        margin-top: 32px;
    }
}

/* 目次 */
.toc {
    width: 100%;
    display: table;
    margin: 0 0 10px;
    border: #ccc solid 1px;
    background-color: #F7F7F7;
}
.toc .toc-title {
    margin: 0;
    padding: 0;
    font-weight: 700;
    padding: 13px 16px;
    background-color: var(--color-text);
    background-color: var(--color-orange);
    color: #fff;
    font-size: 16px;

}
.toc .toc-toggle {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
}
.toc .internal {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.toc .toc-list {
    margin: 0;
    padding: 20px 16px;
}


.toc .toc-list>.other-page {
    margin-bottom: 18px;
}

.toc .toc-list>.other-page>a {
    font-weight: 700;
    font-size: 15px;
} 

.toc .toc-list .other-page {
    padding-left: 0;
}

.toc .toc-list .other-page::after {
    display: none;
}

.toc .toc-list .other-page a {
	color: var(--color-text);
    text-decoration: none;
}

.toc .toc-list .other-page ul {
    margin: 9px 0 0 15px;
}


@media screen and (min-width: 769px) {
    .toc .toc-title {
        padding: 13px 27px;
        font-size: 20px;
    }

    .toc .toc-toggle, .toc .internal {
        font-size: 14px;
    }

    .toc .toc-list {
        padding: 26px 40px;
    }

    .toc .toc-list>.other-page {
        margin-bottom: 20px;
    }
    
    .toc .toc-list>.other-page>a {
        font-size: 16px;
    
    } 
}

/*==================================================
# 固定ページ
==================================================*/
.c-page-content {
    padding: 77px 0 150px;

}

.c-page-content__inner--center {
    text-align: center;
}

.c-page-content__form {
    margin-top: 45px;
}


.c-page-content__title {
    font-weight: 700;
    font-size: 30px;
}

.c-page-content__content {
    margin-top: 20px;
}

.c-page-content__button-wrap {
    margin-top: 30px;
}

.c-page-content__button {
    display: flex;
    max-width: 174px;
    min-height: 48px;
    transition: opacity 0.3s;
    background-color: var(--color-orange);
    border-radius: 80px;
    align-items: center;
    justify-content: center;
}

.c-page-content__inner--center .c-page-content__button {
    margin: 0 auto;
}

.c-page-content__button:hover {
    opacity: 0.7;
}

.c-page-content__button-text {
 font-weight: 500;
    font-size: 15px;
    color: #fff;
}

.c-page-content__link {
    text-decoration: underline;
    color: var(--color-orange);
}


@media screen and (min-width: 769px) {
    .c-page-content {
        padding: 122px 0 303px;
    }

    .c-page-content__form {
        margin-top: 63px;
    }

    .c-page-content__title {
        font-size: 40px;
    }
}
