@charset "UTF-8";
/* --------------------
 Production - Service
-------------------- */
:root {
    --container-width: 1000px;
    --c-pad: 20px;
    --duration: 0.2s;
    --cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ff-noto-sans: "Noto Sans JP";
  /* 基本色 */
    --color-black: #000000;
    --color-black-rgb: 0, 0, 0;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
  /* グレー系 */
    --color-dark-charcoal: #1e1e1e;
    --color-dark-charcoal-rgb: 30, 30, 30;
    --color-dark-gray: #2c2c2c;
    --color-dark-gray-rgb: 44, 44, 44;
    --color-charcoal: #3e3a39;
    --color-charcoal-rgb: 62, 58, 57;
    --color-medium-gray: #595757;
    --color-medium-gray-rgb: 89, 87, 87;
    --color-gray: #727272;
    --color-gray-rgb: 114, 114, 114;
    --color-light-gray: #9b9b9b;
    --color-light-gray-rgb: 155, 155, 155;
    --color-silver: #dbdbdb;
    --color-silver-rgb: 219, 219, 219;
    --color-light-silver: #e4e5e5;
    --color-light-silver-rgb: 228, 229, 229;
  /* ブルー系 */
    --color-primary-blue: #006bff;
    --color-primary-blue-rgb: 0, 107, 255;
    --color-bright-blue: #33a1ff;
    --color-bright-blue-rgb: 51, 161, 255;
    --color-bright-blue-alt: #33a2ff;
    --color-bright-blue-alt-rgb: 51, 162, 255;
    --color-sky-blue: #8fb9d4;
    --color-sky-blue-rgb: 143, 185, 212;
    --color-lavender-gray: #a1a1bb;
    --color-lavender-gray-rgb: 161, 161, 187;
  /* グリーン系 */
    --color-forest-green: #44ab1b;
    --color-forest-green-rgb: 68, 171, 27;
  /* レッド系 */
    --color-brick-red: #a53c34;
    --color-brick-red-rgb: 165, 60, 52;
    --color-crimson: #af3e35;
    --color-crimson-rgb: 175, 62, 53;
    --color-orange-red: #ea3106;
    --color-orange-red-rgb: 234, 49, 6;
  /* イエロー・オレンジ系 */
    --color-amber: #c89300;
    --color-amber-rgb: 200, 147, 0;
    --color-gold: #f2c500;
    --color-gold-rgb: 242, 197, 0;
    --color-orange: #f9ac00;
    --color-orange-rgb: 249, 172, 0;
    --color-yellow: #fdd422;
    --color-yellow-rgb: 253, 212, 34;
    --color-bright-yellow: #ffff00;
    --color-bright-yellow-rgb: 255, 255, 0;
    --color-golden-yellow: #ffce00;
    --color-golden-yellow-rgb: 255, 206, 0;
    --color-gold-alt: #ffd500;
    --color-gold-alt-rgb: 255, 213, 0;
    --color-gold-bright: #ffd600;
    --color-gold-bright-rgb: 255, 214, 0;
  /* ピンク・ベージュ系 */
    --color-dusty-pink: #edbaad;
    --color-dusty-pink-rgb: 237, 186, 173;
    --color-peach: #f3ba8f;
    --color-peach-rgb: 243, 186, 143;
    --color-light-pink: #f6dbe7;
    --color-light-pink-rgb: 246, 219, 231;
    --color-cream: #f7d7b4;
    --color-cream-rgb: 247, 215, 180;
    --color-pale-pink: #ffd3ce;
    --color-pale-pink-rgb: 255, 211, 206;
    --color-tan: #b2a687;
    --color-tan-rgb: 178, 166, 135;
}

@media (min-width: 768px) {
    :root {
        --c-pad: 30px;
    }
}

body {
    color: var(--color-black) !important;
}

img {
    height: auto;
}

.menu {
    background: var(--color-gold-bright);
    margin: 0;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    width: 100%;
    z-index: 98;
}

@media (min-width: 992px) {
    .menu {
        top: 90px;
    }
}

.menu-container {
    margin: 0;
    padding: 0 6px;
    width: 100%;
}

@media (min-width: 768px) {
    .menu-container {
        padding: 0 var(--c-pad);
    }
}

.menu__list {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 12px 0;
    justify-content: center;
    padding: 12px 0;
}

.menu__list__item {
    border-right: 1px solid var(--color-charcoal);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 8px;
    text-align: center;
    width: auto;
}

