@charset "utf-8";

:root {
    --bg-color: #FFFFFF;
    --text-color-base: #000;
    --text-color-inverse: #FFFFFF;
    --text-color-placeholder: #B3B3B3;
    --picky-orange: #DA6242;
    --picky-orange-light: #F47554;
    --picky-green: #467976;
    --picky-green-light: #529872;

    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--bg-color);
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, li, div, span, label, input, textarea, select, button {
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

main {
    margin: 0 auto;
    margin-top: var(--header-height);
    margin-bottom: 300px;
    width: 100%;
}

.u-br-pc {
    display: inline;
}

.u-br-sp {
    display: none;
}

/* ===============================================
 * header
 * ============================================ */

.header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    height: var(--header-height);
    padding-bottom: 10px;
    background-color: #FFF;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.header__container {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
}

.header__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    margin-right: clamp(31px, calc((100vw - 961px) * 0.061 + 31px), 68px);
    margin-left: clamp(31px, calc((100vw - 961px) * 0.073 + 31px), 80px);
}

.header__logoLink{
    display: block;
    height: 70px;
}

.header__logoImage{
    height: 70px;
    width: auto;
}

.header__navigation {
    display: block;
    margin: 0;
    margin-top: 41px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header__navigationList {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: clamp(40px, calc((100vw - 961px) * 0.063 + 40px), 100px);
}

.header__navigationItem {
    display: inline-block;
    position: relative;
    transition: 0.25s;
    cursor: pointer;
}

.header__navigationLink {
    color: var(--text-color-base);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 32px;
}

.header__navigationItem:hover .header__navigationLink {
    color: var(--picky-orange);
}

.header__navigationItem:hover{
    transform: scale(1.2);
}

.header__navigationItem::after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--picky-orange-light);
    opacity: 0;
    transition: 0.25s;
}

.header__navigationItem:hover::after{
    bottom: 0;
    opacity: 1;
}

.header__navigationItem.active::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--picky-orange-light);
    opacity: 1;
}

.header__toggle {
    display: none;
    border: none;
    background: transparent;
    margin: 5px 10px 0 0;
    padding: 8px;
    cursor: pointer;
}

.header__toggleIcon {
    width: 40px;
    height: 40px;
    display: block;
}

/* ===============================================
 * footer
 * ============================================ */

.footer {
    width: 100%;
    background-color: var(--picky-orange-light);
    position: relative;
}

.footer__container {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    padding: 70px 70px 28px;
    position: relative;
}

/* 上段2カラム */
.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* 会社情報 */
.footer__brand {
    color: var(--text-color-inverse);
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", sans-serif;
    font-size: 3.2rem;
    letter-spacing: 0;
}

.footer__tagline {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
}

.footer__dl {
    margin-top: 22px;
    display: grid;
    gap: 12px;
    max-width: 680px;
}

.footer__row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: baseline;
}

.footer__dt {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.footer__dd {
    color: #fff;
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
}

.footer__note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* リンク */

.footer__links {
    display: grid;
    gap: 14px;
}

.footer__linksTitle {
    color: rgba(255, 255, 255, 0.95);
    font-family: "ronde-b", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.footer__link {
    text-decoration: none;
    color: var(--text-color-inverse);
    border-radius: 16px;
    padding: 16px 18px;

    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);

    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 6px;
    align-items: center;
}

.footer__linkLabel {
    font-family: "ronde-b", sans-serif;
    font-size: 1.9rem;
    letter-spacing: -1px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.footer__linkSub {
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.footer__linkIcon {
    font-size: 1.8rem;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    transform: translateX(0);
}

.footer__link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.85);
}

.footer__link:hover .footer__linkIcon {
    transform: translateX(4px);
}

/* 下段 */
.footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    padding-bottom: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.35);

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    position: relative;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* にんじん背景（typo修正済み） */
.footer__bgCarrot {
    width: 160px;
    height: auto;

    opacity: 0.85;
    mix-blend-mode: soft-light;
    
    pointer-events: none;
    user-select: none;
}


/* ===============================================
 *
 * メディアクエリ タブレット縦 (768px ~ 1023px)
 *
 * ============================================ */


@media (max-width: 1023px) {
    :root {
        --header-height: 70px;
    }

    main {
        margin-bottom: 200px;
    }

    .header__logoLink{
        display: block;
        height: 60px;
    }

    .header__logoImage{
        height: 60px;
    }

    .header__navigation {
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        transform: none;
        width: max-content;
        max-width: calc(100vw - 24px);
        background-color: var(--bg-color);
        /* background-color: #B3B3B3; */
        margin: 0;
        padding: 14px 18px;
        display: none;
        z-index: 1000;
    }

    .header__navigationList {
        margin: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px;
    }

    .header__navigationLink {
        font-weight: 600;
    }

    .header__navigation.header__navigation--open {
        display: block;
    }

    .header__navigationItem:hover .header__navigationLink {
        color: inherit;
    }

    .header__navigationItem:hover {
        transform: none;
    }

    .header__navigationItem::after,
    .header__navigationItem:hover::after,
    .header__navigationItem.active::after {
        content: none;
        opacity: 0;
    }

    .header__toggle {
        display: block;
        margin: 7px 10px 0 0;
    }
}


/* ===============================================
 *
 * メディアクエリ SP標準 (480px ~ 767px)
 *
 * ============================================ */


@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }

    .u-br-pc {
        display: none;
    }

    .u-br-sp {
        display: inline;
    }

    .header {
        padding: 0;
    }

    .header__logo {
        margin-right: 31px;
        margin-left: 20px;
    }

    .header__logoLink{
        display: block;
        height: 50px;
    }

    .header__logoImage{
        height: 50px;
    }

    .header__navigation {
        top: 60px;
    }

    .header__navigationLink {
        font-size: 1.6rem;
    }

    .header__toggle {
        margin: 0;
        padding: 15px;
    }

    .header__toggleIcon {
        width: 30px;
        height: 30px;
        display: block;
    }

    .footer__container {
        padding: 56px 20px 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__row {
        grid-template-columns: 90px 1fr;
    }

    .footer__bgCarrot {
        width: 140px;
        height: 130px;
        bottom: 10px;
        opacity: 0.75;
    }
}