@charset "utf-8";
/* ttl */
.section_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.animation_ready .section_ttl_inner {
    display: block;
    transform: translateY(120%);
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner{
    animation: ttl_up 0.6s forwards;
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(2) {
    animation-delay: 0.1s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(3) {
    animation-delay: 0.2s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(4) {
    animation-delay: 0.3s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(5) {
    animation-delay: 0.4s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(6) {
    animation-delay: 0.5s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(7) {
    animation-delay: 0.6s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(8) {
    animation-delay: 0.8s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(9) {
    animation-delay: 0.9s
}
.animation_ready.animation_loaded .section_ttl.is_animated .section_ttl_inner:nth-child(10) {
    animation-delay: 1s
}
@media (min-width: 769px) {
    .section_ttl {
        column-gap: 8rem;
        padding-top: 25rem;
    }
}
@media (max-width: 768px) {
    .section_ttl {
        column-gap: 5rem;
        padding: 15rem 30rem 0;
    }
}
@keyframes ttl_up {
    0% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(-25%);
    }
    100% {
        transform: translateY(0);
    }
}

/* mv */
.mv {
    background-color: var(--color-bg-yellow);
}
.mv_img_wrap {
    margin-inline: auto;
}
@media (min-width: 769px) {
    .mv {
        padding-top: 44rem;
    }
    .mv_contant{
        width: 1353rem;
        margin-inline: auto;
    }
}
@media (max-width: 768px) {
    .mv {
        padding-top: 90rem;
    }
    .mv_img_wrap_inner {
        display: block;
    }
    .mv_img {
        width: 100%;
    }
}

/* choice_btn */
.choice_btn_list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.choice_btn_link {
    display: block;
    color: var(--color-white);
    background-color: var(--color-black);
    border-radius: 40rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px var(--color-black);
    letter-spacing: 0.04em;
}
.choice_btn_link .anchor_arrow {
    transform: rotate(90deg);
}
@media (min-width: 769px) {
    .choice_btn_list {
        column-gap: 8rem;
    }
    .choice_btn_link {
        width: 484rem;
        padding: 23rem 24rem;
        transition: background-color 0.3s, color 0.3s;
    }
    @media(hover:hover) {
        .choice_btn_link:hover {
            background-color: var(--color-white);
            color: var(--color-black);
        }
    }
}
@media (max-width: 768px) {
    .choice_btn_list {
        column-gap: 6rem;
        margin-top: 11rem;
    }
    .choice_btn_list > li{
        width: calc(50% - 6rem);
    }
    .choice_btn_link {
        padding: 20rem 16rem;
    }
}

/* lead */
.lead {
    background-color: var(--color-bg-yellow);
}
.lead_txt {
    letter-spacing: 0.08em;
}
@media (min-width: 769px) {
    .lead {
        padding-block: 120rem 210rem;
    }
    .lead_txt {
        text-align: center;
        font-size: 24rem;
        line-height: 2.8;
    }
}
@media (max-width: 768px) {
    .lead {
        padding: 64rem 30rem 88rem;
    }
    .lead_txt {
        font-size: 18rem;
        line-height: 1.8;
    }
    .lead_txt + .lead_txt {
        margin-top: 18rem;
    }
}

/* type */
.type {
    background-color: var(--color-white);
    transform: translateZ(0);
    position: relative;
}
.type::before,
.type::after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
}
.type_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.type_list_link {
    border: none;
    background-color: inherit;
    cursor: pointer;
    padding: inherit;
    position: relative;
}
.type_list_link::before,
.type_list_link::after{
    content: '';
    position: absolute;
}
.type_list_link::before{
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
}
.type_list_link::after {
    border-radius: 50%;
    right: 0;
}
.type_list_link_1::before,
.type_list_link_1::after {
    background-color: var(--color-green);
}
.type_list_link_2::before,
.type_list_link_2::after {
    background-color: var(--color-coral);
}
.type_list_link_3::before,
.type_list_link_3::after {
    background-color: var(--color-yellow);
}
.type_list_link_4::before,
.type_list_link_4::after {
    background-color: var(--color-blue);
}
.type_list_img_wrap {
    display: grid;
    justify-content: center;
    align-items: end;
    overflow: hidden;
    position: relative;
}
.type_list_link_1 .type_list_img_wrap {
    background-color: var(--color-green);
    border-top-left-radius: 56rem;
}
.type_list_link_2 .type_list_img_wrap {
    background-color: var(--color-coral);
    border-top-right-radius: 56rem;
}
.type_list_link_3 .type_list_img_wrap {
    background-color: var(--color-yellow);
    border-top-left-radius: 56rem;
}
.type_list_link_4 .type_list_img_wrap {
    background-color: var(--color-blue);
    border-top-right-radius: 56rem;
}
.type_list_img_inner {
    display: block;
}
.type_list_txt {
    color: var(--color-black);
    text-align: left;
    line-height: 1.5;
    display: block;
    letter-spacing: 0.04em;
}
.anchor_arrow_square {
    background-color: var(--color-white);
    border-top-left-radius: 10rem;
    display: grid;
    place-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 41rem;
    height: 41rem;
}
.anchor_arrow_square .anchor_arrow {
    width: 33rem;
    height: 33rem;
    border: solid 1px var(--color-black);
}
.anchor_arrow_square .anchor_arrow::before,
.anchor_arrow_square .anchor_arrow::after {
    width: 10rem;
    left: 12rem;
}
@media (min-width: 769px) {
    .type {
        padding-block: 140rem 52rem;
    }
    .type::before {
        background: url(../../life-style/images/cloud_top.svg) no-repeat top center;
        background-size: 100%;
        height: 100%;
        top: -11dvw;
    }
    .type::after {
        background: url(../../life-style/images/cloud_bottom.svg) no-repeat bottom center;
        background-size: 100%;
        height: 100%;
        bottom: -6dvw;
    }
    .type_list {
        margin-top: 85rem;
        gap: 64rem 20rem;
    }
    .type_list_link {
        width: 420rem;
        padding-bottom: 24rem;
    }
    .type_list_link::after {
        width: 8rem;
        height: 8rem;
        bottom: -3rem;
    }
    .type_list_img_wrap {
        height: 250rem;
    }
    .type_list_img {
        transition: scale 0.3s;
    }
    .type_list_txt {
        font-size: 20rem;
        margin-top: 16rem;
    }
    .anchor_arrow_square .anchor_arrow::before {
        top: calc(50% - 4rem);
    }
    .anchor_arrow_square .anchor_arrow::after {
        bottom: calc(50% - 4rem);
    }
    /* 画像 */
    .type_list_img_1 {
        width: 230rem;
    }
    .type_list_img_2 {
        width: 216rem;
    }
    .type_list_img_3 {
        width: 215rem;
    }
    .type_list_img_4 {
        width: 250rem;
    }
    @media (hover:hover){
        .type_list_link:hover .type_list_img {
            scale: 1.1;
        }
    }
}
@media (max-width: 768px) {
    .type {
        padding-block: 63rem 66rem;
    }
    .type::before {
        background: url(../../life-style/images/cloud_top_sp.svg) no-repeat top center;
        background-size: 100%;
        height: 51rem;
        top: -50rem;
    }
    .type::after {
        background: url(../../life-style/images/cloud_bottom_sp.svg) no-repeat bottom center;
        background-size: 100%;
        height: 56rem;
        bottom: -55rem;
    }
    .type_list {
        margin-top: 64rem;
        gap: 64rem 18rem;
    }
    .type_list > li {
        width: calc(50% - 9rem);
    }
    .type_list_link {
        width: 100%;
        padding-bottom: 16rem;
    }
    .type_list_img_wrap {
        height: 213rem;
    }
    .type_list_img {
        margin-bottom: -1rem;
        width: 172rem;
    }
    .type_list_txt {
        font-size: 16rem;
        margin-top: 16rem;
    }
    .anchor_arrow_square .anchor_arrow::before {
        top: calc(50% - 3.5rem);
    }
    .anchor_arrow_square .anchor_arrow::after {
        bottom: calc(50% - 3.5rem);
    }
}

/* neko_walk animation */
.neko_walk {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}
.animation_ready .neko_walk_inner,
.animation_ready .paws_img_inner{
    opacity: 0;
}
.animation_ready.animation_loaded .neko_walk.is_animated .neko_walk_inner,
.neko_walk.is_animated .paws_img_inner{
    animation: walk 6s ease 1 forwards; 
}
.animation_ready.animation_loaded .neko_walk.is_animated .neko_walk_inner {
    animation-delay: 2.6s;
}
.paws_img_wrap {
    display: flex;
    align-items: center;
}
.paws_img_inner {
    display: block;
}
.animation_ready.animation_loaded .neko_walk.is_animated .paws_img_inner:nth-child(1) {
    animation-delay: 2.2s;
    margin-top: 25rem;
}
.animation_ready.animation_loaded .neko_walk.is_animated .paws_img_inner:nth-child(2) {
    animation-delay: 1.8s;
    margin-bottom: 20rem;
}
.animation_ready.animation_loaded .neko_walk.is_animated .paws_img_inner:nth-child(3) {
    animation-delay: 1.4s;
}
.animation_ready.animation_loaded .neko_walk.is_animated .paws_img_inner:nth-child(4) {
    animation-delay: 1s;
    margin-bottom: 25rem;
}
.animation_ready.animation_loaded .neko_walk.is_animated .paws_img_inner:nth-child(5) {
    animation-delay: 0.6s;
    margin-top: 35rem;
}
.animation_ready.animation_loaded .neko_walk.is_animated .paws_img_inner:nth-child(6) {
    animation-delay: 0.2s;
}
@media (min-width: 769px) {
    .neko_walk {
        margin-top: 80rem;
        margin-right: 15rem;
        column-gap: 20rem;
    }
    .neko_img {
        width: 131rem;
    }
    .paws_img_wrap {
        column-gap: 10rem;
    }
    .paws_img {
        width: 40rem;
    }
}
@media (max-width: 768px) {
    .neko_walk {
        margin-top: 70rem;
        margin-right: 5rem;
        column-gap: 15rem;
    }
    .neko_img {
        width: 112rem;
    }
    .paws_img_wrap {
        column-gap: 10rem;
    }
    .paws_img {
        width: 38rem;
    }

}
@keyframes walk {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* movie */
.movie {
    background-color: var(--color-light-gray);
}
.movie_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.movie_list_link {
    position: relative;
    display: block;
    border: none;
    background-color: inherit;
    padding: 0;
    cursor: pointer;
}
.movie_list_link_img {
    border: solid 2px #555;
}
.movie_list_link_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media (min-width: 769px) {
    .movie {
        padding-block: 260rem 334rem;
    }
    .movie_list {
        margin-top: 80rem;
        gap: 80rem 20rem;
    }
    .movie_list > li {
        width: calc(50% - 10rem);
    }
    .movie .movie_list_link_img {
        height: 742rem;
    }
    .movie_list_link_btn_img {
        width: 100rem;
        transition: scale 0.3s;
    }
    @media(hover:hover) {
        .movie_list_link:hover .movie_list_link_btn_img {
            scale: 1.2;
        }
    }
}
@media (max-width: 768px) {
    .movie {
        padding-block: 135rem 175rem;
    }
    .movie_list {
        margin-top: 64rem;
        gap: 40rem 18rem;
    }
    .movie_list > li {
        width: calc(50% - 9rem);
    }
    .movie_list_link_btn_img {
        width: 60rem;
    }
}

/* type_contents */
.type_contents_wrap.modal_content {
    transform: translateX(100%);
    transition: opacity 0.3s 0s, transform 0.5s 0s;
}
.type_contents_wrap.modal_content.is_modal_show {
    transform: translateX(0);
    transition: opacity 0.3s 0s, transform 0.5s 0s;
}
.type_contents_wrap .modal_scroll,
.type_contents_wrap .modal_scroll_inner {
    text-align: left;
}
.type_contents_inner {
    background-color: inherit;
    z-index: 1;
}
.type_contents_ttl {
    color: var(--color-white);
}
.type_contents_ttl_inner {
    display: block;
}
.type_contents_desc {
    background-color: var(--color-white);
    position: relative;
}
.type_contents_desc_tag {
    background-color: var(--color-white);
    position: absolute;
    right: 0;
    letter-spacing: 0.04em;
}
.type_contents_desc_tag::before {
    content: '';
    background: url(../../life-style/images/curve_parts.svg) no-repeat bottom left/ 100%;
    width: 24rem;
    height: 24rem;
    position: absolute;
    bottom: 17rem;
    left: -22rem;
}
.type_contents_desc_tag_arrow {
    position: relative;
}
.type_contents_desc_tag_arrow::before,
.type_contents_desc_tag_arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.type_contents_desc_tag_arrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: -35rem;
}
.type_contents_desc_tag_arrow::after {
    width: 18rem;
    height: 2px;
    border-radius: 3rem;
    left: -27rem;
}
.type_contents_lead_tag {
    display: block;
    color: var(--color-white);
    width: fit-content;
}
.type_contents_lead_tag::before{
    content: '';
    width: 5rem;
    height: 5rem;
    margin-right: 10rem;
    border-radius: 50%;
    background-color: var(--color-white);
    display: inline-block;
    vertical-align: middle;
}
.type_contents_movie_wrap {
    margin-inline: auto;
}
.type_contents_block_ttl {
    text-align: center;
    color: var(--color-black);
    letter-spacing: 0.04em;
}
.type_contents_block_img_area {
    background-color: var(--color-beige);
    text-align: center;
    border-radius: 16rem;
    width: 100%;
}
.type_contents_block_info {
    line-height: 1.8;
    counter-reset: number 0;
}
.type_contents_block_info > li::before {
    content: "※" counter(number);
    counter-increment: number 1; 
    margin-right: 8rem;
}
.type_contents_block_info > li + li {
    margin-top: 8rem;
}
.type_contents_block_note {
    line-height: 1.8;
}
.type_contents_block_note > li::before {
    content: '※ ';
}
.type_contents_block_note .link_line::before {
    bottom: 3rem;
}
.type_contents_bnr {
    display: block;
    margin-inline: auto;
}
/* color */
.type_contents_1,
.type_contents_1 .type_contents_desc_tag::after,
.type_contents_1 .type_contents_desc_tag_arrow::before,
.type_contents_1 .type_contents_desc_tag_arrow::after {
    background-color: var(--color-green);
}
.type_contents_1 .type_contents_lead_tag {
    background-color: var(--color-deep-green);
}
.type_contents_2,
.type_contents_2 .type_contents_desc_tag::after,
.type_contents_2 .type_contents_desc_tag_arrow::before,
.type_contents_2 .type_contents_desc_tag_arrow::after {
    background-color: var(--color-coral);
}
.type_contents_2 .type_contents_lead_tag {
    background-color: var(--color-red);
}
.type_contents_3,
.type_contents_3 .type_contents_desc_tag::after,
.type_contents_3 .type_contents_desc_tag_arrow::before,
.type_contents_3 .type_contents_desc_tag_arrow::after {
    background-color: var(--color-yellow);
}
.type_contents_3 .type_contents_lead_tag {
    background-color: var(--color-orange);
}
.type_contents_4,
.type_contents_4 .type_contents_desc_tag::after,
.type_contents_4 .type_contents_desc_tag_arrow::before,
.type_contents_4 .type_contents_desc_tag_arrow::after {
    background-color: var(--color-blue);
}
.type_contents_4 .type_contents_lead_tag {
    background-color: var(--color-deep-blue);
}
@media (min-width: 769px) {
    .type_contents {
        padding-block: 120rem 80rem;
    }
    .type_contents_inner {
        margin-inline: auto;
        display: flex;
        flex-direction: row-reverse;
        max-width: 1490rem;
        padding-right: 40rem;
    }
    .type_contents_desc_wrap {
        max-width: 860rem;
        flex-shrink: 0;
        margin-left: -25rem;
        position: relative;
        z-index: 1;
    }
    .type_contents_ttl {
        font-size: 32rem;
        line-height: 1.8;
    }
    .type_contents_ttl_inner {
        margin-top: 32rem;
    }
    .type_contents_desc {
        padding: 80rem 71rem;
        border-radius: 24rem;
        margin-top: 45rem;
    }
    .type_contents_desc_tag {
        font-size: 16rem;
        padding: 32rem 34rem 32rem 60rem;
        top: -61rem;
        border-radius: 24rem 24rem 0 0;
    }
    .type_contents_lead_ttl {
        font-size: 35rem;
        line-height: 1.6;
        letter-spacing: 0.04em;
    }
    .type_contents_lead_tag {
        font-size: 20rem;
        padding: 7rem 13rem 5rem 10rem;
        margin-bottom: 24rem;
    }
    .type_contents_lead_txt {
        line-height: 2;
        margin-top: 40rem;
        text-align: justify;
    }
    .type_contents_movie_wrap {
        margin-top: 72rem;
    }
    .type_contents_block {
        padding-top: 120rem;
    }
    .type_contents_block_ttl {
        font-size: 32rem;
        line-height: 1.8;
    }
    .type_contents_block_txt {
        line-height: 2;
        margin-top: 24rem;
    }
    .type_contents_block_img_area {
        padding-block: 40rem;
        margin-top: 48rem;
    }
    .type_contents_block_img_caption {
        margin-top: 24rem;
        font-size: 15rem;
    }
    .type_contents_block_img_caption_link {
        font-size: 16rem;
    } 
    .type_contents_block_info,
    .type_contents_block_note {
        font-size: 16rem;
        margin-top: 24rem;
    }
    .type_contents_block_info > li {
        text-indent: -34rem;
        padding-left: 34rem;
    }
    .type_contents_block_note_inner {
        margin-left: 20rem;
    }
    .type_contents_bnr {
        width: 428rem;
        margin-top: 80rem;
        transition: opacity 0.3s;
    }
    .type_contents_left {
        position: sticky;
        top: 125rem;
        height: 100%;
    }
    .type_contents_left_circle {
        width: 680rem;
        height: 680rem;
        border-radius: 50%;
        flex-shrink: 0;
        display: grid;
        align-items: end;
        justify-content: center;
        overflow: hidden;
    }
    .type_contents_1 .type_contents_left_circle {
        background-color: var(--color-light-green);
    }
    .type_contents_2 .type_contents_left_circle {
        background-color: var(--color-light-coral);
    }
    .type_contents_3 .type_contents_left_circle {
        background-color: var(--color-light-yellow);
    }
    .type_contents_4 .type_contents_left_circle {
        background-color: var(--color-light-blue);
    }
    /* ttl */
    .type_contents_ttl_1 {
        width: 560rem;
    }
    .type_contents_ttl_2 {
        width: 288rem;
    }
    .type_contents_ttl_3 {
        width: 529rem;
    }
    .type_contents_ttl_4 {
        width: 318rem;
    }
    /* 画像 */
    .type_contents_left_circle_img_1 {
        width: 481rem;
    }
    .setsuyaku_img_1 {
        width: 500rem;
    }
    .setsuyaku_img_2 {
        width: 400rem;
    }
    .setsuyaku_img_3 {
        width: 570rem;
    }
    .type_contents_left_circle_img_2 {
        width: 640rem;
    }
    .bousai_img_1 {
        width: 485rem;
    }
    .bousai_img_2 {
        width: 400rem;
    }
    .bousai_img_3 {
        width: 570rem;
    }
    .type_contents_left_circle_img_3 {
        width: 680rem;
    }
    .otegaru_img_1 {
        width: 635rem;
    }
    .otegaru_img_2 {
        width: 572rem;
    }
    .otegaru_img_3 {
        width: 578rem;
    }
    .type_contents_left_circle_img_4 {
        width: 640rem;
    }
    .smart_img_1 {
        width: 449rem;
    }
    .smart_img_2 {
        width: 425rem;
    }
    .smart_img_3 {
        width: 568rem;
    }
    @media(hover:hover) {
        .type_contents_bnr:hover {
            opacity: 0.7;
        }
    }
}
@media (max-width: 768px) {
    .type_contents_wrap.modal_content {
        height: 100vh;  /* fallback */
        height: 100dvh;
    }
    .type_contents_1,
    .type_contents_3 {
        padding-block: 84rem 64rem;
    }
    .type_contents_2,
    .type_contents_4 {
        padding-block: 110rem 64rem;
    }
    .type_contents_inner {
        padding-inline: 16rem 0;
    }
    .type_contents_ttl {
        font-size: 16rem;
        line-height: 1.6;
        margin-left: 19rem;
    }
    .type_contents_ttl_inner {
        margin-top: 10rem;
    }
    .type_contents_desc {
        padding: 60rem 35rem 80rem;
        border-radius: 24rem 0 0 24rem;
        margin-top: 32rem;
    }
    .type_contents_desc_tag {
        font-size: 12rem;
        padding: 35rem 35rem 35rem 62rem;
        top: -63rem;
        border-top-left-radius: 24rem;
    }
    .type_contents_desc_tag::before {
        z-index: 1;
    }
    .type_contents_lead_ttl {
        font-size: 25rem;
        line-height: 1.6;
    }
    .type_contents_lead_tag {
        padding: 7rem 13rem 5rem 10rem;
        margin-bottom: 16rem;
        font-size: 14rem;
    }
    .type_contents_lead_txt {
        line-height: 1.8;
        margin-top: 16rem;
    }
    .type_contents_movie_wrap {
        margin-top: 40rem;
    }
    .type_contents_block {
        padding-top: 80rem;
    }
    .type_contents_block_ttl {
        font-size: 20rem;
        line-height: 1.8;
    }
    .type_contents_block_txt {
        line-height: 1.8;
        margin-top: 16rem;
    }
    .type_contents_block_img_area {
        padding-block: 24rem;
        margin-top: 24rem;
    }
    .type_contents_block_img_caption {
        margin-top: 12rem;
        font-size: 11rem;
    }
    .type_contents_block_info {
        font-size: 10rem;
        margin-top: 16rem;
    }
    .type_contents_block_info > li {
        text-indent: -24rem;
        padding-left: 24rem;
    }
    .type_contents_block_note {
        font-size: 11rem;
        margin-top: 8rem;
    }
    .type_contents_block_note_inner {
        margin-left: 14rem;
    }
    .type_contents_block_note_inner_lg {
        margin-left: 64rem;
    }
    .type_contents_bnr {
        margin-top: 63rem;
    }
    .type_contents_left_circle {
        position: absolute;
        z-index: -1;
    }
    .type_contents_1 .type_contents_left_circle {
        top: -54rem;
        right: 17rem;
    }
    .type_contents_2 .type_contents_left_circle {
        top: -99rem;
        right: 12rem;
    }
    .type_contents_3 .type_contents_left_circle {
        top: -70rem;
        right: 0;
    }
    .type_contents_4 .type_contents_left_circle {
        top: -95rem;
        right: 0;
    }
    /* ttl */
    .type_contents_ttl_1 {
        width: 149rem;
    }
    .type_contents_ttl_2 {
        width: 154rem;
    }
    .type_contents_ttl_3 {
        width: 168rem;
    }
    .type_contents_ttl_4 {
        width: 187rem;
    }
    /* 画像 */
    .type_contents_left_circle_img_1 {
        width: 220rem;
    }
    .setsuyaku_img_1 {
        width: 277rem;
    }
    .setsuyaku_img_2 {
        width: 263rem;
    }
    .setsuyaku_img_3 {
        width: 263rem;
    }
    .type_contents_left_circle_img_2 {
        width: 220rem;
    }
    .bousai_img_1 {
        width: 263rem;
    }
    .bousai_img_2 {
        width: 280rem;
    }
    .bousai_img_3 {
        width: 263rem;
    }
    .type_contents_left_circle_img_3 {
        width: 236rem;
    }
    .otegaru_img_1 {
        width: 263rem;
    }
    .otegaru_img_2 {
        width: 263rem;
    }
    .otegaru_img_3 {
        width: 270rem;
    }
    .type_contents_left_circle_img_4 {
        width: 264rem;
    }
    .smart_img_1 {
        width: 266rem;
    }
    .smart_img_2 {
        width: 263rem;
    }
    .smart_img_3 {
        width: 263rem;
    }
}
/* animation */
.animation_ready .type_contents_left_circle_img {
    transform: translateY(110%);
}
.animation_ready.animation_loaded .is_modal_show .type_contents_left_circle_img{
    animation: illust_up 0.7s 0.5s ease-out forwards;
}
@media (min-width: 769px) {
    @keyframes illust_up {
        0% {
            transform: translateY(100%);
        }
        50% {
            transform: translateY(1%);
        }
        100% {
            transform: translateY(4%);
        }
    }
}
@media (max-width: 768px) {
    @keyframes illust_up {
        0% {
            transform: translateY(30%);
            opacity: 0;
        }
        50% {
            transform: translateY(1%);
            opacity: 1;
        }
        100% {
            transform: translateY(6%);
            opacity: 1;
        }
    }
}

/* terms_details アコーディオン */
.terms_details {
    border-top: solid 1px var(--color-black);
    border-bottom: solid 1px var(--color-black);
}
.terms_details_ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.terms_details_ttl .anchor_arrow {
    rotate: 90deg;
    border: solid 1px var(--color-black);
}
.terms_details.is-opened .anchor_arrow{ 
    rotate: 270deg;
}
.terms_contents_txt,
.terms_contents_txt_list {
    line-height: 1.8;
}
.terms_contents_txt_list > li::before {
    content: '・';
}
@media (min-width: 769px) {
    .terms_details {
        margin-top: 47rem;
    }
    .terms_details_ttl {
        padding-block: 32rem;
    }
    .terms_details_ttl .anchor_arrow::before, 
    .terms_details_ttl .anchor_arrow::after {
        left: 8rem;
    }
    .terms_contents {
        padding-inline: 8rem;
    }
    .terms_contents_inner {
        margin-bottom: 32rem;
    }
    .terms_contents_txt,
    .terms_contents_txt_list {
        font-size: 14rem;
    }
    .terms_contents_txt + .terms_contents_txt {
        margin-top: 24rem;
    }
}
@media (max-width: 768px) {
    .terms_details {
        margin-top: 32rem;
    }
    .terms_details_ttl {
        padding-block: 21rem;
    }
    .terms_details_ttl .anchor_arrow::before, 
    .terms_details_ttl .anchor_arrow::after {
        left: 6rem;
    }
    .terms_contents {
        padding-inline: 8rem;
    }
    .terms_contents_inner {
        margin-bottom: 24rem;
    }
    .terms_contents_txt,
    .terms_contents_txt_list {
        font-size: 10rem;
    }
    .terms_contents_txt + .terms_contents_txt {
        margin-top: 16rem;
    }
}

/* type_contact */
.type_contact_inner {
    background-color: var(--color-red);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.type_contact_link::before {
    content: none;
}
.type_contact_link .btn_inner {
    border: none;
}
.type_contact_neko_img_wrap {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 769px) {
    .type_contact {
        width: 860rem;
        margin: 88rem calc(50% - 430rem) 0;
    }
    .type_contact_inner {
        padding-block: 88rem 136rem;
    }
    .type_contact_txt { 
        font-size: 24rem;
        line-height: 1.8;
    }
    .type_contact_link {
        margin-top: 40rem;
    }
    .type_contact_link .btn_inner {
        font-size: 20rem;
        width: 480rem;
        padding: 30rem 0;
    }
    .type_contact_neko_img {
        width: 160rem;
    }
}
@media (max-width: 768px) {
    .type_contact {
        width: 374rem;
        margin: 64rem calc(50% - 187rem) 0;
    }
    .type_contact_inner {
        padding-block: 40rem 88rem;
    }
    .type_contact_txt { 
        line-height: 1.8;
    }
    .type_contact_link {
        margin-top: 16rem;
    }
    .type_contact_link .btn_inner {
        font-size: 15rem;
    }
    .type_contact_neko_img {
        width: 105rem;
    }
}

/* type_contact_bottom */
.type_contact_bottom {
    background-color: var(--color-red);
    color: var(--color-white);
    position: relative;
}
.type_contact_bottom::before,
.type_contact_bottom::after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
}
.type_contact_bottom_label > dt {
    display: grid;
    place-content: center;
}
.type_contact_bottom_btn {
    text-align: center;
    position: relative;
}
.type_contact_btn_neko_img_wrap {
    position: absolute;
}
@media (min-width: 769px) {
    .type_contact_bottom {
        margin: 324rem calc(50% - 430rem) 0;
        width: 860rem;
        padding: 88rem 143rem;
    }
    .type_contact_bottom::before {
        background: url(../../life-style/images/contact_frame_top.svg) no-repeat top center/ 100%;
        height: 166rem;
        top: -164rem;
    }
    .type_contact_bottom::after {
        background: url(../../life-style/images/contact_frame_bottom.svg) no-repeat bottom center/ 100%;
        height: 180rem;
        bottom: -180rem;
    }
    .type_contact_bottom_label > dt {
        font-size: 34rem;
        line-height: 1.8;
    }
    .type_contact_bottom_label > dd {
        line-height: 2;
        margin-top: 16rem;
    }
    .type_contact_bottom_btn {
        margin-top: 64rem;
    }
    .type_contact_btn_neko_img_wrap {
        bottom: -8rem;
        left: 28rem;
    }
    .type_contact_btn_neko_img {
        width: 90rem;
    }
}
@media (max-width: 768px) {
    .type_contact_bottom {
        width: 374rem;
        margin: 152rem calc(50% - 187rem) 0;
        padding: 40rem 32rem;
    }
    .type_contact_bottom::before {
        background: url(../../life-style/images/contact_frame_top_sp.svg) no-repeat top center/ 100%;
        height: 72rem;
        top: -71rem;
    }
    .type_contact_bottom::after {
        background: url(../../life-style/images/contact_frame_bottom_sp.svg) no-repeat bottom center/ 100%;
        height: 78rem;
        bottom: -77rem;
    }
    .type_contact_bottom_label > dt {
        font-size: 21rem;
        line-height: 1.8;
    }
    .type_contact_bottom_label > dd {
        line-height: 1.8;
        margin-top: 16rem;
    }
    .type_contact_bottom_btn .type_contact_link{
        margin-top: 56rem;
    }
    .type_contact_bottom_btn .btn_inner{
        text-align: left;
        line-height: 1.5;
        padding: 16rem 76rem 16rem 116rem;
    }
    .type_contact_btn_neko_img_wrap {
        bottom: -15rem;
        left: 26rem;
    }
    .type_contact_btn_neko_img {
        width: 81rem;
    }
}

/* type_sitemap */
.type_sitemap_txt {
    text-align: center;
}
.type_sitemap_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.type_sitemap_list > li{
    z-index: 1;
}
.type_sitemap_link {
    display: block;
    position: relative;
    border: solid 1px var(--color-black);
    border-radius: 20rem;
    background-color: var(--color-white);
    color: #222;
}
.type_sitemap_link::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 20rem;
    position: absolute;
    top: 9rem;
    left: 8rem;
    z-index: -1;
}
.type_sitemap_link_solar::before {
    background-color: var(--nav-yellow);
}
.type_sitemap_link_battery::before {
    background-color: var(--nav-orange);
}
.type_sitemap_link_inner {
    position: absolute;
    right: 13rem;
    bottom: 12rem;
}
.type_sitemap_link_inner::before {
    content: none;
}
.type_sitemap_label {
    transition: opacity 0.3s;
}
.type_sitemap_label > dt {
    letter-spacing: 0.05em;
}
.type_sitemap_label > dd {
    letter-spacing: 0.02em;
}
.type_sitemap_link_top {
    background-color: var(--color-black);
    color: var(--color-white);
    border: solid 1px var(--color-black);
    width: 100%;
    display: block;
    border-radius: 8rem;
    text-align: center;
    position: relative;
}
.type_sitemap_link_top .anchor_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 769px) {
    .type_sitemap {
        padding-top: 298rem;
    }
    .type_sitemap_txt {
        font-size: 28rem;
        line-height: 1.8;
        letter-spacing: 0.04em;
    }
    .type_sitemap_list {
        margin-top: 40rem;
        gap: 16rem;
    }
    .type_sitemap_link {
        width: 345rem;
        padding: 21rem 14rem 19rem 19rem;
    }
    .type_sitemap_link_inner .btn_arrow_inner {
        width: 39rem;
        height: 23rem;
    }
    .type_sitemap_label > dt {
        font-size: 18rem;
    }
    .type_sitemap_label > dd {
        font-size: 12rem;
        margin-top: 10rem;
    }
    .type_sitemap_link_top {
        font-size: 18rem;
        letter-spacing: 0.08em;
        margin-top: 50rem;
        padding-block: 24rem 22rem;
        transition: background-color 0.3s, color 0.3s;
    }
    .type_sitemap_link_top .anchor_arrow {
        right: 26rem;
    }
    .type_sitemap_link_top .anchor_arrow::before, 
    .type_sitemap_link_top .anchor_arrow::after {
        left: 10rem;
    }
    .type_sitemap_link_top .anchor_arrow::before {
        top: calc(50% - 3rem);
    }
    .type_sitemap_link_top .anchor_arrow::after {
        bottom: calc(50% - 3rem);
    }
    @media (hover:hover) {
        .type_sitemap_link:hover .btn_arrow_inner {
            background-color: var(--color-body);
        }
        .type_sitemap_link:hover .arrow_black_img {
            display: none;
        }
        .type_sitemap_link:hover .arrow_white_img {
            display: block;
        }
        .type_sitemap_link_top:hover {
            background-color: var(--color-white);
            color: var(--color-black);
        }
    }
}
@media (max-width: 768px) {
    .type_sitemap {
        padding-top: 158rem;
    }
    .type_sitemap_txt {
        font-size: 16rem;
        line-height: 1.8;
    }
    .type_sitemap_list {
        margin-top: 24rem;
        row-gap: 21rem;
    }
    .type_sitemap_list > li{
        width: 100%;
    }
    .type_sitemap_link {
        width: 100%;
        padding: 22rem 13rem 24rem 20rem;
    }
    .type_sitemap_link_inner .btn_arrow_inner {
        width: 36rem;
        height: 23rem;
    }
    .type_sitemap_label > dt {
        font-size: 18rem;
    }
    .type_sitemap_label > dd {
        font-size: 13rem;
        margin-top: 10rem;
    }
    .type_sitemap_link_top {
        letter-spacing: 0.04em;
        margin-top: 24rem;
        padding-block: 21rem;
    }
    .type_sitemap_link_top .anchor_arrow {
        right: 18rem;
    }
}

/* modal */
/* close */
.type_modal_close_back,
.type_modal_close_arrow {
    border: none;
    padding: 0;
    cursor: pointer;
}
.type_modal_close_back {
    color: var(--color-white);
    background-color: var(--color-black);
    border-radius: 40rem;
    border: solid 1px var(--color-black);
    text-align: center;
    position: relative;
    letter-spacing: 0.08em;
}
.type_modal_close_back .anchor_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.type_modal_close_arrow {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.50);
    display: grid;
    place-content: center;
}
.type_modal_close_arrow_inner {
    position: relative;
}
.type_modal_close_arrow_inner::before,
.type_modal_close_arrow_inner::after {
    content: '';
    display: inline-block;
    background-color: var(--color-black);
    position: absolute;
    height: 3px;
    border-radius: 2px;
}
@media (min-width: 769px) {
    .type_modal_close_back_wrap {
        text-align: center;
    }
    .type_modal_close_back {
        width: 730rem;
        padding: 22rem 26rem;
        margin-top: 80rem;
        transition: background-color 0.3s, color 0.3s;
    }
    .type_modal_close_back .anchor_arrow {
        right: 22rem;
    }
    .type_modal_close_back .anchor_arrow::before, 
    .type_modal_close_back .anchor_arrow::after {
        left: 10rem;
    }
    .type_modal_close_back .anchor_arrow::before {
        top: calc(50% - 3rem);
    }
    .type_modal_close_back .anchor_arrow::after {
        bottom: calc(50% - 3rem);
    }
    .type_modal_close_arrow {
        top: -90rem;
        left: calc(50% - 175rem);
        width: 48rem;
        height: 48rem;
    }
    .type_modal_close_arrow_inner::before, 
    .type_modal_close_arrow_inner::after {
        width: 12rem;
        left: -8rem;
    }
    .type_modal_close_arrow_inner::before {
        top: calc(50% - 4.8rem);
        transform: rotate(-45deg);
    }
    .type_modal_close_arrow_inner::after {
        bottom: calc(50% - 4.8rem);
        transform: rotate(45deg);
    }
    @media(hover:hover) {
        .type_modal_close_back:hover {
            background-color: var(--color-white);
            color: var(--color-black);
        }
    }
}
@media (max-width: 768px) {
    .type_modal_close_back {
        width: calc(100% - 54rem);
        margin-inline: 19rem 35rem;
        padding-block: 24rem;
        margin-top: 64rem;
    }
    .type_modal_close_back .anchor_arrow {
        right: 24rem;
    }
    .type_modal_close_arrow {
        left: 20rem;
        width: 40rem;
        height: 40rem;
    }
    .type_contents_1 .type_modal_close_arrow,
    .type_contents_3 .type_modal_close_arrow {
        top: -65rem;
    }
    .type_contents_2 .type_modal_close_arrow,
    .type_contents_4 .type_modal_close_arrow {
        top: -90rem;
    }
    .type_modal_close_arrow_inner::before, 
    .type_modal_close_arrow_inner::after {
        width: 10rem;
        left: -6rem;
    }
    .type_modal_close_arrow_inner::before {
        top: calc(50% - 4rem);
        transform: rotate(-45deg);
    }
    .type_modal_close_arrow_inner::after {
        bottom: calc(50% - 4rem);
        transform: rotate(45deg);
    }
}