@charset "UTF-8";

/* フォントサイズ */

:root {
    --root-font-size: 16;
}

/* フォントファミリー */

:root {
    --base-font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    --accent-font-family: 'Work Sans', 'Helvetica Neue', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif
}

/* カラー  */
:root {
    --green-accent: #67D407;
}

.color-green {
    color: var(--green-accent);
}

/* シャドウ */

:root {
    --text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25)
}

/* 共通設定 */

body {
    color: #000;
    font-size: calc(16 / var(--root-font-size) * 1rem);
    font-family: var(--base-font-family);
    line-height: 1.5;
    ;
    font-feature-settings: "palt";
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

a {
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.5;
    }
}

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

/* ボタン

====================================================*/

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 11px;
    width: 308px;
    max-width: 100%;
    color: #fff;
    font-size: calc(18 / var(--root-font-size) * 1rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(86.05deg, #67D407 24.38%, #07D370 75.62%);
    border-radius: calc(infinity * 1px);
    padding: 13px 0 11px;
    margin-inline: auto;

    &::after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        transform: rotate(133deg);
    }

    @media(max-width: 768px) {
        font-size: calc(16 / var(--root-font-size) * 1rem);

    }
}

.btn:hover {
    opacity: 0.8;
}

.btn--mt72 {
    margin-top: 72px;

    @media(max-width: 768px) {
        margin-top: 50px;
    }
}

.btn--mt17 {
    margin-top: 17px;
}

.btn--crosstalk {
    margin-inline: 0;
    margin-left: auto;
    @media(max-width: 768px) {
        width: 200px;
        margin-left: 0;
        margin-inline: auto;
    }
}

.btn--mt {
	margin: 45px 0 50px;
	margin-inline: auto;
}
.btn--gradi {
	color: linear-gradient(86.05deg, #67D407 24.38%, #07D370 75.62%);
}

/* ヘッダー

====================================================*/

.header {
    position: sticky;
    left: 0;
    top: 0;
    height: 80px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background-color: #fff;
    padding: 16px 52px 16px 56px;
    z-index: 9999;

    @media(max-width: 1040px) {
        padding: 16px 30px 16px 30px;
    }

    @media(max-width: 768px) {
        padding: 16px 20px 16px 20px;
    }
}

.header-logo {
    font-size: clamp(0.813rem, 0.746rem + 0.282vw, 1rem);
    font-style: italic;
    font-family: var(--accent-font-family);
    font-weight: 600;
    line-height: 1.2;
    border-right: 2px solid #67D407;
    padding-right: 1.875em;
}

.header-logo--large {
    font-size: clamp(1.125rem, 0.971rem + 0.657vw, 1.563rem);
}

.global-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    gap: 33px;

    @media(max-width: 1040px) {
        gap: 15px;
    }

    @media(max-width: 768px) {
        display: none;
    }
}

.global-nav__item--accent .global-nav__link {
    display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    width: 184px;
    max-width: 100%;
    color: #fff;
    font-size: calc(20 / var(--root-font-size) * 1rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    background: #67D407;
    border-radius: calc(infinity * 1px);
    padding: 9.5px 0;

    @media(max-width: 1040px) {
        width: 130px;
        font-size: calc(18 / var(--root-font-size) * 1rem);

    }
}

.global-nav__item--accent-light .global-nav__link {
    background: #07D370;
}

.global-nav__item--gradi .global-nav__link {
    background: linear-gradient(86.05deg, #67D407 24.38%, #07D370 75.62%);
}

.global-nav__item--arrow .global-nav__link{
	display: flex;
	justify-content: center;
	align-items: center;
	&::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
	}
}

/* ハンバーガーメニュー */

.menu-btn {
    position: relative;
    display: none;
    place-items: center;
    width: 40px;
    height: 25px;
    cursor: pointer;
    z-index: 9999;
    margin-left: auto;

    @media(max-width: 768px) {
        display: grid;
    }
}

.menu-btn__line {
    background-color: #333;

    &:nth-of-type(1) {
        position: absolute;
        width: 100%;
        height: 5px;
        top: 0;
        transition: .4s;
        z-index: 999;
    }

    &:nth-of-type(2) {
        position: absolute;
        display: block;
        width: 100%;
        height: 5px;
        z-index: 999;
    }

    &:nth-of-type(3) {
        position: absolute;
        width: 100%;
        height: 5px;
        bottom: 0;
        transition: .4s;
        z-index: 999;
    }
}

.menu-btn.active .menu-btn__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.menu-btn.active .menu-btn__line:nth-of-type(2) {
    opacity: 0;
}

.menu-btn.active .menu-btn__line:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

.sp-nav__wrapper.active {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;

}

.sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: #fff;
    border-bottom-left-radius: 30px;
    width: 60vw;
    height: 80vh;
    display: none;
    animation: slideDown 0.3s ease forwards;
}

