@charset "UTF-8";

/*=====================*/
/*	color
/*=====================*/
:root {
    --text: #333333;
    --gray: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --green: #3FAF67;
    --yellow: #FBFF00;
    --blue: #016AAF;
    --bg-light: #F2F3D2;
    --bg-dark: #E4E5C6;
    --bg-deep: #CDCEB2;
    --line: #DDDDDD;
    --line2: #EEEEEE;
}

/*=====================*/
/*	common
/*=====================*/
html {
    scrollbar-gutter: stable;
}
html.is-fixed {
    overflow: hidden;    
}
body {
    width: 100%;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif; 
}
.pagetop {
    display:none;
}
.member_group {
    padding: 0;
}
#main .wrapper p,
#main .wrapper ul {
    color: var(--text);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.wrapper a {
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}
.wrapper a:hover { 
    color: var(--white);
}

.sp-only {
    display: none;
}

.content__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px 40px;
    gap: 4px;
    width: 100%;
}
.content__headsub {
    color: var(--green);
    font-size: 12px;
    font-weight: 500;
}
.content__headtext {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#main .content__headtext h2 {
    color: var(--text);
    font-size: 32px;
    font-weight: 700;
    letter-spacing:1.28px;
    margin: 0 0 16px;
}
#main .content__headtext .content__headdetail {
    line-height: normal;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
#main h3.content__subheader {
    color: var(--text);
    margin: 0 0 32px 36px;
    position: relative;
}
#main .content__subheader::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 12px;
}
#main .content__subheader::after {
    content: "";
    position: absolute;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--bg-light);
    border-radius: 8px;
}

@media (max-width: 960px) {
    .content__header {
        padding: 0 16px 24px;
    }
    .content__headsub {
        font-size: 10px;
    }
    .content__headtext {
        gap: 8px;
    }
    #main .content__headtext h2 {
        font-size: 20px;
        letter-spacing: 0.8px;
        text-align: justify;
    }
    #main .content__headtext .content__headdetail {
        font-size: 14px;
        line-height: 24px;
    }
    #main h3.content__subheader {
        margin: 0 0 24px 18px;
    }
    #main .content__subheader::before {
        left: -18px;
        width: 10px;
        height: 10px;
        border-radius: 10px;
    }
    #main .content__subheader::after {
        left: -16px;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}

/*=====================
/*	header
/*=====================*/
#main .wrapper {
    position: relative;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
}
.header__menu {
    position: fixed;
    max-width: 1040px;
    margin: auto;
    z-index: 10;
    inset: 0;
    pointer-events: none;
}
.header__menu.fixed {
    position: fixed;
    top: 0;
}
.header__menu-inner {
    position: absolute;
    bottom: 48px;
    right: 40px;
    display: flex;
    flex-direction: column;
    background-color: var(--green);
    width: 50px;
    height: 110px;
    pointer-events: auto;
}
.header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
}
.header__hamburger::after {
    position: absolute;
    content: "";
    background-image: url(/file/region-power_support/img/line_header.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 32px;
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.header__totop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px;
}
.header__totop:hover {
    opacity: .6;
}
html.is-fixed .header__totop {
    pointer-events: none;
}
.header__hamburger-bar {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.header__top {
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
}
.header__nav {
    background-color: var(--green);
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    padding: 64px 24px 40px;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.header__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}
.header__nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
    min-height: max-content;
    margin: auto;
    position: relative;
}
.header__nav-container img {
    position: absolute;
    top: -36px;
    right: 0;
    cursor: pointer;
}
.header__nav-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.header__nav-item {
    background: rgba(0, 0, 0, 0.05);
}
#main .header__nav-link {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.12px;
    text-decoration: none;
    transition: opacity 0.3s;
    width: 100%;
    height: 100%;
    padding: 16px 24px;
}
#main .header__nav-link:hover {
    color: var(--white);
    opacity: .7;
}
@media (max-width: 960px) {
    #main .wrapper {
        max-width: 620px;
    }
    .header__menu {
        max-width: 620px;
    }
    .header__menu-inner {
        right: 16px;
        bottom: 40px;
    }
    .header__nav {
        bottom: 0;
    }
}
@media (max-width: 620px) {
    .header__menu-inner {
        right:26px;
    }
}

