@charset "utf-8";

/* ------------------------------------ リセット --------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: block;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

/* ------------------------------------ 全体設定 --------------------------------------- */
:root {
    /* 色 */
    --color-gr-lt: #e8f4ed;
    --color-gr-s: #108a2d;
    --color-gr-dk: #27533a;

    --color-pk-lt: #f5b8bd;
    --color-pk-s: #ec6e7b;

    --color-bgr-lt: #83cebe;
    --color-bgr: #009581;
    --color-re: #e15e4a;
    --color-re-lt: #eba397;
    --color-or: #ed7717;
    --color-or-lt: #f3b688;
    --color-ye: #fcfba9;
    --color-ye-lt: #fdfefb;

    --color-w: #fbfbfb;
    --color-gy-lt: #eaeeec;
    --color-gy-m: #989f9d;


    /* フォント */
    --font-main: "Zen Kaku Gothic New", sans-serif;
    --font-sub: "Outfit", sans-serif;

    /* 文字サイズ */
    --fs-base: 16px;
    --fs-s: 0.8rem;
    --fs-m: 1.2rem;
    --fs-l: 1.5rem;
    --fs-xl: 1.8rem;
    --fs-xxl: 2rem;

    /* 余白 */
    --space-base-x: 200px;
    --space-base-y: 180px;
    --space-s: 12px;
    --space-m: 16px;
    --space-l: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 60px;

    /* 角丸 */
    --radius-main: 10px;
    --radius-l: 15px;

}

html {
    scroll-behavior: smooth;
    cursor: default;
}

