/* 資料ダウンロード */
/* いらない要素を非表示にする */
.date-tags {
    display: none;
}

/* 幅とか調整 */
.content-in {
    justify-content: center;
}

.wrap {
    width: 100%;
}

.main {
    padding: 0px !important;
    overflow: hidden;
}

.entry-content {
    background-color: var(--gray-4);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.content {
    margin-top: 0px;
}

.footer {
    margin-top: 0px;
}

.article {
    margin-bottom: 0px !important;
}

.article h2 {
    background: none;
}

.article h3 {
    border: none;
}

.article p{
    margin-bottom: 0px;
}


/* オリジナル */

.entry-header {
    /* color-mix()のフォールバック（古いブラウザ対応） */
    background-color: rgba(0, 0, 0, 0.35) !important;
    background-color: color-mix(in srgb, var(--green-1) 65%, transparent) !important;
    position: absolute;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 45%;
}

.entry-title {
    font-weight: bold;
    color: var(--white);
    margin-top: 0px;
    text-align: center;
}

.small-firstview-img {
    margin-top: 0px;
    overflow: hidden;
    width: 100%;
}

.small-firstview-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/*ダウンロードフォーム*/

.DLform-container {
    margin: 0 auto;
}

.DLform-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.DLform-content-wrapper {
    display: -ms-grid;
    display: grid;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 左側コンテンツ */
.DLform-left-content {
    display: flex;
    flex-direction: column;
}

.DLform-title-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* 画像スライダー */
.DLform-image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.DLform-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.DLform-slider-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    -moz-transition: background-color 0.3s ease, transform 0.3s ease;
    -o-transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.DLform-slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transform: translateY(-50%) scale(1.1);
    -moz-transform: translateY(-50%) scale(1.1);
    -ms-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
}

.DLform-slider-btn:active {
    -webkit-transform: translateY(-50%) scale(0.95);
    -moz-transform: translateY(-50%) scale(0.95);
    -ms-transform: translateY(-50%) scale(0.95);
    transform: translateY(-50%) scale(0.95);
}

.DLform-slider-btn-prev {
    left: 10px;
}

.DLform-slider-btn-next {
    right: 10px;
}

.DLform-slider-btn span {
    display: block;
    line-height: 1;
}

.DLform-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.DLform-slider-track img {
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.DLform-slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.DLform-slider-indicators .DLform-slider-indicator {
    margin-left: 4px;
    margin-right: 4px;
}

.DLform-slider-indicators .DLform-slider-indicator:first-child {
    margin-left: 0;
}

.DLform-slider-indicators .DLform-slider-indicator:last-child {
    margin-right: 0;
}

.DLform-slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.DLform-slider-indicator.active {
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.DLform-section-title {
    font-weight: bold;
    color: var(--text-main);
    border-bottom: 2px solid var(--gray-2);
}

.DLform-recommendation-list {
    list-style: none;
}

.DLform-recommendation-list li {
    font-weight: bold;
}

.DLform-recommendation-item {
    position: relative;
    color: var(--text-main);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-2);
}

.DLform-recommendation-item:last-child {
    border-bottom: none;
}

.DLform-recommendation-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("/wp-content/uploads/2026/01/checkbox.svg");
    background-size: contain;
    -webkit-background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

/* 右側フォーム */
.satori__custom_form_a542a351d407b4d0_css {
    background: var(--white) !important;
}

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

    .sp-only {
        display: none;
    }

    .small-firstview-img {
        height: 380px;
    }

    .small-firstview-img img {
        height: 380px;
    }

    .entry-header {
        height: 200px;
        top: 252px;
    }

    .not-full-width {
        max-width: 1200px;
    }

    .label-text {
        font-size: 24px;
    }

    .DLform-loading {
    min-height: 500px;
    }

    .DLform-content-wrapper {
        -ms-grid-columns: 1fr 60px 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto;
        grid-row-gap: 60px;
        grid-column-gap: 60px;
        gap: 60px;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        padding: 60px;
        max-width: 1200px;
    }

    .DLform-title-section {
        margin-bottom: 30px;
    }

    .DLform-title-image {
        margin-bottom: 20px;
    }

    .DLform-recommendation-section {
        margin-top: 30px;
    }

    .DLform-section-title {
        font-size: 18px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .DLform-recommendation-item {
        padding: 12px 0;
        padding-left: 40px;
        font-size: 16px;
    }

    .DLform-recommendation-item::before {
        width: 25px;
        height: 25px;
    }

    .DLform-right-content {
        min-height: 500px;
    }

    .DLform-form-placeholder {
        font-size: 18px;
    }

}

/* アイキャッチのタイトルのサイズ */

/* 1024px以上1169px未満 */
@media screen and (min-width: 1024px) and (max-width: 1169px) {
    .entry-title {
        font-size: 34px;
        padding-right: 8%;
    }
}

/* 1170px以上1709px未満*/
@media screen and (min-width: 1170px) and (max-width: 1709px) {
    .entry-title {
        font-size: 38px; 
        padding-right: 10%;
    }
}

/* 1710px以上 */
@media screen and (min-width: 1710px) {
    .entry-title {
        font-size: 48px;
        padding-right: 15%;
    }
}

@media screen and (max-width: 1023px) {
    .small-firstview-img {
        height: 130px;
    }

    .small-firstview-img img {
        height: 130px;
    }

    .entry-header {
        height: 50px;
        top: 102px;
    }

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

    .pc-only {
        display: none;
    }

    .DLform-container {
        padding: 20px 10px;
    }

    .DLform-content-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto;
        grid-row-gap: 0px;
        grid-column-gap: 0px;
        gap: 0px;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        padding: 10px;
    }

    .DLform-title-section {
        margin-bottom: 0px;
    }

    .DLform-title-image {
        margin-bottom: 0px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 25px;
    }
    
    .DLform-title-section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .DLform-recommendation-section {
        margin-top: 30px;
    }

    .DLform-section-title {
        font-size: 16px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .DLform-recommendation-item {
        font-size: 12px;
        padding: 10px 0;
        padding-left: 24px;
    }

    .DLform-recommendation-item::before {
        width: 15px;
        height: 15px;
    }

    .DLform-right-content {
        min-height: auto;
    }

    /* モバイル版のナビゲーションボタン */
    .DLform-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .DLform-slider-btn-prev {
        left: 5px;
    }

    .DLform-slider-btn-next {
        right: 5px;
    }
}

/* アイキャッチのタイトルのサイズ */

/* 480px以下 */
@media screen and (max-width: 480px) {
    .entry-title {
        font-size: 11.5px;
        margin-bottom: 0px;
    }
}

/* 481px以上1023px以下 */
@media screen and (min-width: 481px) and (max-width: 1023px) {
    .entry-title {
        font-size: 15.6px;
        margin-bottom: 0px;
        padding-right: 10%;
    }
}