/*=====================*/
/*	mv
/*=====================*/
.mv__container {
    background-image: url(/file/region-power_support/img/mv_pc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1040 / 674;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 140px 0 0;
}
.mv__header {
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    position: relative;
}
.mv__copy {
    height: 410px;
}
.mv__copy--main {
    aspect-ratio: 33 / 410;
    width: auto;
    max-height: 410px;
    height: calc(410 / 1080 * 100vw);
}
.mv__copy--sub {
    aspect-ratio: 24 / 410;
    width: auto;
    max-height: 410px;
    height: calc(410 / 1080 * 100vw);
}
.mv__subcopy {
    position: absolute;
    aspect-ratio: 171 / 159;
    width: 171px;
    height: auto;
    top: 102px;
    right: 40px;
}
.mv__img {
    aspect-ratio: 171 / 159;
    width: 100%;
    height: auto;
}

@media (max-width: 960px) {
    .mv__container {
        background-image: url(/file/region-power_support/img/mv_sp.png);
        aspect-ratio: 620 / 1104;
        padding-top: 200px;
    }
    .mv__copy--main,
    .mv__copy--sub {
        max-height: none;
        height: 672px;
    }
    .mv__subcopy {
        width: 200px;
        top: 124px;
        right: 72%;
    }
}
@media (max-width: 620px) {
    .mv__container {
        padding-top: 29%;
    }
    .mv__copy--main,
    .mv__copy--sub {
        height: clamp(410px, calc(1.069387755 * 100vw + 9px), 672px);
    }
    .mv__subcopy {
        width: calc(132 / 375 * 100vw);
        top: 96px;
    }
}

/*=====================*/
/*	challenges
/*=====================*/
.challenges__container {
    background-image: url(/file/region-power_support/img/Challenges_bg_pc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 100px;
    position: relative;
}
.challenges__container::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/attempt_layout.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    aspect-ratio: 1040 / 100;
    width: 100%;
    height: auto;
    z-index: 1;
}
.challenges__circle {
    background-image: url(/file/region-power_support/img/Challenges_contents_pc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    width: 880px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 112px 0;
}
#main .challenges__container .challenges__items {
    background-image: url(/file/region-power_support/img/worries.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 454px;
    height: 250px;
    margin: 0 auto 96px;
    display: flex;
    justify-content: space-between;
}
.challenge__item {
    padding-top: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 80px;
}
#main .challenges__container .challenge__title {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.432px;
}
#main .challenges__container .challenge__text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}
.challenges__question {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    z-index: 1;
}
.challenges__question::after {
    position: absolute;
    content: "";
    background-image: url(/file/region-power_support/img/assignment_bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 332px;
    height: 142px;
    left: 50%;
    top: -18px;
    transform: translateX(-50%);
    z-index: -1;
}
#main .challenges__container .challenges__question p {
    color: var(--green);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.18px;
    line-height: normal;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
#main .challenges__container .challenges__question p:first-child {
    padding: 8px 8px 0;
}
#main .challenges__container .challenges__question p:last-child {
    padding: 2px 8px 8px;
}
#main .challenges__container .challenges__question p::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -2;
}
#main .challenges__container .challenges__question p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: calc(100% - 16px);
    height: 8px;
    background: var(--yellow);
    z-index: -1;
}
#main .challenges__container .challenges__question p:first-child:after {
    bottom: 2px;
}

@media (max-width: 960px) {
    .challenges__container {
        background-image: url(/file/region-power_support/img/Challenges_bg_sp.png);
        overflow-x: clip;
    }
    .challenges__circle {
        background-image: url(/file/region-power_support/img/Challenges_contents_sp.png);
        width: 693px;
        padding: 72px 0;
        margin: 0;
    }
    #main .challenges__container .challenges__items {
        width: 320px;
        height: 176px;
        margin: 0 auto 88px;
    }
    .challenge__item {
        padding-top: 108px;
        gap: 56px;
    }
    #main .challenges__container .challenge__title {
        font-size: 14px;
        letter-spacing: 0.336px;
    }
    #main .challenges__container .challenge__text {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: -0.32px;
    }
    .challenges__question {
        margin-top: 48px;
    }
    .challenges__question::after {
        width: 300px;
        height: 128px;
        top: -20px;
    }
    #main .challenges__container .challenges__question p {
        font-size: 20px;
        letter-spacing: 0.15px;
    }
    #main .challenges__container .challenges__question p:first-child {
        padding: 4px 4px 0;
    }
    #main .challenges__container .challenges__question p:last-child {
        padding: 4px;
    }
    #main .challenges__container .challenges__question p::after {
        bottom: 4px;
        width: calc(100% - 8px);
    }
    #main .challenges__container .challenges__question p:first-child:after {
        bottom: 0;
    }
}

