@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700&family=Noto+Sans+JP:wght@500;700&display=swap');

/* デバイスごとの表示切替
-------------------------------------- */
/* PC */
@media (min-width:901px) {
    .tb:not(.pc) {
        display: none;
    }

    .sp:not(.pc) {
        display: none;
    }
}

/* タブレット */
@media (min-width:576px) and (max-width:900px) {
    .pc:not(.tb) {
        display: none;
    }

    .sp:not(.tb) {
        display: none;
    }
}

/* スマホ */
@media (max-width:575px) {
    .pc:not(.sp) {
        display: none;
    }

    .tb:not(.sp) {
        display: none;
    }
}


/* 変数
-------------------------------------- */
:root {
    --keyColorA: #4AB261;
    --keyColorB: #FFDB38;
    --keyColorC: #EF7941;
    --lsWideA: 0.06em;
    --lsWideB: 0.1em;
    --lineHeightA: 2.2;
    --lineHeightB: 1.8;
    --enText: 'Barlow', sans-serif;
    --minchoText: ;
    --weightR: 400;
    --weightM: 500;
    --weightSB: 600;
    --weightB: 700;
    --shadow: 0px min(0.25vw, 3px) min(0.83vw, 10px) rgba(0, 0, 0, 0.1);
    --roundL: min(4.17vw, 50px);
    --roundM: min(3.33vw, 40px);
    --roundS: min(1.67vw, 20px);
}


/* アニメーション
-------------------------------------- */
/* フェードイン表示 */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* 全体設定
-------------------------------------- */
html {
    overflow: auto;
    font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.8rem;
    font-weight: var(--weightM);
}

body {
    background-color: var(--keyColorB);
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input {
    transition: all 0.3s;
}

.wrap {
    position: relative;
}

@media (max-width: 768px) {
    .wrap {
        min-width: 320px;
    }
}

@media (hover: hover) and (pointer: fine) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}


/* 共通設定
-------------------------------------- */
.com-text {
    font-size: min(1.5vw, 1.8rem);
    letter-spacing: var(--lsWideA);
    line-height: var(--lineHeightA);
}

.flex {
    display: flex;
}

/* ボタン */
.btn {
    display: block;
}

.btn--primary {
    position: relative;
    padding-left: min(4.17vw, 50px);
    width: min(26.67vw, 320px);
    line-height: min(6.67vw, 80px);
    color: #fff;
    font-size: min(1.67vw, 2rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    background-color: var(--keyColorA);
    border-radius: 100vh;
}

.btn--primary::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: min(2.50vw, 30px);
    transform: translateY(-50%);
    width: min(1.33vw, 16px);
    height: min(1.33vw, 16px);
    background-color: var(--keyColorB);
    border-radius: 100vh;
    transition: all 0.3s;
}

.btn--circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: min(0.67vw, 8px);
    color: var(--keyColorA);
    font-family: var(--enText);
    font-size: min(1.33vw, 1.6rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    width: min(7.33vw, 88px);
    height: min(7.33vw, 88px);
    z-index: 0;
}

.btn--circle::before {
    content: '';
    display: block;
}

.btn--circle.btn--arrow-right::before {
    width: min(1.00vw, 12px);
    height: min(1.67vw, 20px);
    background: url(../img/arrow-right.png ) no-repeat center center / contain;
}

.btn--circle.btn--arrow-up::before {
    width: min(1.67vw, 20px);
    height: min(1.00vw, 12px);
    background: url(../img/arrow-up.png ) no-repeat center center / contain;
}

.btn--circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: min(7.33vw, 88px);
    height: min(7.33vw, 88px);
    background-color: #fff;
    border-radius: 100vh;
    transition: all 0.3s;
    z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover:after {
        transform: translateY(-50%) scale(2);
        transform-origin: center center;
    }

    .business__item:hover .btn--circle::after {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media (max-width: 575px) {
    .flex {
        flex-direction: column;
    }

    .com-text {
        font-size: 1.5rem;
        line-height: 2;
    }

    .btn--primary {
        padding-left: 32px;
        width: 240px;
        line-height: 64px;
        font-size: 1.8rem;
    }

    .btn--primary::after {
        right: 24px;
        width: 12px;
        height: 12px;
    }

    .btn--circle {
        gap: 6px;
        font-size: 1.2rem;
        width: 60px;
        height: 60px;
    }

    .btn--circle.btn--arrow-right::before {
        width: 12px;
        height: 20px;
    }

    .btn--circle.btn--arrow-up::before {
        width: 20px;
        height: 12px;
    }

    .btn--circle::after {
        width: 60px;
        height: 60px;
    }
}


/* コンテンツ部分
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - min(13.33vw, 160px));
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 575px) {
    .contents {
        width: calc(100% - 48px);
    }
}


/* ヘッダー
-------------------------------------- */
.header {
    position: fixed;
    top: min(2.67vw, 32px);
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 min(3.33vw, 40px);
    width: 100%;
    height: min(6.67vw, 80px);
    z-index: 1000;
}

.header__logo {
    width: min(18.67vw, 224px);
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: 100vh;
}

.header__logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header__logo-img {
    width: min(12.50vw, 150px);
    height: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: min(3.33vw, 40px);
}

.header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(3.33vw, 40px);
    padding: 0 min(4.00vw, 48px);
    height: 100%;
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: 100vh;
}