.sp-nav.open {
    display: flex;
}

.sp-nav__link {
    font-size: calc(20 / var(--root-font-size) * 1rem);
}

.global-nav__item--accent .sp-nav__link {
    display: block;
    text-align: center;
    width: 184px;
    max-width: 100%;
    color: #fff;
    font-size: calc(20 / var(--root-font-size) * 1rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    background: #67D407;
    border-radius: calc(infinity * 1px);
    padding: 9.5px 0;
}

.global-nav__item--accent-light .sp-nav__link {
    background: #07D370;
}

.global-nav__item--gradi .sp-nav__link {
    background: linear-gradient(86.05deg, #67D407 24.38%, #07D370 75.62%);
}

/* フッター

====================================================*/

.footer {
    position: relative;
    color: #fff;
    background-color: #162C01;
    padding-top: 143px;
    padding-bottom: 10px;

    @media(max-width: 768px) {
        padding-top: 80px;
    }
}

.custom-shape-divider-top-1748060352 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg) translateY(1px);
}

.custom-shape-divider-top-1748060352 svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 47px;
}

.custom-shape-divider-top-1748060352 .shape-fill {
    fill: #FFFFFF;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    width: min(100% - 40px, 1100px);
    margin-inline: auto;

    @media(max-width: 768px) {
        flex-direction: column-reverse;
        align-items: center;
    }
}

.footer__area-left {
    display: flex;
    flex-direction: column;

    @media(max-width: 768px) {
        justify-content: center;
        ;
        align-items: center;
    }
}

.footer-logo {
    font-style: italic;
    font-family: var(--accent-font-family);
    /* 40px 25px */
    font-size: clamp(1.563rem, 1.232rem + 1.408vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
}

.footer-logo--small {
    /* 36px 21px */
    font-size: clamp(1.313rem, 0.982rem + 1.408vw, 2.25rem);
}

.footer__text {
    /* 18px 16px */
    font-size: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 43px;

}

.footer__area-right {
    display: flex;
    flex-direction: column;

    @media(max-width: 768px) {
        justify-content: center;
    }
}

.footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 42px;
}

.footer-icon {
    margin-top: 58px;
    margin-left: auto;
    margin-right: 0;

    @media(max-width: 768px) {
        margin-right: auto;
    }
}

.footer-icon__link {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-icon__img {
    width: 40px;
    aspect-ratio: 1;
}

.copyright {
    text-align: center;
    margin-top: 114px;

    @media(max-width: 768px) {
        margin-top: 50px;
    }
}

.copyright__inner {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* セクションヘディング

====================================================*/

.section-heading {
    font-family: var(--accent-font-family);
    color: var(--green-accent);
    /* 56px 18px */
    font-size: clamp(1.125rem, 0.289rem + 3.568vw, 3.5rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.06em;
}

.section-heading__sub {
    font-size: calc(16 / var(--root-font-size) * 1rem);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.section-heading--white, .section-heading__sub--white {
    color: #fff;
}

.section-heading--position, .section-heading__sub--position {
    position: relative;
    z-index: 1 !important;
}

.section-heading--line {
	display: flex;
	align-items: center;
	gap: 0.938em;
	&::before,
	&::after {
		content: '';
		display: inline-block;
		width: 100%;
		height: 2px;
		background-color: var(--green-accent);
	}
}

.section-heading--center {
	text-align: center;
}

/* 下層ページ　ヘッド

====================================================*/

/*.lowerpage-head {
    background-image: url('../img/lower-page-head.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    @media(max-width: 768px) {
        height: 280px;
    }

}*/

.lowerpage-head__title {
    width: max-content;
    color: #fff;
    margin-left: 10.42%;
    margin-right: 20px;

    @media(max-width: 768px) {
        width: fit-content;
    }
}

.lowerpage-head__title-main {
    font-size: clamp(1.563rem, 1.056rem + 2.16vw, 3rem);
    line-height: 1.2em;
}

.lowerpage-head__text {
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
}