@media (min-width: 768px) {
    .menu__list__item {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

@media (min-width: 992px) {
    .menu__list__item {
        font-size: 1.4rem;
        line-height: 1.2;
        padding: 0 30px;
    }
}

.menu__list__item:last-child {
    border-right: none;
}

.menu__list__item__link {
    align-items: center;
    color: var(--color-charcoal);
    display: flex;
    flex-flow: row nowrap;
    font-size: inherit;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-align: center;
    transition: opacity var(--duration) var(--cubic) 0s;
}

@media (min-width: 992px) {
    .menu__list__item__link {
        letter-spacing: 0.6em;
    }
}

.menu__list__item__link span {
    display: block;
}

.menu__list__item__link:focus {
    opacity: 0.75;
}

@media (hover: hover) and (pointer: fine) {
    .menu__list__item__link:hover {
        opacity: 0.75;
    }
}

.hero {
    background-color: var(--color-yellow);
    overflow: hidden;
    padding: 0 0 60px;
    position: relative;
}

@media (min-width: 768px) {
    .hero {
        padding: 0 0 104px;
    }
}

.hero:after {
    background-image: url(../../images/pages/service/production/production-hero-01.webp);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 180%;
    content: "";
    display: block;
    height: 53.3333333333vw;
    width: 100%;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero:after {
        background-position: center;
        background-size: cover;
        bottom: 3.0241935484vw;
        height: auto;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
    }
}

@media (min-width: 1240px) {
    .hero:after {
        bottom: auto;
        height: 700px;
        top: -12px;
    }
}

.hero-container {
    margin: 0 auto;
    max-width: calc(1160px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.hero__main {
    padding: 30px 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__main {
        padding: min(24px, 1.935483871vw) 0 min(64px, 5.1612903226vw);
        width: 50%;
    }
}

@media (min-width: 1240px) {
    .hero__main {
        padding: 24px 0 64px;
    }
}

.hero__main__title {
    font-family: var(--ff-noto-sans);
    font-size: 7.28vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0 0 11.2vw;
    padding: 2.8vw 0 0 26.6vw;
    position: relative;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hero__main__title {
        font-size: min(5.2rem, 4.1935483871vw);
        margin: 0 0 min(80px, 6.4516129032vw);
        padding: min(20px, 1.6129032258vw) 0 0 min(150px, 12.0967741935vw);
    }
}

@media (min-width: 1240px) {
    .hero__main__title {
        font-size: 5.2rem;
        margin: 0 0 80px;
        padding: 20px 0 0 150px;
    }
}

.hero__main__title:before {
    background-image: url(../../images/pages/service/production/production-hero-icon-badge.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 33.6vw;
    left: -2.6666666667vw;
    position: absolute;
    top: 0;
    width: 24.36vw;
}

@media (min-width: 768px) {
    .hero__main__title:before {
        height: min(240px, 19.3548387097vw);
        left: max(-40px, -3.2258064516vw);
        width: min(174px, 14.0322580645vw);
    }
}

@media (min-width: 1240px) {
    .hero__main__title:before {
        height: 240px;
        left: -40px;
        width: 174px;
    }
}

.hero__main__title em {
    font-size: 11.48vw;
    font-style: normal;
    font-weight: inherit;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero__main__title em {
        font-size: min(8.2rem, 6.6129032258vw);
    }
}

@media (min-width: 1240px) {
    .hero__main__title em {
        font-size: 8.2rem;
    }
}

.hero__main__content {
    position: relative;
    width: -webkit-fit-content;
    width: fit-content;
}

.hero__main__content:before {
    background-image: url(../../images/pages/service/production/production-hero-icon-01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 36.6666666667vw;
    left: calc(100% - 5.86667vw);
    position: absolute;
    top: -2.9333333333vw;
    width: 42.5333333333vw;
}

@media (min-width: 768px) {
    .hero__main__content:before {
        height: min(250px, 20.1612903226vw);
        left: calc(100% - min(40px, 3.2258064516vw));
        top: max(-20px, -1.6129032258vw);
        width: min(290px, 23.3870967742vw);
    }
}

@media (min-width: 1240px) {
    .hero__main__content:before {
        height: 250px;
        left: calc(100% - 40px);
        top: -20px;
        width: 290px;
    }
}

.hero__main__content p {
    font-family: var(--ff-noto-sans);
    font-size: 3.8133333333vw;
    line-height: 1.99;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__main__content p {
        font-size: min(2.6rem, 2.0967741935vw);
    }
}

@media (min-width: 1240px) {
    .hero__main__content p {
        font-size: 2.6rem;
    }
}

.hero__menu {
    background: var(--color-medium-gray);
    bottom: 0;
    left: 0;
    padding: 0 8px;
    position: absolute;
    right: 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__menu {
        padding: 0 var(--c-pad);
    }
}

.hero__menu-container {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 12px;
    height: 70px;
    margin: 0 auto;
    max-width: 850px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero__menu-container {
        gap: 30px;
        height: 104px;
    }
}

@media (min-width: 992px) {
    .hero__menu-container {
        gap: 50px;
    }
}

.hero__menu__email {
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-dark-gray);
    border-radius: 50px;
    color: var(--color-dark-gray);
    display: flex;
    flex: 0 0 calc(50% - 4px);
    flex-flow: row nowrap;
    height: 50px;
    justify-content: stretch;
    padding: 0 0 0 33px;
    position: relative;
    text-decoration: none;
    transition: background-color var(--duration) var(--cubic) 0s, color var(--duration) var(--cubic) 0s;
}

@media (min-width: 768px) {
    .hero__menu__email {
        border-width: 3px;
        flex: 0 0 calc(50% - 15px);
        height: 70px;
        padding: 0 0 0 73px;
    }
}

@media (min-width: 992px) {
    .hero__menu__email {
        flex: 0 0 calc(50% - 25px);
    }
}

.hero__menu__email:before {
    background-image: url(../../images/pages/service/production/production-hero-icon-email.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 29px;
    left: 5px;
    margin: auto 0;
    position: absolute;
    top: 0;
    width: 29px;
}

@media (min-width: 768px) {
    .hero__menu__email:before {
        height: 45px;
        left: 20px;
        width: 45px;
    }
}

.hero__menu__email::after {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-dark-gray);
    border-radius: 50px;
    bottom: -5px;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -5px;
    width: 100%;
    z-index: -1;
}

.hero__menu__email-inner {
    width: 100%;
}

@media (min-width: 768px) {
    .hero__menu__email-inner {
        padding: 0 20px;
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero__menu__email-inner {
        padding: 0 24px;
    }
}

.hero__menu__email__title {
    font-family: var(--ff-noto-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    margin: 0 0 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero__menu__email__title {
        font-size: 1.6rem;
    }
}

.hero__menu__email__text {
    font-family: var(--ff-noto-sans);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero__menu__email__text {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .hero__menu__email__text {
        font-size: 2.2rem;
    }
}

.hero__menu__email:focus {
    color: var(--color-yellow);
}

@media (min-width: 768px) {
    .hero__menu__email:focus {
        background-color: var(--color-yellow);
        color: var(--color-medium-gray);
    }
}

@media (hover: hover) and (pointer: fine) {
    .hero__menu__email:hover {
        color: var(--color-yellow);
    }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
    .hero__menu__email:hover {
        background-color: var(--color-yellow);
        color: var(--color-medium-gray);
    }
}

.hero__menu__tel {
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-dark-gray);
    border-radius: 50px;
    color: var(--color-dark-gray);
    display: flex;
    flex: 0 0 calc(50% - 4px);
    flex-flow: row nowrap;
    height: 50px;
    justify-content: stretch;
    padding: 0 0 0 33px;
    position: relative;
    text-decoration: none;
    transition: background-color var(--duration) var(--cubic) 0s, color var(--duration) var(--cubic) 0s;
}

@media (min-width: 768px) {
    .hero__menu__tel {
        border-width: 3px;
        flex: 0 0 calc(50% - 15px);
        height: 70px;
        padding: 0 0 0 73px;
    }
}

@media (min-width: 992px) {
    .hero__menu__tel {
        flex: 0 0 calc(50% - 25px);
        padding: 0 0 0 89px;
    }
}

.hero__menu__tel:before {
    background-image: url(../../images/pages/service/production/production-hero-icon-tel.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 29px;
    left: 5px;
    margin: auto 0;
    position: absolute;
    top: 0;
    width: 29px;
}

@media (min-width: 768px) {
    .hero__menu__tel:before {
        height: 45px;
        left: 20px;
        width: 45px;
    }
}

.hero__menu__tel::after {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-dark-gray);
    border-radius: 50px;
    bottom: -5px;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -5px;
    width: 100%;
    z-index: -1;
}

.hero__menu__tel-inner {
    width: 100%;
}

@media (min-width: 768px) {
    .hero__menu__tel-inner {
        padding: 0 20px;
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero__menu__tel-inner {
        padding: 0 24px;
    }
}

.hero__menu__tel__title {
    font-family: var(--ff-noto-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    margin: 0 0 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero__menu__tel__title {
        font-size: 1.6rem;
    }
}

.hero__menu__tel__number {
    font-family: var(--ff-noto-sans);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.075em;
    line-height: 1;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero__menu__tel__number {
        font-size: 2.6rem;
    }
}

.hero__menu__tel:focus {
    color: var(--color-yellow);
}

@media (min-width: 768px) {
    .hero__menu__tel:focus {
        background-color: var(--color-yellow);
        color: var(--color-medium-gray);
    }
}

@media (hover: hover) and (pointer: fine) {
    .hero__menu__tel:hover {
        color: var(--color-yellow);
    }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
    .hero__menu__tel:hover {
        background-color: var(--color-yellow);
        color: var(--color-medium-gray);
    }
}

.works {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .works {
        padding: 70px 0;
    }
}

.works .splide__slide {
    width: 340px;
}

@media (min-width: 768px) {
    .works .splide__slide {
        width: 380px;
    }
}

@media (min-width: 992px) {
    .works .splide__slide {
        width: 470px;
    }
}

.works__item {
    background-color: var(--color-white);
    height: 100%;
    padding: 0 0 4px;
    transform: translateZ(0);
}

.works__item__link {
    border: 1px solid transparent;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    height: 100%;
    padding: 20px;
    text-decoration: none;
    width: 100%;
}

.works__item__link__category {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 5px;
    justify-content: flex-start;
    margin: 0 0 16px;
}

.works__item__link__category .com-category {
    margin: 0;
}

.works__item__link__title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    text-align: center;
}

.works__item__link__fig {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 180px;
    justify-content: center;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .works__item__link__fig {
        height: 240px;
    }
}

@media (min-width: 992px) {
    .works__item__link__fig {
        height: 310px;
    }
}

.works__item__link__fig img {
    display: block;
    margin: 0 auto;
    max-height: 100%;
    object-fit: contain;
}

.overview {
    background-color: rgba(var(--color-light-silver-rgb), 0.48);
    padding: 60px 0;
}

@media (min-width: 768px) {
    .overview {
        padding: 70px 0 50px;
    }
}

.overview-container {
    margin: 0 auto;
    max-width: calc(1000px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.overview__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 auto 50px;
    padding: 0 0 0 58px;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .overview__title {
        font-size: 2.6rem;
        padding: 0 0 0 68px;
    }
}

.overview__title:before {
    background-color: var(--color-gold-alt);
    content: "";
    display: block;
    height: 40px;
    left: 0;
    -webkit-mask-image: url(../../images/commons/com-title-icon.svg);
    mask-image: url(../../images/commons/com-title-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}

@media (min-width: 768px) {
    .overview__title:before {
        height: 45px;
        left: 8px;
        width: 45px;
    }
}

.overview__content {
    margin: 0 auto 60px;
    max-width: 620px;
}

.overview__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.87;
    margin: 0;
}

@media (min-width: 768px) {
    .overview__content p {
        font-size: 1.6rem;
    }
}

.overview__list {
    list-style: none;
    margin: 0 auto;
    max-width: 520px;
    padding: 0;
    position: relative;
    width: -webkit-fit-content;
    width: fit-content;
    z-index: 1;
}

@media (min-width: 768px) {
    .overview__list {
        transform: translateX(12px);
        width: 100%;
    }
}

.overview__list > li {
    color: var(--color-charcoal);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0 0 16px;
    padding: 0 0 0 32px;
    position: relative;
}

@media (min-width: 768px) {
    .overview__list > li {
        font-size: 2.4rem;
        letter-spacing: 0.2em;
        margin: 0 0 20px;
        padding: 0 0 0 40px;
    }
}

@media (min-width: 992px) {
    .overview__list > li {
        font-size: 2.6rem;
        margin: 0 0 24px;
    }
}

.overview__list > li:last-child {
    margin-top: 0;
}

.overview__list > li:before {
    background-image: url(../../images/pages/service/production/production-overview-icon-check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 20px;
}

@media (min-width: 768px) {
    .overview__list > li:before {
        height: 26px;
        top: 3px;
        width: 26px;
    }
}

@media (min-width: 992px) {
    .overview__list > li:before {
        height: 28px;
        top: 4px;
        width: 28px;
    }
}

.overview__illust {
    height: 120px;
    margin: 0 auto;
    max-width: 400px;
    pointer-events: none;
    position: relative;
    z-index: 0;
}

@media (min-width: 768px) {
    .overview__illust {
        bottom: -24px;
        height: auto;
        left: 0;
        margin: 0;
        max-width: none;
        position: absolute;
        right: 0;
    }
}

.overview__illust:before {
    background-image: url(../../images/pages/service/production/production-overview-illust-01.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    content: "";
    display: block;
    height: 112px;
    left: -12px;
    position: absolute;
    width: 132px;
}

@media (min-width: 768px) {
    .overview__illust:before {
        height: 168px;
        width: 198px;
    }
}

@media (min-width: 992px) {
    .overview__illust:before {
        height: 186px;
        left: -12px;
        width: 220px;
    }
}

.overview__illust:after {
    background-image: url(../../images/pages/service/production/production-overview-illust-02.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    content: "";
    display: block;
    height: 111px;
    position: absolute;
    right: 0;
    width: 104px;
}

@media (min-width: 768px) {
    .overview__illust:after {
        height: 166px;
        right: 20px;
        width: 156px;
    }
}

@media (min-width: 992px) {
    .overview__illust:after {
        height: 184px;
        right: 40px;
        width: 173px;
    }
}

.plan {
    background-color: rgba(var(--color-gold-rgb), 0.2);
    overflow: hidden;
    padding: 0 0 60px;
}

@media (min-width: 768px) {
    .plan {
        padding: 0 0 100px;
    }
}

.plan__head {
    align-items: center;
    background: var(--color-gold);
    display: flex;
    flex-flow: row nowrap;
    height: 120px;
    justify-content: stretch;
    padding: 0 var(--c-pad);
    position: relative;
}

@media (min-width: 768px) {
    .plan__head {
        height: 140px;
    }
}

@media (min-width: 992px) {
    .plan__head {
        height: 170px;
    }
}

.plan__head:before {
    background-color: var(--color-gold);
    bottom: -41px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    display: block;
    height: 42px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 82px;
}

@media (min-width: 768px) {
    .plan__head:before {
        bottom: -55px;
        height: 56px;
        width: 109px;
    }
}

@media (min-width: 992px) {
    .plan__head:before {
        bottom: -69px;
        height: 70px;
        width: 136px;
    }
}

.plan__head__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .plan__head__title {
        font-size: 2.8rem;
    }
}

@media (min-width: 992px) {
    .plan__head__title {
        font-size: 3.2rem;
    }
}

.plan__head__title:after {
    background-image: url(../../images/pages/service/production/production-plan-illust-01.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 86px;
    position: absolute;
    right: -60px;
    top: 40px;
    width: 59px;
}

@media (min-width: 768px) {
    .plan__head__title:after {
        height: 114px;
        right: -100px;
        top: -8px;
        width: 78px;
    }
}

@media (min-width: 992px) {
    .plan__head__title:after {
        height: 142px;
        right: -160px;
        top: -8px;
        width: 97px;
    }
}

.plan-container {
    margin: 0 auto;
    max-width: calc(1200px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.plan__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 80px auto 30px;
    padding: 0 0 0 58px;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .plan__title {
        font-size: 2.6rem;
        margin: 140px auto 30px;
        padding: 0 0 0 68px;
    }
}

.plan__title:before {
    background-color: var(--color-gold-alt);
    content: "";
    display: block;
    height: 40px;
    left: 0;
    -webkit-mask-image: url(../../images/commons/com-title-icon.svg);
    mask-image: url(../../images/commons/com-title-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}

@media (min-width: 768px) {
    .plan__title:before {
        height: 45px;
        left: 8px;
        width: 45px;
    }
}

.plan__content {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .plan__content {
        margin: 0 0 104px;
    }
}

.plan__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.87;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .plan__content p {
        font-size: 1.6rem;
    }
}

.plan__list {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 40px 0;
    margin: 0 0 30px;
}

@media (min-width: 768px) {
    .plan__list {
        flex-wrap: nowrap;
    }
}

.plan__list__item {
    align-items: stretch;
    display: flex;
    flex: 0 0 100%;
    flex-flow: column nowrap;
    justify-content: stretch;
}

@media (min-width: 768px) {
    .plan__list__item {
        flex: 0 0 calc(33.33333% - min(8px, 0.6349206349vw));
    }
}

.plan__list__item__title {
    align-items: center;
    background-color: var(--color-bright-blue-alt);
    border-radius: 16px 16px 0 0;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    font-size: 1rem;
    height: 72px;
    justify-content: center;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .plan__list__item__title {
        border-radius: 0;
        height: min(90px, 7.1428571429vw);
    }
}

.plan__list__item__title img {
    height: 28.8px;
    width: auto;
}

@media (min-width: 768px) {
    .plan__list__item__title img {
        height: min(36px, 2.8571428571vw);
    }
}

.plan__list__item__main {
    background-color: var(--color-white);
    border-color: var(--color-bright-blue-alt);
    border-style: solid;
    border-width: 2px;
    flex: 1 1 auto;
    padding: 30px 8px;
}

@media (min-width: 768px) {
    .plan__list__item__main {
        border-width: 0 min(3px, 0.2380952381vw) min(3px, 0.2380952381vw);
        padding: min(40px, 3.1746031746vw) min(8px, 0.6349206349vw) min(20px, 1.5873015873vw);
    }
}

.plan__list__item__main__title {
    color: var(--color-dark-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .plan__list__item__main__title {
        font-size: min(2.7rem, 2.1428571429vw);
        margin: 0 0 min(28px, 2.2222222222vw);
    }
}

.plan__list__item__main__title .large {
    font-size: 3.6rem;
    font-style: normal;
    font-weight: inherit;
}

@media (min-width: 768px) {
    .plan__list__item__main__title .large {
        font-size: min(4.1rem, 3.253968254vw);
    }
}

.plan__list__item__main__title em {
    font-style: normal;
    font-weight: inherit;
    text-decoration: underline;
    -webkit-text-decoration-color: var(--color-gold-alt);
    text-decoration-color: var(--color-gold-alt);
    text-decoration-thickness: 10px;
    text-underline-offset: -0.1em;
}

@media (min-width: 768px) {
    .plan__list__item__main__title em {
        text-decoration-thickness: min(14px, 1.1111111111vw);
    }
}

.plan__list__item__main__content {
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .plan__list__item__main__content {
        margin: 0 auto min(32px, 2.5396825397vw);
        max-width: min(300px, 23.8095238095vw);
    }
}

.plan__list__item__main__content p {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.38;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .plan__list__item__main__content p {
        font-size: min(1.8rem, 1.4285714286vw);
        text-align: left;
    }
}

.plan__list__item__main__service {
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 8px;
    justify-content: space-between;
    margin: 0 auto 16px;
}

@media (min-width: 768px) {
    .plan__list__item__main__service {
        gap: 0 min(8px, 0.6349206349vw);
        margin: 0 auto min(16px, 1.2698412698vw);
        max-width: min(330px, 26.1904761905vw);
    }
}

.plan__list__item__main__service__item {
    flex: 0 0 calc(33.33333% - 5.33333px);
}

@media (min-width: 768px) {
    .plan__list__item__main__service__item {
        flex: 0 0 calc(33.33333% - min(5.3333333333px, 0.4232804233vw));
    }
}

.plan__list__item__main__service__item__icon {
    margin: 0 0 4px;
    text-align: center;
}

@media (min-width: 768px) {
    .plan__list__item__main__service__item__icon {
        margin: 0 0 min(6px, 0.4761904762vw);
    }
}

.plan__list__item__main__service__item__icon img {
    width: 72px;
}

@media (min-width: 768px) {
    .plan__list__item__main__service__item__icon img {
        width: min(90px, 7.1428571429vw);
    }
}

.plan__list__item__main__service__item__title {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.4rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.35;
    min-height: 2lh;
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .plan__list__item__main__service__item__title {
        font-size: min(1.4rem, 1.1111111111vw);
    }
}

.plan__list__item__main__service__item__title > span {
    display: block;
}

.plan__list__item__main__service__item__title .ls-0 {
    letter-spacing: 0;
    white-space: nowrap;
}

.plan__list__item__main__action a {
    align-items: center;
    background-color: var(--color-bright-blue-alt);
    border: 1px solid var(--color-bright-blue-alt);
    border-radius: 12px;
    color: var(--color-white);
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.8rem;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0 auto;
    max-width: 300px;
    text-align: center;
    transition: background-color var(--duration) var(--cubic) 0s, color var(--duration) var(--cubic) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .plan__list__item__main__action a {
        border-radius: min(12px, 0.9523809524vw);
        font-size: min(1.8rem, 1.4285714286vw);
        height: min(54px, 4.2857142857vw);
        max-width: min(300px, 23.8095238095vw);
    }
}

.plan__list__item__main__action a:focus {
    background-color: var(--color-white);
    color: var(--color-bright-blue-alt);
}

@media (hover: hover) and (pointer: fine) {
    .plan__list__item__main__action a:hover {
        background-color: var(--color-white);
        color: var(--color-bright-blue-alt);
    }
}

@media (min-width: 768px) {
    .plan__list__item--package {
        order: 1;
        padding: min(80px, 6.3492063492vw) 0 0;
    }
}

@media (min-width: 768px) {
    .plan__list__item--seo {
        flex: 0 0 calc(33.33333% + min(16px, 1.2698412698vw));
        order: 2;
    }
}

.plan__list__item--seo .plan__list__item__title {
    background-color: var(--color-primary-blue);
    border-radius: 16px 16px 0 0;
    padding: 16px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__title {
        border-radius: min(30px, 2.380952381vw) min(30px, 2.380952381vw) 0 0;
        padding: min(24px, 1.9047619048vw) 0 0;
    }
}

.plan__list__item--seo .plan__list__item__title:before {
    background-image: url(../../images/pages/service/production/production-plan-recommended.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 86px;
    left: -14px;
    position: absolute;
    top: -42px;
    width: 80px;
    z-index: 1;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__title:before {
        height: min(122px, 9.6825396825vw);
        left: max(-20px, -1.5873015873vw);
        top: max(-60px, -4.7619047619vw);
        width: min(114px, 9.0476190476vw);
    }
}

.plan__list__item--seo .plan__list__item__title:after {
    background-color: var(--color-primary-blue);
    bottom: -31px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    display: block;
    height: 32px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__title:after {
        bottom: max(-39px, -3.0952380952vw);
        height: min(40px, 3.1746031746vw);
    }
}

.plan__list__item--seo .plan__list__item__title img {
    height: 32px;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__title img {
        height: min(40px, 3.1746031746vw);
    }
}

.plan__list__item--seo .plan__list__item__main {
    border-color: var(--color-primary-blue);
    border-width: 0 8px 8px;
    padding-bottom: 16px;
    padding-top: 48px;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__main {
        border-width: 0 min(15px, 1.1904761905vw) min(15px, 1.1904761905vw);
        padding-bottom: min(16px, 1.2698412698vw);
        padding-top: min(60px, 4.7619047619vw);
    }
}

.plan__list__item--seo .plan__list__item__main__title {
    color: var(--color-primary-blue);
    font-size: 3rem;
    margin: 0 0 32px;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__main__title {
        font-size: min(3.8rem, 3.0158730159vw);
        margin: 0 0 min(40px, 3.1746031746vw);
    }
}

.plan__list__item--seo .plan__list__item__main__title .large {
    font-size: 4.8rem;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__main__title .large {
        font-size: min(6.1rem, 4.8412698413vw);
    }
}

.plan__list__item--seo .plan__list__item__main__content {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .plan__list__item--seo .plan__list__item__main__content {
        margin-bottom: min(40px, 3.1746031746vw);
    }
}

.plan__list__item--seo .plan__list__item__main__action a {
    background-color: var(--color-primary-blue);
    border-color: var(--color-primary-blue);
}

.plan__list__item--seo .plan__list__item__main__action a:focus {
    background-color: var(--color-white);
    color: var(--color-primary-blue);
}

@media (hover: hover) and (pointer: fine) {
    .plan__list__item--seo .plan__list__item__main__action a:hover {
        background-color: var(--color-white);
        color: var(--color-primary-blue);
    }
}

@media (min-width: 768px) {
    .plan__list__item--design {
        order: 3;
        padding: min(80px, 6.3492063492vw) 0 0;
    }
}

.plan__service {
    align-items: center;
    background-color: var(--color-white);
    border: 2px solid var(--color-bright-blue-alt);
    border-radius: 12px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .plan__service {
        border-radius: 16px;
        border-width: 3px;
    }
}

@media (min-width: 992px) {
    .plan__service {
        align-items: stretch;
        flex-wrap: nowrap;
        height: 100px;
        justify-content: stretch;
    }
}

.plan__service__title {
    align-items: center;
    background-color: var(--color-bright-blue-alt);
    display: flex;
    flex: 0 0 100%;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 8px 0;
}

@media (min-width: 992px) {
    .plan__service__title {
        flex: 0 0 120px;
        padding: 0;
    }
}

@media (min-width: 1240px) {
    .plan__service__title {
        flex: 0 0 130px;
    }
}

.plan__service__title span {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.56;
    text-align: center;
}

@media (min-width: 1240px) {
    .plan__service__title span {
        font-size: 2.2rem;
    }
}

.plan__service__item-wrapper {
    align-items: center;
    display: flex;
    flex: 0 1 auto;
    flex-flow: column wrap;
    gap: 16px 0;
    justify-content: space-between;
    padding: 12px 12px;
}

@media (min-width: 768px) {
    .plan__service__item-wrapper {
        flex: 1 1 auto;
        flex-flow: row nowrap;
    }
}

@media (min-width: 1240px) {
    .plan__service__item-wrapper {
        padding: 12px 20px;
    }
}

.plan__service__item {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
    justify-content: center;
    padding: 0 8px;
    width: 100%;
}

@media (min-width: 768px) {
    .plan__service__item {
        width: 33.3333333333%;
    }
}

@media (min-width: 992px) {
    .plan__service__item {
        padding: 0 12px;
    }
}

@media (min-width: 1240px) {
    .plan__service__item {
        padding: 0 20px;
    }
}

.plan__service__item__icon {
    text-align: center;
    width: 53px;
}

@media (min-width: 768px) {
    .plan__service__item__icon {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .plan__service__item__icon {
        width: 57px;
    }
}

@media (min-width: 1240px) {
    .plan__service__item__icon {
        width: 66px;
    }
}

.plan__service__item__content {
    flex: 0 0 auto;
    padding: 0 0 0 16px;
    width: calc(100% - 53px);
}

@media (min-width: 768px) {
    .plan__service__item__content {
        padding: 0 0 0 8px;
    }
}

@media (min-width: 992px) {
    .plan__service__item__content {
        width: calc(100% - 57px);
    }
}

@media (min-width: 1240px) {
    .plan__service__item__content {
        padding: 0 0 0 12px;
        width: calc(100% - 66px);
    }
}

.plan__service__item__content p {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 768px) {
    .plan__service__item__content p {
        font-size: 1.4rem;
    }
}

@media (min-width: 992px) {
    .plan__service__item__content p {
        font-size: 1.6rem;
    }
}

@media (min-width: 1240px) {
    .plan__service__item__content p {
        font-size: 1.8rem;
    }
}

.plan__service__item__content p a {
    color: inherit;
    text-decoration: underline;
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
    text-decoration-thickness: 2px;
    transition: -webkit-text-decoration-color var(--duration) var(--cubic) 0s;
    transition: text-decoration-color var(--duration) var(--cubic) 0s;
    transition: text-decoration-color var(--duration) var(--cubic) 0s, -webkit-text-decoration-color var(--duration) var(--cubic) 0s;
}

.plan__service__item__content p a:focus {
    -webkit-text-decoration-color: color-mix(in srgb, currentColor, transparent 100%);
    text-decoration-color: color-mix(in srgb, currentColor, transparent 100%);
}

@media (hover: hover) and (pointer: fine) {
    .plan__service__item__content p a:hover {
        -webkit-text-decoration-color: color-mix(in srgb, currentColor, transparent 100%);
        text-decoration-color: color-mix(in srgb, currentColor, transparent 100%);
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(1) {
        width: 38%;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(1) {
        width: 38%;
    }
}

.plan__service__item:nth-child(1) .plan__service__item__icon img {
    width: 53px;
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(1) .plan__service__item__icon img {
        width: 53px;
    }
}

@media (min-width: 992px) {
    .plan__service__item:nth-child(1) .plan__service__item__icon img {
        width: 57px;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(1) .plan__service__item__icon img {
        width: 66px;
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(2) {
        width: 33%;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(2) {
        width: 34%;
    }
}

.plan__service__item:nth-child(2) .plan__service__item__icon img {
    width: 42px;
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(2) .plan__service__item__icon img {
        width: 42px;
    }
}

@media (min-width: 992px) {
    .plan__service__item:nth-child(2) .plan__service__item__icon img {
        width: 45px;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(2) .plan__service__item__icon img {
        width: 52px;
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(2) .plan__service__item__content {
        padding-left: 4px;
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(3) {
        width: 29%;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(3) {
        width: 28%;
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(3) .plan__service__item__icon {
        width: 42px;
    }
}

@media (min-width: 992px) {
    .plan__service__item:nth-child(3) .plan__service__item__icon {
        width: 45px;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(3) .plan__service__item__icon {
        width: 52px;
    }
}

.plan__service__item:nth-child(3) .plan__service__item__icon img {
    width: 42px;
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(3) .plan__service__item__icon img {
        width: 42px;
    }
}

@media (min-width: 992px) {
    .plan__service__item:nth-child(3) .plan__service__item__icon img {
        width: 45px;
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(3) .plan__service__item__icon img {
        width: 52px;
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(3) .plan__service__item__content {
        width: calc(100% - 42px);
    }
}

@media (min-width: 992px) {
    .plan__service__item:nth-child(3) .plan__service__item__content {
        width: calc(100% - 45px);
    }
}

@media (min-width: 1240px) {
    .plan__service__item:nth-child(3) .plan__service__item__content {
        padding-left: 8px;
        width: calc(100% - 52px);
    }
}

@media (min-width: 768px) {
    .plan__service__item:nth-child(3) .plan__service__item__content p {
        text-align: center;
    }
}

.service {
    padding: 60px 0 0;
}

@media (min-width: 768px) {
    .service {
        padding: 108px 0 0;
    }
}

.service-container {
    margin: 0 auto;
    max-width: calc(1000px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.service__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 auto 50px;
    padding: 0 0 0 58px;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .service__title {
        font-size: 2.6rem;
        padding: 0 0 0 68px;
    }
}

.service__title:before {
    background-color: var(--color-gold-alt);
    content: "";
    display: block;
    height: 40px;
    left: 0;
    -webkit-mask-image: url(../../images/commons/com-title-icon.svg);
    mask-image: url(../../images/commons/com-title-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}

@media (min-width: 768px) {
    .service__title:before {
        height: 45px;
        left: 8px;
        width: 45px;
    }
}

.service__overview {
    margin: 0 0 60px;
    padding: 0 0 88px;
    position: relative;
}

@media (min-width: 768px) {
    .service__overview {
        margin: 0 0 70px;
        padding: 0 0 115px;
    }
}

.service__overview:after {
    background-image: url(../../images/pages/service/production/production-service-line.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1000px 28px;
    bottom: 0;
    content: "";
    height: 28px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: auto;
    width: auto;
}

.service__overview__content {
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .service__overview__content {
        margin: 0 0 60px;
    }
}

.service__overview__content p {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .service__overview__content p {
        font-size: 2rem;
    }
}

.service__overview__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 20px;
    margin: 0 auto;
    max-width: 820px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .service__overview__list {
        gap: 0 30px;
    }
}

@media (min-width: 992px) {
    .service__overview__list {
        gap: 0 20px;
    }
}

.service__overview__list__item {
    flex: 0 0 calc(33.33333% - 13.33333px);
    text-align: center;
}

@media (min-width: 768px) {
    .service__overview__list__item {
        flex: 0 0 calc(33.33333% - 20px);
    }
}

@media (min-width: 992px) {
    .service__overview__list__item {
        flex: 0 0 calc(33.33333% - 13.33333px);
    }
}

.service__overview__list__item a {
    text-decoration: none;
    transition: opacity var(--duration) var(--cubic) 0s;
}

.service__overview__list__item a:focus {
    opacity: 0.75;
}

@media (hover: hover) and (pointer: fine) {
    .service__overview__list__item a:hover {
        opacity: 0.75;
    }
}

.service__item {
    border-bottom: 1px solid var(--color-amber);
    margin: 0 0 60px;
    padding: 0 0 60px;
}

@media (min-width: 768px) {
    .service__item {
        margin: 0 0 100px;
        padding: 0 0 95px;
    }
}

.service__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service__item__main {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
}

@media (min-width: 768px) {
    .service__item__main {
        flex-wrap: nowrap;
    }
}

.service__item__main__icon {
    flex: 0 0 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__main__icon {
        flex: 0 0 230px;
    }
}

.service__item__main__icon img {
    width: 160px;
}

@media (min-width: 768px) {
    .service__item__main__icon img {
        width: 175px;
    }
}

.service__item__main__contents {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .service__item__main__contents {
        flex: 1 1 auto;
    }
}

.service__item__main__contents__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0 0 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__main__contents__title {
        font-size: 2.6rem;
        text-align: left;
    }
}

.service__item__main__contents__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
}

@media (min-width: 768px) {
    .service__item__main__contents__content p {
        font-size: 1.6rem;
    }
}

.service__item__security {
    padding: 40px 0 0;
}

.service__item__security__item-wrapper {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    justify-content: flex-start;
    margin: 0 0 39px;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper {
        flex-wrap: nowrap;
    }
}

.service__item__security__item-wrapper__item {
    border: 1px solid var(--color-tan);
    flex: 0 0 100%;
    padding: 20px;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper__item {
        flex: 0 0 calc(33.33333% - 20px);
        padding: 28px 20px 30px;
    }
}

.service__item__security__item-wrapper__item__icon {
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper__item__icon {
        margin: 0 0 29px;
    }
}

.service__item__security__item-wrapper__item__icon img {
    width: 140px;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper__item__icon img {
        width: 160px;
    }
}

.service__item__security__item-wrapper__item__title {
    color: var(--color-charcoal);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper__item__title {
        margin: 0 0 30px;
    }
}

.service__item__security__item-wrapper__item__content {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper__item__content {
        max-width: 230px;
    }
}

.service__item__security__item-wrapper__item__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
}

@media (min-width: 768px) {
    .service__item__security__item-wrapper__item__content p {
        font-size: 1.6rem;
    }
}

.service__item__security__content p {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__security__content p {
        font-size: 1.6rem;
    }
}

.service__item__seo {
    padding: 40px 0 0;
}

.service__item__seo__main {
    border: 1px solid var(--color-tan);
    margin: 0 0 40px;
    padding: 20px;
}

@media (min-width: 768px) {
    .service__item__seo__main {
        padding: 36px 30px;
    }
}

@media (min-width: 992px) {
    .service__item__seo__main {
        padding: 36px 55px;
    }
}

.service__item__seo__main__head {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 20px 30px;
    justify-content: space-between;
    margin: 0 0 32px;
}

@media (min-width: 992px) {
    .service__item__seo__main__head {
        flex-wrap: nowrap;
    }
}

.service__item__seo__main__head__title {
    flex: 0 0 100%;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.25;
    margin: 0;
}

@media (min-width: 992px) {
    .service__item__seo__main__head__title {
        flex: 0 0 auto;
    }
}

.service__item__seo__main__head__tag {
    align-items: center;
    display: flex;
    flex: 0 0 100%;
    flex-flow: row wrap;
    gap: 8px;
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .service__item__seo__main__head__tag {
        flex: 1 1 auto;
        justify-content: flex-end;
    }
}

.service__item__seo__main__head__tag span {
    background: var(--color-black);
    border-radius: 20px;
    color: var(--color-white);
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin: 0;
    padding: 10px 16px;
    text-align: center;
}

@media (min-width: 992px) {
    .service__item__seo__main__head__tag span {
        font-size: 1.5rem;
    }
}

@media (min-width: 1240px) {
    .service__item__seo__main__head__tag span {
        font-size: 1.6rem;
    }
}

.service__item__seo__main__fig {
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__seo__content {
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .service__item__seo__content {
        padding: 0 55px;
    }
}

.service__item__seo__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
}

@media (min-width: 768px) {
    .service__item__seo__content p {
        font-size: 1.6rem;
    }
}

.service__item__support {
    align-items: stretch;
    border: 1px solid var(--color-tan);
    display: flex;
    flex-flow: row wrap;
    gap: 50px 30px;
    margin: 40px 0 0;
    padding: 20px;
}

@media (min-width: 768px) {
    .service__item__support {
        flex-wrap: nowrap;
        gap: 30px;
        padding: 45px 30px;
    }
}

@media (min-width: 992px) {
    .service__item__support {
        padding: 45px 55px;
    }
}

.service__item__support__item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .service__item__support__item {
        flex: 0 0 calc(33.33333% - 20px);
    }
}

.service__item__support__item__title {
    color: var(--color-charcoal);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .service__item__support__item__title {
        font-size: 2.4rem;
    }
}

.service__item__support__item__main {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 768px) {
    .service__item__support__item__main {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .service__item__support__item__main {
        flex-direction: row;
    }
}

.service__item__support__item__main__icon {
    flex: 0 0 100px;
}

@media (min-width: 768px) {
    .service__item__support__item__main__icon {
        flex: 0 0 128px;
    }
}

.service__item__support__item__main__content {
    flex: 0 1 auto;
}

.service__item__support__item__main__content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service__item__support__item__main__content ul > li {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0;
    padding: 0 0 0 16px;
    position: relative;
}

@media (min-width: 768px) {
    .service__item__support__item__main__content ul > li {
        font-size: 1.8rem;
    }
}

.service__item__support__item__main__content ul > li:before {
    background-color: var(--color-medium-gray);
    border-radius: 50%;
    content: "";
    display: block;
    height: 4px;
    left: 2px;
    position: absolute;
    top: 0.5em;
    width: 4px;
}

.program {
    overflow: hidden;
    padding: 0 0 120px;
}

.program__head {
    align-items: center;
    background: var(--color-bright-blue-alt);
    display: flex;
    flex-flow: row nowrap;
    height: 120px;
    justify-content: stretch;
    padding: 0 var(--c-pad);
    position: relative;
}

@media (min-width: 768px) {
    .program__head {
        height: 140px;
    }
}

@media (min-width: 992px) {
    .program__head {
        height: 170px;
    }
}

.program__head:before {
    background: var(--color-bright-blue-alt);
    bottom: -41px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    display: block;
    height: 42px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 82px;
}

@media (min-width: 768px) {
    .program__head:before {
        bottom: -55px;
        height: 56px;
        width: 109px;
    }
}

@media (min-width: 992px) {
    .program__head:before {
        bottom: -69px;
        height: 70px;
        width: 136px;
    }
}

.program__head__title {
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .program__head__title {
        font-size: 2.8rem;
    }
}

@media (min-width: 992px) {
    .program__head__title {
        font-size: 3.2rem;
    }
}

.program__head__title:after {
    background-image: url(../../images/pages/service/production/production-program-illust-01.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 82px;
    position: absolute;
    right: -50px;
    top: 28px;
    width: 59px;
}

@media (min-width: 768px) {
    .program__head__title:after {
        height: 109px;
        right: -190px;
        top: -8px;
        width: 79px;
    }
}

@media (min-width: 992px) {
    .program__head__title:after {
        height: 136px;
        right: -290px;
        top: -8px;
        width: 98px;
    }
}

.program-container {
    margin: 0 auto;
    max-width: calc(860px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.program__overview {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    margin: 0 0 60px;
    padding: 80px 0 0;
}

@media (min-width: 768px) {
    .program__overview {
        flex-wrap: nowrap;
        margin: 0 0 68px;
        padding: 100px 0 0;
    }
}

.program__overview__icon {
    flex: 0 0 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .program__overview__icon {
        flex: 0 0 260px;
    }
}

@media (min-width: 992px) {
    .program__overview__icon {
        flex: 0 0 290px;
    }
}

.program__overview__icon img {
    width: 160px;
}

@media (min-width: 768px) {
    .program__overview__icon img {
        width: 198px;
    }
}

.program__overview__content {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .program__overview__content {
        flex: 1 1 auto;
        padding: 24px 0 0;
    }
}

.program__overview__content p {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.88;
    margin: 0;
}

@media (min-width: 768px) {
    .program__overview__content p {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .program__detail__table-wrapper {
        overflow-x: auto;
        padding: 0 0 12px;
        white-space: nowrap;
    }
}

.program__detail__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .program__detail__table {
        table-layout: fixed;
    }
}

.program__detail__table > thead > tr > th {
    border-left: 1px solid var(--color-black);
    border-top: 1px solid var(--color-black);
    font-size: 2rem;
    font-weight: 700;
    height: 60px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 0 12px;
    text-align: center;
    vertical-align: middle;
    width: auto;
}

@media (min-width: 768px) {
    .program__detail__table > thead > tr > th {
        font-size: 2.2rem;
        height: 70px;
    }
}

@media (min-width: 992px) {
    .program__detail__table > thead > tr > th {
        font-size: 2.3rem;
    }
}

.program__detail__table > thead > tr > th:first-child {
    min-width: 100px;
    width: 100px;
}

@media (min-width: 768px) {
    .program__detail__table > thead > tr > th:first-child {
        min-width: 110px;
        width: 110px;
    }
}

@media (min-width: 992px) {
    .program__detail__table > thead > tr > th:first-child {
        min-width: 130px;
        width: 130px;
    }
}

.program__detail__table > thead > tr > th:nth-child(2) {
    background-color: var(--color-silver);
}

.program__detail__table > thead > tr > th:last-child {
    border-right: 1px solid var(--color-black);
}

.program__detail__table > tbody > tr > th, .program__detail__table > tbody > tr > td {
    border-bottom: 1px solid var(--color-black);
    border-left: 1px solid var(--color-black);
    vertical-align: middle;
    width: auto;
}

.program__detail__table > tbody > tr > th:last-child, .program__detail__table > tbody > tr > td:last-child {
    border-right: 1px solid var(--color-black);
}

.program__detail__table > tbody > tr > th:nth-child(2), .program__detail__table > tbody > tr > td:nth-child(2) {
    background-color: var(--color-silver);
}

.program__detail__table > tbody > tr > th {
    padding: 12px 4px;
}

@media (min-width: 768px) {
    .program__detail__table > tbody > tr > th {
        padding: 16px 4px;
    }
}

.program__detail__table > tbody > tr > td {
    padding: 12px 8px;
}

@media (min-width: 768px) {
    .program__detail__table > tbody > tr > td {
        padding: 16px 8px;
    }
}

@media (min-width: 992px) {
    .program__detail__table > tbody > tr > td {
        padding: 22px 8px;
    }
}

.program__detail__table > tbody > tr:first-child > th, .program__detail__table > tbody > tr:first-child > td {
    border-top: 1px solid var(--color-black);
}

.program__detail__table__head__icon {
    margin: 0 0 8px;
    text-align: center;
}

.program__detail__table__head__icon--security img {
    width: 45px;
}

@media (min-width: 768px) {
    .program__detail__table__head__icon--security img {
        width: 50px;
    }
}

.program__detail__table__head__icon--support img {
    width: 42px;
}

@media (min-width: 768px) {
    .program__detail__table__head__icon--support img {
        width: 46px;
    }
}

.program__detail__table__head__icon--seo img {
    width: 53px;
}

@media (min-width: 768px) {
    .program__detail__table__head__icon--seo img {
        width: 58px;
    }
}

.program__detail__table__head__title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 768px) {
    .program__detail__table__head__title {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .program__detail__table__head__title {
        font-size: 1.7rem;
    }
}

.program__detail__table__head__title .small {
    font-size: 1.2rem;
}

@media (min-width: 992px) {
    .program__detail__table__head__title .small {
        font-size: 1.3rem;
    }
}

.program__detail__table__item {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 8px;
    justify-content: flex-start;
    padding: 0 0 0 12px;
}

@media (min-width: 992px) {
    .program__detail__table__item {
        padding: 0 0 0 16px;
    }
}

.program__detail__table__item__icon {
    width: 40px;
}

@media (min-width: 768px) {
    .program__detail__table__item__icon {
        width: 48px;
    }
}

@media (min-width: 992px) {
    .program__detail__table__item__icon {
        width: 60px;
    }
}

.program__detail__table__item__icon img {
    width: 38px;
}

@media (min-width: 768px) {
    .program__detail__table__item__icon img {
        width: 46px;
    }
}

@media (min-width: 992px) {
    .program__detail__table__item__icon img {
        width: 57px;
    }
}

.program__detail__table__item__main {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 16px 8px;
    justify-content: flex-start;
    width: calc(100% - 60px);
}

@media (min-width: 768px) {
    .program__detail__table__item__main {
        flex-wrap: wrap;
        width: calc(100% - 68px);
    }
}

@media (min-width: 992px) {
    .program__detail__table__item__main {
        flex-wrap: nowrap;
        width: calc(100% - 80px);
    }
}

.program__detail__table__item__main__item {
    flex: 1 1 auto;
}

@media (min-width: 768px) {
    .program__detail__table__item__main__item {
        flex: 0 0 100%;
    }
}

@media (min-width: 992px) {
    .program__detail__table__item__main__item {
        flex: 1 1 auto;
    }
}

.program__detail__table__item__main__item__title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.27;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .program__detail__table__item__main__item__title {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .program__detail__table__item__main__item__title {
        font-size: 2.2rem;
    }
}

.program__detail__table__item__main__item:has(.program__detail__table__item__main__item__note) .program__detail__table__item__main__item__title {
    margin: 0 0 8px;
}

.program__detail__table__item__main__item:has(.program__detail__table__item__main__item__note--2rows) .program__detail__table__item__main__item__title {
    margin: 0 0 4px;
}

.program__detail__table__item__main__item__note {
    font-size: 1.2rem;
    line-height: 1.14;
    margin: 0;
}

@media (min-width: 768px) {
    .program__detail__table__item__main__item__note {
        font-size: 1.4rem;
    }
}

.program__detail__table__item__main__item__note p {
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: inherit;
    margin: 0;
    text-align: center;
}

.program__detail__table__item__main__item__note--2rows {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    min-height: 2lh;
}

.program__detail__table__item--wp .program__detail__table__item__main__item__title {
    color: var(--color-gray);
}

.review {
    padding: 0 0 120px;
}

@media (min-width: 768px) {
    .review {
        padding: 0 0 100px;
    }
}

.review__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 auto 48px;
    padding: 0 0 0 58px;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .review__title {
        font-size: 2.6rem;
        margin: 0 auto 48px;
        padding: 0 0 0 68px;
    }
}

.review__title:before {
    background-color: var(--color-gold-alt);
    content: "";
    display: block;
    height: 40px;
    left: 0;
    -webkit-mask-image: url(../../images/commons/com-title-icon.svg);
    mask-image: url(../../images/commons/com-title-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}

@media (min-width: 768px) {
    .review__title:before {
        height: 45px;
        left: 8px;
        width: 45px;
    }
}

.review-container {
    margin: 0 auto;
    max-width: calc(1000px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.review__item-wrapper {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 50px 40px;
    justify-content: flex-start;
}

.review__item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .review__item {
        flex: 0 0 calc(33.33333% - 26.66667px);
    }
}

.review__item__fig {
    margin: 0 0 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .review__item__fig img {
        height: 160px;
        object-fit: contain;
        object-position: center;
        width: 100%;
    }
}

.review__item__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin: 0 0 28px;
    text-align: center;
}

.review__item__content {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .review__item__content {
        max-width: 230px;
    }
}

.review__item__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
}

@media (min-width: 768px) {
    .review__item__content p {
        font-size: 1.6rem;
    }
}

.other {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .other {
        margin: 0 0 90px;
    }
}

.other__title {
    color: var(--color-charcoal);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 auto 48px;
    padding: 0 0 0 58px;
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .other__title {
        font-size: 2.6rem;
        margin: 0 auto 48px;
        padding: 0 0 0 68px;
    }
}

.other__title:before {
    background-color: var(--color-gold-alt);
    content: "";
    display: block;
    height: 40px;
    left: 0;
    -webkit-mask-image: url(../../images/commons/com-title-icon.svg);
    mask-image: url(../../images/commons/com-title-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}

@media (min-width: 768px) {
    .other__title:before {
        height: 45px;
        left: 8px;
        width: 45px;
    }
}

.other-container {
    margin: 0 auto;
    max-width: calc(1000px + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
}

.other__logos {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .other__logos {
        margin: 0 0 100px;
    }
}

.other__logos .splide__list {
    align-items: center;
}

.other__logos .splide__slide .pinevalley {
    height: 47px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .pinevalley {
        height: 58px;
    }
}

.other__logos .splide__slide .g-craft {
    height: 64px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .g-craft {
        height: 80px;
    }
}

.other__logos .splide__slide .spider {
    height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .spider {
        height: 74px;
    }
}

.other__logos .splide__slide .twinkle-mall {
    height: 62px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .twinkle-mall {
        height: 77px;
    }
}

.other__logos .splide__slide .orfevre {
    height: 64px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .orfevre {
        height: 80px;
    }
}

.other__logos .splide__slide .newlevel {
    height: 64px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .newlevel {
        height: 80px;
    }
}

.other__logos .splide__slide .mitemite {
    height: 48px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .mitemite {
        height: 60px;
    }
}

.other__logos .splide__slide .irokuri {
    height: 47px;
    width: auto;
}

@media (min-width: 768px) {
    .other__logos .splide__slide .irokuri {
        height: 58px;
    }
}

.other__detail {
    margin: 0 0 120px;
}

@media (min-width: 768px) {
    .other__detail {
        margin: 0 0 160px;
    }
}

.other__detail__item-wrapper {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 12px 0;
    justify-content: flex-start;
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .other__detail__item-wrapper {
        gap: 38px 0;
    }
}

.other__detail__item {
    flex: 1 0 50%;
}

@media (min-width: 768px) {
    .other__detail__item {
        flex: 0 0 20%;
    }
}

.other__detail__item__title {
    align-items: center;
    background-color: var(--color-gold-alt);
    border-bottom: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.4rem;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .other__detail__item__title {
        font-size: 1.6rem;
        height: 60px;
    }
}

@media (min-width: 992px) {
    .other__detail__item__title {
        font-size: 1.8rem;
    }
}

.other__detail__item__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.other__detail__item__list > li {
    align-items: center;
    border-right: 1px solid #c8caca;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.2rem;
    height: 32px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .other__detail__item__list > li {
        height: 60px;
    }
}

@media (min-width: 992px) {
    .other__detail__item__list > li {
        font-size: 1.6rem;
    }
}

.other__detail__item__list > li:nth-child(odd) {
    background-color: var(--color-light-silver);
    border-right-color: var(--color-white);
}

@media (max-width: 767px) {
    .other__detail__item:nth-child(2n) .other__detail__item__title {
        border-right: none;
    }

    .other__detail__item:nth-child(2n) .other__detail__item__list > li {
        border-right: none;
    }
}

@media (min-width: 768px) {
    .other__detail__item:nth-child(5n) .other__detail__item__title {
        border-right: none;
    }

    .other__detail__item:nth-child(5n) .other__detail__item__list > li {
        border-right: none;
    }
}

.other__detail__note p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
}

@media (min-width: 768px) {
    .other__detail__note p {
        font-size: 1.6rem;
    }
}

.other__action a {
    align-items: center;
    background-color: var(--color-bright-blue);
    color: var(--color-gold-bright);
    display: flex;
    flex-flow: row nowrap;
    font-size: 2rem;
    font-weight: 700;
    height: 56px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 495px;
    text-align: center;
    transition: background-color var(--duration) var(--cubic) 0s, color var(--duration) var(--cubic) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .other__action a {
        font-size: 2.7rem;
        height: 72px;
    }
}

@media (min-width: 992px) {
    .other__action a {
        font-size: 3rem;
        height: 80px;
    }
}

.other__action a:focus {
    background-color: var(--color-gold-bright);
    color: var(--color-bright-blue);
}

@media (hover: hover) and (pointer: fine) {
    .other__action a:hover {
        background-color: var(--color-gold-bright);
        color: var(--color-bright-blue);
    }
}



.contact {
    background: var(--color-gold);
    padding: 10px 20px 0;
    position: relative;
}

.contact:before {
    background: var(--color-dark-gray);
    content: "";
    display: block;
    height: 3px;
    inset: auto 0 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.contact-container {
    background: var(--color-white);
    border: 3px solid var(--color-dark-gray);
    border-bottom: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: var(--color-dark-gray);
    margin: -42px auto 0;
    overflow: hidden;
    padding: 15px 15px 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

@media (min-width: 768px) {
    .contact-container {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        margin: -82px auto 0;
        max-width: 1200px;
        padding: 25px 25px 0;
    }
}

@media (min-width: 1240px) {
    .contact-container {
        padding: 25px 80px 0;
    }
}

.contact__mail {
    margin: 0 auto;
    position: relative;
    width: min(100%, 900px);
}

.contact__mail::after {
    background: var(--color-dark-gray);
    border: 3px solid var(--color-dark-gray);
    border-radius: 90px;
    bottom: -5px;
    content: "";
    height: 100%;
    position: absolute;
    right: -5px;
    width: 100%;
    z-index: -1;
}

@media (min-width: 768px) {
    .contact__mail::after {
        bottom: -15px;
        right: -15px;
    }
}

.contact__mail__button {
    align-items: center;
    background-color: var(--color-gold);
    border: 3px solid var(--color-dark-gray);
    border-radius: 90px;
    color: var(--color-dark-gray);
    display: flex;
    font-size: 1.6rem;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    line-height: 1.2;
    padding: 5px;
    position: relative;
    transition: background-color var(--duration) var(--cubic) 0s;
}

@media (min-width: 768px) {
    .contact__mail__button {
        font-size: 2.4rem;
        gap: 15px;
        padding: 10px;
    }
}

@media (min-width: 992px) {
    .contact__mail__button {
        font-size: 3.4rem;
        height: 90px;
        letter-spacing: 0.1em;
    }
}

@media (hover: hover) and (pointer: fine)  {
    .contact__mail__button:hover {
        background-color: var(--color-white);
    }
}

.contact__mail__button:focus-visible {
    background-color: var(--color-white);
}

.contact__mail__button::after {
    background: var(--color-dark-gray);
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
    content: "";
    display: block;
    height: 21px;
    width: 15px;
}

@media (min-width: 768px) {
    .contact__mail__button::after {
        height: 35px;
        width: 24px;
    }
}

.contact__mail__button img {
    margin: -5px 0 5px;
    width: min(15%, 82px);
}

@media (min-width: 768px) {
    .contact__mail__button img {
        margin: -10px 0 10px;
    }
}

.contact__main {
    align-items: center;
    display: flex;
    flex-flow: column;
    gap: 20px;
    justify-content: center;
    margin: 20px auto ;
    width: min(100%, 700px);
}

@media (min-width: 992px) {
    .contact__main {
        align-items: center;
        flex-flow: row;
        justify-content: space-between;
        margin: 40px 0 20px;
        width: 100%;
    }
}

@media (min-width: 1240px) {
    .contact__main {
        gap: 50px;
    }
}

.contact__main__point {
    flex-grow: 1;
}

.contact__main__point__item {
    align-items: center;
    border-bottom: 1px solid var(--color-dark-gray);
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    gap: 10px;
    justify-content: left;
    padding: 10px 5px;
}

@media (min-width: 768px) {
    .contact__main__point__item {
        font-size: 2rem;
        gap: 20px;
        letter-spacing: 0.1em;
        padding: 15px 5px;
    }
}

@media (min-width: 992px) {
    .contact__main__point__item {
        font-size: 2.4rem;
    }
}

.contact__main__point__item__image {
    flex-shrink: 0;
    width: 40px;
}

@media (min-width: 768px) {
    .contact__main__point__item__image {
        width: 80px;
    }
}

.contact__main__point__item p {
    margin: 0;
}

.contact__main__tel {
    width: min(100%, 580px);
}

@media (min-width: 992px) {
    .contact__main__tel {
        width: min(50%, 580px);
    }
}

@media (min-width: 1240px) {
    .contact__main__tel {
        width: min(60%, 580px);
    }
}

.contact__main__tel__link {
    border: 2px solid var(--color-dark-gray);
    border-radius: 33px;
    color: var(--color-dark-gray);
    display: block;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color var(--duration) var(--cubic) 0s;
}

@media (hover: hover) and (pointer: fine)  {
    .contact__main__tel__link:hover {
        background-color: var(--color-gold);
    }
}

.contact__main__tel__link:focus-visible {
    background-color: var(--color-gold);
}

.contact__main__tel__link-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .contact__main__tel__link-container {
        height: 185px;
    }
}

.contact__main__tel__link__label {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .contact__main__tel__link__label {
        font-size: 2.4rem;
    }
}

.contact__main__tel__link__image {
    margin: 10px auto 0;
}

.contact__main__tel__link__time {
    font-size: 1.4rem;
    margin: 5px auto 0;
    text-align: center;
}

@media (min-width: 768px) {
    .contact__main__tel__link__time {
        font-size: 1.8rem;
    }
}

.contact__mascot {
    align-items: flex-end;
    -webkit-box-align: end;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
}