html,
body,
header,
footer,
main,
section,
h1,
h2,
h3,
ul,
li,
p,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #333333;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-feature-settings: "palt";
    /*メトリクス*/
}
body {
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    vertical-align: bottom;
    border: none;
}

/* cssリセット */

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}
.section_ttl {
    text-align: center;
    margin: 50px 0;
    /* position: relative; */
    font-size: 24px;
    font-weight: 500;
}
.section_ttl::before {
    content: "";
    background-image: url(/img/section_icon.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    left: 0;
    margin-right: 1%;
}

h3 {
    text-align: center;
    padding: 3% 0;
    font-size: 1.5em;
    font-weight: 500;
}
.btn_w {
    display: inline-block;
    border: solid 1px #008969;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 40px;
    text-decoration: none;
}
.btn_g {
    display: inline-block;
    color: #fff;
    background-color: #008969;
    border-radius: 10px;
    padding: 20px 40px;
    text-decoration: none;
}
header {
    background-color: #fffbf2;
}
header ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 120px;
}
#mv {
    background-color: #fffbf2;
    padding-bottom: 7%;
    position: relative;
}
#mv::after {
    position: absolute;
    content: "";
    background-image: url(../img/ttl@3x.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 420px;
    height: 460px;
    background-repeat: no-repeat;
    right: 70px;
    top: 39px;
}

#mv img {
    object-position: bottom;
    height: 600px;
    object-fit: cover;
}
.mv {
    position: relative;
}
.mv::before {
    position: absolute;
    content: "";
    background-image: url(../img/yama_02.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 420px;
    height: 150px;
    background-repeat: no-repeat;
    left: -40px;
    bottom: -51px;
}
.mv::after {
    position: absolute;
    content: "";
    background-image: url(../img/nagano.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 420px;
    height: 290px;
    background-repeat: no-repeat;
    right: -40px;
    top: 279px;
    opacity: 0.5;
}

/* ----------------news---------------- */
#news {
    padding: 3% 0;
    position: relative;
}

#news::after {
    content: "";
    position: absolute;
    background-image: url(../img/bb_01.png);
    background-size: contain;
    width: 110px;
    height: 90px;
    background-repeat: no-repeat;
    right: 740px;
    top: -1px;
}
.news_container {
    display: flex;
    background-color: #f1f1f1;
    border-radius: 30px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.label {
    /* width: 30%; */
    background-color: #f6cb6e;
    border-radius: 30px 0 0 30px;
    padding: 2% 5%;
}
.date {
    padding: 2% 5%;
}
.news_container p {
    padding: 2% 5%;
}
.news_ttl {
    position: relative;
}

.news_container::before {
    content: "";
    position: absolute;
    background-image: url(../img/flag.png);
    background-size: contain;
    width: 110px;
    height: 330px;
    background-repeat: no-repeat;
    left: -130px;
    bottom: -151px;
    z-index: 2;
}
.news_container::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 12px 0 12px;
    border-color: #6c6fa4 transparent transparent transparent;
    right: 50px;
    top: 25px;
}
/* ----------------about---------------- */
#about {
    background-color: #fff;
    padding: 5% 0;
}
.about_container {
    display: flex;
    gap: 5%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}
.about_container::before {
    position: absolute;
    content: "";
    background-image: url(../img/yama_01.png);
    background-size: contain;
    width: 420px;
    height: 180px;
    background-repeat: no-repeat;
    right: -160px;
    top: -211px;
}
.about_container::after {
    position: absolute;
    content: "";
    background-image: url(../img/news_bg.png);
    background-size: contain;
    width: 460px;
    height: 480px;
    background-repeat: no-repeat;
    left: -290px;
    top: -190px;
    z-index: -1;
}
.about_img {
    width: 40%;
    /* margin-right: 5%; */
}
.about_img img {
    width: 100%;
}
.about_text {
    width: 50%;
}
.about_text > p {
    line-height: 1.8;
    text-align: justify;
}
.more {
    display: inline-block;
    border: solid 1px #52507a;
    background-color: #fff;
    /* border-radius: 50px; */
    padding: 20px 40px;
    text-decoration: none;
    margin-top: 5%;
    position: relative;
    color: #52507a;
    z-index: 1;
    transition: color 0.5s 0s ease;
}
.more:hover {
    /* background-color: #52507a; */
    color: #fff;
    opacity: 1;
}
.more:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.more::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #52507a;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    z-index: -1;
}
/* .more::after {
    position: absolute;
    top: 50%;
    right: -18px;
    height: 1px;
    background: #52507a;
    content: "";
    z-index: 2;
} */
/* .slider {
    display: flex;
    padding: 3% 0;
} */