.header__nav-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.header__nav-item span:first-child {
    display: block;
    font-size: min(1.33vw, 1.6rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
}

.header__nav-item span:last-child {
    display: block;
    margin-top: min(0.50vw, 6px);
    color: var(--keyColorA);
    font-family: var(--enText);
    font-size: min(1.00vw, 1.2rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideB);
}

.header__nav-link {
    display: block;
}

.header__nav-item--dropdown {
    position: relative;
    padding-bottom: min(0.83vw, 10px);
    margin-bottom: max(-0.83vw, -10px);
}

.header__nav-dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, min(0.83vw, 10px));
    background-color: #fff;
    box-shadow: var(--shadow);
    padding: min(0.83vw, 10px) 0;
    min-width: min(16.67vw, 200px);
    z-index: 100;
    margin: 0;
    border-radius: min(1.33vw, 16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

.header__nav-item--dropdown:hover>.header__nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.header__nav-dropdown-link {
    display: block;
    padding: min(0.67vw, 8px) min(1.67vw, 20px);
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.header__nav-link--business {
    pointer-events: none;
    cursor: default;
}

.header__nav-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 min(3.33vw, 40px);
    height: 100%;
    color: #fff;
    background-color: var(--keyColorA);
    box-shadow: var(--shadow);
    border-radius: 100vh;
}

.header__nav-contact span:first-child {
    display: block;
    font-size: min(1.33vw, 1.6rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
}

.header__nav-contact span:last-child {
    display: block;
    margin-top: min(0.50vw, 6px);
    font-family: var(--enText);
    font-size: min(1.00vw, 1.2rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideB);
}


@media (hover: hover) and (pointer: fine) {
    .header__nav-item:hover {
        transform: translateY(-5px);
    }

    .header__nav-dropdown-link:hover {
        background-color: #f5f5f5;
    }

    .header__nav-contact:hover {
        background-color: var(--keyColorC);
        transform: translateY(-5px);
    }
}

@media (max-width: 575px) {
    .header {
        top: 16px;
        left: 0;
        padding: 0 16px;
        height: 40px;
    }

    .header__nav {
        display: none;
    }

    .header__logo {
        width: 120px;
    }

    .header__logo-img {
        width: 80px;
    }
}


/* フッター
-------------------------------------- */
.footer {
    position: relative;
    margin-top: min(23.33vw, 280px);
    padding-bottom: min(6.67vw, 80px);
    background-color: var(--keyColorA);
}

.footer::before {
    content: "";
    position: absolute;
    top: max(-10.00vw, -120px);
    left: 0;
    display: block;
    height: min(10.00vw, 120px);
    width: 100%;
    background: url(../img/footer-bg.png ) no-repeat center center / cover;
}

.footer__inner {
    position: relative;
    justify-content: space-between;
    gap: 48px;
}

.footer__btn {
    position: absolute;
    top: max(-9.17vw, -110px);
    right: 0;
}

.footer__info {
    width: fit-content;
    color: #fff;
}

.footer__logo {
    margin-top: min(-2.00vw, -24px);
    padding: min(1.67vw, 20px) min(3.33vw, 40px);
    width: fit-content;
    background-color: #fff;
    border-radius: 100vh;
}

.footer__logo img {
    width: min(16.50vw, 198px);
    height: auto;
}

.footer__company span:first-child {
    display: block;
    margin-top: min(2.00vw, 24px);
    font-size: min(1.50vw, 1.8rem);
    letter-spacing: var(--lsWideA);
}

.footer__company span:last-child {
    display: block;
    margin-top: min(0.67vw, 8px);
    font-size: min(1.83vw, 2.2rem);
    letter-spacing: var(--lsWideA);
    font-weight: var(--weightB);
}

.footer__address {
    margin-top: min(2.00vw, 24px);
    font-size: min(1.33vw, 1.6rem);
    letter-spacing: var(--lsWideA);
}

.footer__nav {
    flex: 1;
    margin-top: min(1.33vw, 16px);
}

.footer__nav-list {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: min(2.67vw, 32px);
    color: #fff;
    font-size: min(1.33vw, 1.6rem);
    letter-spacing: var(--lsWideA);
}

.footer__copyright {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: min(1.17vw, 1.4rem);
    letter-spacing: var(--lsWideA);
}

@media (hover: hover) and (pointer: fine) {
    .footer__btn:hover {
        transform: translateY(-16px);
    }
}

@media (max-width: 575px) {
    .footer {
        margin-top: 120px;
        padding-bottom: 48px;
    }

    .footer::before {
        top: -32px;
        height: 32px;
    }

    .footer__btn {
        top: -40px;
    }

    .footer__logo {
        margin-top: 16px;
        padding: 14px 22px;
    }

    .footer__logo img {
        width: 120px;
    }

    .footer__company span:first-child {
        margin-top: 16px;
        font-size: 1.4rem;
    }

    .footer__company span:last-child {
        margin-top: 8px;
        font-size: 2rem;
    }

    .footer__address {
        margin-top: 16px;
        font-size: 1.4rem;
    }

    .footer__nav {
        margin-top: 24px;
    }

    .footer__nav-list {
        gap: 16px;
        font-size: 1.5rem;
    }

    .footer__copyright {
        font-size: 1rem;
    }
}


/* スマホメニュー
-------------------------------------- */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger {
    height: 40px;
    width: 40px;
    position: fixed;
    top: min(5vw, 40px);
    right: min(5vw, 40px);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.hamburger div {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--keyColorA);
    transition: top 0.4s 0.2s, transform 0.4s 0s;
}

.hamburger div:nth-of-type(1) {
    top: calc(35% - 0px);
}

.hamburger div:nth-of-type(2) {
    top: calc(35% - 13px);
}

.hamburger div:nth-of-type(3) {
    top: calc(35% + 13px);
}

.hamburger.on div {
    top: calc(35% - 0px);
    background: #fff;
    transform-origin: center center;
    transition: top 0.4s 0s, transform 0.4s 0.2s;
}

.hamburger.on div:nth-of-type(1) {
    transform: rotate(45deg);
}

.hamburger.on div:nth-of-type(2) {
    opacity: 0;
}

.hamburger.on div:nth-of-type(3) {
    transform: rotate(135deg);
}

.sp-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--keyColorA);
    z-index: 999;
    overflow-y: auto;
    transition: all 0.3s;
}