body {
    font-family: var(--font-main);
    font-size: var(--fs-base);
    font-weight: midium;
    background-color: var(--color-gr-lt);
    color: var(--color-gr-dk);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.motto~section,
.motto~div {
    padding: var(--space-base-y) var(--space-base-x);
}

/* ------------------------------------ 共通クラス --------------------------------------- */
/* アルファベット用フォント */
.en {
    font-family: var(--font-sub);
}

/* 一部文字を小さく */
.fs-s {
    font-size: 0.9em;
}

/* テキスト傾け */
.text-rotate {
    display: inline-block;
    position: relative;
    bottom: 0.05rem;
    margin-right: 0.4rem;
    transform: rotate(20deg) translateY(-1px);
    transform-origin: left bottom;
}

/* キャッチコピー */
.catchcopy {
    position: relative;
    top: 20%;
    width: 20rem;
    margin: 0 auto;
    text-align: center;
    font-size: var(--fs-l);
    font-weight: bold;
}

/* 線あしらい */
.catchcopy::before,
.catchcopy::after {
    content: "";
    position: absolute;
    top: 70%;
    width: 45px;
    height: 45px;
    background: url(../images/ashirai-line-gr.png) no-repeat center / contain;
    animation: tenmetsu 2.2s step-end infinite;
    ;

}

/* 点滅アニメーション */
@keyframes tenmetsu {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.catchcopy::before {
    left: -60px;
}

.catchcopy::after {
    right: -60px;
    transform: scaleX(-1);
    /* 左右反転 */
}

/* ひょこっと出現 */
.hyoko {
    opacity: 0;
    transform: translateY(60px);
}

.hyoko.is-active {
    animation: peekUp 1s ease-out forwards;
}

@keyframes peekUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px);
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ぽよん出現 */
.pop-item {
    opacity: 0;
}

.pop-item.is-active {
    animation: popBounce 1.8s ease-out forwards;
}

.pop-item:nth-of-type(1) {
    animation-delay: 0s;
}

.pop-item:nth-of-type(2) {
    animation-delay: 0.2s;
}

.pop-item:nth-of-type(3) {
    animation-delay: 0.4s;
}

@keyframes popBounce {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    30% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2);
    }

    50% {
        transform: translateY(0) scale(0.9);
    }

    70% {
        transform: translateY(-10px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* 傾きアニメーション */
.swing-left {
    animation-name: swing-left;
    animation-duration: 2.6s;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes swing-left {
    0% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

.swing-left-m {
    animation-name: swing-left;
    animation-duration: 3.4s;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes swing-left {
    0% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

.swing-right {
    animation-name: swing-right;
    animation-duration: 2.8s;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes swing-right {
    0% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

.swing-right-m {
    animation-name: swing-right;
    animation-duration: 3.4s;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes swing-right {
    0% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

/* 波線区切り */
.kugiri {
    position: relative;
    width: 100vw;
    display: flex;
    animation: scroll-left 40s infinite linear both;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ふきだし 他テキストbg画像ベース*/
.fukidashi {
    position: relative;
    display: inline-block;
    min-width: 14rem;
    padding: 1.6rem 2rem 3.4rem;
    margin: var(--fs-s) 0;
    margin-left: -3%;
    color: var(--color-w);
    text-align: center;
    z-index: 10;
}

.fukidashi__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
}

p.fukidashi {
    font-size: var(--fs-m);
    font-weight: bold;
}

/* 活動しよっか　h2 */
.katsudou__h2,
.member__h2,
.sns__h2 {
    position: relative;
    top: 0%;
    width: 24rem;
    padding: var(--space-xl) var(--space-m);
    margin: auto;
    text-align: center;
    font-size: var(--fs-xxl);
    font-weight: bold;
}

/* h2 見出しサイド　ジグザグ線 */
.h2-nami::before,
.h2-nami::after {
    content: "";
    position: absolute;
    top: 20%;
    width: 80px;
    height: 80px;
    background: url(../images/ashirai-jiguzagu-dg.png) no-repeat center / contain;
    z-index: 100;
}

.h2-nami::before {
    left: 4%;

}

.h2-nami::after {
    right: 4%;
}

/* 縁取りテキスト */
.huchi-text {
    color: var(--color-w);
    font-weight: 500;
    text-shadow:
        1.2px 0 0 var(--color-gr-dk),
        -1.2px 0 0 var(--color-gr-dk),
        0 1.2px 0 var(--color-gr-dk),
        0 -1.2px 0 var(--color-gr-dk),

        1.2px 1.2px 0 var(--color-gr-dk),
        -1.2px 1.2px 0 var(--color-gr-dk),
        1.2px -1.2px 0 var(--color-gr-dk),
        -1.2px -1.2px 0 var(--color-gr-dk),

        1.2px 0 0 var(--color-gr-dk),
        -1.2px 0 0 var(--color-gr-dk),
        0 1.2px 0 var(--color-gr-dk),
        0 -1.2px 0 var(--color-gr-dk);
}

/* ------------------------------------ ヘッダー --------------------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* ロゴ */
.header__logo-h1 a {
    position: relative;
    padding: var(--space-m) var(--space-xxl) 0;
    transition: 0.5s;
}

.header__logo-h1 a:hover {
    opacity: 0.7;
    transition: 0.5s;
}

.header__logo {
    position: relative;
    width: 120px;
    top: 0;
    left: 0;
    z-index: 10;
}

.header__logo-bg {
    position: absolute;
    width: 500px;
    top: -70%;
    left: -85%;
}

/* ナビゲーションメニュー */
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    gap: var(--space-xxl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav-list li a {
    color: var(--color-gr-dk);
    font-size: var(--fs-base);
    font-weight: 500;
    transition: color 0.5s, background-color 0.5s;
    display: inline-block;
    background-color: var(--color-w);
    padding: var(--space-s) var(--space-l);
    border-radius: calc(var(--fs-base) * 2);
}

.header__nav-list li a:hover {
    color: var(--color-w);
    background-color: var(--color-gr-s);
}

/* ハンバーガーメニューボタン（デフォルトで非表示） */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-m);
    margin-right: var(--space-m);
    z-index: 2000;
}

.header__hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-gr-dk);
    transition: 0.5s;
    border-radius: 2px;
}

/* ハンバーガーメニュー開閉時アニメーション */
.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 会員登録ボタン */
.header__join-btn {
    transition: 0.5s;
}

.header__join-btn:hover {
    color: var(--color-ye);
    opacity: 0.7;
    transition: 0.5s;
}

.header__join-btn:hover .header__join-btn-text {
    color: var(--color-ye);
}

.header__join-btn a {
    position: relative;
    width: 200px;
}

.header__join-btn-text {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    margin: auto;
    color: var(--color-w);
    font-size: var(--fs-base);
    font-weight: bold;
    z-index: 10;
}

.header__join-btn-text .en {
    font-size: var(--fs-l);
}

.header__join-btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
}

/*　登録ボタン 回転アニメーション */
.rotate {
    animation: spin 18s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* ------------------------------------ メイン --------------------------------------- */
.main {
    position: relative;
}

/* ------------------------------------ fv --------------------------------------- */
#fv {
    width: 100vw;
    height: 100vh;
}

.catchcopy {
    color: var(--color-gr-dk);
}

.catchcopy .text-pk {
    color: var(--color-gr-lt);
    font-size: var(--fs-xxl);
}

.catchcopy .huchi-text {
    padding: 0.2rem;
    font-size: var(--fs-xxl);
    color: var(--color-ye-lt);
    text-shadow:
        1.4px 0 0 var(--color-gr-s),
        -1.4px 0 0 var(--color-gr-s),
        0 1.4px 0 var(--color-gr-s),
        0 -1.4px 0 var(--color-gr-s),

        1.4px 1.4px 0 var(--color-gr-s),
        -1.4px 1.4px 0 var(--color-gr-s),
        1.4px -1.4px 0 var(--color-gr-s),
        -1.4px -1.4px 0 var(--color-gr-s),

        1.4px 0 0 var(--color-gr-s),
        -1.4px 0 0 var(--color-gr-s),
        0 1.4px 0 var(--color-gr-s),
        0 -1.4px 0 var(--color-gr-s);
}

/* メンバーたち */
.nouka-wrapper {
    position: relative;
    height: 100vh;
}

/* センターのメンバー基準で他の人を配置 */
.nouka-center-wrapper {
    position: relative;
    left: 52%;
    bottom: -57%;
    width: min(420px, 80vw);
    transform: translateX(-50%);
}

.nouka-center {
    position: relative;
    z-index: 100;
}

.nouka-second-left {
    position: absolute;
    right: 60%;
    bottom: 9%;
    width: 590px;
    z-index: 10;
}

.nouka-second-right {
    position: absolute;
    right: -47%;
    bottom: 6%;
    width: 340px;
    z-index: 10;
}

.nouka-last-left {
    position: absolute;
    left: -58%;
    bottom: 42%;
    width: 480px;
}

.nouka-last-right {
    position: absolute;
    left: 17%;
    bottom: 48%;
    width: 330px;
}

#fv .fukidashi {
    position: absolute;
    line-height: 1.4;
    z-index: 100;
}

#fv .fukidashi-name {
    top: -9%;
    left: -97%;
}

#fv .fukidashi-comyu {
    top: -30%;
    left: 114%;
    color: var(--color-gr-s);
}

#fv .fukidashi-mirai {
    top: 28%;
    left: 68%;
    color: var(--color-gr-s);
}

#fv .fukidashi-comyu .fukidashi__bg,
#fv .fukidashi-mirai .fukidashi__bg {
    transform: scaleX(-1);
}

/* 雲 */
.kumo-left {
    position: absolute;
    top: 35%;
    left: 16%;
    width: 400px;
    z-index: -10;
}

.kumo-right {
    position: absolute;
    top: 40%;
    left: 52%;
    width: 600px;
    z-index: -10;
}

/* 仕切り山 */
.fv-kugiri {
    position: absolute;
    bottom: -60vh;
    left: 0;
    width: 100vw;
}

/* ------------------------------------ モットー　一人で悩むより〜  --------------------------------------- */
.motto {
    position: absolute;
    top: calc(100vh + 55vh);
    left: 0;
    height: 100vh;
    background-color: var(--color-gr-dk);
    z-index: 100;
}

/* センターの光あしらい基準で他を配置 */
.motto-wrapper {
    position: relative;
}

.motto-center-wrapper {
    position: relative;
    left: 50%;
    bottom: -50%;
    width: min(600px, 80vw);
    transform: translateX(-50%);
}

.motto-copy {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    color: var(--color-gr-dk);
    font-size: var(--fs-xl);
    font-weight: 500;
    text-align: center;
}

.motto-honbun {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    color: var(--color-ye);
    text-align: center;
}

.tree-1 {
    position: absolute;
    left: -25%;
    bottom: -40%;
    width: 150px;
}

.tree-2 {
    position: absolute;
    top: -59%;
    left: 12%;
    width: 130px;
}

.tree-3 {
    position: absolute;
    right: -42%;
    bottom: 25%;
    width: 170px;
}

.sankaku-ashirai-1 {
    position: absolute;
    top: 40%;
    left: -47%;
    width: 180px;
}

.sankaku-ashirai-2 {
    position: absolute;
    right: 16%;
    bottom: -5%;
    width: 85px;
}

.sankaku-ashirai-3 {
    position: absolute;
    top: -12%;
    right: -3%;
    width: 120px;
}

.girl-talk {
    position: absolute;
    top: -8%;
    left: -11%;
    width: 165px;
}

.girl-aguri {
    position: absolute;
    bottom: -100px;
    right: -28%;
    width: 200px;
}

/* モットー　波線区切り */
.motto .kugiri {
    bottom: -43vh;
}


/* ------------------------------------ agurokkaについて --------------------------------------- */
#about-1,
#about-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    top: calc(100vh + 55vh);
    left: 0;
    width: calc(100% - var(--space-base-x) * 2);
    height: calc(100vh - 55vh);
    background-color: var(--color-ye-lt);
}

