@charset "UTF-8";
/* =================================================================
   FOUNDATION
================================================================= */
/* Reset
--------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    background-repeat: no-repeat;
}

* {
    padding: 0;
    margin: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    line-height: 1;
    word-break: normal;
    word-wrap: anywhere;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-break: strict;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ol {
    list-style: none;
}

a {
    display: block;
    -webkit-text-decoration: none;
    text-decoration: none;
}

i {
    display: inline-block;
    font-style: normal;
}

button {
    display: block;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-color: inherit;
}

th,
td {
    font-weight: inherit;
    vertical-align: top;
    text-align: left;
}

textarea {
    overflow: auto;
    resize: none;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
    text-align: inherit;
    text-transform: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-width: 1px;
    border-radius: 0;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'],
input[type='checkbox'],
input[type='radio'],
input[type='file'],
label[for],
select,
summary {
    cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
    touch-action: manipulation;
}

input[type='text'] {
    background-color: white;
}

[popover] {
    margin: auto;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Base
--------------------------------------------------------- */
html,
body {
    min-height: 100dvh;
    overflow-x: clip;
    overscroll-behavior-y: none;
}

html {
    font-size: 43%;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: revert;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-size: 1.4rem;
    color: #2b457e;
    background-color: rgba(245, 247, 251, 0.462745098);
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-optical-sizing: auto;
}

main {
    position: relative;
    z-index: 0;
}

a {
    color: #2b457e;
}

/* :hover */
a {
    transition: filter 0.3s ease 0s;
}
a:focus-visible {
    filter: brightness(1.05);
}

button,
input[type='file'],
input[type='submit'],
input[type='button'] {
    transition: filter 0.3s ease 0s;
}
button:focus-visible,
input[type='file']:focus-visible,
input[type='submit']:focus-visible,
input[type='button']:focus-visible {
    filter: brightness(1.05);
}

/* =================================================================
   LAYOUT
================================================================= */
/* Header
--------------------------------------------------------- */
.l-header {
    position: relative;
    z-index: 100;
}
.l-header__inner {
    display: flex;
    gap: 4.9rem;
    justify-content: space-between;
    padding-right: 0;
    padding-left: 4.9rem;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.1);
}
.l-header__logo {
    flex-shrink: 0;
    align-self: center;
    padding: 2.4rem 0;
}

.l-header-nav {
    display: flex;
    gap: 2.7vw;
    align-items: center;
    align-self: stretch;
}
.l-header-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.l-header-nav ul > li {
    position: relative;
}
.l-header-nav ul > li a {
    font-size: 2.3rem;
    line-height: 1.5;
    color: #333;
    transition: all 0.3s ease;
}
.l-header-nav ul > li a:focus-visible {
    color: #f26d00;
}
.l-header-nav__contact {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 1rem 4.1rem;
    padding-right: 6.3rem;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    white-space: nowrap;
    background-color: #f8b500;
    background-image: url('../../_assets/img/icon/icon_arrow_right.svg');
    background-position: right 3.4rem center;
    background-size: 1.2rem;
    transition: all 0.3s ease;
}
.l-header-nav__contact:focus-visible {
    color: white;
    background-color: #f26d00;
    background-image: url('../../_assets/img/icon/icon_arrow_right_white.svg');
    border-color: #f26d00;
}

/* Sticky Header for JS */
header[data-sticky-header] {
    position: sticky;
    top: 0;
    z-index: 1;
    transition: top 0.5s ease;
}
header[data-sticky-header][data-sticky-header='top'] {
    top: 0;
}
header[data-sticky-header][data-sticky-header='down'] {
    top: 0;
}
header[data-sticky-header][data-sticky-header='up'] {
    top: -100%;
}

/* Slidemenu
--------------------------------------------------------- */
.l-slidemenu {
    z-index: 1;
    display: none;
}

/* Slidemenu List */
.l-slidemenu-list {
    display: flex;
    margin-top: var(--header-height);
    background-color: #ffefc4;
}
.l-slidemenu-list__inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.1rem 3rem 3rem;
    box-shadow: inset 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.1);
}
.l-slidemenu-list__main-list {
    flex: 1;
    margin-bottom: 3.7rem;
}
.l-slidemenu-list__main-list li a {
    display: block;
    padding: 2.2rem 0;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}
.l-slidemenu-list__sub-list {
    margin-bottom: 5rem;
}
.l-slidemenu-list__sub-list > li a {
    padding: 1rem 0;
    font-size: 1.4rem;
}

/* Slidemenu List for JS */
[data-slidemenu-list] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 102;
    display: block;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    overflow: scroll;
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    -webkit-overflow-scrolling: touch;
}
[data-slidemenu-list][data-slidemenu-list='open'] {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0%);
}
[data-slidemenu-list] > div {
    width: 100%;
}

html:has([data-slidemenu-state='open']) {
    overflow: clip;
}

/* Slidemenu Button */
.l-slidemenu-button {
    position: relative;
    z-index: 103;
    display: none;
    width: 3.1rem;
    height: 2.1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.l-slidemenu-button::after {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    bottom: -1.2rem;
    left: -1.2rem;
    content: '';
}
.l-slidemenu-button span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0.3rem;
    background-color: #ffc100;
    border-radius: 0.5rem;
    transition: all 0.3s;
}
.l-slidemenu-button span:nth-of-type(1) {
    top: 0;
}
.l-slidemenu-button span:nth-of-type(2) {
    top: 0.9rem;
}
.l-slidemenu-button span:nth-of-type(3) {
    bottom: 0;
}

/* Slidemenu Button for JS */
[data-slidemenu-button][data-slidemenu-button='open'] span:nth-of-type(1) {
    transform: translateY(0.9rem) rotate(-45deg);
}
[data-slidemenu-button][data-slidemenu-button='open'] span:nth-of-type(2) {
    opacity: 0;
}
[data-slidemenu-button][data-slidemenu-button='open'] span:nth-of-type(3) {
    transform: translateY(-0.9rem) rotate(45deg);
}

/* Slidemenu Overlay */
.l-slidemenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    display: block;
    width: 100%;
    height: 100dvh;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Slidemenu Overlay for JS */
[data-slidemenu-overlay] {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}
[data-slidemenu-overlay][data-slidemenu-overlay='open'] {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateX(-100%);
}

/* Footer
--------------------------------------------------------- */
.l-footer {
    display: grid;
    grid-template-columns: minmax(auto, 1920px);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #2b457e;
}
.l-footer__inner {
    padding-top: 8.8rem;
    padding-bottom: 9.2rem;
}
.l-footer__nav {
    margin-bottom: 3.8rem;
}
.l-footer__nav ul {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}
.l-footer__nav ul > li a {
    font-size: 2.5rem;
    color: white;
}
.l-footer__copy {
    font-size: 2.5rem;
    color: white;
    text-align: center;
}

/* =================================================================
   COMPONENT
================================================================= */
/* Form
--------------------------------------------------------- */
/* setting */
::-moz-placeholder {
    color: #d9d9d9;
}
::placeholder {
    color: #d9d9d9;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    border-color: #999;
}

.c-select select,
.c-textarea,
.c-input-text {
    padding: 1.7rem 1.5rem;
    font-size: 2.3rem;
    line-height: 1.2;
    color: #2b2c32;
}

.c-select,
.c-textarea,
.c-input-text {
    background-color: white;
    border: solid 0.2rem #2b457e;
    border-radius: 0.5rem;
}

/* input[type="text"] & textarea */
.c-input-text {
    width: 100%;
}

.c-textarea {
    width: 100%;
    line-height: 1.4;
}

/* select */
.c-select {
    --arrow-size: 0.8rem;
    position: relative;
    display: inline-block;
    text-align: left;
}
.c-select select {
    width: 100%;
    padding-right: 4rem;
}
.c-select::after {
    position: absolute;
    right: 1.5rem;
    bottom: 50%;
    display: block;
    width: var(--arrow-size);
    height: var(--arrow-size);
    margin-bottom: 0.2rem;
    pointer-events: none;
    content: '';
    border-top: solid 0.2rem #2b2c32;
    border-right: solid 0.2rem #2b2c32;
    transform: translateY(50%) rotate(135deg);
}

