@charset "UTF-8";

/* products CSS Document
=======================================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-whi: #fff;
  --color-black: #000;
  --color-blue01: #181147;
  --color-blue02: #5390CD;
  --color-lightblue01: #EAF1FA;
  --color-gry01: #9E9E9E;
  --color-gry02: #CCCCCC;
  --color-gry03: #888888;
  --color-lightgry01: #EFEFEF;
  --color-darkgry01: #656F79;
  --color-red01: #DB3535;
  --color-orange01: #FF8014;
  --color-yellow01: #FFF352;
}



/* common */
#wrap {
    min-width: initial;
    /* width: auto; */
}

#main {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

#header .headerInr {
    min-width: initial;
    /* max-width: initial; */
}

#footer .footerInr {
    min-width: initial;
    /* max-width: initial; */
}

#footer .pagetop {
    z-index: 99;
}

.upperSpace {
    min-width: initial;
    max-width: initial;
}

.c-button a {
    text-decoration: none;
}

.pc-only {
	display: none;
}

i {
    font-style: normal;
}

@media only screen and (max-width: 767px) {
	.breadcrumb {
			padding: 8px 10px;
	}
}

@media only screen and (min-width: 768px) {
	.spaceUpper__inner {
		margin-inline: auto;
		max-width: 1600px;
	}

	.l-section__inner {
			margin: 0 auto;
			padding: 0 20px;
			max-width: 1286px;
	}

	.c-button {
			transition: all .5s;
	}

	.pc-only {
			display: block;
	}

	.sp-only {
			display: none;
	}
}



/* modules */

.p-column-imgText {
    margin-top: 20px;
    padding: 20px 10px;
    background-color: var(--color-blue01);
    background-image: url(../images/lineup_img_sp.svg);
    background-position: left bottom 10px;
    background-repeat: no-repeat;
    background-size: auto 480px;
    border-radius: 20px;
    color: var(--color-whi);
}

.p-column-imgText__textbox h3 {
    font-size: 24px;
    line-height: 37px;
    font-weight: 700;
    text-align: center;
}

.p-column-imgText__textbox p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 19px;
    padding-inline: 10px;
}

.p-column-imgText__button {
    margin-top: 26px !important;
}

.p-column-imgText__button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 36px 0 20px;
    border: 1px solid var(--color-whi);
    border-radius: 20px;
    color: var(--color-whi);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    max-width: 260px;
}

.p-column-imgText__button a::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-column-imgText__image {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.p-column-imgText__image p {
    background-color: var(--color-whi);
    border-radius: 10px;
    display: block;
    height: auto;
    padding: 10px;
    max-width: 134px;
    width: calc((100% - 10px) / 2);
}

@media only screen and (min-width: 768px) {
    .p-column-imgText {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
        padding: 40px;
        background-image: url(../images/lineup_img.svg);
        background-position: left top;
        background-size: cover;
        border-radius: 20px;
    }

    .p-column-imgText__textbox {
        width: 58%;
    }

    .p-column-imgText__textbox h3 {
        font-size: 32px;
        line-height: 1.4;
        text-align: left;
    }

    .p-column-imgText__textbox p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 28px;
        padding-inline: 0;
    }

    .p-column-imgText__button {
        max-width: 260px;
        margin-top: 30px;
    }

    .p-column-imgText__button a {
        border-width: 1px;
        min-height: 40px;
        font-size: 15px;
        transition: all .3s;
    }

    .p-column-imgText__button a:hover {
        background: var(--color-whi);
        color: var(--color-blue01);
    }

    .p-column-imgText__button a:hover::after {
        border-top-color: var(--color-blue01);
        border-right-color: var(--color-blue01);
    }

    .p-column-imgText__image {
        margin-top: 0;
        gap: 20px;
    }

    .p-column-imgText__image p {
        max-width: 200px;
        width: auto;
    }

    .p-column-imgText__image img {
        height: auto;
        max-width: 180px;
        width: 100%;
    }
}



/*
 p-fixedCta
*/

.p-fixedCta {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: var(--color-blue01);
    color: var(--color-whi);

    transform: translateY(-100%);
    /* opacity: 0; */
    transition:
        transform .3s ease,
        opacity .3s ease;
}

.p-fixedCta.is-show {
    transform: translateY(0);
    /* opacity: 1; */
}

.p-fixedCta__inner {
    padding: 15px 10px;
}

.p-fixedCta__text {
    display: none;
}

.p-fixedCta__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.p-fixedCta__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 30px 0 14px;
    border-radius: 8px;
    color: var(--color-whi);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.p-fixedCta__button::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.p-fixedCta__button i {
    font-style: normal;
    font-weight: 700;
    position: relative;
}

.p-fixedCta__button>i::before {
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
}

.p-fixedCta__button>i.blank {
    font-size: 15px;
    padding-left: 23px;
}

.p-fixedCta__button>i.mail {
    font-size: 13px;
    padding-left: 23px;
}

.p-fixedCta__button>i.phone {
    font-size: 13px;
    padding-left: 17px;
}

.p-fixedCta__button>i.blank::before {
    background-image: url(../images/icon_blank03.svg);
    top: calc(50% - 9px);
    height: 19px;
    width: 18px;
}

.p-fixedCta__button>i.mail::before {
    background-image: url(../images/icon_mail01.svg);
    height: 14px;
    width: 18px;
}

.p-fixedCta__button>i.phone::before {
    background-image: url(../images/icon_phone01.svg);
    height: 14px;
    width: 14px;
}

.p-fixedCta__item:nth-child(1) {
    grid-column: 1 / 3;
}

.p-fixedCta__button--download {
    background: var(--color-yellow01);
    color: #000;
    font-size: 15px;
    line-height: 22px;
    min-height: 60px;
}

.p-fixedCta__button--mail,
.p-fixedCta__button--phone {
    background: var(--color-orange01);
}

@media screen and (min-width: 768px) {
    .p-fixedCta__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* max-width: 1680px; */
				max-width: 1520px;
        margin: 0 auto;
        padding: 38px 40px;
    }

    .p-fixedCta__text {
        display: block;
        padding-right: 15px;
        width: 27%;
    }

    .p-fixedCta__title {
        color: var(--color-whi);
        font-size: 34px;
        line-height: 1.2;
        font-weight: 700;
    }

    .p-fixedCta__lead {
        margin-top: 8px;
        color: var(--color-whi);
        font-size: 13px;
        line-height: 20px;
    }

    .p-fixedCta__buttons {
        display: flex;
        gap: 20px;
        flex: 1;
        max-width: 935px;
        min-width: 585px;
    }

    .p-fixedCta__item {
        width: 33.33%;
    }

    .p-fixedCta__button {
        border: 2px solid var(--color-orange01);
        min-height: 60px;
        border-radius: 10px;
        font-size: 18px;
        transition: all .3s;
        pointer-events: all;
    }

    .p-fixedCta__button--download {
        border: 2px solid var(--color-yellow01);
    }

    /* .p-fixedCta__button--phone[href^="tel:"] {
        webkit-pointer-events: initial;
        pointer-events: initial;
    } */

    .p-fixedCta__button--mail,
    .p-fixedCta__button--phone {
        flex: 1;
    }

    .p-fixedCta__button>i.blank::before {
        top: calc(50% - 11px);
    }

    .p-fixedCta__button>i.mail::before,
    .p-fixedCta__button>i.phone::before {
        top: calc(50% - 7px);
    }

    .p-fixedCta__button:hover {
        text-decoration: none;
    }

    .p-fixedCta__button--download:hover {
        background-color: var(--color-whi);
        color: var(--color-black);
    }

    .p-fixedCta__button--mail:hover {
        background-color: var(--color-whi);
        color: var(--color-orange01);
    }

    .p-fixedCta__button--phone:hover {
        background-color: var(--color-whi);
        color: var(--color-orange01);
    }

    .p-fixedCta__button:hover>i.mail::before {
        background-image: url(../images/icon_mail02.svg);
    }

    .p-fixedCta__button:hover>i.phone::before {
        background-image: url(../images/icon_phone02.svg);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .p-fixedCta__inner {
        padding: 19px 20px;
    }

    .p-fixedCta__buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        min-width: initial;
    }

    .p-fixedCta__item {
        width: 100%;
    }

    .p-fixedCta__item:nth-child(1) {
        grid-column: 1 / 3;
    }

    .p-fixedCta__button {
        min-height: 45px;
    }
}