/* h2 ふきだしエリア */
/* 英語＋読み仮名 */
.fukidashi__ruby-wrap {
    position: relative;
}

.fukidashi__ruby {
    font-size: var(--fs-xl);
    font-weight: normal;
}

.fukidashi__ruby-text {
    position: absolute;
    top: -1.2em;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--fs-s);
    white-space: nowrap;
}

/* ここまでふきだしエリア */
/* テキストエリア */
.about__section-wrapper {
    width: 55%;
}

.about__img-area {
    width: 45%;
}

.about__text-wrapper {
    position: relative;
    max-width: 40vw;
    width: 100%;
    padding: var(--space-m) var(--space-xxxl);
}

/* キャッチコピー */
.about__text-area-catchcopy {
    padding: var(--space-m) 0;
    font-size: var(--fs-xl);
    font-weight: 500;
}


/* 本文 */
.about__text-area-honbun .text-bold {
    font-weight: bold;
    font-size: var(--fs-m);
}

.about__text-area-honbun .text-pk {
    color: var(--color-pk-s);
}

.about__text-area-honbun .text-gy {
    color: var(--color-gy-m);
}

/* グレー　花あしらい */
.ashirai-trio-1,
.ashirai-trio-2,
.ashirai-trio-3 {
    position: absolute;
    width: 110px;
    opacity: 0.2;
}