/* input[type="checkbox"] */
.c-checkbox {
    --box-size: 2.6rem;
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
    width: 2.6rem;
    width: var(--box-size);
    height: 2.6rem;
    height: var(--box-size);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    border: 0.1rem solid #2b457e;
    border-radius: 0.4rem;
}
.c-checkbox::after {
    display: block;
    width: 1.3rem;
    height: 0.8rem;
    content: '';
    border-bottom: 0.3rem solid white;
    border-left: 0.3rem solid white;
    opacity: 0;
    transform: rotate(-45deg);
    transition: opacity 0.2s ease;
}
.c-checkbox:checked {
    background-color: #f8b500;
    border: 1px solid #f8b500;
}
.c-checkbox:checked::before,
.c-checkbox:checked::after {
    opacity: 1;
}

/* input[type="radio"] */
.c-radio {
    position: relative;
    width: 2rem;
    height: 2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    border: 0.1rem solid #2b457e;
    border-radius: 100%;
}
.c-radio::after {
    position: relative;
    top: 0.6rem;
    left: 0.6rem;
    display: block;
    width: calc(2rem - (0.1rem * 2 + 0.6rem * 2));
    height: calc(2rem - (0.1rem * 2 + 0.6rem * 2));
    content: '';
    background-color: white;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.c-radio:checked {
    background-color: #f8b500;
    border: 0.1rem solid #f8b500;
}
.c-radio:checked::after {
    opacity: 1;
}

/* select span "〜" */
.c-select-span {
    display: inline-block;
    margin: 0 0.7rem;
    font-size: 16px;
}

/* layout */
.c-input-layout-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 3.1rem;
    row-gap: 1.5rem;
    margin-top: 0.2rem;
}

.c-input-layout-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* label */
.c-input-label {
    display: flex;
    align-items: center;
    font-size: 16px;
}
.c-input-label input {
    flex-shrink: 0;
    margin-right: 1rem;
}

/* Button
--------------------------------------------------------- */
.c-button {
    padding: 2.7rem 2rem;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    letter-spacing: 0.096rem;
    background-color: #f8b500;
    background-image: url('../../_assets/img/icon/icon_triangle_right.svg');
    background-position: right 4.1rem center;
    border: solid 0.37rem white;
    border-radius: 6.3rem;
    box-shadow: 0 0.43rem 1.08rem 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.c-button:focus-visible {
    color: white;
    background-color: #f26d00;
    background-image: url('../../_assets/img/icon/icon_triangle_right_white.svg');
    border-color: white;
}
.c-button--cv {
    padding: 2.9rem 2rem;
    padding-right: 4rem;
    font-size: 2.8rem;
    color: white;
    background-color: #2b457e;
    background-image: url('../../_assets/img/icon/icon_triangle_right_white.svg');
    background-position: right 3.6rem center;
}
.c-button--cv:focus-visible {
    color: #2b457e;
    background-color: white;
    background-image: url('../../_assets/img/icon/icon_triangle_right.svg');
    border-color: #2b457e;
}
.c-button--submit {
    padding: 1.6rem 2rem;
    background-image: url('../../_assets/img/icon/icon_arrow_right.svg');
    background-position: right 5.6rem center;
    border: 0.3rem solid black;
}
.c-button--submit:focus-visible {
    color: white;
    background-color: #f26d00;
    background-image: url('../../_assets/img/icon/icon_arrow_right_white.svg');
    border-color: #2b457e;
}
.c-button--mail {
    padding: 2.2rem 2rem;
    font-size: 2rem;
    background-image: url('../../_assets/img/icon/icon_mail.svg');
    background-position: right 2.7rem center;
    background-size: 2.4rem;
}
.c-button--mail:focus-visible {
    color: white;
    background-color: #f26d00;
    background-image: url('../../_assets/img/icon/icon_mail_white.svg');
}
.c-button--slidemenu:focus-visible {
    color: white;
    background-color: #f26d00;
    background-image: url('../../_assets/img/icon/icon_mail_white.svg');
}

/* Title
--------------------------------------------------------- */
.c-title {
    text-align: center;
}
.c-title img,
.c-title picture {
    margin-left: auto;
    margin-right: auto;
}
.c-title h1 {
    position: relative;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}
.c-title span {
    position: relative;
    top: 0.5rem;
    z-index: 1;
    margin-left: 0.3rem;
    font-size: 4.5rem;
    font-weight: bold;
}
.c-title span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1.5rem;
    content: '';
    background-color: white;
}
.c-title span i {
    font-size: 6.5rem;
}