/*=====================*/
/*	process
/*=====================*/
.process__container {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0;
    position: relative;
}
.process__container::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/birds.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    top: -120px;
    width: 245px;
    height: 239px;
    z-index: 2;
}
.work-on__container {
    display: flex;
    flex-direction: column;
    padding: 16px 40px 112px;
    position: relative;
    width: 100%;
}
.work-on__container::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/process_layout.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    aspect-ratio: 1040 / 100;
    width: 100%;
    height: auto;
    z-index: 1;
}
.work-on__items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px 24px;
    padding-bottom: 56px;
}
.work-on__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main .work-on__title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding: 16px 0;
    z-index: 1;
}
#main .work-on__title::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/process_bubble.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 293px;
    height: 76px;
    z-index: -1;
}
.work-on__content {
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 284px;
    width: 100%;
    padding: 24px;
    margin-top: -6px;
    flex: 1;
}
.work-on__content p {
    letter-spacing: 0.12px;
}

.flow__container {
    background: var(--bg-dark);
    width: 100%;
    padding: 40px 40px 320px;
    position: relative;
}
#main .process__container .flow__container .content__subheader::after {
    background: var(--bg-dark);
}
.flow__container::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/case_layout_pc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    aspect-ratio: 1040 / 261;
    width: 100%;
    height: auto;
    z-index: 1;
}
.flow__container::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/apples.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    bottom: 0;
    width: 252px;
    height: 278px;
    z-index: 2;
}
.flow__items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    max-width: 960px;
    margin: 0 auto;
    list-style: none;
}
.flow__items::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/flow-arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 504px;
    height: 998px;
}
.flow__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.flow__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}
.flow__item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}
.flow__item:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
}
.flow__item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}
.flow__item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}
.flow__item--second-half {
    margin-top: 64px;
}
.flow__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow__item::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
}
.flow__item--first-half::after {
    bottom: 20px;
}
.flow__item--second-half::after {
    bottom: -44px;
}
.flow__item:nth-child(3)::after,
.flow__item:nth-child(6)::after {
    display: none;
}
.flow__step {
    margin-bottom: 48px;
    z-index: 2;
}
.flow__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.flow__content::before {
    content: "";
    position: absolute;
    background: var(--bg-deep);
    border-radius: 16px;
    left: 50%;
    top: -56px;
    transform: translateX(-50%);
    max-width: 400px;
    width: 100%;
    height: 163px;
    z-index: -1;
}
.flow__image {
    margin-bottom: 24px;
}
#main .flow__container .flow__text {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
#main .flow__container .flow__text span {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 960px) {
    .process__container::after {
        top: -56px;
        width: 144px;
        height: 140px;
    }
    .work-on__container {
        padding: 0 16px 36px;
        position: relative;
    }
    .work-on__items {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 40px;
    }
    .work-on__content {
        max-width: 100%;
    }
    .work-on__content p {
        letter-spacing: -0.68px;
    }

    .flow__container {
        padding: 40px 16px 276px;
    }
    .flow__container::before {
        background-image: url(/file/region-power_support/img/case_layout_sp.png);
    }
    .flow__container::after {
        width: 154px;
        height: 170px;
    }
    .flow__items {
        display: flex;
        flex-direction: column;
        gap: 64px;
        max-width: 100%;
    }
    .flow__items::after {
        display: none;
    }
    .flow__item--second-half {
        margin: 0;
    }
    .flow__item::after {
        bottom: -44px;
    }
    .flow__item:nth-child(3)::after {
        display: block;
    }
}