.ashirai-trio-1 {
    top: -35%;
    right: 28%;
    rotate: 35deg;
}

.ashirai-trio-2 {
    bottom: 25%;
    left: 1%;
    rotate: -45deg;
}

.ashirai-trio-3 {
    bottom: -34%;
    right: 35%;
    rotate: 50deg;
}

/* イラストエリア */
.about__img-center-wrapper {
    position: relative;
    width: min(420px, 80vw);
}

.diagram-center {
    position: relative;
    width: 480px;
    max-width: 40vw;
}

.about__tomatomikan {
    position: absolute;
    left: 0%;
    top: 30%;
    width: 34%;
}

.about__ushi {
    position: absolute;
    right: -20%;
    top: 3%;
    width: 50%;
}

.about__milk {
    position: absolute;
    right: -26%;
    top: 25%;
    width: 16%;
}

.about__kuri {
    position: absolute;
    right: -16%;
    bottom: 12%;
    width: 20%;
}

/* ------------------------------------ agurokkaの由来　個別設定 --------------------------------------- */
/* 余白調整 */
#about-2 {
    padding-top: calc(var(--space-base-y) / 1.8);
    padding-bottom: calc(var(--space-base-y) * 2);
}

#about-2 .about__text-area {
    width: 55%;
}

.about__text-area-catchcopy .fs-s {
    padding-left: calc(var(--fs-s) / 4);
    font-size: var(--fs-l);
}