.slider {
    width: 100%;
    height: 170px;
    overflow: hidden;
}
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider li {
    height: auto;
}

.slider .slick-slide {
    margin: 0 10px; /* 左右に10pxずつ間隔 */
}
/* ----------------picking---------------- */
#picking {
    background-color: #f7f9fa;
    padding: 3% 0;
}
/* ベーススタイル */
.picking_flow {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* ヘッダーの配置を合わせる */
    max-width: 1000px;
    margin: 20px auto;
    font-family: sans-serif;
    position: relative;
}

.picking_flow::before {
    position: absolute;
    content: "";
    background-image: url(../img/bb_02.png);
    background-size: contain;
    width: 100px;
    height: 150px;
    background-repeat: no-repeat;
    left: 100px;
    bottom: 330px;
}
.picking_flow::after {
    position: absolute;
    content: "";
    background-image: url(../img/picking_bg.png);
    background-size: contain;
    width: 420px;
    height: 350px;
    background-repeat: no-repeat;
    left: -300px;
    bottom: -220px;
}

/* 各ステップのコンテナ */
.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 100px; /* ヘッダーとステップ番号のためのスペース */
}

/* ステップの項目 */
.step-item {
    text-align: center;
    width: 200px; /* 幅を固定 */
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

/* ステップ番号のスタイル */
.step-number {
    background-color: #f7d28c; /* 淡いオレンジ */
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    position: absolute;
    top: -50px; /* step-itemからの相対位置調整 */
    left: 50%;
    transform: translateX(-50%);
    min-width: 80px;
    text-align: center;
    font-size: 14px;
    z-index: 20;
}

/* 画像ラッパー */
.step-image-wrapper {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-top: 10px;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* 画像も角丸に */
}

/* キャプション */
.step-caption {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

/* ヘッダーグループ（事前・当日）のスタイル */
.step-header-group {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    font-size: 18px;
    z-index: 5;
}

/* '事前' のヘッダー */
.pre-day {
    background-color: #e0f2f1; /* 淡いグリーン */
    color: #333;
}

/* '当日' のヘッダー */
.on-day {
    background-color: #aeb8d8; /* 淡いブルー */
    color: white;
    /* '当日' はステップ2, 3, 4の3ステップをカバーするため、幅を調整 */
    width: calc(100% * 3 / 4 + 10px); /* 3つのステップ分の幅 */
    left: 25%; /* ステップ1の幅の分だけ右にずらす */
}

/* ステップ間の矢印 */
.step-container:not(:last-child)::after {
    content: "▶"; /* 矢印のアイコン */
    position: absolute;
    top: 60%;
    right: -25px; /* 適切な位置に調整 */
    transform: translateY(-50%);
    font-size: 20px;
    color: #aeb8d8; /* 淡いブルー */
    z-index: 15;
}

/* 矢印がヘッダーと重ならないように調整 */
.step-container:nth-child(2)::after,
.step-container:nth-child(3)::after {
    top: 59%;
}

/* 最後のステップには矢印を表示しない */
.step-container:last-child::after {
    content: none;
}

/* レイアウトの微調整 */
.step-container:nth-child(1) {
    /* '事前' のヘッダーの幅をステップ1に合わせる */
    width: 25%;
    margin-right: 50px; /* 矢印のスペース */
}

.step-container:nth-child(2),
.step-container:nth-child(3) {
    width: 25%;
    margin-right: 50px;
}

.step-container:nth-child(4) {
    width: 25%;
}

/* ----------------farm_map---------------- */
.farm_map {
    position: relative;
}
.farm_map::before {
    position: absolute;
    content: "";
    background-image: url(../img/map_l.png);
    background-size: contain;
    width: 170px;
    height: 240px;
    background-repeat: no-repeat;
    left: -50px;
    top: 50px;
}
.farm_map::after {
    position: absolute;
    content: "";
    background-image: url(../img/map_r.png);
    background-size: contain;
    width: 180px;
    height: 230px;
    background-repeat: no-repeat;
    right: -57px;
    top: 47px;
}
.farm_map p {
    text-align: right;
    padding-top: 2%;
}
/* ----------------price---------------- */
#price {
    padding: 3% 0;
    background-color: #fff;
    position: relative;
}
#price::after {
    position: absolute;
    content: "";
    background-image: url(../img/bb_01.png);
    background-size: contain;
    width: 360px;
    height: 100px;
    background-repeat: no-repeat;
    right: 630px;
    top: -30px;
}
.price_time {
    text-align: end;
    font-size: 1.1em;
    padding-bottom: 1%;
}
.price_container {
    margin: 0 auto;
    border: solid 1px #a69fd3;
    border-radius: 30px;
    /* padding: 20px 40px; */
    position: relative;
}
.price_container::before {
    position: absolute;
    content: "";
    background-image: url(../img/price_bg.png);
    background-size: contain;
    width: 490px;
    height: 380px;
    background-repeat: no-repeat;
    right: -520px;
    top: -330px;
}
.price_container::after {
    position: absolute;
    content: "";
    background-image: url(../img/tree_bg.png);
    background-size: contain;
    width: 490px;
    height: 700px;
    background-repeat: no-repeat;
    left: -440px;
    bottom: -520px;
}
.price_container h3 {
    background-color: #a69fd3;
    border-radius: 30px 30px 0 0;
    color: #fff;
    padding: 3% 0;
    font-size: 2em;
}
.price_container h3 span {
    background-color: #6c6fa4;
    color: #fff;
    margin-left: 20px;
    padding: 8px 10px;
    border-radius: 30px;
}
.price_container dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    padding: 5% 15% 0;
    font-size: 1.5em;
}
.price_container dl span {
    font-size: 0.8em;
}
.price_container dl dt {
    width: 30%;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: #333 dotted 2px;
}
.price_container dl dd {
    width: 70%;
    text-align: end;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: #333 dotted 2px;
}
.pricetree_container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricetree_container img {
    width: 100px;
    margin-right: 100px;
}
.pricetree_container p {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.repeater {
    text-align: center;
    font-size: 1.1em;
}
.takeout {
    text-align: right;
    padding: 3% 15%;
}
.tax {
    text-align: right;
    padding: 3% 0;
}

.container_fv {
    position: relative;
    background: #fffbf2;
    height: 30px;
}

.container_fv .wave {
    position: absolute;
    height: 70px;
    width: 100%;
    background: #fffbf2;
    bottom: 0;
}

.container_fv .wave::before,
.container_fv .wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}