/*=====================*/
/*	case
/*=====================*/
.case__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 28px;
    overflow: hidden;
}
.case__container::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/case_bg_pc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1040px;
    height: 1340px;
    z-index: -1;
}
.case__container::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/Know-how_layout.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    bottom: -1px;
    aspect-ratio: 1040 / 354;
    width: 100%;
    height: auto;
    z-index: -1;
}
.case__container .content__headsub,
#main .case__container .content__headtext h2,
#main .case__container .article__container h3.content__subheader,
#main .case__container .content__headtext .content__headdetail {
    color: var(--white);
}
#main .case__container .article__container .content__subheader::before {
    background: var(--white);
}
#main .case__container .article__container .content__subheader::after {
    background: var(--blue);
}
#main .case__container .pickup__container .content__subheader::after {
    background: var(--white);
}
.article__container {
    width: 100%;
    padding: 24px 40px 56px;
}
#main .case__container .article__items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 32px 24px;
    width: 100%;
    margin: 0;
}
.article__item {
    max-width: 304px;
    width: 100%;
    display: flex;
}
.article__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    height: 100%;
}
.article__image {
    aspect-ratio: 304 / 200;
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
}
.article__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    background: var(--white);
    border-radius: 0 0 16px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    width: 100%;
    padding: 16px;
}
#main .article__container .article__title,
#main .pickup__container .article__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--green);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.36px;
    margin: 0;
    flex: 1;
}
#main .article__container .article__description,
#main .pickup__container .article__description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.36px;
}
#main .article__container .article__author,
#main .pickup__container .article__author {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
}
#main .article__container .article__author span,
#main .pickup__container .article__author span {
    font-weight: 400;
}
#main .article__container .article__tags,
#main .pickup__container .article__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    margin: 0;
    border-bottom: 1px solid var(--line2);
}
.article__tag {
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--green);
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
}
#main .article__container .article__btn,
#main .pickup__container .article__btn {
    margin: 0 auto;
    padding: 20px 0 0 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    position: relative;
    transition: opacity 0.3s;
}
#main .article__container .article__btn::after,
#main .pickup__container .article__btn::after {
    position: absolute;
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/detail.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 19px;
    left: 0;
    width: 13px;
    height: 15px;
}
#main .article__container .article__btn:hover,
#main .pickup__container .article__btn:hover {
    opacity: .6;
}
.pickup__container {
    width: 100%;
    padding: 0 40px 556px;
    position: relative;
}
.pickup__video {
    display: flex;
}
.pickup__video iframe {
    aspect-ratio: 468 / 308;
    max-width: 468px;
    width: 100%;
    height: auto;
    margin-right: 24px;
    flex: 1;
}
.pickup__video iframe:last-child {
    margin: 0;
}
.pickup__container::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/plane.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    bottom: 320px;
    width: 360px;
    height: 182px;
}
.pickup__container::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/Parentandchild.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 130px;
    height: 247px;
}

@media (max-width: 960px) {
    .case__container {
        padding-bottom: 10px;
    }
    .case__container::before {
        background-image: url(/file/region-power_support/img/case_bg_sp.png);
        aspect-ratio: 375 / 769;
        width: 100%;
        height: auto;
    }
    .article__container {
        padding: 0 16px 32px;
    }
    #main .case__container .article__items {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .article__item {
        max-width: 100%;
    }
    .pickup__container {
        padding: 0 16px 264px;
    }
    .pickup__video {
        flex-direction: column;
        align-items: center;
    }
    .pickup__video iframe {
        width: 100%;
        height: auto;
        margin: 0 0 24px;
    }
    .pickup__container::before {
        bottom: 118px;
        width: 187px;
        height: 99px;
    }
    .pickup__container::after {
        width: 68px;
        height: 129px;
    }
}

/*	モーダル  */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.modal.active {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.modal__container {
    background-color: var(--green);
    border-radius: 20px;
    padding: 40px;
    width: 800px;
    max-height: calc(100vh - 48px);
    height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal__close {
    position: absolute;
    top: calc(50% - 45vh + 40px);
    right: calc(50% - 360px);
    z-index: 1;
}
.modal__content img {
    aspect-ratio: 800 / 269;
    width: 100%;
    height: auto;
}
.modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    gap: 24px;
}
#main .wrapper h2.modal__title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.135px;
    margin: 0;
}
.modal__item-container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 16px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--white) transparent;
}
.modal__item-container::-webkit-scrollbar {
    width: 1px;
}
.modal__item-container::-webkit-scrollbar-track {
    background: transparent;
}
.modal__item-container::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 999px;
}
.modal__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.modal__item {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    gap: 10px;
}
#main .wrapper h3.modal__item-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.105px;
    width: 90px;
}
#main .wrapper .modal__description {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.105px;
    width: 100%;
}