/*
 p-mainvisual
*/

.headingBlock.p-mainvisual {
    position: relative;
    overflow: hidden;
    color: var(--color-whi);
    min-height: 310px;
}

.p-mainvisual__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* .p-mainvisual__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(000, 000, 000, .25);
} */

.p-mainvisual__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-mainvisual__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 16px 20px;
    min-height: 310px;
}

.p-mainvisual__label {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-inline: -6px;
}

.p-mainvisual__label li {
    padding: 9px 10px;
    border: 1px solid var(--color-whi);
    border-radius: 20px;
    background: #000;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}

.p-mainvisual__content {
    margin-top: auto;
    /* padding-left: 10px; */
}

.p-mainvisual__logo {
    margin-bottom: 7px;
    max-width: 140px;
}

.p-mainvisual__title {
    margin: 0;
    color: var(--color-whi);
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

.p-mainvisual__text {
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) {
    .headingBlock.p-mainvisual {
        background-image: url(../images/main_image.webp);
        background-size: cover;
        background-position: center top;
        min-height: 767px;
    }

    .p-mainvisual__image picture {
        display: none;
    }


    .p-mainvisual__inner {
        min-height: 687px;
        padding: 40px;
    }

    .p-mainvisual__label {
        justify-content: flex-end;
        gap: 12px;
    }

    .p-mainvisual__label li {
        padding: 8px 26px;
        border-radius: 24px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-mainvisual__logo {
        max-width: 364px;
    }

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

    .p-mainvisual__title {
        font-size: 80px;
        line-height: 90px;
        margin-top: 30px;
    }

    .p-mainvisual__text {
        font-size: 18px;
        line-height: 27px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .p-mainvisual__logo {
        max-width: clamp(
            140px,
            calc(140px + (364 - 140) * ((100vw - 768px) / (1366 - 768))),
            364px
        );
    }

    .p-mainvisual__title {
        font-size: clamp(
            26px,
            calc(26px + (80 - 26) * ((100vw - 768px) / (1366 - 768))),
            80px
        );

        line-height: clamp(
            30px,
            calc(30px + (90 - 30) * ((100vw - 768px) / (1366 - 768))),
            90px
        );

        margin-top: clamp(
            0px,
            calc(0px + (30 - 0) * ((100vw - 768px) / (1366 - 768))),
            30px
        );
    }

    .p-mainvisual__text {
        font-size: clamp(
            12px,
            calc(12px + (18 - 12) * ((100vw - 768px) / (1366 - 768))),
            18px
        );

        line-height: clamp(
            16px,
            calc(16px + (27 - 16) * ((100vw - 768px) / (1366 - 768))),
            27px
        );
    }
}






/*
 p-aboutGroup
*/

.p-aboutGroup {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    background: var(--color-lightblue01);
}

.p-aboutGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-about {
    position: relative;
    text-align: center;
}

.c-heading-about::before {
    content: "ABOUT US";
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-75%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
}

.c-heading-about__en,
.c-heading-about__ja,
.c-heading-about p {
    position: relative;
    z-index: 1;
}

.c-heading-about__en {
    display: block;
    color: var(--color-blue02);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.c-heading-about__ja {
    color: var(--color-blue01);
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
}

.c-heading-about__ja span {
    background-color: #FFF352;
    color: var(--color-blue02);
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
}

.c-heading-about p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.p-aboutGroup__text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
}

.p-aboutGroup__buttons {
    margin-top: 28px;
}

.p-aboutGroup__button + .p-aboutGroup__button {
    margin-top: 12px;
}

.p-aboutGroup__button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 35px 0 20px;
    border-radius: 30px;
    background: var(--color-orange01);
    color: var(--color-whi);
    font-size: 13px;
    line-height: 19px;
    font-weight: 700;
    text-decoration: none;
}

.p-aboutGroup__button a::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-aboutGroup__button a>i {
    font-style: normal;
    font-weight: 700;
    position: relative;
}

.p-aboutGroup__button a>i::before {
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
}

.p-aboutGroup__button a>i.blank {
    padding-left: 23px;
}

.p-aboutGroup__button a>i.mail {
    padding-left: 23px;
}

.p-aboutGroup__button a>i.blank::before {
    background-image: url(../images/icon_blank01.svg);
    height: 19px;
    width: 18px;
}

.p-aboutGroup__button a>i.mail::before {
    background-image: url(../images/icon_mail01.svg);
    height: 14px;
    width: 18px;
}

.p-aboutGroup__note {
    margin-top: 10px;
    color: var(--color-blue02);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: underline;
}

.p-aboutGroup__movie {
    margin-top: 20px;
}

.p-aboutGroup__movieInner {
    position: relative;
    overflow: hidden;
    border: 5px solid var(--color-blue02);
    border-radius: 15px;
    background: #000;
}

.p-aboutGroup__movieInner::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.p-aboutGroup__movieInner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.p-pointList {
    margin-top: 20px;
}

.p-pointList__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--color-whi);
    gap: 1px;
}

.p-pointList__item {
    background-color: var(--color-blue02);
    color: var(--color-whi);
    text-align: center;
    padding: 35px 10px;
}

.p-pointList__item strong {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
}

.p-pointList__item span {
    display: block;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .p-aboutGroup {
        padding-top: 80px;
        margin-inline: auto;
    }

    .c-heading-about {
        margin-bottom: 20px;
    }

    .c-heading-about::before {
        transform: translate(-50%, -50%);
        top: 35%;
        font-size: 260px;
    }

    .c-heading-about__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-about__ja {
        font-size: 64px;
        line-height: 82px;
    }

    .c-heading-about p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-aboutGroup__text {
        font-size: 18px;
        line-height: 27px;
    }

    .p-aboutGroup__buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .p-aboutGroup__button {
        width: 420px;
    }

    .p-aboutGroup__button + .p-aboutGroup__button {
        margin-top: 0;
    }

    .p-aboutGroup__button a {
        min-height: 80px;
        border: 2px solid var(--color-orange01);
        border-radius: 40px;
        font-size: 18px;
        transition: all .3s;
        pointer-events: all;
    }

    .p-aboutGroup__button a:hover {
        background-color: var(--color-whi);
        color: var(--color-orange01);
    }

    .p-aboutGroup__button a:hover::after {
        border-color: var(--color-orange01);
    }

    .p-aboutGroup__button a:hover>i.blank::before {
        background-image: url(../images/icon_blank02.svg);
    }

    .p-aboutGroup__button a:hover>i.mail::before {
        background-image: url(../images/icon_mail02.svg);
    }

    .p-aboutGroup__note {
        margin-top: 20px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-aboutGroup__movie {
        margin-top: 40px;
    }

    .p-aboutGroup__movieInner {
        max-width: 980px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .p-pointList {
        background-color: var(--color-blue02);
        margin-top: 55px;
    }

    .p-pointList__items {
        grid-template-columns: repeat(4, 1fr);
        margin-inline: auto;
        max-width: 1366px;
        gap: 0;
    }

    .p-pointList__item {
        border-left: 1px solid var(--color-whi);
    }

    .p-pointList__item:last-child {
        border-right: 1px solid var(--color-whi);
    }

    .p-pointList__item {
        padding: 70px 20px;
    }

    .p-pointList__item strong {
        font-size: 46px;
        line-height: 68px;
    }

    .p-pointList__item span {
        font-size: 18px;
        line-height: 27px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .p-pointList__items {
        border-bottom: 1px solid var(--color-whi);
        border-right: 1px solid var(--color-whi);
        grid-template-columns: repeat(2, 1fr);
    }

    .p-pointList__item {
        border-left: 1px solid var(--color-whi);
        border-top: 1px solid var(--color-whi);
    }

    .p-pointList__item:last-child {
        border-right: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-about__en {
        font-size: clamp(
            16px,
            calc(16px + (24 - 16) * ((100vw - 768px) / (1366 - 768))),
            24px
        );

        line-height: clamp(
            24px,
            calc(24px + (36 - 24) * ((100vw - 768px) / (1366 - 768))),
            36px
        );
    }

    .c-heading-about__ja {
        font-size: clamp(
            28px,
            calc(28px + (64 - 28) * ((100vw - 768px) / (1366 - 768))),
            64px
        );

        line-height: clamp(
            36px,
            calc(36px + (82 - 36) * ((100vw - 768px) / (1366 - 768))),
            82px
        );
    }

    .p-aboutGroup__text {
        font-size: clamp(
            12px,
            calc(12px + (18 - 12) * ((100vw - 768px) / (1366 - 768))),
            18px
        );

        line-height: clamp(
            27px,
            calc(27px + (18 - 27) * ((100vw - 768px) / (1366 - 768))),
            18px
        );
    }

    .c-heading-about::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }
}



/*
 p-problemGroup
*/

.p-problemGroup {
    position: relative;
    overflow: hidden;
    padding: 45px 0 50px;
    background: var(--color-whi);
}

.p-problemGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-problem {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.c-heading-problem::before {
    content: "PROBLEM";
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-58%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-lightblue01);
    white-space: nowrap;
    opacity: .5;
}

.c-heading-problem__en,
.c-heading-problem__ja {
    position: relative;
    z-index: 1;
}

.c-heading-problem__en {
    display: block;
    color: var(--color-blue02);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.c-heading-problem__ja {
    color: var(--color-blue01);
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.p-problem-list__item {
    position: relative;
    padding: 32px 28px 40px;
    background: var(--color-whi);
    border: 4px solid var(--color-gry02);
    border-radius: 10px;
    box-shadow: 10px 10px 0 var(--color-gry02);
}

.p-problem-list__item::before,
.p-problem-list__item::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

.p-problem-list__item::before {
    bottom: -30px;
    width: 52px;
    height: 52px;
    background: var(--color-gry02);
    z-index: -1;
    left: 53%;
}

.p-problem-list__item::after {
    bottom: -20px;
    width: 52px;
    height: 52px;
    background: var(--color-whi);
    z-index: 1;
}

.p-problem-list__item + .p-problem-list__item {
    margin-top: 80px;
}

.p-problem-list__num {
    color: var(--color-blue02);
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

.p-problem-list__item h3 {
    margin-top: 6px;
    color: var(--color-blue01);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
}

.p-problem-list__text {
    margin-top: 13px;
    font-size: 13px;
    line-height: 19px;
}

.p-problem-solution {
    margin-top: 60px;
    text-align: center;
}

.p-problem-solution p {
    color: var(--color-blue02);
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.p-problem-solution span {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.p-problem-solution span::before,
.p-problem-solution span::after {
    content: "";
    position: absolute;
    top: 57%;
    width: 4px;
    height: 75px;
    background: var(--color-blue02);
}

.p-problem-solution span::before {
    left: -15px;
    transform: translateY(-50%) rotate(-22deg);
}

.p-problem-solution span::after {
    right: -15px;
    transform: translateY(-50%) rotate(22deg);
}

.p-problem-solution mark {
    display: inline-block;
    padding: 0 4px;
    background: #fff44a;
    color: var(--color-blue01);
    font-weight: 700;
    font-style: normal;
}

.p-problem-solution small {
    font-size: 30px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .p-problemGroup {
        padding: 100px 0 75px;
    }

    .c-heading-problem {
        margin-bottom: 70px;
    }

    .c-heading-problem::before {
        top: 32%;
        transform: translate(-50%, -50%);
        font-size: 260px;
    }

    .c-heading-problem__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-problem__ja {
        font-size: 42px;
        line-height: 62px;
    }

    .p-problem-list {
        display: flex;
        gap: 60px;
    }

    .p-problem-list__item {
        width: calc((100% - 120px) / 3);
        padding: 40px 30px;
        min-height: 200px;
    }

    .p-problem-list__item + .p-problem-list__item {
        margin-top: 0;
    }

    .p-problem-list__item::before {
        bottom: -34px;
        left: 53%;
        width: 64px;
        height: 64px;
        z-index: -1;
    }

    .p-problem-list__item::after {
        bottom: -24px;
        width: 64px;
        height: 64px;
    }

    .p-problem-list__num {
        font-size: 15px;
        line-height: 22px;
    }

    .p-problem-list__item h3 {
        margin-top: 10px;
        font-size: 20px;
        line-height: 29px;
    }

    .p-problem-list__text {
        margin-top: 28px;
        font-size: 16px;
        line-height: 28px;
        position: relative;
				z-index: 2;
    }

    .p-problem-solution {
        margin-top: 95px;
    }

    .p-problem-solution p {
        font-size: 64px;
        line-height: 94px;
    }

    .p-problem-solution span::before {
        left: -50px;
    }

    .p-problem-solution span::after {
        right: -50px;
    }

    .p-problem-solution small {
        font-size: 46px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .p-problem-list {
        flex-direction: column;
    }

    .p-problem-list__item {
        min-height: initial;
        width: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-problem::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }

    .c-heading-problem__ja {
        font-size: clamp(
            18px,
            calc(18px + (42 - 18) * ((100vw - 768px) / (1366 - 768))),
            42px
        );

        line-height: clamp(
            24px,
            calc(24px + (62 - 24) * ((100vw - 768px) / (1366 - 768))),
            62px
        );
    }

    .p-problem-solution p {
        font-size: clamp(
            40px,
            calc(40px + (64 - 40) * ((100vw - 768px) / (1366 - 768))),
            64px
        );

        line-height: clamp(
            48px,
            calc(48px + (94 - 48) * ((100vw - 768px) / (1366 - 768))),
            94px
        );
    }

    .p-problem-solution small {
        font-size: clamp(
            30px,
            calc(30px + (46 - 30) * ((100vw - 768px) / (1366 - 768))),
            46px
        );
    }
}



/*
 p-worksGroup
*/

.p-worksGroup {
    position: relative;
    overflow: hidden;
    padding: 30px 0 40px;
    background: var(--color-lightblue01);
}

.p-worksGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-works {
    position: relative;
    text-align: center;
    margin-bottom: 28px;
}

.c-heading-works::before {
    content: "HOW IT WORKS";
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-100%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
    opacity: .5;
}

.c-heading-works__en,
.c-heading-works__ja,
.c-heading-works p {
    position: relative;
    z-index: 1;
}

.c-heading-works__en {
    display: block;
    color: var(--color-blue02);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.c-heading-works__ja {
    color: var(--color-blue01);
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.c-heading-works p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.c-heading-works-textGroup {
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
}

.c-heading-works .c-heading-works-textGroup__text01 {
    color: var(--color-blue02);
    font-size: 15px;
    line-height: 18px;
}

.c-heading-works .c-heading-works-textGroup__text02 {
    margin-top: 15px;
}

.p-works-compare__inner {
    margin-top: 20px;
}

.p-works-card {
    border: 4px solid var(--color-gry02);
    overflow: hidden;
    background: var(--color-whi);
    border-radius: 10px;
}

.p-works-card--bb {
    border-color: var(--color-blue02);
}

.p-works-card + .p-works-card {
    margin-top: 20px;
}

.p-works-card h3 {
    margin: 0;
    padding: 14px 10px;
    background: var(--color-gry02);
    color: var(--color-darkgry01);
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    text-align: center;
}

.p-works-card--bb h3 {
    background: var(--color-blue02);
    color: var(--color-whi);
}

.p-works-card__image {
    border-radius: 0 0 10px 10px;
    position: relative;
    padding: 10px 20px;
}

.p-works-card__image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 883px;
}

.p-works-card__legend {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 2;
}

.p-works-card__legend span {
    position: relative;
    display: block;
    padding-left: 18px;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
}

.p-works-card__legend span + span {
    margin-top: 4px;
}

.p-works-card__legend span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 12px;
    height: 12px;
}

.p-works-card__legend .yellow::before {
    background: #f0e33d;
}

.p-works-card__legend .blue {
    color: var(--color-blue02);
}

.p-works-card__legend .blue::before {
    background: #c8d9eb;
}

.p-works-card--normal .p-works-card__image img {
    /* max-width: 216px; */
    max-width: 83%;
    min-height: 182px;
    margin-inline: auto;
}

.p-works-card__list {
    padding: 20px;
}

.p-works-card__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px;
    background: var(--color-lightgry01);
    border-radius: 6px;
    font-size: 13px;
    line-height: 19px;
    font-weight: 700;
}

.p-works-card__list li + li {
    margin-top: 5px;
}

.p-works-card--normal .p-works-card__list li::before {
    content: "×";
    margin-right: 10px;
    color: #FF6060;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.p-works-card--bb .p-works-card__list li {
    background: #edf4fb;
    color: var(--color-blue02);
}

.p-works-card--bb .p-works-card__list li::before {
    content: "○";
    margin-right: 8px;
    color: var(--color-blue02);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.p-worksGroup .p-column-imgText__button > * {
    margin-inline: auto;
}

.p-works-movie {
    margin-top: 35px;
}

.p-works-movie h3 {
    color: var(--color-blue02);
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    position: relative;
}

.p-works-movie h3 span {
    background-color: var(--color-lightblue01);
    font-weight: 900;
    padding-inline: 10px;
    position: relative;
}

.p-works-movie h3::before {
    background-color: var(--color-blue02);
    content: "";
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    width: 100%;
}

.p-works-movie h3::before {
    left: 0;
}

.p-works-movie__textUpper {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
}

.p-works-movie__body {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--color-blue02);
    border-radius: 15px;
    background: #000;
    margin-top: 15px;
}

.p-works-movie__body::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.p-works-movie__body iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.p-works-movie__textBottom {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

.p-works-movie__textBottom span {
    color: var(--color-blue02);
    display: block;
    font-weight: 700;
}

.p-works-contact {
    margin-top: 20px;
    padding: 15px 20px 20px;
    background: var(--color-whi);
    border: 1px solid var(--color-blue02);
    border-radius: 20px;
    text-align: center;
}

.p-works-contact > p {
    color: var(--color-blue02);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.p-works-contact__buttons {
    margin-top: 20px;
}

.p-works-contact__button + .p-works-contact__button {
    margin-top: 12px;
}

.p-works-contact__button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 35px 0 20px;
    border-radius: 30px;
    background: var(--color-orange01);
    color: var(--color-whi);
    font-size: 12px;
    line-height: 18px;
    text-decoration: none;
}

.p-works-contact__button a::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-works-contact__button a>i {
    font-style: normal;
    font-weight: 700;
    position: relative;
}

.p-works-contact__button a>i::before {
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
}

.p-works-contact__button a>i.blank {
    padding-left: 23px;
}

.p-works-contact__button a>i.phone {
    padding-left: 19px;
}

.p-works-contact__button a>i.blank::before {
    background-image: url(../images/icon_blank01.svg);
    height: 19px;
    width: 18px;
}

.p-works-contact__button a>i.phone::before {
    background-image: url(../images/icon_phone01.svg);
    height: 14px;
    width: 14px;
}

@media screen and (min-width: 768px) {
    .p-worksGroup {
        padding: 100px 0 80px;
        margin-inline: auto;
        /* max-width: 1600px; */
    }

    .c-heading-works {
        margin-bottom: 55px;
    }

    .c-heading-works::before {
        top: 30%;
        transform: translate(-65%, -50%);
        font-size: 260px;
    }

    .c-heading-works__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-works__ja {
        font-size: 42px;
        line-height: 62px;
    }

    .c-heading-works p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 22px;
    }

    .c-heading-works .c-heading-works-textGroup__text01 {
        font-size: 18px;
        line-height: 27px;
    }

    .c-heading-works .c-heading-works-textGroup__text02 {
        margin-top: 20px;
    }

    .p-works-compare {
        /* display: flex;
        gap: 20px; */
    }

    .p-works-compare__inner {
        display: flex;
        gap: 20px;
    }

    .p-works-card {
        padding: 0 20px 20px;
    }

    .p-works-compare__inner .p-works-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: calc((100% - 20px) / 2);
    }

    .p-works-card + .p-works-card {
        margin-top: 0;
    }

    .p-works-card h3 {
        margin-inline: -20px;
        padding: 20px 10px;
        font-size: 24px;
        line-height: 36px;
    }

    .p-works-card__image {
        padding: 20px 35px 12px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        min-height: 380px;
    }

    .p-works-card__legend {
        right: 28px;
        top: 18px;
    }

    .p-works-card__legend span {
        padding-left: 22px;
        font-size: 15px;
        line-height: 24px;
    }

    .p-works-card__legend span::before {
        width: 16px;
        height: 16px;
        top: 4px;
    }

    .p-works-card__list {
        background: var(--color-lightgry01);
        border-radius: 6px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        padding: 20px;
    }

    .p-works-card__list li {
        min-height: initial;
        padding: 0;
        font-size: 15px;
        line-height: 22px;
    }

    .p-works-card--normal .p-works-card__image img {
        max-width: 384px;
        min-height: 384px;
    }

    .p-works-card--bb .p-works-card__list li {
        background: initial;
    }

    .p-works-card--normal .p-works-card__list li::before {
        content: "×";
        margin-right: 10px;
        color: #FF6060;
        font-size: 24px;
        line-height: 1;
        font-weight: 400;
    }

    .p-works-movie {
        margin-top: 45px;
    }

    .p-works-movie h3 {
        font-size: 32px;
        line-height: 46px;
    }

    .p-works-movie h3 span {
        padding-inline: 20px;
    }

    .p-works-movie__textUpper {
        font-size: 18px;
        line-height: 27px;
    }

    .p-works-movie__body {
        max-width: 650px;
        margin: 35px auto 0;
    }

    .p-works-movie__textBottom {
        font-size: 28px;
        line-height: 41px;
        margin-top: 40px;
    }

    .p-works-contact {
        margin-top: 55px;
        padding: 35px 40px;
    }

    .p-works-contact > p {
        font-size: 22px;
        line-height: 34px;
    }

    .p-works-contact__buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .p-works-contact__button {
        width: 400px;
    }

    .p-works-contact__button + .p-works-contact__button {
        margin-top: 0;
    }

    .p-works-contact__button a {
        min-height: 60px;
        font-size: 16px;
        transition: all .3s;
    }

    .p-works-contact__button a:hover {
        opacity: .75;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .p-works-compare__inner {
        flex-direction: column;
    }

    .p-works-compare__inner .p-works-card {
        width: auto;
    }

    .p-works-card__image {
        min-height: initial;
    }

    .p-works-card--normal .p-works-card__image img {
        max-width: 524px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-works::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }

    .p-works-contact__button a {
        font-size: 14px;
        padding: 0 30px 0 20px;
    }
}



/*
 p-lineupGroup
*/

.p-lineupGroup {
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px;
    background: var(--color-whi);
}

.p-lineupGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-lineup {
    position: relative;
    text-align: center;
    margin-bottom: 28px;
}

.c-heading-lineup::before {
    content: "LINEUP";
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-55%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-lightblue01);
    white-space: nowrap;
    opacity: .5;
}

.c-heading-lineup__en,
.c-heading-lineup__ja,
.c-heading-lineup p {
    position: relative;
    z-index: 1;
}

.c-heading-lineup__en {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-lineup__ja {
    color: var(--color-blue01);
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.c-heading-lineup p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}

.p-lineup-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
}

.p-lineup-list__item {
    position: relative;
    /* display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    min-height: 60px;
    padding: 10px 20px; */
    background: var(--color-blue02);
    border-radius: 10px;
    box-shadow: 6px 6px 0 var(--color-gry02);
}

.p-lineup-list__item::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-lineup-list__item a {
    border-radius: 10px;
    color: var(--color-whi);
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    min-height: 60px;
    padding: 10px 20px;
}

.p-lineup-list__item span {
    color: var(--color-whi);
    display: block;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
}

.p-lineup-list__item i {
    color: var(--color-whi);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 18px;
    padding: 0 14px;
    border: 1px solid var(--color-whi);
    border-radius: 9px;
    font-size: 10px;
    line-height: 1;
    font-style: normal;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .p-lineupGroup {
        padding: 100px 0 80px;
    }

    .c-heading-lineup {
        margin-bottom: 60px;
    }

    .c-heading-lineup::before {
        top: 28%;
        transform: translate(-50%, -50%);
        font-size: 260px;
    }

    .c-heading-lineup__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-lineup__ja {
        font-size: 42px;
        line-height: 62px;
    }

    .c-heading-lineup p {
        margin-top: 20px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-lineup-list {
        grid-template-columns: repeat(3, 1fr);
        display: flex;
        flex-wrap: wrap;
        gap: 24px 28px;
    }

    .p-lineup-list__item {
        /* flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-height: 80px;
        padding: 0 70px 0 30px; */
        border-radius: 8px;
        box-shadow: 10px 10px 0 var(--color-gry02);
        transition: all .3s;
        width: calc((100% - 56px) / 3 );
    }

    .p-lineup-list__item:hover {
        opacity: .7;
        text-decoration: none;
    }

    .p-lineup-list__item a {
        border-radius: 8px;
				flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-height: 80px;
        padding: 0 70px 0 30px;
				text-decoration: none;
    }

    .p-lineup-list__item span {
        font-size: 30px;
        line-height: 1;
    }

    .p-lineup-list__item i {
        min-width: 95px;
        height: 30px;
        margin-left: 10px;
        border-radius: 15px;
        font-size: 15px;
        padding-inline: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-lineup::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }

    .p-lineup-list__item a {
        padding: 0 40px 0 30px;
    }

    .p-lineup-list__item i {
        min-width: 70px;
    }

    .p-lineup-list__item span {
        font-size: clamp(
            18px,
            calc(18px + (27 - 18) * ((100vw - 768px) / (1366 - 768))),
            27px
        );
    }
}



/*
 p-howtoGroup
*/

.p-howtoGroup {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: var(--color-lightblue01);
}

.p-howtoGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-howto {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.c-heading-howto::before {
    content: "HOW TO USE";
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-90%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
    opacity: .5;
}

.c-heading-howto__en,
.c-heading-howto__ja,
.c-heading-howto p {
    position: relative;
    z-index: 1;
}

.c-heading-howto__en {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-howto__ja {
    color: var(--color-blue01);
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.c-heading-howto p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.p-howto-list__item + .p-howto-list__item {
    margin-top: 20px;
}

.p-howto-list__image {
    border: 4px solid var(--color-blue02);
    position: relative;
}

.p-howto-list__number {
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-blue02);
    color: var(--color-whi);
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}

.p-howto-list__image img {
    display: block;
    width: 100%;
    height: auto;
}

.p-howto-list__textbox {
    padding-top: 10px;
}

.p-howto-list__textbox h3 {
    color: var(--color-blue01);
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
}

.p-howto-list__textbox p {
    margin-top: 3px;
    font-size: 13px;
    line-height: 20px;
}

@media screen and (min-width: 768px) {
    .p-howtoGroup {
        padding: 80px 0;
		margin-inline: auto;
        /* max-width: 1600px; */
    }

    .c-heading-howto {
        margin-bottom: 60px;
    }

    .c-heading-howto::before {
        font-size: 260px;
        top: 35%;
        transform: translate(-65%, -50%);
    }

    .c-heading-howto__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-howto__ja {
        font-size: 60px;
        line-height: 1.2;
    }

    .c-heading-howto p {
        margin-top: 24px;
        font-size: 18px;
        line-height: 30px;
    }

    .p-howto-list {
        display: flex;
        flex-wrap: wrap;
        gap: 36px;
    }

    .p-howto-list__item {
        width: calc((100% - 108px) / 4);
        margin-top: 0 !important;
    }

    .p-howto-list__number {
        width: 64px;
        height: 64px;
        font-size: 34px;
    }

    .p-howto-list__image img {
        border-width: 5px;
    }

    .p-howto-list__textbox {
        padding-top: 18px;
    }

    .p-howto-list__textbox h3 {
        font-size: 22px;
        line-height: 34px;
    }

    .p-howto-list__textbox p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-howto::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }

    .p-howto-list__item {
        width: calc((100% - 36px) / 2);
    }
}



/*
 p-caseGroup
*/

.p-caseGroup {
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px;
    background: var(--color-whi);
}

.p-caseGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-case {
    position: relative;
    text-align: center;
    margin-bottom: 28px;
}

.c-heading-case::before {
    content: "CASE STUDY";
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-100%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-lightblue01);
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: .5;
}

.c-heading-case__en,
.c-heading-case__ja,
.c-heading-case p {
    position: relative;
    z-index: 1;
}

.c-heading-case__en {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-case__ja {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--color-blue01);
}

.c-heading-case p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}

/* case item */

.p-case-list__item {
    position: relative;
    background: var(--color-whi);
}

.p-case-list__item::before {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: -20px;
    height: calc(100% - 18%);
    background: var(--color-lightblue01);
    z-index: 0;
}

.p-case-list__item + .p-case-list__item {
    margin-top: 40px;
}

.p-case-list__image,
.p-case-list__textbox {
    position: relative;
    z-index: 1;
}

.p-case-list__image img {
    display: block;
    width: 100%;
    height: auto;
}

.p-case-list__textbox {
    padding: 25px 20px;
    background: var(--color-whi);
}

.p-case-list__label {
    color: var(--color-blue02);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.p-case-list__textbox h3 {
    color: var(--color-blue01);
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
}

.p-case-list__text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 19px;
}

.p-case-list__point {
    margin-top: 20px;
    padding: 13.5px 10px;
    border: 2px solid var(--color-blue02);
    color: var(--color-blue02);
    font-size: 13px;
    line-height: 19px;
    font-weight: 700;
    text-align: center;
}

.p-caseGroup__button {
    margin: 40px auto 0;
    width: 100%;
    max-width: 320px;
}

.p-caseGroup__button a {
    border: 2px solid var(--color-blue01);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 35px 0 20px;
    border-radius: 30px;
    background: var(--color-blue01);
    color: var(--color-whi);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.p-caseGroup__button a::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-caseGroup__button a i {
    display: inline-block;
    font-style: normal;
    padding-left: 25px;
    position: relative;
}

.p-caseGroup__button a i::before {
    background-image: url(../images/icon_gallery01.svg);
    background-size: cover;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: calc(50% - 9px);
    width: 18px;
}

@media screen and (min-width: 768px) {
    .p-caseGroup {
        padding: 100px 0 80px;
    }

    .p-caseGroup .l-section__inner {
        max-width: 1246px;
    }

    .c-heading-case {
        margin-bottom: 55px;
    }

    .c-heading-case::before {
        transform: translate(-65%, -50%);
        font-size: 260px;
        opacity: .7;
    }

    .c-heading-case__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-case__ja {
        font-size: 42px;
        line-height: 62px;
    }

    .c-heading-case p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-case-list__item {
        display: flex;
        align-items: flex-end;
    }

    .p-case-list__item::before {
        left: -60px;
        right: -60px;
        bottom: -40px;
        height: calc(100% - 40px);
    }

    .p-case-list__item:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .p-case-list__image {
        width: 56%;
    }

    .p-case-list__textbox {
        position: relative;
        z-index: 1;
        width: 44%;
        padding: 40px;
        min-height: 368px;
    }

    .p-case-list__item .p-case-list__textbox {
        transform: translateY(40px);
    }

    .p-case-list__item:nth-child(odd) .p-case-list__textbox {
        margin-right: -40px;
    }

    .p-case-list__item:nth-child(even) .p-case-list__textbox {
        margin-left: -40px;
    }

    .p-case-list__label {
        font-size: 15px;
        line-height: 22px;
    }

    .p-case-list__textbox h3 {
        margin-top: 10px;
        font-size: 28px;
        line-height: 41px;
    }

    .p-case-list__text {
        margin-top: 20px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-case-list__point {
        margin-top: 40px;
        padding: 16px 10px;
        font-size: 18px;
        line-height: 27px;
        max-width: 420px;
    }

    .p-caseGroup__button {
        margin-top: 80px;
        max-width: 460px;
    }

    .p-caseGroup__button a {
        min-height: 60px;
        border-radius: 30px;
        font-size: 16px;
        transition: all .3s;
    }

    .p-caseGroup__button a:hover {
        background-color: var(--color-whi);
        color: var(--color-blue01);
    }

    .p-caseGroup__button a:hover::after {
        border-top-color: var(--color-blue01);
        border-right-color: var(--color-blue01);
    }

    .p-caseGroup__button a:hover i::before {
        background-image: url(../images/icon_gallery02.svg);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-case::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }
}



/*
 p-comparisonGroup
*/

.p-comparisonGroup {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    background: var(--color-lightblue01);
}

.p-comparisonGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-comparison {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.c-heading-comparison::before {
    content: "COMPARISON";
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-100%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: .5;
}

.c-heading-comparison__en,
.c-heading-comparison__ja {
    position: relative;
    z-index: 1;
}

.c-heading-comparison__en {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-comparison__ja {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--color-blue01);
}

.p-comparison-card + .p-comparison-card {
    margin-top: 10px;
}

.p-comparison-card {
    background: var(--color-whi);
}

.p-comparison-card h3 {
    margin: 0;
    padding: 20px 5px;
    background: var(--color-gry02);
    color: var(--color-darkgry01);
    font-size: 24px;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
}

.p-comparison-card h3 span {
    display: block;
    font-size: 13px;
    line-height: 1;
}

.p-comparison-card table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.p-comparison-card th,
.p-comparison-card td {
    width: 50%;
    padding: 20px 5px;
    background: var(--color-whi);
    border: 2px solid var(--color-lightblue01);
    text-align: center;
    vertical-align: middle;
}

.p-comparison-card th {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
}

.p-comparison-card td strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.p-comparison-card td span {
    display: block;
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
}

.p-comparison-card.is-bb {
    border: 3px solid var(--color-blue02);
}

.p-comparison-card.is-bb h3 {
    background: var(--color-blue02);
    color: var(--color-whi);
}

.p-comparison-card.is-bb td strong,
.p-comparison-card.is-bb td span {
    color: var(--color-blue02);
}

.p-comparison-buttom {
    background-color: var(--color-blue02);
    margin-top: 20px;
    padding: 20px 20px 40px;
}

.p-comparison-point__item {
    background-color: var(--color-whi);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
}

.p-comparison-point__item:not(:first-child) {
    margin-top: 20px;
}

.p-comparison-point__num {
    background-color: var(--color-blue02);
    border-radius: 15px 0 20px 0;
    color: var(--color-whi);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    left: 0;
    padding-inline: 16px;
    position: absolute;
    top: 0;
    min-height: 40px;
}

.p-comparison-point__img {
    margin-bottom: 10px;
    margin-inline: auto;
}

.p-comparison-point__item:nth-child(1) .p-comparison-point__img {
    max-width: 128px;
}

.p-comparison-point__item:nth-child(2) .p-comparison-point__img {
    max-width: 95px;
}

.p-comparison-point__item:nth-child(3) .p-comparison-point__img {
    max-width: 85px;
}

.p-comparison-point__item:nth-child(4) .p-comparison-point__img {
    max-width: 91px;
}

.p-comparison-point__text {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
}

.p-comparison-contact {
    margin-top: 20px;
    padding: 16px 20px 20px;
    background: var(--color-whi);
    border: 1px solid var(--color-blue02);
    border-radius: 20px;
    text-align: center;
}

.p-comparison-contact h3 {
    margin: 0;
    color: var(--color-blue02);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.p-comparison-contact p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}

.p-comparison-contact__buttons {
    margin-top: 20px;
}

.p-comparison-contact__button {
    margin: 0;
}

.p-comparison-contact__button + .p-comparison-contact__button {
    margin-top: 10px;
}

.p-comparison-contact__button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 35px 0 20px;
    border-radius: 30px;
    background: var(--color-orange01);
    color: var(--color-whi);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.p-comparison-contact__button a::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-comparison-contact__button a>i {
    font-style: normal;
    position: relative;
}

.p-comparison-contact__button a>i::before {
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
}

.p-comparison-contact__button a>i.mail {
    padding-left: 23px;
}

.p-comparison-contact__button a>i.phone {
    padding-left: 19px;
}

.p-comparison-contact__button a>i.mail::before {
    background-image: url(../images/icon_mail01.svg);
    height: 14px;
    width: 18px;
}

.p-comparison-contact__button a>i.phone::before {
    background-image: url(../images/icon_phone01.svg);
    height: 14px;
    width: 14px;
}

@media screen and (min-width: 768px) {
    .p-comparisonGroup {
        padding-top: 105px;
		margin-inline: auto;
        /* max-width: 1600px; */
    }

    .c-heading-comparison {
        margin-bottom: 60px;
    }

    .c-heading-comparison::before {
        top: 20%;
        transform: translate(-70%, -50%);
        font-size: 260px;
    }

    .c-heading-comparison__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-comparison__ja {
        font-size: 42px;
        line-height: 62px;
    }

    .p-comparison-tableWrap {
        position: relative;
        z-index: 1;
    }

    .p-comparison-table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        position: relative;
    }

    .p-comparison-table th,
    .p-comparison-table td {
        height: 90px;
        padding: 10px;
        background: var(--color-whi);
        border: 2px solid var(--color-lightblue01);
        text-align: center;
        vertical-align: middle;
    }

    .p-comparison-table thead th {
        height: 90px;
        background: var(--color-gry02);
        color: #777;
        font-size: 24px;
        line-height: 1.3;
        font-weight: 700;
    }

    .p-comparison-table thead th:first-child {
        background: transparent;
        border: none;
    }

    .p-comparison-table thead th span {
        display: block;
        margin-top: 4px;
        font-size: 13px;
    }

    .p-comparison-table tbody th {
        width: 245px;
        font-size: 15px;
        font-weight: 700;
    }

    .p-comparison-table td strong {
        display: block;
        font-size: 30px;
        line-height: 1;
        font-weight: 500;
    }

    .p-comparison-table td span {
        display: block;
        margin-top: 4px;
        font-size: 15px;
        line-height: 1.4;
        font-weight: 700;
    }

    .p-comparison-table .is-bb {
        color: var(--color-blue02);
        border-left: 4px solid var(--color-blue02);
        border-right: 4px solid var(--color-blue02);
    }

    .p-comparison-table thead .is-bb {
        background: var(--color-blue02);
        color: var(--color-whi);
        border-top: 80px solid var(--color-blue02);
    }

    .p-comparison-table tbody tr:last-child .is-bb {
        position: relative;
    }

    .p-comparison-table tbody tr:last-child .is-bb::after {
        content: "";
        position: absolute;
        left: -4px;
        right: -4px;
        bottom: -40px;
        height: 40px;
        background: var(--color-whi);
        border-left: 4px solid var(--color-blue02);
        border-right: 4px solid var(--color-blue02);
        border-bottom: 4px solid var(--color-blue02);
    }

    .p-comparison-table thead .is-bb div {
        font-weight: 700;
        transform: translateY(-22px);
    }

    .p-comparison-buttom {
        margin-top: 80px;
        padding: 40px 40px 60px;
    }

    .p-comparison-buttom__inner {
        margin-inline: auto;
        max-width: 1286px;
    }

    .p-comparison-point__items {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .p-comparison-point__item {
        width: calc(50% - 73px);
    }

    .p-comparison-point__item:not(:first-child) {
        margin-top: initial;
    }

    .p-comparison-point__num {
        font-size: 24px;
        line-height: 36px;
        padding-inline: 23px;
        min-height: 60px;
    }

    .p-comparison-point__img {
        margin-bottom: 15px;
    }

    .p-comparison-point__img img {
        height: auto;
        width: 100%;
    }

    .p-comparison-point__item:nth-child(1) .p-comparison-point__img {
        max-width: 241px;
    }

    .p-comparison-point__item:nth-child(2) .p-comparison-point__img {
        max-width: 180px;
    }

    .p-comparison-point__item:nth-child(3) .p-comparison-point__img {
        max-width: 160px;
    }

    .p-comparison-point__item:nth-child(4) .p-comparison-point__img {
        max-width: 170px;
    }

    .p-comparison-point__text {
        font-size: 26px;
        line-height: 32px;
    }

    .p-comparison-contact {
        border: 1px solid var(--color-blue02);
        margin-top: 40px;
        padding: 40px;
        border-radius: 20px;
    }

    .p-comparison-contact h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .p-comparison-contact p {
        margin-top: 0;
        font-size: 15px;
        line-height: 22px;
    }

    .p-comparison-contact__buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .p-comparison-contact__button {
        width: 460px;
    }

    .p-comparison-contact__button + .p-comparison-contact__button {
        margin-top: 0;
    }

    .p-comparison-contact__button a {
        border: 2px solid var(--color-orange01);
        font-size: 18px;
        transition: all .3s;
        pointer-events: all;
    }

    .p-comparison-contact__button a:hover {
        background-color: var(--color-white);
        color: var(--color-orange01);
    }

    .p-comparison-contact__button a:hover::after {
        border-color: var(--color-orange01);
    }

    .p-comparison-contact__button a:hover>i.mail::before {
        background-image: url(../images/icon_mail02.svg);
    }

    .p-comparison-contact__button a:hover>i.phone::before {
        background-image: url(../images/icon_phone02.svg);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-comparison::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }

    .p-comparison-point__num {
        font-size: 18px;
        min-height: 50px;
    }

    .p-comparison-point__text {
        font-size: 24px;
    }

    .p-comparison-contact__button a {
        font-size: 15px;
    }
}



/*
 p-downloadGroup
*/

.p-downloadGroup {
    position: relative;
    overflow: hidden;
    padding: 40px 0 40px;
    background: var(--color-whi);
}

.p-downloadGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-download {
    position: relative;
    text-align: center;
    margin-bottom: 28px;
}

.c-heading-download::before {
    content: "FREE DOWNLOAD";
    position: absolute;
    left: 50%;
    top: 26%;
    transform: translate(-130%, -50%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-lightblue01);
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: .5;
}

.c-heading-download__en,
.c-heading-download__ja,
.c-heading-download p {
    position: relative;
    z-index: 1;
}

.c-heading-download__en {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-download__ja {
    margin-top: 6px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--color-blue01);
}

.c-heading-download p {
    margin-top: 11px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}

.p-download-list__item {
    padding: 20px;
    background: var(--color-lightgry01);
    border-radius: 15px;
}

.p-download-list__item + .p-download-list__item {
    margin-top: 10px;
}

.p-download-list__content {
    display: flex;
    align-items: flex-start;
}

.p-download-list__icon {
    background-image: url(../images/icon_dl01.svg);
    background-size: cover;
    flex: 0 0 auto;
    height: 48px;
    width: 55px;
    margin-right: 13px;
}

.p-download-list__icon.pdf {
    background-image: url(../images/icon_dl02.svg);
}

.p-download-list__icon img {
    width: 100%;
    height: auto;
}

.p-download-list__title {
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    color: var(--color-blue01);
}

.p-download-list__text {
    margin: 5px 0 0;
    font-size: 12px;
    line-height: 16px;
    color: var(--color-gry03);
}

.p-download-list__button {
    margin: 18px 0 0;
}

.p-download-list__button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid var(--color-blue01);
    border-radius: 20px;
    color: var(--color-blue01);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.p-download-list__button a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-blue01);
    border-right: 2px solid var(--color-blue01);
    transform: translateY(-50%) rotate(45deg);
}

.p-download-form {
    background-color: var(--color-blue01);
    background-image: url(../images/alldl_img_sp.svg);
    background-position: left 20px top 80px;
    background-size: auto 510px;
    background-repeat: no-repeat;
    border-radius: 20px;
    color: var(--color-whi);
    margin-top: 20px;
    padding: 40px 20px;
}

.p-download-form h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    text-align: center;
}

.p-download-form__lead {
    margin-top: 13px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

.p-download-form__list {
    margin-top: 30px;
}

.p-download-form__item + .p-download-form__item {
    margin-top: 20px;
}

.p-download-form__item label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}

.p-download-form__input {
    display: flex;
}

.p-download-form__input input {
    width: calc(100% - 65px);
    height: 40px;
    padding: 0 12px;
    border: none;
    border-radius: 0;
    font-size: 16px;
}

.p-download-form__input input::placeholder {
    color: var(--color-gry02);
}

.p-download-form__input span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    background: var(--color-red01);
    font-size: 15px;
    font-weight: 700;
    margin-left: 5px;
}

.p-download-form__note {
    margin-top: 15px;
}

.p-download-form__note li {
    font-size: 12px;
    line-height: 1.6;
    padding-left: 15px;
    position: relative;
}

.p-download-form__note li::before {
    content: "※";
    font-size: 12px;
    left: 0;
    position: absolute;
    top: 2px;
}

.p-download-form__button {
    margin-top: 20px;
}

.p-download-form__button button {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border: 2px solid var(--color-whi);
    border-radius: 31px;
    background: transparent;
    color: var(--color-whi);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.p-download-form__button button::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-whi);
    border-right: 2px solid var(--color-whi);
    transform: translateY(-50%) rotate(45deg);
}

.p-download-complete {
	margin-top: 30px;
	text-align: center;
}

.p-download-complete__button {
	margin-top: 20px;
}

.p-download-complete__button a {
	background: transparent;
    border: 2px solid var(--color-whi);
	border-radius: 25px;
	color: var(--color-whi);
	display: inline-flex;
    align-items: center;
    justify-content: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	min-height: 46px;
	position: relative;
	text-align: center;
	text-decoration: none;
    margin-inline: auto;
	max-width: 300px;
	width: 100%;
}

.p-download-complete__button a::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--color-whi);
	border-right: 2px solid var(--color-whi);
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
    .p-downloadGroup {
        padding: 100px 0 50px;
    }

    .c-heading-download {
        margin-bottom: 48px;
    }

    .c-heading-download::before {
        /* top: 25%; */
        font-size: 260px;
        opacity: .5;
        transform: translate(-75%, -50%);
    }

    .c-heading-download__en {
        font-size: 24px;
        line-height: 36px;
    }

    .c-heading-download__ja {
        font-size: 42px;
        line-height: 62px;
        margin-top: -8px;
    }

    .c-heading-download p {
        margin-top: 20px;
        font-size: 15px;
        line-height: 22px;
    }

    .p-download-list__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        padding: 16px 20px;
        border-radius: 15px;
    }

    .p-download-list__item + .p-download-list__item {
        margin-top: 10px;
    }

    .p-download-list__icon {
        width: 52px;
        margin-right: 24px;
    }

    .p-download-list__title {
        font-size: 18px;
        line-height: 27px;
    }

    .p-download-list__text {
        font-size: 15px;
        line-height: 22px;
    }

    .p-download-list__button {
        flex: 0 0 auto;
        width: 200px;
        margin: 0;
    }

    .p-download-list__button a {
        height: 40px;
        border-radius: 20px;
        font-size: 14px;
        transition: all .3s;
    }

    .p-download-list__button:hover a {
        background-color: var(--color-blue01);
        color: var(--color-whi);
    }

    .p-download-list__button:hover a::after {
        border-top-color: var(--color-whi);
        border-right-color: var(--color-whi);
    }

    .p-download-form {
        background-image: url(../images/alldl_img.svg);
        background-position: center;
        margin-top: 40px;
        padding: 80px 0;
        border-radius: 15px;
    }

    .p-download-form h3 {
        font-size: 26px;
        line-height: 38px;
    }

    .p-download-form__lead {
        margin-top: 13px;
        font-size: 16px;
        line-height: 24px;
    }

    .p-download-form__list {
        max-width: 620px;
        margin: 60px auto 0;
    }

    .p-download-form__item {
        display: flex;
        align-items: center;
    }

    .p-download-form__item + .p-download-form__item {
        margin-top: 16px;
    }

    .p-download-form__item label {
        width: 150px;
        font-size: 18px;
    }

    .p-download-form__input {
        width: calc(100% - 164px);
    }

    .p-download-form__input input {
        width: calc(100% - 64px);
        height: 40px;
        font-size: 15px;
    }

    .p-download-form__input input::placeholder {
        font-size: 15px;
    }

    .p-download-form__input span {
        font-size: 15px;
        margin-left: 10px;
    }

    .p-download-form__note {
        max-width: 620px;
        margin: 20px auto 0;
        padding-left: calc(50% - 27%);
    }

    .p-download-form__note li {
        font-size: 14px;
    }

    .p-download-form__button {
        max-width: 620px;
        margin: 60px auto 0;
    }

    .p-download-form__button button {
        font-size: 18px;
        transition: all .3s;
    }

    .p-download-form__button:hover button {
        background-color: var(--color-whi);
        color: var(--color-blue01);

    }

    .p-download-form__button:hover button::after {
        border-top-color: var(--color-blue01);
        border-right-color: var(--color-blue01);
    }

	.p-download-complete__button a {
        transition: all .3s;
	}

    .p-download-complete__button a:hover {
        background-color: var(--color-whi);
        color: var(--color-blue01);
    }

    .p-download-complete__button a:hover::after {
        border-top-color: var(--color-blue01);
        border-right-color: var(--color-blue01);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-download::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }
}



/*
 p-voiceGroup
*/

.p-voiceGroup {
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
    background: var(--color-lightblue01);
}

.p-voiceGroup .l-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.c-heading-voice {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.c-heading-voice::before {
    content: "VOICE";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    z-index: 0;
    width: 100%;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: .5;
}

.c-heading-voice__en,
.c-heading-voice__ja {
    position: relative;
    z-index: 1;
}

.c-heading-voice__en {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-voice__ja {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--color-blue01);
}

.p-voice-list__item {
    background: var(--color-whi);
    border-radius: 10px;
    padding: 30px 20px;
}

.p-voice-list__textbox {}

.p-voice-list__hdg {
    color: var(--color-blue01);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
}

.p-voice-list__subhdg {
    color: var(--color-blue02);
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 4px;
}

.p-voice-list__model {
    color: var(--color-blue02);
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 10px;
}

.p-voice-list__textbox p {
    margin: 0;
    font-size: 13px;
    line-height: 19px;
}

.p-voice-list__name {
    font-size: 13px;
    margin-top: 27px;
    text-align: right;
}

.p-voice-list__item + .p-voice-list__item {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .p-voiceGroup {
        padding: 110px 0 70px;
		margin-inline: auto;
        max-width: 1600px;
    }

    .c-heading-voice {
        margin-bottom: 46px;
    }

    .c-heading-voice::before {
        font-size: 260px;
        opacity: .5;
    }

    .c-heading-voice__en {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .c-heading-voice__ja {
        font-size: 30px;
    }

    .p-voice-list {
        display: flex;
        gap: 20px;
    }

    .p-voice-list__item {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        min-height: 353px;
        padding: 40px;
        width: calc((100% - 30px) / 2);
    }

    .p-voice-list__hdg {
        line-height: 27px;
        margin-bottom: 20px;
    }

		.p-voice-list__subhdg {
				font-size: 15px;
				font-weight: 700;
				line-height: 22px;
		}

    .p-voice-list__model {
        font-size: 15px;
				font-weight: 700;
        line-height: 22px;
				margin-bottom: 20px;
    }

    .p-voice-list__textbox p {
        font-size: 15px;
        line-height: 22px;
    }

    .p-voice-list__name {
        font-size: 15px;
    }

    .p-voice-list__item + .p-voice-list__item {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-voice::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }
}



/*
 p-faqGroup
*/

.p-faqGroup {
    padding: 50px 0 48px;
    background: var(--color-whi);
}

.p-faqGroup .l-section__inner {
    padding: 0 25px;
}

.c-heading-faq {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.c-heading-faq::before {
    content: "FAQ";
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -52%);
    z-index: 0;
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-lightblue01);
    letter-spacing: 0.02em;
    opacity: .5;
}

.c-heading-faq__en,
.c-heading-faq__ja {
    position: relative;
    z-index: 1;
}

.c-heading-faq__en {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-blue02);
}

.c-heading-faq__ja {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-blue01);
}

.p-faq-list__item {
    padding: 20px;
    background: var(--color-whi);
    border: 4px solid var(--color-gry02);
    border-radius: 10px;
    box-shadow: 8px 8px 0 var(--color-gry02);
}

.p-faq-list__item + .p-faq-list__item {
    margin-top: 23px;
}

.p-faq {
    margin: 0;
}

.p-faq__question,
.p-faq__answer {
    display: flex;
    align-items: flex-start;
}

.p-faq__question {
    margin-bottom: 20px;
}

.p-faq__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 14px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-whi);
}