.container_fv .wave::before {
    width: 55%;
    height: 109%;
    background-color: #fff;
    right: -1.5%;
    top: 60%;
}
.container_fv .wave::after {
    width: 55%;
    height: 100%;
    background-color: #fffbf2;
    left: -1.5%;
    top: 40%;
}
.pricetree_container img {
    margin-right: 30px;
}
/* ----------------access---------------- */
#access {
    background-color: #f4f2ea;
    padding: 3% 0;
}
.access_container {
    display: flex;
    align-items: center;
    gap: 5%;
    position: relative;
}
.access_container::after {
    position: absolute;
    content: "";
    background-image: url(../img/access_bg.png);
    background-size: contain;
    width: 490px;
    height: 380px;
    background-repeat: no-repeat;
    right: -470px;
    bottom: -230px;
    z-index: 20;
}
.access_txt h2 {
    margin-bottom: 2%;
}
.access_txt p {
    margin-bottom: 2%;
    line-height: 1.7;
}
.access_txt {
    width: 50%;
}
.access_txt h3 {
    background-color: #6c6fa4;
    border-radius: 30px;
    padding: 1% 0;
    color: #fff;
    margin: 5% 10% 5% 0;
}
.community_bus {
    text-decoration: underline;
    color: #0000ee;
}
.access_map {
    width: 50%;
}