@media (max-width: 960px) {
    .modal {
        padding: 80px 0 0;
    }
    .modal__container {
        padding: 40px 16px;
        max-width: 588px;
        width: calc(100% - 32px);
    }
    .modal__close {
        right: calc(50% - 294px);
    }
    .modal__content img {
        aspect-ratio: 400 / 300;
    }
    #main #wrapper .modal__text {
        width: 100%;
    }
    #main #wrapper .modal__text::after {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .modal__close {
        right: 16px;
    }
}

/*=====================*/
/*	know-how
/*=====================*/
.know-how__container {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: relative;
}
#main .know-how__items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 32px 40px 40px;
    width: 100%;
    gap: 40px;
    margin: 0;
}
.know-how__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 266px;
}
.know-how__image {
    display: block;
    height: 180px;
    width: auto;
    margin-bottom: 16px;
}
.know-how__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex: 1;
}
#main .know-how__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
}
#main .know-how__content p {
    letter-spacing: 0.12px;
}

@media (max-width: 960px) {
    .know-how__container {
        padding: 24px 0 0;
    }
    #main .know-how__items {
        flex-direction: column;
        align-items: center;
        padding: 4px 16px 40px;
        gap: 16px;
    }
    .know-how__item {
        width: 100%;
        border-bottom: 1px dashed var(--text);
        padding-bottom: 24px;
    }
    .know-how__item:last-child {
        border-bottom: none;
    }
    .know-how__image {
        margin-bottom: 8px;
    }
}

/*=====================*/
/*	share
/*=====================*/
.share__container {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 80px;
    position: relative;
}
.share__container .content__header {
    padding: 0 0 40px 80px;
}
.share__content {
    background: var(--white);
    width: calc(100% - 160px);
    margin: 0 80px;
}
.share__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.share__item {
    display: flex;
    align-items: center;
    align-self: stretch;
    border-bottom: 0.5px solid var(--line2);
}
.share__item:last-child {
    border-bottom: none;
}
#main .wrapper h3.share__item-title {
    color: var(--text);
    width: 163px;
    padding: 32px 0 32px 24px;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
#main .wrapper .share__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    padding: 32px;
}

@media (max-width: 960px) {
    .share__container {
        padding: 40px 0 64px;
    } 
    .share__container .content__header {
        padding: 0 16px 24px;
    }
    .share__content {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
    #main .wrapper h3.share__item-title {
        width: 116px;
        padding: 32px 8px;
        font-size: 14px;
    }
    #main .wrapper .share__description {
        padding: 16px;
    }
}

/*=====================*/
/*	materials
/*=====================*/
.materials__container {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 140px;
    position: relative;
}
.materials__container::after {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/process_layout.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    aspect-ratio: 1040 / 100;
    width: 100%;
    height: auto;
    z-index: 1;
}
.materials__container .content__header {
    padding: 0 0 40px 80px;
}
.materials__content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 160px);
    margin: 0 80px;
    gap: 1px;
}
.materials__box {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
}
#main .wrapper h3.materials__item-title {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    padding-left: 24px;
    margin: 0;
    position: relative;
    width: 100%;
}
#main .wrapper h3.materials__item-title::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/link.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 2px;
    left: 0;
    width: 14px;
    height: 19px;
}
.materials__btn {
    background: var(--green);
    border-radius: 50px;
    margin: 24px auto;
    padding: 24px 0;
    max-width: 343px;
    width: 100%;
    text-align: center;
    transition: opacity .3s;
}
.materials__btn span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.12px;
    padding-left: 28px;
    position: relative;
}
.materials__btn span::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/download.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 2px;
    left: 0;
    width: 24px;
    height: 24px;
}
.materials__btn:hover {
    opacity: .7;
}
#main .materials__box .materials__description {
    text-align: center;
    letter-spacing: 0.12px;
}
.materials__list {
    background: var(--gray);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 24px;
    margin-top: 24px;
}
.materials__list h4 {
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.12px;
    margin:0 0 10px;
}
.materials__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.materials__item {
    padding-left: 22px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.12px;
    position: relative;
}
.materials__item::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/check.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 6px;
    left: 0;
    width: 18px;
    height: 14px;
}

