@charset "UTF-8";

/* =====================================
   1. 基本設定 (SP基準)
   ===================================== */
.nashigift {
  /* --- 変数定義 --- */
  /* フォント */
  --font-main: "Yu Gothic", "游ゴシック体", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --font-kiwi: "Kiwi Maru", serif;
  --font-size-base: 13px;
  /* カラー */
  --text-base: #333;
  --basic-orange: #EA5514;
  --basic-green: #4D7F37;
  --basic-blue: #009FE8;
  --light-green: #42B153;
  --light-blue: #00B2B3;
  --grd-orange: linear-gradient(133deg, rgba(234, 111, 20, 1) 0%, rgba(234, 152, 20, 1) 100%);
  --white: #fff;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.20);

  /* --- スタイル適用 --- */
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-base);
  overflow-x: hidden;
}

.nashigift * {
  box-sizing: border-box;
}

.nashigift *:focus {
  outline: none;
}

.nashigift img {
  display: block;
  max-width: 100%;
}

.nashigift ul,
.nashigift li,
.nashigift p {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nashigift a {
  text-decoration: none;
  color: inherit;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}


/* =====================================
   2. 各セクション設定
   ===================================== */
/* リード文  ---------------------- */
.read-section {
  padding: 15px 20px 12px;
  position: relative;
  text-align: left;
  z-index: 2;
  background-color: var(--white);
}

.read-section p span {
  display: block;
  margin-bottom: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-kiwi);
}

.open-box {
  position: relative;
}

input[type="checkbox"].on-off {
  position: absolute;
  bottom: 0;
  opacity: 0;
}

.open-label {
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.open-label::before {
  content: '続きを読む';
  margin-right: 5px;
  font-weight: 600;
}

.open-label::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--text-base);
  border-bottom: 1px solid var(--text-base);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s;
}

.on-off:checked~.open-label::before {
  content: '閉じる';
}

.on-off:checked~.open-label::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.open {
  height: 78px;
  overflow: hidden;
  position: relative;
}

.on-off:checked~.open {
  height: auto;
}

.open::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 30%, var(--white) 90%);
}

.on-off:checked~.open::before {
  background: none;
  z-index: -1;
}

/* アンカーリンクから下のコンテンツ */
.wrapper-section {
  background:
    linear-gradient(to bottom, var(--white) 0px, rgba(0, 0, 0, 0) 20px),
    url("/img/usr/genre/rA9/bg.webp") repeat center top / 100% auto;
}

/* アンカーリンク ---------------------- */
.anchor-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 5px 10px 35px;
}

.anchor-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.anchor-section li {
  width: calc(50% - 3px);
  margin: 0;
}

.anchor-section a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0 17px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-kiwi);
  border-radius: 60px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
  color: var(--white);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.anchor-section a span {
  display: block;
  font-size: 12px;
}

.anchor-section li:nth-child(1) a {
  background: var(--basic-orange);
}

.anchor-section li:nth-child(2) a {
  background: var(--basic-green);
}

.anchor-section li a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--white);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 45% auto;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.anchor-section li:nth-child(1) a::after {
  border: 2px solid var(--basic-orange);
  background-image: url('/img/usr/genre/rA9/arrow_or.png');
}

.anchor-section li:nth-child(2) a::after {
  border: 2px solid var(--basic-green);
  background-image: url('/img/usr/genre/rA9/arrow_gr.png');
}

/* 品種・産地セクション　共通設定 ---------------------- */
.wrap-section {
  padding: 0 7px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wrap-section--inner {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.wrap-section h2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 12px 0 13px;
  border-radius: 18px 18px 0 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--font-kiwi);
  color: var(--white);
  position: relative;
}

.wrap-section--item h2 {
  background: var(--basic-orange);
}

.wrap-section--list h2 {
  background: var(--basic-green);
}

.wrap-section h2::before,
.wrap-section h2::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 20px;
  background: url("/img/usr/genre/rA9/title_deco.png") no-repeat center top / 100% auto;
}

.wrap-section h2::before {
  margin-right: 10px;
  transform: scale(-1, 1);
}

.wrap-section h2::after {
  margin-left: 10px;
}

/* 品種 ---------------------- */
.wrap-section--item {
  border: 2px solid var(--basic-orange);
}

.wrap-section--item ul {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 14px 30px;
  gap: 25px 14px;
}

.wrap-section--item li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 14px) / 2);
  text-align: center;
}

.wrap-section--item li>a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* .wrap-section--item a:hover {
  cursor: pointer;
  opacity: 0.8;
} */