.p-faq__icon i {
    display: block;
    font-style: normal;
    padding-bottom: 4px;
}

.p-faq__icon--q {
    background: var(--color-blue01);
}

.p-faq__icon--a {
    background: var(--color-blue02);
}

.p-faq__text {
    padding-top: 4px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--color-blue01);
}

.p-faq__body {
    padding-top: 2px;
    font-size: 13px;
    line-height: 1.75;
}

.p-faq__body p {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .p-faqGroup {
        padding: 100px 0 90px;
    }

    .c-heading-faq {
        margin-bottom: 48px;
    }

    .c-heading-faq::before {
        font-size: 260px;
        opacity: .5;
    }

    .c-heading-faq__en {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .c-heading-faq__ja {
        font-size: 36px;
    }

    .p-faq-list {
        position: relative;
        z-index: 1;
    }

    .p-faq-list__item {
        padding: 30px;
        border-radius: 12px;
        box-shadow: 12px 12px 0 var(--color-gry02);
    }

    .p-faq-list__item + .p-faq-list__item {
        margin-top: 34px;
    }

    .p-faq__question {
        margin-bottom: 24px;
    }

    .p-faq__icon {
        width: 40px;
        height: 40px;
        margin-right: 16px;
        font-size: 24px;
    }

    .p-faq__text {
        padding-top: 6px;
        font-size: 18px;
        line-height: 1.6;
    }

    .p-faq__body {
        padding-top: 5px;
        font-size: 16px;
        line-height: 1.8;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .c-heading-faq::before {
        font-size: clamp(
            100px,
            calc(100px + (260 - 100) * ((100vw - 768px) / (1366 - 768))),
            260px
        );
    }
}



/*
 p-otherGroup
 */

.p-otherGroup {}

.p-otherGroup-items {
    background-color: var(--color-blue01);
    color: var(--color-whi);
}

.p-otherGroup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: center;
}

.p-otherGroup-item:not(:first-child) {
    border-top: 2px solid var(--color-whi);
}

.p-otherGroup-icon {
    margin-inline: auto;
    margin-bottom: 20px;
}

.p-otherGroup-icon img {
    height: auto;
    width: 100%;
}

.p-otherGroup-item:nth-child(1) .p-otherGroup-icon {
    width: 59px;
}

.p-otherGroup-item:nth-child(2) .p-otherGroup-icon {
    width: 80px;
}

.p-otherGroup-item:nth-child(3) .p-otherGroup-icon {
    width: 60px;
}

.p-otherGroup-hdg {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.p-otherGroup-text {
    font-size: 13px;
    margin-top: 10px;
}

.p-otherGroup-phone {
    font-size: 32px;
    font-weight: 600;
    line-height: 47px;
    margin-top: 10px;
}

.p-otherGroup-item .c-button {
    border: 1px solid var(--color-whi);
    border-radius: 20px;
    margin-top: 20px;
    width: 260px;
}

.p-otherGroup-item .c-button a {
    color: var(--color-whi);
    position: relative;
}

.p-otherGroup-item .c-button a::after {
    background-image: url(../images/arw_whi01.svg);
    background-size: cover;
    content: "";
    height: 10px;
    position: absolute;
    right: 30px;
    top: calc(50% - 5px);
    width: 6px;
}

.p-otherGroup-item .c-button {
    border-radius: 20px;
    margin-top: 20px;
    width: 260px;
}

.p-otherGroup-item .c-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    height: 40px;
}

/* p-mailGroup */

.p-mailGroup {
    margin-inline: auto;
}

.p-mailGroup .txtBtmCoution {
    display: none;
}

@media only screen and (max-width: 767px) {
    .p-mailGroup {
        padding-inline: 15px;
    }

    body.products #form_url form .input_address input {
        font-size: 14px;
        height: 35px;
    }

    body.products #form_url form .btn_submit button {
        font-size: 14px;
        height: 35px;
    }
}