.access_map a {
    margin-top: 5%;
}
iframe {
    width: 100%;
    height: 400px;
}
/* .btn_g {
    margin: 0 auto;
} */
/* ----------------FAQ---------------- */
#faq {
    padding: 3% 0;
}
details {
    background: #f7f9fa;
    padding: 2%;
    margin-bottom: 3%;
}
summary {
    margin-bottom: 1%;
    display: block;
}
summary::before {
    content: "";
    background-image: url(/img/Q.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    left: 0;
    margin-right: 1%;
}
details p::before {
    content: "";
    background-image: url(/img/A.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    left: 0;
    margin-right: 1%;
}
.faq_content {
    --gap: 1em;
    position: relative;

    color: #333333;
    border-radius: 1em;
    cursor: pointer;
}
.faq_a {
    line-height: 1.8;
}
/* ----------------footer---------------- */

.arch {
    background-color: #edf4ea;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 100px;
    margin-left: -100px;

    padding-left: 100px;
    padding-right: 100px;
}

footer {
    text-align: center;
    background-color: #edf4ea;
}

.footer_btn {
    padding: 50px 0;
}
.footer_address {
    position: relative;
}
.footer_address::before {
    position: absolute;
    content: "";
    background-image: url(../img/footer_tree_l.png);
    background-size: contain;
    width: 280px;
    height: 170px;
    background-repeat: no-repeat;
    left: 0px;
    top: -250px;
}
.footer_address::after {
    position: absolute;
    content: "";
    background-image: url(../img/footer_tree_r.png.png);
    background-size: contain;
    width: 280px;
    height: 170px;
    background-repeat: no-repeat;
    right: 0px;
    top: -250px;
}

.footer_address p {
    margin-bottom: 10px;
}
.copy {
    padding: 30px 0;
    font-size: 12px;
}
footer::before {
    content: "";
    display: inline-block;
    max-width: 1080px;
    height: 50px;
    border-radius: 50% / 100% 100% 0 0;
    background-color: #edf4eaed;
}

/* ----------------contact.html---------------- */
#contact {
    padding: 3% 0;
}
#contact .wrapper {
    max-width: 700px;
}
.contact_ttl {
    text-align: center;
    margin-bottom: 40px;
}

input {
    width: 100%;
    border: 2px solid #6c6fa4;
    border-radius: 5px;
    padding: 1%;
    margin: 10px 0 25px 0;
}

textarea {
    width: 100%;
    border: 2px solid #6c6fa4;
    border-radius: 5px;
    padding: 1%;
    margin: 10px 0;
}
.need {
    width: 48px;
    border-radius: 5px;
    padding: 3px;
    background-color: #008969;
    margin-left: 5px;
    color: #fff;
}
.submit {
    width: 250px;
    height: 44px;
    background-color: #6c6fa4;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin: 40px auto;
}
/* ----------------info.html---------------- */
#info {
    margin: 100px 0;
}
.info_ttl {
    text-align: center;
}
article {
    margin: 40px 0;
    border: 2px solid #6c6fa4;
    border-radius: 30px;
    padding: 2%;
}
.text_date {
    margin-bottom: 8px;
}
.info_blog_ttl {
    color: #6c6fa4;
}

.info .text_content {
    border-top: 1px solid #6c6fa4;
    margin: 10px 0;
    padding-top: 10px;
    line-height: 1.6;
}
/* ----------------bb.html---------------- */
.bb_ttl {
    margin: 30px 0;
    text-align: center;
}
.bb-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}
.blueberry_container {
    display: flex;
    justify-content: space-between;
    gap: 4%;
}
.bg_purple {
    background-color: #9fb7e8;
    color: #333333;
    border-radius: 10px;
    margin-bottom: 5%;
}
.bg_yellow {
    background-color: #fbbc04;
    color: #333333;
    border-radius: 10px;
    margin-bottom: 5%;
}