/* Floating
--------------------------------------------------------- */
.c-floating-area {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 200;
    width: 41.1rem;
    background-color: white;
    border-radius: 3rem;
    box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.c-floating-area__body {
    padding: 0 2rem 2rem;
}
.c-floating-area__button {
    position: relative;
    z-index: 1;
    margin-top: -3.7rem;
}
.c-floating-area__close {
    position: absolute;
    top: 2rem;
    right: 2.4rem;
    width: 3.2rem;
    height: 3.2rem;
    text-indent: -9999px;
    cursor: pointer;
    background-image: url('../../_assets/img/icon/icon_close.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.c-floating-area__close::after {
    position: absolute;
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
    content: '';
}
.c-floating-area[data-floating-target='hide'],
.c-floating-area[data-floating-target='close'] {
    visibility: hidden;
    opacity: 0;
    transform: translateX(10rem);
}
.c-floating-area[data-floating-target='show'] {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* =================================================================
   PROJECT
================================================================= */
/* Main */
.p-lp-main {
    display: grid;
    grid-template-columns: minmax(auto, 200rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    position: relative;
    padding-left: 8rem;
    padding-right: 8rem;
    background-color: white;
    background-image: url('../../_assets/img/main/main_bg_pc.webp');
    background-size: cover;
}
.p-lp-main__inner {
    padding-top: 8.2rem;
    padding-bottom: 2.8rem;
}
.p-lp-main__layout {
    display: flex;
}
.p-lp-main__layout-body {
    width: 48%;
    padding-top: 5rem;
}
.p-lp-main__layout-photo {
    width: 52%;
    padding-top: 4rem;
}
.p-lp-main__points {
    display: flex;
    gap: 2.1rem;
    justify-content: center;
}
.p-lp-main__product-photo {
    position: relative;
    right: -4rem;
    bottom: 3rem;
    width: 100%;
    max-width: 96rem;
}
.p-lp-main__button {
    width: 100%;
    max-width: 67rem;
    text-align: center;
}
.p-lp-main__button picture {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 29rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -2.7rem;
}
.p-lp-main__button span {
    display: block;
    margin-top: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #333;
}

.p-lp-main-copy__copy-sub {
    width: 43rem;
    margin-bottom: 2.8rem;
}
.p-lp-main-copy__copy-main {
    width: 100%;
    max-width: 87rem;
    margin-bottom: 2.6rem;
    margin-left: -2rem;
}
.p-lp-main-copy__text {
    display: inline-block;
    padding: 1.5rem 3.4rem 2.2rem;
    padding-right: 8.4rem;
    margin-bottom: 4.7rem;
    font-size: 4rem;
    color: white;
    letter-spacing: 0.096rem;
    background-color: #2b457e;
    clip-path: polygon(0 0, calc(100% - 3.4rem) 0, 100% 100%, 0 100%);
}
.p-lp-main-copy__text span {
    color: #ffd669;
}

/* Slider */
.p-lp-slider {
    display: grid;
    grid-template-columns: minmax(auto, 1920px);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    background-color: white;
}
.p-lp-slider__inner {
    padding-bottom: 8.6rem;
    overflow-x: hidden;
}
.p-lp-slider__slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.p-lp-slider__slider .swiper-slide {
    display: flex;
    align-items: center;
    width: 192px !important;
    height: 192px !important;
}

/* Success */
.p-lp-success {
    display: grid;
    grid-template-columns: minmax(auto, 160rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    padding-left: 8.5rem;
    padding-right: 8.5rem;
    background-color: #ffd154;
}
.p-lp-success__inner {
    padding-top: 8.6rem;
    padding-bottom: 10rem;
}
.p-lp-success__title {
    margin-bottom: 6.4rem;
}
.p-lp-success__title img {
    width: 14.2rem;
    margin-bottom: 1.2rem;
}
.p-lp-success__title h1 {
    font-size: 3.8rem;
}

.p-lp-success-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
}

.p-lp-success-item__illust {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.7rem;
}
.p-lp-success-item__text {
    display: inline-block;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.61;
}
.p-lp-success-item__text.is-1 {
    padding-left: 3rem;
}
.p-lp-success-item__text.is-2 {
    padding-left: 3rem;
}
.p-lp-success-item__text.is-3 {
    padding-left: 0;
}
.p-lp-success-item__text.is-4 {
    padding-left: 0;
}

/* About */
.p-lp-about {
    display: grid;
    grid-template-columns: minmax(auto, 190rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
}
.p-lp-about__inner {
    padding-top: 8.6rem;
    padding-bottom: 4rem;
    background-image: url('../../_assets/img/about/about_bg_pc_1.webp'), url('../../_assets/img/about/about_bg_pc_2.webp'), url('../../_assets/img/about/about_bg_pc_3.webp'), url('../../_assets/img/about/about_bg_pc_4.webp');
    background-position:
        top 14.5% left 10%,
        top 16.5% right -0.2%,
        bottom 12% right 0%,
        bottom 13.8% left 0%;
    background-size: 19.6%, 20%, 23.7%, 20.3%;
}
.p-lp-about__title {
    margin-bottom: 4.4rem;
}
.p-lp-about__title img {
    width: 17rem;
    margin-bottom: 4.8rem;
}
.p-lp-about__title h1 {
    font-size: 4.2rem;
    letter-spacing: 0.126rem;
}
.p-lp-about__text-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4.1rem;
}
.p-lp-about__text {
    font-size: 3.4rem;
    line-height: 1.6;
    text-align: center;
}
.p-lp-about__text .border {
    display: inline-block;
    padding: 0 0.7rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    line-height: 1.5;
    border: 0.2rem solid #2b457e;
}
.p-lp-about__text .box {
    display: inline-block;
    padding: 0.2rem 1rem;
    font-size: 3.8rem;
    color: white;
    background-color: #f8b500;
}
.p-lp-about__text2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 2.21;
    text-align: center;
}
.p-lp-about__photo {
    display: none;
}

/* Case */
.p-lp-case {
    display: grid;
    grid-template-columns: minmax(auto, 1600px);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    padding-left: 6.5rem;
    padding-right: 6.5rem;
}
.p-lp-case__inner {
    padding-top: 9rem;
    padding-bottom: 10.7rem;
}
.p-lp-case__title {
    margin-bottom: 6.4rem;
}
.p-lp-case__title img {
    width: 8.1rem;
    margin-bottom: 3.8rem;
}
.p-lp-case__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3.5rem;
    gap: 3.5rem;
    max-width: 160rem;
    margin-left: auto;
    margin-right: auto;
}
.p-lp-case__list > div {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    grid-gap: 0;
    gap: 0;
}

.p-lp-case-item {
    padding: 0 4rem 4.6rem;
    overflow: hidden;
    background-color: white;
    border-radius: 3rem;
}
.p-lp-case-item__head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 1.8rem 2rem 4.2rem;
    margin-left: -4rem;
    margin-right: -4rem;
    margin-bottom: 2.6rem;
    color: white;
    text-align: center;
}
.p-lp-case-item__head-title {
    display: grid;
    flex: 1;
    align-items: center;
    min-height: 10rem;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.53;
}
.p-lp-case-item__head-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1.4;
}
.p-lp-case-item__head-text::before,
.p-lp-case-item__head-text::after {
    position: relative;
    display: block;
    width: 2.1rem;
    height: 0.2rem;
    content: '';
    background-color: white;
}
.p-lp-case-item__head-text::before {
    right: 1rem;
}
.p-lp-case-item__head-text::after {
    left: 1rem;
}
.p-lp-case-item__photo {
    width: 100%;
    margin-bottom: 3.1rem;
}
.p-lp-case-item__text-image {
    align-self: end;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.3rem;
}
.p-lp-case-item__grid-text {
    display: none;
}
.p-lp-case-item__text {
    margin-bottom: 2.1rem;
    font-size: 2.6rem;
    line-height: 1.92;
}
.p-lp-case-item__text span {
    color: #f26d00;
}
.p-lp-case-item__link {
    margin-bottom: 5.5rem;
    font-size: 2.5rem;
    line-height: 1.4;
}
.p-lp-case-item__link a {
    display: inline;
    word-break: break-all;
}
.p-lp-case-item__grid-figure {
    display: flex;
    flex-direction: column;
    gap: 4.4rem;
}
.p-lp-case-item__sub-title {
    padding: 1.5rem 0;
    margin-bottom: 2.7rem;
    font-size: 2.6rem;
    color: white;
    text-align: center;
}
.p-lp-case-item__figure {
    width: 100%;
}
.p-lp-case-item.is-navy {
    border: solid 0.3rem #2b457e;
}
.p-lp-case-item.is-navy .p-lp-case-item__head {
    background-color: #2b457e;
}
.p-lp-case-item.is-navy .p-lp-case-item__sub-title {
    background-color: #2b457e;
}
.p-lp-case-item.is-pink {
    border: solid 0.3rem #db5a98;
}
.p-lp-case-item.is-pink .p-lp-case-item__head {
    background-color: #db5a98;
}
.p-lp-case-item.is-pink .p-lp-case-item__sub-title {
    background-color: #db5a98;
}
.p-lp-case-item.is-pink .p-lp-case-item__text-image {
    width: 110%;
    max-width: none;
    max-width: initial;
    margin-left: -5%;
    margin-right: -5%;
}
.p-lp-case-item.is-green {
    border: solid 0.3rem #1d8500;
}
.p-lp-case-item.is-green .p-lp-case-item__head {
    background-color: #1d8500;
}
.p-lp-case-item.is-green .p-lp-case-item__sub-title {
    background-color: #1d8500;
}
.p-lp-case-item.is-green .p-lp-case-item__text-image {
    width: 91%;
}

/* Category */
.p-lp-category {
    display: grid;
    grid-template-columns: minmax(auto, 154rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    padding-left: 4rem;
    padding-right: 4rem;
    background-color: #ffd154;
}
.p-lp-category__inner {
    padding-top: 9.6rem;
    padding-bottom: 11.1rem;
}
.p-lp-category__title {
    margin-bottom: 4.5rem;
}
.p-lp-category__title img {
    width: 17.4rem;
    margin-bottom: 3.3rem;
}
.p-lp-category__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2.7rem 4.5rem;
    gap: 2.7rem 4.5rem;
}

.p-lp-category-item {
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: center;
    min-height: 10.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 3rem;
    padding-left: 2rem;
    background-color: white;
    border-radius: 1.5rem;
}
.p-lp-category-item div {
    justify-self: center;
}
.p-lp-category-item span {
    justify-self: center;
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: center;
}
.p-lp-category-item.is-long {
    padding-right: 1rem;
    padding-left: 1rem;
}