.wrap-section--item .img-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}

.wrap-section--item .img-wrapper img {
  width: 85%;
  margin: 0 auto;
}

.wrap-section--item .img-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.wrap-section--item .icon-aka::after {
  background-image: url("/img/usr/genre/rA9/icon_akanashi.png");
}

.wrap-section--item .icon-ao::after {
  background-image: url("/img/usr/genre/rA9/icon_aonashi.png");
}

.wrap-section--item h3 {
  margin: 4px auto 3px;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-kiwi);
  color: #6A3906;
}

.wrap-section--item p {
  margin-bottom: 8px;
  text-align: justify;
  word-break: break-all;
  line-break: strict;
  text-wrap: pretty;
  font-size: 11px;
  flex-grow: 1;
}

.wrap-section--item .item-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 45px;
  margin: 0 auto;
  padding: 0 16px 1px 16px;
  background: var(--grd-orange);
  border-radius: 60px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-kiwi);
  color: var(--white);
  position: relative;
  background-size: 200% auto;
  background-position: left center;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wrap-section--item .item-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.wrap-section--item .item-btn span {
  font-size: 12px;
}

.wrap-section--item .item-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  background-image: url("/img/usr/genre/rA9/arrow_lor.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% auto;
}

/* 産地 ---------------------- */
.wrap-section--list {
  border: 2px solid var(--basic-green);
}

.inner_block {
  padding: 20px 10px;
}

.wrap-section--list h3 {
  width: 80%;
  margin: 0 auto 20px;
  padding: 0 0 1px 12px;
  left: 8px;
  position: relative;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-kiwi);
  color: var(--white);
  background: var(--light-green);
  border-radius: 4px 0 0 4px;
  overflow: visible !important;
}

.wrap-section--list h3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 22px 15px 22px 0;
  border-style: solid;
  border-color: transparent #edf8ef transparent transparent;
  z-index: 1;
}

.wrap-section--list h3::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 57px;
  height: 57px;
  background-image: url("/img/usr/genre/rA9/title_sub_deco.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

/* テキストリンクボタン */
.wrap-section--list .area-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  padding: 0;
  margin: 0 0 25px 0;
}

.wrap-section--list .area-btn-list li {
  width: calc(50% - 2px);
}

.wrap-section--list .area-btn-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--font-kiwi);
  padding: 0 15px;
  border: 2px solid var(--light-green);
  border-radius: 60px;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.wrap-section--list .area-btn-list a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("/img/usr/genre/rA9/arrow_lgn.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.wrap-section--list .area-btn-list a:hover {
  transform: translateY(2px);
  box-shadow: none;
  background-color: #f9f9f9;
}

/* マップ＆テキストエリア */
.feature-wrap {
  display: flex;
  flex-direction: column;
}

.img-map {
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}

.feature-wrap--txt {
  padding: 8px 8px 16px;
  background: var(--white);
  border-radius: 0 0 10px 10px;
}

.feature-wrap--txt p {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-kiwi);
  color: var(--light-green);
}

.feature-wrap--txt li {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 16px;
  margin-bottom: 4px;
  position: relative;
}

.feature-wrap--txt li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.feature-wrap--txt li span {
  font-size: 12px;
  color: #666;
  font-weight: normal;
}

/* 産地（千葉） */
.chiba {
  background: #edf8ef;
}

.chiba .feature-wrap--txt p {
  color: var(--light-green);
}

.chiba .feature-wrap--txt li::before {
  background-color: var(--light-green);
}

/* 産地（埼玉・茨城） */
.saitama {
  border-top: 4px dotted var(--white);
  background: #e6f7f8;
  border-radius: 0 0 20px 20px;
}

.saitama h3 {
  background: var(--light-blue);
}

.saitama h3::after {
  border-color: transparent #e6f7f8 transparent transparent;
}

.saitama .area-btn-list a {
  border: 2px solid var(--light-blue);
}

.saitama .area-btn-list a::after {
  background-image: url("/img/usr/genre/rA9/arrow_bl.png");
}

.saitama p {
  color: var(--light-blue);
}

.saitama .sab-text {
  text-align: left;
  font-size: 16px;
}

.saitama li::before {
  background-color: var(--light-blue);
}

/* =====================================
   3. PC用設定 (780px以上)
   ===================================== */