.bg_pink {
    background-color: #e89fde;
    color: #333333;
    border-radius: 10px;
    margin-bottom: 5%;
}

.blueberry_container-item ul li {
    position: relative;
    padding-left: 8%;
    margin-bottom: 5%;
}

.blueberry_container-item ul li::before {
    position: absolute;
    content: "";
    background-image: url(/img/section_icon.png);
    background-size: contain;
    vertical-align: sub;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    left: 0;
}

/* タイムラインコンテナの定義 (Gridを使用) */
.blueberry-timeline {
    margin: 100px auto;
}

/* 期間のヘッダー */
.timeline-header {
    display: grid;
    /* 6月、7月、8月を表現するために、全体を6つの均等なカラムに分割 */
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

.month {
    /* CSS変数を使用して、親コンテナのGridカラムを設定 */
    grid-column: var(--col-start) / var(--col-end);
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
}

/* 品種のバーと境界線のコンテナ */
.varieties-container {
    display: grid;
    grid-template-columns: repeat(12, 3fr);
    grid-template-rows: repeat(3, 30px); /* 3行を品種バー用に確保 */
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

/* 品種ごとの収穫期バーのスタイル */
.variety-bar {
    /* CSS変数を使用して、親コンテナのGridカラムを設定 */
    grid-column: var(--col-start) / var(--col-end);
    grid-row: auto; /* 各バーは自動的に次の行に配置されます */
    height: 80%;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
    padding: 0 10px;
    margin: 5px 0;
}

/* 品種ごとの色分け */
.northern-highbush {
    background-color: #f7c948; /* オレンジ系 */
    grid-column: 1 / 6; /* 品種バーの全高にわたる */
    grid-row: 1 / 2;
    line-height: 1;
}

.southern-highbush {
    background-color: #a4c4f9; /* ブルー系 */
    grid-column: 2 / 7; /* 品種バーの全高にわたる */
    grid-row: 2 / 3;
    line-height: 3;
}

.rabbiteye {
    background-color: #e096f0; /* ピンク系 */
    grid-column: 5 / 13; /* 品種バーの全高にわたる */
    grid-row: 3 / 4;
    line-height: 3;
}

/* 月の境界線 */
.month-line {
    /* 6月と7月の境界線 (3カラム目) と 7月と8月の境界線 (5カラム目) */
    grid-column: var(--line-col) / span 1;
    grid-row: 1 / 4; /* 品種バーの全高にわたる */
    border-left: 1px solid #aaa;
    height: 100%;
    justify-self: center; /* カラムの中心に配置 */
    z-index: 10; /* バーの上に表示 */
}

/* 旬のアイコン（暫定的なスタイル）*/
.shun-icon {
    /* 8月頃に配置 */
    grid-column: var(--col-start) / span 1;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: flex-start;
    font-size: 3em;
    font-weight: bold;
    color: #4b396b; /* 濃いブルーベリー色 */
    /* 添付画像のような丸い背景をシミュレート */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(75, 57, 107, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    /* 調整して右端寄りに配置 */
    transform: translateX(30px);
    opacity: 0.8;
}

/* 時期ごとの特徴タグのコンテナ */
.feature-tags {
    /* display: flex;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 10px;
    padding: 0 5px;
}

.feature-tag {
    flex: 1; /* 各タグが均等幅になるように */
    text-align: center;
    padding: 8px 5px;
    margin: 0 3px;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
}

.ootsubu {
    background-color: #e6f7e6; /* 薄いグリーン系 */
    grid-column: 1 / 5;
    color: #333333;
}
.tahinsyu {
    background-color: #e6f7e6; /* 薄いグリーン系 */
    grid-column: 5 / 8;
    color: #333333;
}
.sakan {
    background-color: #e6f7e6; /* 薄いグリーン系 */
    grid-column: 8 / 10;
    color: #333333;
}
.toudo {
    background-color: #e6f7e6; /* 薄いグリーン系 */
    grid-column: 10 / 13;
    color: #333333;
}
/* 特徴タグの配置を元の図に近づけるためのマーカー（視覚的な補助線として、ここでは非表示） */
/* .feature-marker {
    position: absolute;
    top: 50%;
    left: calc((var(--col-start) / 6) * 100%);
    width: 1px;
    height: 100%;
    background-color: red; 
    z-index: 20;
} */

/* タグの位置を手動で調整する場合は、flex-basisやmarginを調整します */
/* .feature-tags > :nth-child(1) { flex: 0 0 24%; } // 大粒がいっぱい
.feature-tags > :nth-child(2) { flex: 0 0 28%; } // 多品種勢揃い
.feature-tags > :nth-child(3) { flex: 0 0 20%; } // 最盛期
.feature-tags > :nth-child(4) { flex: 0 0 24%; } // 糖度抜群
*/

.hamburger {
    display: none;
}
.sp_nav {
    display: none;
}

@media screen and (max-width: 1000px) {
    header {
        display: flex;
        justify-content: space-between;
        /* position: fixed;
        top: 0;
        left: 0; */
        width: 100%;
        height: 1;
        padding: 10px;
        /* background-color: #fff; */
        z-index: 999;
    }
    /* header::before {
        position: absolute;
        content: "";
        background-image: url(/img/logo.png);
        background-size: contain;
        vertical-align: sub;
        display: inline-block;
        width: 5px;
        height: 5px;
        background-repeat: no-repeat;
        left: 0;
        background-color: #000;
        border-radius: 50%;
        padding: 5%;
    } */
    header .wrapper {
        margin-right: 0;
    }

    #mv img {
        height: calc(100vh - 100px);
    }
    .pc_nav {
        display: none;
    }

    .hamburger {
        display: block; /*登場*/
        width: 30px;
        height: 30px;
        position: relative;
        transition: all 0.5s;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #121212;
        transition: all 0.5s;
    }

    .hamburger span:nth-child(1) {
        top: 15%;
    }
    .hamburger span:nth-child(2) {
        top: 50%;
    }
    .hamburger span:nth-child(3) {
        top: 85%;
    }

    .mask {
        display: none; /*デフォルトで消しとく */
        transition: 0.5s;
    }

    .sp_nav {
        display: block; /*登場*/
        height: 100%;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: -400px;
        transition: 0.5s;
        z-index: 999;
        width: 300px;
        padding: 40px 30px;
    }
    .sp_nav ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    .sp_nav ul li {
        margin-bottom: 15px;
    }
    .open nav {
        left: 0;
        opacity: 1;
    }
    /* .hamburger.open {
        z-index: 100;
    } */
    header.open .hamburger span:nth-child(1) {
        transform: rotate(-45deg);
        top: 50%;
        display: block;
        background-color: #fff;
        z-index: 999;
    }

    header.open .hamburger span:nth-child(2) {
        transform: rotate(45deg);
        background-color: #fff;
        z-index: 999;
    }

    header.open .hamburger span:nth-child(3) {
        opacity: 0; /* ３つ目は×に不要なので消しとく */
    }
    header.open .mask {
        display: block; /*登場*/
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.8;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
    }

    .about_container {
        flex-direction: column;
        gap: 0;
        /* margin-bottom: 80px; */
    }
    .about_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .about_text {
        width: 100%;
        margin-right: 0;
    }
    .about_container::before {
        display: none;
    }
    /* -----------------picking----------------- */
    .picking_flow {
        flex-direction: column;
    }
    .picking_flow .step-container {
        width: 100%;
        margin-right: 0;
    }
    .picking_flow .step-container:not(:last-child)::after {
        /* bottom: 0;
        right: 50%; */
        display: none;
    }
    .on-day {
        width: 100%;
        left: 0;
    }
    /* -----------------price----------------- */
    .farm_map::before,
    .farm_map::after,
    .price_container::before,
    .price_container::after {
        display: none;
    }
    /* -----------------access----------------- */
    .access_container {
        flex-direction: column;
        gap: 0;
    }
    .access_txt {
        width: 100%;
    }
    .access_map {
        width: 100%;
    }

    .arch {
        margin-right: 0px;
    }
    .access_container::after {
        display: none;
    }
    /* summary::before {
        display: inline-block;
    } */
}