.sp-nav.on {
    visibility: visible;
    opacity: 1;
}

.sp-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.sp-nav__item {
    color: #fff;
    letter-spacing: var(--lsWideA);
    text-align: center;
}

.sp-nav__item span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: var(--weightB);
}

.sp-nav__item span:last-child {
    display: none;
    margin-top: 8px;
    color: var(--keyColorB);
    font-family: var(--enText);
    font-size: 1.3rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideB);
}

.sp-nav__link--business {
    pointer-events: none;
}

.sp-nav__sub-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: -16px;
}

.sp-nav__sub-item {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: var(--lsWideA);
    text-align: center;
}

.sp-nav__sub-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 8px 2px 0;
    background-color: var(--keyColorB);
    border-radius: 100vh;
}

.sp-nav__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 16px 40px;
    color: #fff;
    background-color: var(--keyColorC);
    border-radius: 100vh;
}

.sp-nav__contact span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
}

.sp-nav__contact span:last-child {
    display: block;
    margin-top: 8px;
    color: var(--keyColorB);
    font-family: var(--enText);
    font-size: 1.2rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideB);
}




/* インスタ・資料請求
-------------------------------------- */
.com-cta {
    margin-top: min(13.33vw, 160px);
}

.com-cta__list {
    align-items: center;
}

.com-cta__item {
    width: 50%;
    height: min(26.67vw, 320px);
}

.com-cta__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: min(1.33vw, 16px);
    width: 100%;
    height: 100%;
    color: #fff;
}

.com-cta__link--instagram {
    background-color: var(--keyColorA);
    border-radius: var(--roundM) 0 0 var(--roundM);
}

.com-cta__title {
    font-family: var(--enText);
    font-size: min(3.75vw, 4.5rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    text-align: center;
}

.com-cta__title--instagram::after,
.com-cta__title--request::after {
    content: '';
    display: block;
    margin: min(1.33vw, 16px) auto;
    width: min(6.67vw, 80px);
    height: min(6.67vw, 80px);
}

.com-cta__title--instagram::after {
    background: url(../img/top-icon-instagram.png ) no-repeat center center / contain;
}

.com-cta__description {
    font-size: min(2.00vw, 2.4rem);
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
}

.com-cta__link--request {
    background-color: var(--keyColorC);
    border-radius: 0 var(--roundM) var(--roundM) 0;
}

.com-cta__title--request::after {
    background: url(../img/top-icon-request.png ) no-repeat center center / contain;
}

@media (hover: hover) and (pointer: fine) {
    .com-cta__link:hover {
        transform: translateY(-24px);
    }
}

@media (max-width: 575px) {
    .com-cta {
        margin-top: 80px;
    }

    .com-cta__item {
        width: 100%;
        height: 150px;
    }

    .com-cta__link {
        gap: 4px;
    }

    .com-cta__link--instagram {
        border-radius: var(--roundM);
    }

    .com-cta__title {
        font-size: 2.4rem;
    }

    .com-cta__title--instagram::after,
    .com-cta__title--request::after {
        margin: 8px auto;
        width: 40px;
        height: 40px;
    }

    .com-cta__description {
        font-size: 1.6rem;
    }

    .com-cta__link--request {
        margin-top: 24px;
        border-radius: var(--roundM);
    }
}