/* 基本設定 (PC基準) */
@media only screen and (min-width: 780px) {
  .nashigift {
    /* --- 変数定義 --- */
    /* フォント */
    --font-size-base: 15px;

    /* --- スタイル適用 --- */
    width: 1200px;
    font-size: var(--font-size-base);
  }

  .nashigift h2 {
    font-size: 28px;
  }

  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  /* リード文  ---------------------- */
  .read-section {
    text-align: center;
    padding: 18px 20px 22px;
    background-size: 120px 80px;
  }

  .open-label {
    justify-content: center;
  }

  /* アンカーリンクから下のコンテンツ */
  .wrapper-section {
    background:
      linear-gradient(to bottom, var(--white) 0px, rgba(0, 0, 0, 0) 50px),
      url("/img/usr/genre/rA9/bg.webp") repeat center top / 100% auto;
  }

  /* アンカーリンク ---------------------- */
  .anchor-section ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 10px auto 40px;
  }

  .anchor-section li {
    width: 265px;
    margin: 0;
  }

  .anchor-section a {
    padding: 12px 0 17px;
    font-size: 24px;
    line-height: 1.2;
  }

  .anchor-section a span {
    display: block;
    font-size: 16px;
  }

  /* 品種・産地セクション　共通設定 ---------------------- */
  .wrap-section {
    padding: 0 50px 20px;
  }

  .wrap-section--inner {
    margin-bottom: 30px;
  }

  .wrap-section h2 {
    padding: 12px 0 16px;
    border-radius: 16px 16px 0 0;
    font-size: 44px;
  }

  .wrap-section h2::before,
  .wrap-section h2::after {
    width: 60px;
    height: 30px;
  }

  /* 品種 ---------------------- */
  .wrap-section--item {
    border: 4px solid var(--basic-orange);
  }

  .wrap-section--item ul {
    margin: 35px 45px 55px;
    gap: 40px 40px;
  }

  .wrap-section--item li {
    width: calc((100% - 80px) / 3);
  }

  .wrap-section--item .img-wrapper::after {
    width: 75px;
    height: 75px;
  }

  .wrap-section--item .img-wrapper img {
    width: 80%;
  }

  .wrap-section--item h3 {
    margin: 4px auto 3px;
    font-size: 28px;
  }

  .wrap-section--item p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .wrap-section--item .item-btn {
    width: 80%;
    height: 55px;
    padding: 0 24px 1px 24px;
    font-size: 20px;
  }

  .wrap-section--item .item-btn span {
    font-size: 16px;
  }

  .wrap-section--item .item-btn::after {
    width: 24px;
    height: 24px;
    right: 15px;
  }

  /* 産地 ---------------------- */
  .wrap-section--list {
    border: 4px solid var(--basic-green);
  }

  .inner_block {
    padding: 35px 45px 45px;
  }

  .wrap-section--list h3 {
    display: block;
    width: 410px;
    margin: 0 auto 30px;
    padding: 0 0 1px 12px;
    left: 12px;
    height: 54px;
    line-height: 54px;
    font-size: 30px;
  }

  .wrap-section--list h3::after {
    border-width: 27px 17px 27px 0;
  }

  .wrap-section--list h3::before {
    left: -20px;
    width: 74px;
    height: 74px;
  }

  /* テキストリンクボタン */
  .wrap-section--list .area-btn-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .wrap-section--list .area-btn-list li {
    width: calc(25% - 8px);
  }

  .wrap-section--list .area-btn-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    text-align: left;
    font-size: 15px;
    padding: 0 20px 0 30px;
  }


  /* マップ＆テキストエリア */
  .feature-wrap {
    display: flex;
    flex-direction: row;
  }

  .img-map {
    width: 500px;
    height: 100%;
    border-radius: 20px 0 0 20px;
  }

  .feature-wrap--txt {
    padding: 20px;
    border-radius: 0 20px 20px 0;
    flex: 1;
  }

  .feature-wrap--txt p {
    margin: 0 auto 4px;
    text-align: left;
    font-size: 36px;
  }

  .feature-wrap--txt li {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 26px;
    margin-bottom: 4px;
  }

  .feature-wrap--txt li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
  }

  .feature-wrap--txt li span {
    display: block;
  }

  /* 産地（埼玉・茨城） */
  .saitama .area-btn-list {
    justify-content: center;
  }

  .saitama .sab-text {
    font-size: 22px;
  }
}

/* =====================================
   4. システム用
   ===================================== */
.block-genre-page-head {
  margin: 0;
  padding: 0;
}

.block-readmore-contents {
  display: none;
}

.pane-left-menu {
  display: none;
}