#about-2 .about__text-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 35%;
    z-index: 10;
}

/* 由来あしらい　透明度、傾き解除 */
#about-2 .ashirai-trio-1,
#about-2 .ashirai-trio-2,
#about-2 .ashirai-trio-3 {
    opacity: 1;
    rotate: 0deg;
}

/* プラスマーク */
#about-2 .plus {
    font-size: var(--fs-l);
}

#about-2 .ashirai-trio-1 {
    width: 140px;
}

#about-2 .ashirai-trio-3 {
    width: 75px;
}

/* 黄色　マーカー */
.marker {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.marker::after {
    content: "";
    position: absolute;
    left: 6%;
    bottom: 24%;
    width: 88%;
    height: 1.6em;
    background: var(--color-ye);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.8s ease;
}

/* 発火用 */
.marker.is-active::after {
    transform: scaleX(1);
}

/* 順番に引く */
.marker:nth-of-type(1).is-active::after {
    transition-delay: 0s;
}

.marker:nth-of-type(2).is-active::after {
    transition-delay: 0.3s;
}

.marker:nth-of-type(3).is-active::after {
    transition-delay: 0.6s;
}

/* about 波区切り */
#about-2+.kugiri {
    position: absolute;
    bottom: -182vh;
    rotate: 180deg;
    z-index: 100;
}

/* ------------------------------------ 活動しよっか --------------------------------------- */
#katsudou {
    position: absolute;
    top: calc(400vh + 40vh);
    left: 0;
    width: calc(100% - var(--space-base-x) * 2);
    height: calc(300vh - 40vh);
    background-image: url(../images/mizutama-w.png);
    background-repeat: repeat;
    background-size: 15px;
    z-index: 10;
}

.katsudou__h2,
#katsudou p,
#katsudou ul {
    z-index: 10;
}

/* ----ジグザグ配置エリア---- */
.katsudou__ziguzagu-wrapper {
    position: relative;
    font-weight: 500;
    font-size: var(--fs-l);
}

.katsudou__ziguzagu-wrapper>* {
    position: absolute;
}

/* ハッシュタグテキスト */
#katsudou .text-space {
    padding-right: 0.2rem;
}

.hashtag-benkyou {
    top: 42vh;
    left: 0%;
}

.hashtag-waiwai {
    top: 24vh;
    left: 25%;
}

.hashtag-jouhoukoukan {
    top: 12vh;
    left: 50%;
}

.hashtag-akaruinougyou {
    top: 34vh;
    left: 54vh;
}

.hashtag-seityou {
    top: 60vh;
    left: 59%;
}

.hashtag-ibasyo {
    top: 90vh;
    left: 54%;
}

.hashtag-noukanakama {
    top: 70vh;
    right: 18%;
}

.hashtag-osyaberi {
    top: 112vh;
    left: 62%;
}

.hashtag-marusye {
    top: 128vh;
    left: 40%;
}

.hashtag-tanoshii {
    top: 120vh;
    right: 0%;
}

/* ここまで　ハッシュタグテキスト */
/* 女性イラスト */
.katsudou__girl-speak {
    width: 210px;
    top: 12vh;
    left: 6%;
}

.katsudou__girl-talk {
    width: 360px;
    top: 88vh;
    right: 5%;
}