/* Development */
.p-lp-development {
    display: grid;
    grid-template-columns: minmax(auto, 162rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    padding-left: 7rem;
    padding-right: 7rem;
    overflow-x: clip;
}
.p-lp-development__inner {
    padding-top: 9.8rem;
    padding-bottom: 8.1rem;
}
.p-lp-development__title {
    margin-bottom: 5.1rem;
}
.p-lp-development__title img {
    width: 24.7rem;
    margin-bottom: 3.5rem;
}
.p-lp-development__container {
    display: flex;
    flex-direction: column;
    gap: 6.6rem;
}

.p-lp-development-media {
    display: flex;
}
.p-lp-development-media.is-reverse {
    flex-direction: row-reverse;
}
.p-lp-development-media__photo {
    position: relative;
    z-index: 2;
}
.p-lp-development-media__photo img {
    margin-left: auto;
    margin-right: auto;
}
.p-lp-development-media__body {
    flex: 1;
}
.p-lp-development-media__head {
    display: flex;
    align-items: center;
    margin-bottom: 2.4rem;
}
.p-lp-development-media__head-catch {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 1.2rem 4.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
    color: white;
    clip-path: polygon(1.4rem 0, 100% 0, calc(100% - 1.4rem) 100%, 0 100%);
}
.p-lp-development-media__head-name {
    margin-left: 1.8rem;
    font-size: 4.5rem;
}
.p-lp-development-media__head-name span {
    margin-left: 0.6rem;
    font-size: 3rem;
}
.p-lp-development-media__text {
    position: relative;
    padding: 3.2rem 0 3.9rem;
    font-size: 2.6rem;
    line-height: 2;
}
.p-lp-development-media__text b {
    font-weight: bold;
}
.p-lp-development-media.is-blue {
    gap: 6.2rem;
}
.p-lp-development-media.is-blue .p-lp-development-media__photo img {
    width: 33.9rem;
}
.p-lp-development-media.is-blue .p-lp-development-media__head {
    margin-top: -0.6rem;
    margin-bottom: -0.8rem;
}
.p-lp-development-media.is-blue .p-lp-development-media__head-balloon {
    position: absolute;
    top: -4.5rem;
    right: -4.2rem;
    z-index: 3;
    display: block;
    width: 6.9rem;
}
.p-lp-development-media.is-blue .p-lp-development-media__head-catch {
    background-color: #4b82c9;
}
.p-lp-development-media.is-blue .p-lp-development-media__head-name {
    position: relative;
    top: 0.4rem;
    z-index: 2;
    width: 51.6rem;
    width: 45.4%;
    margin-left: 1.9rem;
}
.p-lp-development-media.is-orange,
.p-lp-development-media.is-navy,
.p-lp-development-media.is-gray {
    gap: 7.2rem;
}
.p-lp-development-media.is-orange .p-lp-development-media__photo img {
    top: -0.6rem;
    width: 31.7rem;
}
.p-lp-development-media.is-orange .p-lp-development-media__head-catch {
    background-color: #f26d00;
}
.p-lp-development-media.is-orange .p-lp-development-media__head-name {
    color: #f26d00;
}
.p-lp-development-media.is-navy .p-lp-development-media__photo img {
    top: -2rem;
    width: 35.2rem;
}
.p-lp-development-media.is-navy .p-lp-development-media__head-catch {
    background-color: #2b457e;
}
.p-lp-development-media.is-navy .p-lp-development-media__head-name {
    font-size: 4.3rem;
    color: #2b457e;
}
.p-lp-development-media.is-gray .p-lp-development-media__photo img {
    top: -3.5rem;
    width: 36.5rem;
}
.p-lp-development-media.is-gray .p-lp-development-media__head-catch {
    background-color: #545454;
}
.p-lp-development-media.is-gray .p-lp-development-media__head-name {
    color: #545454;
}
.p-lp-development-media.is-blue .p-lp-development-media__text {
    position: relative;
    z-index: 1;
    padding-right: calc(50vw - 50%);
    margin-right: calc(50% - 50vw);
    background-color: #deedff;
}
.p-lp-development-media.is-blue .p-lp-development-media__text::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    margin-left: -100vw;
    content: '';
    background-color: #deedff;
}
.p-lp-development-media.is-orange .p-lp-development-media__text,
.p-lp-development-media.is-navy .p-lp-development-media__text,
.p-lp-development-media.is-gray .p-lp-development-media__text {
    position: relative;
    z-index: 1;
    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%);
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background-color: #ffebb6;
    border-radius: 2.2rem;
}

/* CV */
.p-lp-cv {
    display: grid;
    grid-template-columns: minmax(auto, 160rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    height: 43rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-image: url('../../_assets/img/cv/cv_bg.svg');
    background-position: bottom;
    background-size: 100% 43rem;
}

.p-lp-cv-media {
    display: grid;
    grid-template-columns: minmax(auto, 1380px);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    display: flex;
    height: 43rem;
}
.p-lp-cv-media__image {
    align-self: flex-end;
    width: 50%;
}
.p-lp-cv-media__image img {
    width: 100%;
    max-width: 79.3rem;
}
.p-lp-cv-media__body {
    align-self: center;
    width: 50%;
    padding-top: 4.4%;
}
.p-lp-cv-media__text {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.6rem;
    font-size: 3rem;
    color: #2b457e;
}
.p-lp-cv-media__text::before,
.p-lp-cv-media__text::after {
    position: relative;
    top: -0.6rem;
    display: inline-block;
    width: 0.3rem;
    height: 4.8rem;
    content: '';
    background-color: #2b457e;
}
.p-lp-cv-media__text::before {
    right: 3.4rem;
    transform: rotate(-23deg);
}
.p-lp-cv-media__text::after {
    left: 2.1rem;
    transform: rotate(23deg);
}
.p-lp-cv-media__button {
    width: 100%;
    max-width: 60.3rem;
    margin-left: auto;
    margin-right: auto;
}

/* Flow */
.p-lp-flow {
    display: grid;
    grid-template-columns: minmax(auto, 208rem);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    overflow-x: hidden;
    background-image: repeating-linear-gradient(135deg, #ffeed8, #ffeed8 0.4rem, #fffff6 0.4rem, #fffff6 1.5rem, #ffeed8 1.5rem);
}
.p-lp-flow__inner {
    width: 100%;
    max-width: 1920px;
    padding-top: 10rem;
    padding-bottom: 8.8rem;
    overflow-x: hidden;
}
.p-lp-flow__title {
    margin-bottom: 6.1rem;
}
.p-lp-flow__title img {
    width: 9.2rem;
    margin-bottom: 3.8rem;
}
.p-lp-flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 6.5rem;
    gap: 6.5rem;
}
.p-lp-flow__list > li {
    position: relative;
}
.p-lp-flow__list > li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -7rem;
    z-index: 2;
    display: block;
    width: 8.2rem;
    height: 8.2rem;
    content: '';
    background-color: white;
    background-image: url('../../_assets/img/icon/icon_triangle_right_large.svg');
    background-position: left calc(50% + 0.4rem) center;
    border: 0.1rem solid #2b457e;
    border-radius: 100%;
    transform: translateY(-50%);
}
.p-lp-flow-slider .swiper {
    z-index: 1;
    padding-right: 5rem;
    overflow: visible !important;
}
.p-lp-flow-slider .swiper .swiper-wrapper {
    padding-left: 3rem;
}
.p-lp-flow-slider .swiper .swiper-slide {
    position: relative;
    z-index: 10;
    width: 33rem !important;
    height: auto !important;
}
.p-lp-flow-slider .swiper .swiper-slide::before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: auto;
    left: -8.8rem;
    z-index: 100;
    display: block;
    width: 8.2rem;
    height: 8.2rem;
    margin: auto;
    content: '';
    background-color: #f8b500;
    background-image: url('../../_assets/img/icon/icon_next.svg');
    background-position: center left 3rem;
    border-radius: 100%;
}
.p-lp-flow-slider .swiper .swiper-slide:first-child::before {
    display: none;
}