@media (max-width: 960px) {
    .materials__container {
        padding: 0 0 76px;
    }
    .materials__container .content__header {
        padding: 0 16px 24px;
    }
    .materials__content {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
    .materials__box {
        padding: 24px 16px;
    }
    #main .materials__box .materials__description {
        text-align: left;
        font-size: 14px;
        letter-spacing: 0.105px;
    }
    .materials__item {
        font-size: 14px;
        letter-spacing: 0.105px;
    }
    .materials__item::before {
        top: 5px;
    }
}

/*=====================*/
/*	faq
/*=====================*/
.faq__container {
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 64px;
}
.faq__container .content__header {
    padding: 0 0 50px 80px;
}
.faq__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 80px;
    width: calc(100% - 160px);
}
.accordion__item {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}
.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    cursor: pointer;
}
.faq__question,
.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.faq__icon {
    color: var(--green);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.135px;
}
#main h3.faq__title {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.accordion__icon::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
    transform-origin: center;
    transform: rotate(0deg);
}
.accordion__icon {
    position: relative;
    width: 24px;
    height: 24px;
}
.accordion__icon::before,
.accordion__icon::after {
    content: "";
    position: absolute;
    background: var(--green);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.accordion__icon::before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}
.accordion__icon::after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}
.accordion__item[open] .accordion__icon::after {
    transform: rotate(90deg);
}
.accordion__contents {
    padding: 0 32px 22px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.accordion__item[open] .accordion__contents {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.accordion__item[open] .accordion__header {
    padding: 32px 32px 24px;
}
.accordion__contents {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq__answer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq__detail {
    font-weight: 500;
    letter-spacing: 0.12px;
}

@media (max-width: 960px) {
    .faq__container {
        padding: 40px 0;
    }
    .faq__container .content__header {
        padding: 0 16px 34px;
    }
    .faq__items {
        margin: 0 16px;
        width: calc(100% - 32px);
    }
    .accordion__header {
        padding: 24px;
    }
    #main h3.faq__title {
        font-size: 16px;
    }
    .accordion__icon {
        flex-shrink: 0;
    }
    .accordion__contents {
        padding: 0 24px 24px;
    }
    .accordion__item[open] .accordion__header {
        padding: 24px 24px 24px;
    }
}

/*=====================*/
/*	inquiry
/*=====================*/
.inquiry__container {
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 104px 0 0;
    width: 100%;
    overflow: hidden;
    height: 387px;
    position: relative;
    z-index: 1;
}
.inquiry__container::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/inquiry_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 1040px;
    height: 387px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.inquiry__header {
    align-items: center;
    padding: 0 0 40px;
}
.inquiry__header .content__headsub,
#main .inquiry__header .content__headtext h2,
#main .inquiry__header .content__headdetail {
    color: var(--white);
}
.inquiry__header .content__headtext {
    align-items: center;
}
.inquiry__btn {
    background: var(--white);
    border-radius: 50px;
    margin: 0 auto;
    padding: 24px 0;
    max-width: 343px;
    width: 100%;
    text-align: center;
    transition: opacity .3s;
}
.inquiry__btn span {
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.12px;
    padding-left: 28px;
    position: relative;
}
.inquiry__btn span::before {
    content: "";
    position: absolute;
    background-image: url(/file/region-power_support/img/inquiry.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
}
.inquiry__btn:hover {
    opacity: .7;
}

@media (max-width: 960px) {
    .inquiry__container {
        padding: 38px 16px 0;
        height: 272px;
    }
    .inquiry__container::before {
        width: 754px;
        height: 288px;
    }
    .inquiry__header {
        align-items: center;
        padding: 0 0 24px;
    }
    .inquiry__header .content__headtext {
        width: 100%;
    }
}