/* フェード切り替え　花 */
/* 上 */
.ziguzagu-flower-1 {
    right: -20%;
    bottom: -74vh;
}

/* 下 */
.ziguzagu-flower-2 {
    top: 50vh;
    left: -5%;
}

.flowerfade-wrapper {
    position: relative;
    width: 720px;
    height: 750px;
    max-width: 50vw;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.flowerfade__flower {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade1 8s infinite;
}

.flowerfade__flower:nth-child(2) {
    animation: fade2 8s infinite;
}

@keyframes fade1 {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade2 {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ここまで　フェード切り替え　花 */
/* -----スケジュール----- */
.schedule-wrapper {
    position: absolute;
    top: calc(200vh - 10vh);
    display: flex;
    justify-content: space-around;
    gap: 8rem;
}

.schedule-kako {
    width: 38%;
}

.schedule__h3 {
    position: relative;
    padding: 0 0 1rem 3rem;
    font-size: var(--fs-xl);
    font-weight: 500;
}

.schedule__h3::before {
    content: "";
    position: absolute;
    top: 18%;
    left: 0;
    width: var(--fs-xl);
    height: var(--fs-xl);
    background: url(../images/hana-nuri.png) no-repeat center / contain;
    z-index: 100;
}

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

.schedule__li {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    width: 38rem;
    padding: 0.4rem 0;
    border-bottom: 1px dotted var(--color-gy-m);
}

.schedule__li time {
    min-width: 5rem;
    font-size: var(--fs-m);
    font-weight: 200;
}

.schedule__mikan {
    position: absolute;
    bottom: 12vh;
    right: 2%;
    width: 240px;
}

.katsudou-sankaku-1 {
    position: absolute;
    bottom: 214vh;
    left: 33%;
    width: 100px;
}

.katsudou-sankaku-2 {
    position: absolute;
    bottom: 176vh;
    right: 35%;
    width: 110px;
}

.katsudou-sankaku-3 {
    position: absolute;
    bottom: 82vh;
    right: 14%;
    width: 130px;
}

.katsudou-sankaku-4 {
    position: absolute;
    bottom: 5vh;
    right: 15%;
    width: 120px;
}

/* 花区切り */
.katsudou-kugiri {
    position: absolute;
    width: 160vw;
    left: -6%;
    top: 95%;
}

/* ------------------------------------ メンバー紹介
 --------------------------------------- */
#member {
    position: absolute;
    top: calc(700vh + 40vh);
    left: 0;
    width: calc(100% - var(--space-base-x) * 2);
    height: calc(500vh - 40vh);
    padding: calc(var(--space-base-y)*1.8) var(--space-base-x);
    background-color: var(--color-gy-lt);
}

.member-focus>.fukidashi {
    min-width: 13rem;
    padding: 1.6rem 2rem 3.4rem;
}

.member-solo {
    display: flex;
    align-items: center;
    padding-bottom: var(--space-base-y)
}

.member-solo:nth-child(even) {
    flex-direction: row-reverse;
    margin: var(--space-l) 0;
}

.member__ribon-text-area {
    width: 58%;
}

/* リボン */
.ribon {
    width: 20rem;
    padding: 1.2rem 3rem 5rem;
    font-size: var(--fs-xl);
    margin: -7% var(--space-base-y);
}

.member-solo .member__ribon-text-area .en {
    font-weight: bold;
}

.member-solo .fukidashi__ruby-text {
    line-height: 2;
}

.member__ribon-text-area .fs-s {
    font-size: var(--fs-m);
}

/* テキストエリア */
.menber-focus__text-box,
.menber-focus__text-box-2,
.menber-focus__text-box-3 {
    position: relative;
    padding: 8% calc(var(--fs-xxl) * 2) 4%;
    color: var(--color-w);
    font-weight: 500;
    border-radius: var(--radius-main);
}

.menber-focus__text-box {
    background-color: var(--color-re-lt);
}

.menber-focus__text-box-2 {
    background-color: var(--color-or-lt);
}

.menber-focus__text-box-3 {
    background-color: var(--color-bgr-lt);
}

.menber-focus__copy {
    font-size: var(--fs-xxl);
}

.menber-focus__copy .fs-s {
    font-size: var(--fs-l);
}

.menber-focus__omoi {
    padding: var(--fs-m) 0 var(--fs-xxl);
}

.text-icon-set {
    display: flex;
    align-items: center;
}

.menber-focus__sakumotsu,
.menber-focus__sakumotsu-2,
.menber-focus__sakumotsu-3 {
    display: inline-block;
    font-size: var(--fs-s);
    font-weight: bold;
    padding-right: 1rem;
}

.menber-focus__sakumotsu {
    color: var(--color-re);
}

.menber-focus__sakumotsu-2 {
    color: var(--color-or);
}

.menber-focus__sakumotsu-3 {
    color: var(--color-bgr);
}

/* snsアイコン */
.insta-icon,
.x-icon {
    display: inline-block;
    width: var(--fs-xxl);
    padding: 20px;
}

/* テキスト周り画像 */
.sakumotsu-left {
    position: absolute;
    width: 60px;
    top: 10%;
    left: -1%;
}

.menber-focus__text-box-3 .sakumotsu-left {
    width: 80px;
    top: 10%;
    left: -3%;
}

.sakumotsu-right {
    position: absolute;
    width: 170px;
    bottom: -2%;
    right: -2%;
}

.menber-focus__text-box-3 .sakumotsu-right {
    width: 70px;
    bottom: -4%;
    right: 8%;
}

.sakumotsu-over,
.sakumotsu-over-2 {
    position: absolute;
    width: 180px;
}

.sakumotsu-over {
    left: 8%;
    bottom: -50%;
}

.sakumotsu-over-2 {
    left: -14%;
    bottom: -30%;
}

/* 枠付き画像エリア */
.waku-img-area {
    position: relative;
    width: 38%;
}

/* メンバー一覧エリア */
.focus-farm-list {
    padding-bottom: var(--space-base-y);
}

.focus-farm-list .fukidashi {
    top: 5rem;
}

/* 集合写真 */
.farm-list-img__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.syuugou-img {
    width: 40%;
}

/* 一覧リスト */
.farm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 48%;
    color: var(--color-pk-s);
    font-size: var(--fs-s);
}

.farm-ul__li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.farm-name {
    flex-shrink: 0;
    font-size: var(--fs-base);
}

.from {
    font-size: var(--fs-s);
}

.farm-dots {
    flex: 1;
    border-bottom: 2px dotted var(--color-gy-m);
    transform: translateY(-0.2em);
}

.farm-sakumotsu {
    line-height: 1.6;
}

/* 登録ボタンエリア */
.touroku-btn-area {
    padding: var(--space-base-y) 0;
}

.touroku-btn-area .catchcopy {
    color: var(--color-pk-s);
}

.touroku-btn-area .catchcopy::before,
.touroku-btn-area .catchcopy::after {
    background-image: url(../images/ashirai-line.png);
}

/* 登録ボタン */
.btn {
    position: absolute;
    top: 100%;
    right: -5%;
    padding: 2rem 4rem;
    margin: 1rem 0;
    color: var(--color-ye-lt);
    font-size: var(--fs-xl);
    font-weight: 500;
    transition: 0.5s;
}

.btn:hover {
    color: var(--color-ye);
    opacity: 0.7;
    transition: 0.5s;
}

/* ボタン周り　ハニカム写真 */
.hanikamu-img {
    position: absolute;
    width: 200px;
}

.hanikamu-img:nth-of-type(1) {
    top: -280%;
    left: -70%;
}

.hanikamu-img:nth-of-type(2) {
    top: -80%;
    left: -130%;
}

.hanikamu-img:nth-of-type(3) {
    top: -280%;
    left: 100%;
}

.hanikamu-img:nth-of-type(4) {
    top: -80%;
    left: 160%;
}

/* ------------------------------------ SNSエリア --------------------------------------- */
#sns {
    position: absolute;
    top: calc(1200vh + 30vh);
    left: 0;
    width: 100%;
    height: 80vh;
    padding: var(--space-base-x) 0 0;
    background-color: var(--color-gy-lt);
    z-index: 100;
}