.p-lp-flow-item {
    height: 100%;
    padding: 3.5rem 2rem 3.8rem;
    background-color: white;
    border-radius: 2.2rem;
    box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.15);
}
.p-lp-flow-item__illust {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.2rem;
    transform-origin: center bottom;
}
.p-lp-flow-item__step {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.p-lp-flow-item__step div {
    padding: 0.7rem 2.9rem;
    text-align: center;
    background-color: #2b457e;
    border-radius: 2.6rem;
}
.p-lp-flow-item__step span {
    font-size: 2.2rem;
    color: white;
    text-align: center;
}
.p-lp-flow-item__step div > i {
    font-family: Roboto, sans-serif;
    font-variation-settings: 'wdth' 100;
    font-style: normal;
    font-weight: 700;
    font-optical-sizing: auto;
    margin-left: 0.2rem;
    font-size: 2.8rem;
    color: white;
}
.p-lp-flow-item__title {
    margin: 0 -1rem 2.3rem;
    font-size: 2.8rem;
    font-weight: bold;
    color: #f26d00;
    text-align: center;
}
.p-lp-flow-item__text {
    padding: 0 0.8rem;
    font-size: 2.2rem;
    line-height: 1.88;
    color: #2b457e;
}

/* FAQ */
.p-lp-faq {
    padding-left: 2rem;
    padding-right: 2rem;
    background-image: url('../../_assets/img/faq/faq_bg.svg');
    background-position: top right;
    background-size: auto;
    display: grid;
    grid-template-columns: minmax(auto, 1400px);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
}
.p-lp-faq__inner {
    padding-top: 9.3rem;
    padding-bottom: 12.2rem;
}
.p-lp-faq__title {
    margin-bottom: 4.9rem;
}
.p-lp-faq__title img {
    width: 7.2rem;
    margin-bottom: 3.7rem;
}

.p-lp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}
.p-lp-faq-accordion__item {
    padding: 0 8rem;
    background-color: white;
    border: solid 0.2rem #2b457e;
    border-radius: 1rem;
}
.p-lp-faq-accordion__question,
.p-lp-faq-accordion__answer {
    display: flex;
    gap: 4.1rem;
    align-items: flex-start;
    padding-left: 1.3rem;
}
.p-lp-faq-accordion__question span,
.p-lp-faq-accordion__answer span {
    position: relative;
    width: 10rem;
    font-size: 6rem;
    text-align: center;
}
.p-lp-faq-accordion__question p,
.p-lp-faq-accordion__answer p {
    flex: 1;
    padding-top: 0.5rem;
}
.p-lp-faq-accordion__question {
    padding-top: 2.4rem;
    padding-right: 8rem;
    padding-bottom: 2.2rem;
}
.p-lp-faq-accordion__question span {
    bottom: 1rem;
    color: #f8b500;
}
.p-lp-faq-accordion__question p {
    font-size: 2.8rem;
    line-height: 1.8;
}
.p-lp-faq-accordion__answer {
    background-image: repeating-linear-gradient(90deg, #2b457e, #2b457e 0.8rem, transparent 0.8rem, transparent 1.6rem, #2b457e 1.6rem);
    padding-top: 4rem;
    padding-bottom: 4.7rem;
    padding-right: 5rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 0.2rem;
}
.p-lp-faq-accordion__answer span {
    color: #f26d00;
}
.p-lp-faq-accordion__answer p {
    font-size: 2.6rem;
    line-height: 2.04;
}
.p-lp-faq-accordion details summary {
    display: block;
}
.p-lp-faq-accordion details summary::-webkit-details-marker {
    display: none;
}
.p-lp-faq-accordion details summary {
    position: relative;
    cursor: pointer;
}
.p-lp-faq-accordion details summary::before,
.p-lp-faq-accordion details summary::after {
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 2.8rem;
    height: 0.5rem;
    content: '';
    background-color: #f8b500;
    transition: transform 0.3s ease;
}
.p-lp-faq-accordion details summary::after {
    transform: rotate(90deg);
}
.p-lp-faq-accordion details[open] summary::after {
    transform: rotate(0);
}
.p-lp-faq-accordion details .details-content {
    overflow: hidden;
}
.p-lp-faq-accordion details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    content-visibility: unset;
    transition-duration: 0.3s;
    transition-property: grid-template-rows;
}
.p-lp-faq-accordion details[open]::details-content {
    grid-template-rows: 1fr;
}