@media only screen and (min-width: 768px) {
	.p-otherGroup-items {
        margin-inline: auto;
        max-width: 1600px;
    }

	.p-otherGroup-items__inner {
        display: flex;
        margin-inline: auto;
        max-width: 1366px;
    }

    .p-otherGroup-item {
        padding-bottom: 56px;
        padding-top: 60px;
        width: 33.33%;
    }

    .p-otherGroup-item:not(:first-child) {
        border-left: 1px solid var(--color-whi);
    }

    .p-otherGroup-item:not(:first-child) {
        border-top: none;
    }

    .p-otherGroup-phone+.p-otherGroup-text {
        margin-top: 8px;
    }

    .p-otherGroup-hdg {
        line-height: 36px;
    }

    .p-otherGroup-text {
        font-size: 15px;
        margin-top: 20px;
    }

    .p-otherGroup-phone {
        margin-top: 20px;
    }

    .p-otherGroup-item .c-button {
        margin-top: 48px;
    }

    .p-otherGroup-item .c-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    .p-otherGroup-item .c-button:hover {
        background-color: var(--color-whi);
    }

    .p-otherGroup-item .c-button:hover a {
        color: var(--color-blue01);
    }

    .p-otherGroup-item .c-button:hover a::after {
        background-image: url(../images/arw_blue01.svg);
    }


    /* p-mailGroup */

    .p-mailGroup {
        max-width: 700px;
    }

    body.products #form_url form .input_address input {
        font-size: 17px !important;
        height: 50px !important;
    }

    body.products #form_url form .btn_submit button {
        font-size: 17px;
        height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .p-otherGroup-items__inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .p-otherGroup-item {
        width: auto;
    }

    .p-otherGroup-item:nth-child(3) {
        border-left: none;
        border-top: 1px solid var(--color-whi);
        grid-column: 1 / 3;
    }
}