.sns__h2 {
    top: -25%;
}

#sns .fukidashi {
    margin-left: calc(var(--space-base-x) - 3%);
}

.sns__wrapper {
    display: flex;
    justify-content: space-between;
}

.sns-content-left-area,
.sns-content-right-area {
    width: 47%;
}

.sns-content-left,
.sns-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--space-base-y) / 2) calc(var(--space-base-x) / 4);
    background-color: var(--color-gy-lt);
    background-image: url(../images/syasen-g.png);
    background-repeat: repeat;
    background-size: 15px;
    aspect-ratio: 2 / 1;
    transition: 0.5s;
}

.sns-content-left:hover,
.sns-content-left:hover .sns__icon,
.sns-content-right:hover,
.sns-content-right:hover .sns__icon {
    background-color: var(--color-ye);
    transition: 0.5s;
}

.sns-content-left {
    border-radius: 0 var(--radius-l) 0 0;
}

.sns-content-right {
    border-radius: var(--radius-l) 0 0 0;
    margin-top: 5%;
}

.sns__h3-name {
    color: var(--color-w);
    font-size: var(--fs-xl);
    text-align: center;

}

.sns__icon {
    width: 14%;
    padding: 5%;
    background-color: var(--color-gy-lt);
    transition: 0.5s;
}