/* Contact */
.p-lp-contact {
    display: grid;
    grid-template-columns: minmax(auto, 1100px);
    justify-content: center;
    scroll-margin-top: var(--header-height);
    transition: padding 0.3s ease;
    padding-left: 4rem;
    padding-right: 4rem;
    background-color: white;
}
.p-lp-contact__inner {
    padding-top: 9.9rem;
    padding-bottom: 13.2rem;
}
.p-lp-contact__title {
    margin-bottom: 2.2rem;
}
.p-lp-contact__title img {
    width: 15.2rem;
    margin-bottom: 4rem;
}
.p-lp-contact__text {
    margin-bottom: 3.9rem;
    font-size: 2.6rem;
    line-height: 1.81;
    text-align: center;
}
.p-lp-contact__contact-form {
    width: 100%;
    max-width: 80.4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8.7rem;
}
.p-lp-contact__estimate {
    margin-bottom: 6.7rem;
}
.p-lp-contact__agreement {
    display: flex;
    justify-content: center;
    margin-bottom: 5.6rem;
}
.p-lp-contact__agreement label {
    display: flex;
    gap: 1.7rem;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.2;
}
.p-lp-contact__privacy_txt {
    margin-bottom: 5.6rem;
    font-size: 2.2rem;
    text-align: center;
}
.p-lp-contact__privacy_txt a {
    display: inline;
}
.p-lp-contact__button {
    width: 100%;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.p-lp-contact__button.btn_form {
    display: block;
    background-repeat: no-repeat;
    margin-top: 4rem;
}

.p-lp-contact-form-estimate {
    width: 100%;
    padding: 0 2rem;
    background-color: white;
    border-radius: 2rem;
}
.p-lp-contact-form-estimate__inner {
    width: 100%;
    max-width: 80.4rem;
    margin-left: auto;
    margin-right: auto;
}
.p-lp-contact-form-estimate__title {
    display: flex;
    justify-content: center;
    margin-bottom: 5.6rem;
}
.p-lp-contact-form-estimate__title span {
    padding: 0 1rem;
    font-size: 3rem;
    line-height: 1.4;
    text-align: center;
}
.p-lp-contact-form-estimate__title span::after {
    position: relative;
    top: 1.2rem;
    display: block;
    width: 100%;
    height: 0.5rem;
    content: '';
    background-color: #f8b500;
}

.c-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.c-contact-form__item {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.c-contact-form__item label {
    font-size: 2.5rem;
}
.c-contact-form__item label span {
    padding: 0.1rem 1.1rem;
    margin-left: 1rem;
    font-size: 2.2rem;
    color: white;
    border-radius: 0.5rem;
}
.c-contact-form__item label span.is-optional {
    background-color: #888;
}
.c-contact-form__item label span.is-required {
    background-color: #f0be38;
}

/* =================================================================
   Utility
================================================================= */
/* Utility
--------------------------------------------------------- */
/* for Debugger Mode */
:root {
    --display-none: none;
    --display-none-flex: none;
    --display-none-inline: none;
}
:root[data-debug-mode='true'] {
    --display-none: block;
    --display-none-flex: flex;
    --display-none-inline: inline-block;
}

/* 非表示 */
.u-display-none {
    display: none !important;
    display: var(--display-none) !important;
}

.u-display-none-flex {
    display: none !important;
    display: var(--display-none-flex) !important;
}

.u-display-none-inline {
    display: none !important;
    display: var(--display-none-inline) !important;
}

/* PC/SP 表示切り替え */
.u-only-pc {
    display: block !important;
}
.u-only-pc--inline {
    display: inline-block !important;
}

.u-only-sp {
    display: none !important;
}

/* ページ内リンク調整 */
.u-page-link {
    scroll-margin-top: var(--header-height);
}

/* リンク無効化 */
.u-link-disabled {
    pointer-events: none;
    opacity: 0.3;
}
@media (max-width: 1920px) {
    .p-lp-cv {
        height: auto;
        background-size: auto;
    }
    .p-lp-cv-media {
        height: auto;
    }
}
@media (max-width: 1600px) {
    html {
        font-size: 43%;
    }
    .l-header-nav ul {
        gap: 2rem;
        row-gap: 1rem;
    }
    .l-header-nav ul > li a {
        font-size: clamp(16px, 0.259vw + 15px, 20px);
    }
}
@media (max-width: 1440px) {
    .l-header__inner {
        gap: 3rem;
        padding-left: 3rem;
    }
    .l-header__logo {
        width: 19rem;
        height: auto;
    }
    .l-header-nav__contact {
        padding: 1rem 3rem;
        padding-right: 6rem;
        font-size: clamp(16px, 0.259vw + 15px, 20px);
    }
    .p-lp-flow {
        display: grid;
        grid-template-columns: minmax(auto, 188rem);
        justify-content: center;
        scroll-margin-top: var(--header-height);
        transition: padding 0.3s ease;
    }
    .p-lp-flow-slider .swiper .swiper-slide {
        width: 29rem !important;
    }
    .p-lp-flow-slider .swiper .swiper-slide::before {
        left: -8.5rem;
        width: 7rem;
        height: 7rem;
        background-position: center left 2.6rem;
        background-size: auto 3rem;
    }
    .p-lp-flow-item__title {
        font-size: 2.2rem;
    }
    .p-lp-flow-item__text {
        font-size: 1.8rem;
    }
}
@media (max-width: 1400px) {
    .p-lp-main {
        display: grid;
        grid-template-columns: minmax(auto, 170rem);
        justify-content: center;
        scroll-margin-top: var(--header-height);
        transition: padding 0.3s ease;
    }
    .p-lp-main__layout-body {
        padding-top: 0;
    }
    .p-lp-main__layout-photo {
        padding-top: 7rem;
    }
    .p-lp-main__product-photo {
        max-width: 71.9rem;
    }
    .p-lp-main__button {
        max-width: 65rem;
    }
    .p-lp-main-copy__copy-sub {
        width: 40rem;
    }
    .p-lp-main-copy__copy-main {
        max-width: 72.3rem;
    }
    .p-lp-main-copy__text {
        font-size: 3.2rem;
    }
    .p-lp-success {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}
@media (max-width: 1300px) {
    .p-lp-case-item__head-text {
        font-size: 2.1rem;
    }
    .p-lp-flow-slider {
        max-width: 169rem;
        margin: 0 auto;
    }
    .p-lp-flow-slider .swiper .swiper-slide {
        width: 27rem !important;
    }
    .p-lp-flow-slider .swiper .swiper-slide::before {
        left: -6.7rem;
        width: 6rem;
        height: 6rem;
        background-position: center left 2.3rem;
        background-size: auto 2.6rem;
    }
}
@media (max-width: 1200px) {
    html {
        font-size: 40%;
    }
    .l-header-nav ul > li a {
        font-size: clamp(14px, 0.129vw + 13.5px, 16px);
    }
    .l-header-nav__contact {
        font-size: clamp(14px, 0.129vw + 13.5px, 16px);
    }
    .p-lp-main {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .p-lp-case__list {
        grid-template-columns: minmax(auto, 51rem);
        gap: 2.5rem;
        justify-content: center;
    }
    .p-lp-category__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .p-lp-category-item {
        min-height: 11.5rem;
    }
}
@media (max-width: 992px) {
    .p-lp-success-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 0.5rem;
    }
    .p-lp-category__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1.3rem;
    }
    .p-lp-category-item.is-long {
        padding-right: 3rem;
        padding-left: 2rem;
    }
    .p-lp-development-media__head {
        flex-direction: column;
        order: 1;
    }
    .p-lp-development-media__head-catch {
        padding: 0.9rem 2.6rem;
        margin-bottom: 1.6rem;
        font-size: 1.75rem;
        clip-path: polygon(1rem 0, 100% 0, calc(100% - 1rem) 100%, 0 100%);
    }
    .p-lp-development-media__head-name {
        margin-left: 0;
        font-size: 3.2rem;
    }
    .p-lp-development-media__head-name span {
        font-size: 1.9rem;
    }
    .p-lp-development-media.is-blue .p-lp-development-media__head-name {
        top: 0;
        width: 23.2rem;
        margin-left: auto;
        margin-right: auto;
    }
    .p-lp-development-media.is-navy .p-lp-development-media__head-name {
        font-size: 2.65rem;
    }
    .p-lp-faq-accordion__item {
        padding: 0 4rem;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }
    .l-header__inner {
        gap: 0;
        align-items: center;
        padding: 1.1rem 1.5rem;
    }
    .l-header__logo {
        width: 29.5rem;
        padding: 0;
    }
    .l-header__logo img {
        width: 14.8rem;
    }
    .l-header-nav {
        display: none;
    }
    .l-slidemenu {
        display: block;
    }
    .l-slidemenu-list__button {
        font-size: 1.75rem;
        letter-spacing: 0.105rem;
    }
    .l-slidemenu-button {
        display: inline-block;
    }
    .l-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .l-footer__inner {
        padding-top: 4.3rem;
        padding-bottom: 4.8rem;
    }
    .l-footer__nav {
        margin-bottom: 1.8rem;
    }
    .l-footer__nav ul > li a {
        font-size: 1.25rem;
    }
    .l-footer__copy {
        font-size: 1.25rem;
    }
    .c-select select,
    .c-textarea,
    .c-input-text {
        padding: 1.7rem 1.4rem;
        font-size: 16px;
    }
    .c-select,
    .c-textarea,
    .c-input-text {
        border: solid 0.1rem #2b457e;
        border-radius: 0.25rem;
    }
    .c-textarea {
        line-height: 1.56;
    }
    .c-select::after {
        --arrow-size: 0.8rem;
    }
    .c-checkbox {
        --box-size: 2rem;
    }
    .c-button {
        padding: 2.1rem 1.5rem;
        font-size: 1.8rem;
        letter-spacing: 0.108rem;
        background-position: right 2.4rem center;
        background-size: 1rem;
        border: solid 0.18rem white;
    }
    .c-button--cv {
        padding-right: 3rem;
        font-size: 1.7rem;
        letter-spacing: 0.03rem;
    }
    .c-button--submit {
        padding: 1.5rem 1.5rem;
        background-position: right 2.4rem center;
        background-size: 1rem;
        border: 0.1rem solid black;
    }
    .c-button--mail {
        padding: 1.8rem 2rem;
        font-size: 1.75rem;
        background-size: 2.3rem;
    }
    .c-button--slidemenu {
        padding: 1.8rem 2rem;
        padding-right: 5.7rem;
        font-size: 1.75rem;
        letter-spacing: 0.105rem;
        background-image: url('../../_assets/img/icon/icon_mail.svg');
        background-position: right 2.7rem center;
        background-size: 2.3rem;
    }
    .c-title img,
    .c-title picture {
        height: 1.6rem;
        margin-bottom: 2rem;
    }
    .c-title h1 {
        font-size: 2.5rem;
    }
    .c-title span {
        display: inline-block;
        font-size: 3.1rem;
    }
    .c-title span::after {
        bottom: -0.6rem;
        left: -0.6rem;
        width: calc(100% + 1.2rem);
        height: 1rem;
    }
    .c-title span i {
        font-size: 4.3rem;
    }
    .c-floating-area {
        right: auto;
        left: 0;
        width: 100%;
        padding: 0 1rem 1rem;
        background-color: transparent;
        background-color: initial;
        box-shadow: none;
    }
    .c-floating-area__image {
        display: none;
    }
    .c-floating-area__body {
        padding: 0;
    }
    .c-floating-area__button {
        width: 100%;
        max-width: 34.5rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        box-shadow: 0 0.43rem 1.08rem 0 rgba(0, 0, 0, 0.2);
    }
    .c-floating-area__close {
        display: none;
    }
    .c-floating-area[data-floating-target='hide'],
    .c-floating-area[data-floating-target='close'] {
        transform: translateY(10rem);
    }
    .c-floating-area[data-floating-target='show'] {
        transform: translateY(0);
    }
    .p-lp-main {
        padding-left: 0;
        padding-right: 0;
    }
    .p-lp-main__inner {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }
    .p-lp-main__layout {
        flex-direction: column;
    }
    .p-lp-main__layout-body {
        display: contents;
        width: 100%;
    }
    .p-lp-main__layout-photo {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        padding-top: 0;
    }
    .p-lp-main__points {
        gap: 0.3rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-bottom: 2rem;
    }
    .p-lp-main__product-photo {
        right: -0.4rem;
        bottom: 1.1rem;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.3rem;
    }
    .p-lp-main__button {
        order: 3;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .p-lp-main__button picture {
        width: 14.6rem;
        margin-bottom: -1.7rem;
    }
    .p-lp-main__button span {
        margin-top: 1.3rem;
        font-size: 1.2rem;
    }
    .p-lp-main-copy__copy-sub {
        width: 20.2rem;
        margin-bottom: 0.6rem;
        margin-left: 1.5rem;
    }
    .p-lp-main-copy__copy-main {
        width: 92%;
        margin-bottom: 1.1rem;
        margin-left: 0.6rem;
    }
    .p-lp-main-copy__text {
        padding: 0.9rem 1.6rem 1.1rem;
        padding-right: 3.5rem;
        margin-bottom: 0.4rem;
        font-size: 1.8rem;
        letter-spacing: 0.111rem;
        clip-path: polygon(0 0, calc(100% - 1.3rem) 0, 100% 100%, 0 100%);
    }
    .p-lp-slider__inner {
        padding-bottom: 5.1rem;
    }
    .p-lp-slider__slider .swiper-slide {
        width: 10.1rem !important;
        height: 10.1rem !important;
    }
    .p-lp-success {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .p-lp-success__inner {
        padding-top: 5.4rem;
        padding-bottom: 7.9rem;
    }
    .p-lp-success__title {
        margin-bottom: 5rem;
    }
    .p-lp-success__title img {
        margin-bottom: 2.3rem;
    }
    .p-lp-success-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem 0.5rem;
    }
    .p-lp-success-item__illust {
        margin-bottom: 1.2rem;
    }
    .p-lp-success-item__text {
        font-size: 1.6rem;
        line-height: 1.56;
    }
    .p-lp-success-item__text.is-1 {
        padding-left: 1.8rem;
    }
    .p-lp-success-item__text.is-2 {
        padding-left: 1.8rem;
    }
    .p-lp-about {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .p-lp-about__inner {
        padding-top: 6.4rem;
        padding-bottom: 3.8rem;
        background-image: none;
    }
    .p-lp-about__title {
        margin-bottom: 3.5rem;
    }
    .p-lp-about__title img {
        height: 2rem;
        margin-bottom: 2.5rem;
    }
    .p-lp-about__text-container {
        gap: 1.1rem;
        margin-bottom: 1.8rem;
    }
    .p-lp-about__text {
        font-size: 1.8rem;
    }
    .p-lp-about__text .border {
        padding: 0 0.3rem;
        margin-bottom: 0.4rem;
        border-width: 0.1rem;
    }
    .p-lp-about__text .box {
        padding: 0 0.6rem;
        font-size: 2rem;
    }
    .p-lp-about__text2 {
        margin-bottom: 4.1rem;
        font-size: 1.7rem;
        line-height: 2.5;
    }
    .p-lp-about__photo {
        display: block;
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .p-lp-case {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .p-lp-case__inner {
        padding-top: 5.8rem;
        padding-bottom: 4.4rem;
    }
    .p-lp-case__title {
        margin-bottom: 3.3rem;
    }
    .p-lp-case__list > div {
        display: block;
    }
    .p-lp-case-item {
        padding: 0 2rem 3.15rem;
        border-width: 0.15rem !important;
        border-radius: 1.5rem;
    }
    .p-lp-case-item__head {
        gap: 0.8rem;
        padding: 1.3rem 2rem 1.8rem;
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: 2rem;
    }
    .p-lp-case-item__head-title {
        min-height: auto;
        font-size: 2.3rem;
        line-height: 1.41;
    }
    .p-lp-case-item__head-text {
        font-size: 1.75rem;
    }
    .p-lp-case-item__photo {
        margin-bottom: 2.7rem;
    }
    .p-lp-case-item__text-image {
        margin-bottom: 2.2rem;
    }
    .p-lp-case-item__text-image.is-1 {
        width: 77%;
    }
    .p-lp-case-item__text-image.is-2 {
        width: 83%;
    }
    .p-lp-case-item__text-image.is-3 {
        width: 83%;
    }
    .p-lp-case-item__text {
        margin-bottom: 1rem;
        font-size: 1.75rem;
        line-height: 1.8;
    }
    .p-lp-case-item__link {
        margin-bottom: 2.9rem;
        font-size: 1.75rem;
        line-height: 1.8;
    }
    .p-lp-case-item__grid-figure {
        gap: 2.75rem;
    }
    .p-lp-case-item__sub-title {
        padding: 0.9rem 0;
        margin-bottom: 1.8rem;
        font-size: 1.85rem;
        letter-spacing: 0.185rem;
    }
    .p-lp-category {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .p-lp-category__inner {
        padding-top: 4.3rem;
        padding-bottom: 4.85rem;
    }
    .p-lp-category__title {
        margin-bottom: 2.8rem;
    }
    .p-lp-category__title img {
        margin-bottom: 1.5rem;
    }
    .p-lp-category-item {
        grid-template-columns: 3.1rem 1fr;
        min-height: 5rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        padding-right: 1.1rem;
        padding-left: 1.2rem;
        border-radius: 0.75rem;
    }
    .p-lp-category-item div img {
        height: 3rem;
    }
    .p-lp-category-item span {
        font-size: 1.5rem;
    }
    .p-lp-category-item.is-long {
        padding-right: 1.1rem;
        padding-left: 1.2rem;
    }
    .p-lp-development {
        padding-left: 0;
        padding-right: 0;
    }
    .p-lp-development__inner {
        padding-top: 5.5rem;
        padding-bottom: 3.2rem;
    }
    .p-lp-development__title {
        margin-bottom: 4.6rem;
    }
    .p-lp-development__title img {
        margin-bottom: 2.3rem;
    }
    .p-lp-development__container {
        gap: 5rem;
    }
    .p-lp-development-media {
        flex-direction: column;
    }
    .p-lp-development-media.is-reverse {
        flex-direction: column;
    }
    .p-lp-development-media__photo {
        order: 2;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .p-lp-development-media__body {
        display: contents;
    }
    .p-lp-development-media__text {
        order: 3;
        padding: 2.3rem 0 3.7rem;
        font-size: clamp(16px, 0.518vw + 14.1px, 24px);
        line-height: 1.94;
    }
    .p-lp-development-media.is-blue {
        gap: initial;
    }
    .p-lp-development-media.is-blue .p-lp-development-media__photo img {
        width: 61.9%;
    }
    .p-lp-development-media.is-blue .p-lp-development-media__head {
        position: relative;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }
    .p-lp-development-media.is-blue .p-lp-development-media__head-catch {
        margin-bottom: 0.5rem;
    }
    .p-lp-development-media.is-orange,
    .p-lp-development-media.is-navy,
    .p-lp-development-media.is-gray {
        gap: initial;
    }
    .p-lp-development-media.is-orange .p-lp-development-media__photo img {
        top: 0;
        width: 58%;
    }
    .p-lp-development-media.is-navy .p-lp-development-media__photo img {
        top: 0;
        width: 70.1%;
    }
    .p-lp-development-media.is-gray .p-lp-development-media__photo img {
        top: 0;
        width: 58.4%;
    }
    .p-lp-development-media.is-blue .p-lp-development-media__photo {
        background: linear-gradient(to bottom, transparent, transparent 44%, #deedff 44%, #deedff);
    }
    .p-lp-development-media.is-blue .p-lp-development-media__text {
        padding-left: 2.8rem;
        padding-right: 2.8rem;
        margin-right: 0;
    }
    .p-lp-development-media.is-orange .p-lp-development-media__photo,
    .p-lp-development-media.is-navy .p-lp-development-media__photo,
    .p-lp-development-media.is-gray .p-lp-development-media__photo {
        background: linear-gradient(to bottom, transparent, transparent 54%, #ffebb6 54%, #ffebb6);
    }
    .p-lp-development-media.is-orange .p-lp-development-media__text,
    .p-lp-development-media.is-navy .p-lp-development-media__text,
    .p-lp-development-media.is-gray .p-lp-development-media__text {
        padding-left: 2.8rem;
        padding-right: 2.8rem;
        margin-left: 0;
        border-radius: 0;
    }
    .p-lp-cv {
        aspect-ratio: 1/1;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        background-image: url('../../_assets/img/cv/cv_bg_sp.webp');
        background-position: bottom center;
        background-size: cover;
    }
    .p-lp-cv-media {
        flex-direction: column;
    }
    .p-lp-cv-media__image {
        display: none;
    }
    .p-lp-cv-media__body {
        width: 100%;
        padding-top: 69%;
    }
    .p-lp-cv-media__text {
        margin-bottom: 1.6rem;
        font-size: 1.9rem;
    }
    .p-lp-cv-media__text::before,
    .p-lp-cv-media__text::after {
        top: -0.1rem;
        width: 0.15rem;
        height: 2.2rem;
    }
    .p-lp-cv-media__text::before {
        right: 1.8rem;
        transform: rotate(-18deg);
    }
    .p-lp-cv-media__text::after {
        left: 1rem;
        transform: rotate(18deg);
    }
    .p-lp-cv-media__button {
        width: 100%;
        max-width: 34.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    .p-lp-flow {
        background-image: repeating-linear-gradient(135deg, #ffeed8, #ffeed8 0.2rem, #fffff6 0.2rem, #fffff6 0.8rem, #ffeed8 0.8rem);
    }
    .p-lp-flow__inner {
        padding-top: 6.7rem;
        padding-bottom: 7.2rem;
    }
    .p-lp-flow__title {
        margin-bottom: 3.4rem;
    }
    .p-lp-flow__list {
        grid-template-columns: repeat(1, 1fr);
    }
    .p-lp-flow-slider .swiper {
        padding-right: 0;
    }
    .p-lp-flow-slider .swiper .swiper-wrapper {
        padding-left: 0;
    }
    .p-lp-flow-slider .swiper .swiper-slide::before {
        left: -6rem;
        width: 5rem;
        height: 5rem;
        background-position: center left 2.1rem;
        background-size: auto 1.8rem;
    }
    .p-lp-flow-item {
        padding: 3rem 3.2rem 5.8rem;
        border-radius: 1.5rem;
    }
    .p-lp-flow-item__illust {
        margin-bottom: 3rem;
    }
    .p-lp-flow-item__step {
        margin-bottom: 2.3rem;
    }
    .p-lp-flow-item__step div {
        padding: 0.5rem 2rem;
    }
    .p-lp-flow-item__step span {
        font-size: 1.97rem;
    }
    .p-lp-flow-item__step div > i {
        font-size: 2.6rem;
    }
    .p-lp-flow-item__title {
        margin-bottom: 1.8rem;
        font-size: 2.5rem;
    }
    .p-lp-flow-item__text {
        margin-left: -1rem;
        margin-right: -1rem;
        font-size: 1.75rem;
        line-height: 1.83;
    }
    .p-lp-faq {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        background-image: url('../../_assets/img/faq/faq_bg_sp.svg');
        background-position: top right;
    }
    .p-lp-faq__inner {
        padding-top: 5.1rem;
        padding-bottom: 4.6rem;
    }
    .p-lp-faq__title {
        margin-bottom: 2.4rem;
    }
    .p-lp-faq-accordion {
        gap: 0.9rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .p-lp-faq-accordion__item {
        padding: 0 1.7rem;
        border: solid 0.1rem #2b457e;
        border-radius: 0.5rem;
    }
    .p-lp-faq-accordion__question,
    .p-lp-faq-accordion__answer {
        gap: 2.1rem;
    }
    .p-lp-faq-accordion__question span,
    .p-lp-faq-accordion__answer span {
        width: 3rem;
        font-size: 3rem;
    }
    .p-lp-faq-accordion__question {
        padding: 1.7rem 0 1.8rem;
        padding-right: 3rem;
    }
    .p-lp-faq-accordion__question span {
        bottom: 0.5rem;
    }
    .p-lp-faq-accordion__question p {
        padding-top: 0.2rem;
        font-size: 1.6rem;
        line-height: 1.56;
    }
    .p-lp-faq-accordion__answer {
        background-image: repeating-linear-gradient(90deg, #2b457e, #2b457e 0.4rem, transparent 0.4rem, transparent 0.8rem, #2b457e 0.8rem);
        padding: 1.9rem 0 2.8rem;
        padding-right: 1.1rem;
        background-size: 100% 0.1rem;
    }
    .p-lp-faq-accordion__answer p {
        font-size: 1.5rem;
        line-height: 1.9;
    }
    .p-lp-faq-accordion details summary::before,
    .p-lp-faq-accordion details summary::after {
        right: 0.3rem;
        width: 1.4rem;
        height: 0.2rem;
    }
    .p-lp-contact {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .p-lp-contact__inner {
        padding-top: 6.2rem;
        padding-bottom: 6rem;
    }
    .p-lp-contact__title {
        margin-bottom: 2rem;
    }
    .p-lp-contact__text {
        margin-bottom: 3.1rem;
        font-size: 1.75rem;
        line-height: 1.71;
    }
    .p-lp-contact__contact-form {
        margin-bottom: 4.5rem;
    }
    .p-lp-contact__estimate {
        margin-bottom: 3.8rem;
    }
    .p-lp-contact__agreement {
        margin-bottom: 3.3rem;
    }
    .p-lp-contact__agreement label {
        gap: 1rem;
        font-size: 1.6rem;
    }
    .p-lp-contact__privacy_txt {
        margin-bottom: 3.3rem;
        font-size: 1.6rem;
    }
    .p-lp-contact__button.btn_form {
        margin-top: 2rem;
    }
    .p-lp-contact-form-estimate {
        border-radius: 1rem;
    }
    .p-lp-contact-form-estimate__title {
        margin-bottom: 4.6rem;
    }
    .p-lp-contact-form-estimate__title span {
        font-size: 1.9rem;
        line-height: 1.58;
    }
    .p-lp-contact-form-estimate__title span::after {
        top: 1.1rem;
        height: 0.25rem;
    }
    .c-contact-form {
        gap: 1.9rem;
    }
    .c-contact-form__item {
        gap: 1rem;
    }
    .c-contact-form__item label {
        font-size: 1.7rem;
    }
    .c-contact-form__item label span {
        padding: 0 0.4rem;
        font-size: 1.6rem;
        letter-spacing: 0.16rem;
    }
    .u-only-pc {
        display: none !important;
    }
    .u-only-sp {
        display: block !important;
    }
    .u-only-sp--inline {
        display: inline-block !important;
    }
}
@media (max-width: 440px) {
    .p-lp-category-item.is-long {
        padding-right: 0.3rem;
        padding-left: 0.7rem;
    }
    .p-lp-flow-slider .swiper .swiper-slide {
        width: 100% !important;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (any-hover: hover) {
    a:hover {
        filter: brightness(1.05);
    }
    button:hover,
    input[type='file']:hover,
    input[type='submit']:hover,
    input[type='button']:hover {
        filter: brightness(1.05);
    }
    .l-header-nav ul > li a:hover {
        color: #f26d00;
    }
    .l-header-nav__contact:hover {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_arrow_right_white.svg');
        border-color: #f26d00;
    }
    .c-button:hover {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_triangle_right_white.svg');
        border-color: white;
    }
    .c-button--cv:hover {
        color: #2b457e;
        background-color: white;
        background-image: url('../../_assets/img/icon/icon_triangle_right.svg');
        border-color: #2b457e;
    }
    .c-button--submit:hover {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_arrow_right_white.svg');
        border-color: #2b457e;
    }
    .c-button--mail:hover {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_mail_white.svg');
    }
    .c-button--slidemenu:hover {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_mail_white.svg');
    }
}
@media (any-hover: none) {
    a a:active {
        filter: brightness(1.05);
    }
    button a:active,
    input[type='file'] a:active,
    input[type='submit'] a:active,
    input[type='button'] a:active {
        filter: brightness(1.05);
    }
    .l-header-nav ul > li a a:active {
        color: #f26d00;
    }
    .l-header-nav__contact a:active {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_arrow_right_white.svg');
        border-color: #f26d00;
    }
    .c-button a:active {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_triangle_right_white.svg');
        border-color: white;
    }
    .c-button--cv a:active {
        color: #2b457e;
        background-color: white;
        background-image: url('../../_assets/img/icon/icon_triangle_right.svg');
        border-color: #2b457e;
    }
    .c-button--submit a:active {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_arrow_right_white.svg');
        border-color: #2b457e;
    }
    .c-button--mail a:active {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_mail_white.svg');
    }
    .c-button--slidemenu a:active {
        color: white;
        background-color: #f26d00;
        background-image: url('../../_assets/img/icon/icon_mail_white.svg');
    }
}