.hutaba-set {
    position: absolute;
    top: 12%;
    display: flex;
    justify-content: center;
    z-index: -10;
}

.hutaba-left,
.hutaba-right {
    content: "";
    width: 50vw;
    background-color: var(--color-gr-dk);
    z-index: 100;
}

.hutaba-left {
    height: 90vh;
    border-radius: 50% 50% 0 0;
    margin-right: -5%;
}

.hutaba-right {
    height: 80vh;
    border-radius: 50% 50% 0 0;
    margin-top: 7%;
    margin-left: -5%;
}

/* ------------------------------------ フッター --------------------------------------- */
.footer {
    background-color: var(--color-gr-dk);
    position: absolute;
    top: calc(1300vh + 30vh);
    z-index: 10;
    width: 100%;
    height: 5vh;
    color: var(--color-ye);
    text-align: center;
    padding: 18vh 0 6vh;
    font-size: var(--fs-s);
}

.footer__wrapper {
    position: relative;
    top: 50%;
}

.footer__name {
    position: absolute;
    bottom: -10%;
}

.footer__small {
    position: absolute;
    bottom: 0;
    display: contents;
}

/* ********************************** レスポンシブデザイン ********************************** */
@media (max-width: 1440px) {
    .nouka-center-wrapper {
        bottom: -60%;
    }
}

/* ------------------------------ タブレット ------------------------------ */
@media (max-width: 768px) {

    /* ナビゲーションを非表示にしてハンバーガーメニューを表示 */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-w);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--space-l);
    }

    .header__nav-list li {
        border-bottom: 1px solid var(--color-gy-lt);
    }

    .header__nav-list li a {
        padding: var(--space-m) 0;
        font-size: var(--fs-m);
    }

    /* ハンバーガーメニューを表示 */
    .header__hamburger {
        display: flex;
    }

    .header__join-btn a {
        width: 140px;
    }

    .header__join-btn-text {
        font-size: 0.75rem;
    }
}

/* スマホ */
@media (max-width: 480px) {
    .header__logo {
        width: 80px;
    }

    .header__logo-bg {
        width: 300px;
    }

    .header__logo-h1 a {
        padding: var(--space-m) var(--space-l);
    }

    .header__join-btn a {
        width: 120px;
    }

    .header__join-btn-text {
        font-size: 0.65rem;
        top: 35%;
    }
}