/* ========================================================
  共通
=========================================================*/
:root {
  /* カラーコード */
  /* 黒 #333333 */
  /* 赤 #bc3e29 */
  /* 青 #007caf */
  /* 背景 #fffaef */
  /* news #c3af89 */
  /* ボタン #b07c31 */
  /* ページネーション #efe4ca */
  /* アクティブ #a98d58 */
}
input::-webkit-calendar-picker-indicator {
  width: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}
input::-webkit-list-button {
  content: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  /* font-family: "Zen Kaku Gothic New", sans-serif; */
  color: #333333;
  width: 100%;
}
.container {
  width: 92%;
  max-width: 1024px;
  margin: 0 auto;
}
img {
  width: 100%;
  max-width: 100%;
}
a:hover {
  opacity: 0.8;
}
.en {
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}
.upper {
  text-transform: uppercase;
}
.attention {
  text-indent: -1em;
  margin-left: 1em;
}
.card_title {
  line-height: 1.5;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: clamp(8px, calc(24 / 1920 * 100vw), 24px);
}
.card_price {
  color: #bc3e29;
  margin-top: 12px;
  text-align: right;
  font-weight: bold;
}
.button {
  display: block;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  position: relative;
  line-height: 1;
  font-size: clamp(12px, calc(16 / 1920 * 100vw), 16px);
  font-weight: bold;
  letter-spacing: calc(40 / 1000 * 1em);
}
.button::after {
  content: "";
  display: block;
  width: clamp(8px, calc(12 / 1440 * 100vw), 12px);
  height: clamp(8px, calc(12 / 1440 * 100vw), 12px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 24px;
}

/* ========================================================
  ヘッダー
=========================================================*/
.header {
  width: 92%;
  display: flex;
  justify-content: space-between;
  max-width: 1092px;
  margin: 0 auto;
  padding-top: 33px;
  padding-bottom: 27px;
}
.header_logo {
  width: clamp(134px, calc(256 / 1920 * 100vw), 256px);
  max-width: 256px;
}
.header_nav-list {
  display: flex;
}
.header_nav-link {
  font-size: clamp(10px, calc(14 / 1920 * 100vw), 14px);
  padding: 0 0.8em;
}
.header_search {
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
  margin-top: 16px;
}
.header_search .hotkeyword {
  display: flex;
  -moz-column-gap: 7px;
  column-gap: 7px;
}
.header_search .hotkeyword_item {
  display: grid;
  place-items: center;
  font-size: clamp(10px, calc(14 / 1920 * 100vw), 14px);
  font-weight: bold;
  background-color: #bc3e29;
  border-radius: 999px;
  color: #fff;
  padding: 0.5em 0.8em;
}
.header_search .header_nav-item + .header_nav-item {
  border-left: 1px solid #333;
}
.header_search .search-icon {
  width: 18px;
}

.header_form {
  display: flex;
}
.search_word {
  background-color: #eeeeee;
  color: #776f6c;
  padding: 0 0.5em;
  font-size: clamp(10px, calc(14 / 1920 * 100vw), 14px);
}
.submit {
  background-color: #bc3e29;
  padding: 6px;
}
.header_form .search_word {
  width: clamp(187px, calc(227 / 1440 * 100vw), 227px);
}
.header_form .submit {
  display: grid;
  place-items: center;
  width: 30px;
}

.top {
  background-color: #fffaef;
  padding-bottom: 100px;
}

.top_category-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 25px;
}
.top_category-item {
  width: 155px;
}
.top_category-item + .top_category-item {
  border-left: 1px solid #efe4ca;
}
.top_category-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.top_category-image {
  width: calc(100 / 155 * 100%);
}

/* ========================================================
  スライダー設定
=========================================================*/
.swiper-pagination {
  position: initial;
  margin-top: 12px;
}
.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 10px !important;
  width: clamp(80px, calc(192 / 1920 * 100vw), 192px);
  height: 3px;
  background: #efe4ca;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #a98d58;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev {
  left: 20vw;
}
.swiper-button-next {
  right: 20vw;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  width: 24px;
  height: 24px;
  margin: auto;
  /* position: absolute; */
  top: 0;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  rotate: 45deg;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
}
/* ========================================================
  お知らせ
=========================================================*/
.news {
  background-color: #fffaef;
}
.newsContents {
  width: 92%;
  max-width: 964px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.news_inner {
  overflow-y: scroll;
  max-height: 120px;
  margin-top: 32px;
  padding-right: 46px;
}
.news_inner::-webkit-scrollbar {
  width: 7px;
}
.news_inner::-webkit-scrollbar-thumb {
  background: #b69f74;
  border-radius: 5px;
}
.news_inner::-webkit-scrollbar-track {
  background: #efe4ca;
}
.news_title {
  display: flex;
  align-items: center;
  font-size: clamp(20px, calc(28 / 1920 * 100vw), 28px);
  font-weight: bold;
  -moz-column-gap: 23px;
  column-gap: 23px;
}
.news_title::after {
  content: "NEWS";
  color: #c3af89;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(14px, calc(20 / 1920 * 100vw), 20px);
  font-weight: normal;
}
.news-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 1em;
  column-gap: 1em;
  padding: 1em 0;
  letter-spacing: calc(50 / 1000 * 1em);
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
}
.news-item + .news-item {
  border-top: 1px solid #dbc9a0;
}

/* ========================================================
  中央コンテンツ
=========================================================*/
.top_left {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(552 / 1920 * 100vw);
  max-width: 552px;
}
.top_right {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(552 / 1920 * 100vw);
  max-width: 552px;
}
.bottom_left {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -45%;
  width: calc(514 / 1920 * 100vw);
  max-width: 320px;
}
@media screen and (min-width: 1440px) {
  .bottom_left {
    translate: 0 -45%;
  }
}
@media screen and (min-width: 1720px) {
  .bottom_left {
    max-width: 514px;
    translate: 0 -50%;
  }
}
/* ========================================================
  レフトナビ + メインコンテンツ
=========================================================*/
.flexArea {
  display: flex;
  justify-content: center;
  width: 92%;
  max-width: 1300px;
  -moz-column-gap: clamp(32px, calc(76 / 1920 * 100vw), 76px);
  column-gap: clamp(32px, calc(76 / 1920 * 100vw), 76px);
  margin: 0 auto;
  position: relative;
  margin-top: clamp(48px, calc(164 / 1920 * 100vw), 164px);
}
/* ========================================================
  メインコンテンツ（レフトナビ）
=========================================================*/
.leftnav {
  width: clamp(160px, calc(200 / 1440 * 100vw), 200px);
  padding-top: 0;
}
.leftnav_head {
  background-color: #bc3e29;
  border-radius: 5px;
  color: #fff;
  padding: 0.8em 0;
  text-align: center;
  position: relative;
  font-size: clamp(12px, calc(18 / 1920 * 100vw), 18px);
  font-weight: bold;
  margin-top: 20px;
  letter-spacing: calc(40 / 1000 * 1em);
  line-height: 1;
}
.leftnav_head a {
  display: block;
}
.leftnav_head:has(a)::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 12px;
}
.leftnav_search_head {
  font-size: clamp(12px, calc(18 / 1920 * 100vw), 18px);
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
}
.leftnav_search .search-icon {
  width: clamp(16px, calc(23 / 1440 * 100vw), 23px);
}
.leftnavi_form {
  width: 100%;
  margin-top: 15px;
  display: flex;
}
.leftnavi_form .submit {
  display: grid;
  place-items: center;
  width: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  height: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.leftnavi_form .search_word {
  width: clamp(140px, calc(160 / 1440 * 100vw), 160px);
}

.leftnav .hotkeyword {
  display: flex;
  font-size: clamp(10px, calc(13 / 1440 * 100vw), 13px);
  line-height: calc(29 / 16);
  letter-spacing: calc(40 / 1000 * 1em);
  word-break: keep-all;
  margin-top: 18px;
}
.leftnav .hotkeyword + .hotkeyword {
  margin-top: 0.3em;
}

.subscription-image {
  display: block;
  margin-top: 29px;
}
.trial-image {
  display: block;
  margin-top: 20px;
}
.leftnav .choice_price_item + .choice_price_item {
  border-top: 1px solid #e2d3b1;
}

.leftnav .choice_price_link {
  display: block;
  padding: 1em 0;
  position: relative;
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  font-weight: bold;
}
.leftnav .choice_price_link::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b07c31;
  border-right: 1px solid #b07c31;
  transform: translate(-50%, -75%) rotate(45deg);
}
.leftnav_category-item {
  width: 100%;
  position: relative;
}
.leftnav_category-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b07c31;
  border-right: 1px solid #b07c31;
  transform: translate(-50%, -75%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
}
.leftnav_category-item + .leftnav_category-item {
  border-top: 1px solid #e2d4b1;
}
.leftnav_category-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  -moz-column-gap: 7px;
  column-gap: 7px;
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  font-weight: bold;
  padding: 2px 0;
}

.leftnav_category-image {
  width: calc(74 / 200 * 100%);
  height: 100%;
  display: grid;
  place-items: center;
}

/* ========================================================
  メインコンテンツ（返礼品人気ランキング）
=========================================================*/
.rankingContents {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: clamp(64px, calc(112 / 1440 * 100vw), 112px);
}
.ranking_title {
  text-align: center;
  font-size: clamp(24px, calc(40 / 1920 * 100vw), 40px);
  font-weight: bold;
  letter-spacing: calc(110 / 1000 * 1em);
}
.ranking_title::after {
  content: "ranking";
  text-transform: uppercase;
  color: #bc3e29;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(16px, calc(24 / 1920 * 100vw), 24px);
  display: block;
  text-align: center;
  margin-top: 16px;
  font-weight: normal;
  letter-spacing: calc(160 / 1000 * 1em);
}
.ranking_list {
  display: flex;
  -moz-column-gap: 18px;
  column-gap: 18px;
  margin-top: 55px;
}
.ranking_item {
  width: 25%;
}
.crown {
  display: block;
  width: clamp(48px, calc(66 / 1920 * 100vw), 66px);
  margin: 0 auto;
}

.ranking_item .card_thumb {
  margin-top: 12px;
}
.ranking_item .card_title {
  font-size: clamp(12px, calc(16 / 1920 * 100vw), 16px);
}
.ranking_item .card_price {
  font-size: clamp(14px, calc(20 / 1920 * 100vw), 20px);
}

/* ========================================================
  メインコンテンツ（おすすめ）
=========================================================*/
.mainContents {
  width: 100%;
  max-width: 1024px;
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: clamp(16px, calc(35 / 1920 * 100vw), 35px);
  column-gap: clamp(16px, calc(35 / 1920 * 100vw), 35px);
  row-gap: clamp(32px, calc(70 / 1920 * 100vw), 70px);
  margin-top: clamp(32px, calc(75 / 1920 * 100vw), 75px);
}
.recommend-item .card_title {
  font-size: clamp(10px, calc(14 / 1920 * 100vw), 14px);
}
.recommend-item .ranking_item .card_price {
  font-size: clamp(12px, calc(18 / 1920 * 100vw), 18px);
}

.middleContents {
  position: relative;
}

.recommendContents .button {
  display: grid;
  place-items: center;
  width: calc(500 / 1920 * 100vw);
  aspect-ratio: 500/70;
  max-width: 500px;
  background-color: #bc3e29;
  margin: 0 auto;
  margin-top: clamp(40px, calc(81 / 1920 * 100vw), 81px);
  font-size: clamp(14px, calc(22 / 1920 * 100vw), 22px);
}

/* ========================================================
  メインコンテンツ（小千谷市自慢のお米）
=========================================================*/
.riceContents {
  display: grid;
  grid-template-columns: calc(468 / 1024 * 100%) calc(495 / 1024 * 100%);
  grid-template-rows: auto 1fr;
  row-gap: 38px;
  -moz-column-gap: clamp(34px, calc(67 / 1920 * 100vw), 67px);
  column-gap: clamp(34px, calc(67 / 1920 * 100vw), 67px);
  place-items: center;
  margin-top: 130px;
}
.riceContents_left {
  position: relative;
  padding-top: clamp(20px, calc(39 / 1920 * 100vw), 39px);
  padding-bottom: clamp(24px, calc(54 / 1920 * 100vw), 54px);
}
.riceContents_left::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: clamp(10px, calc(12 / 1440 * 100vw), 12px);
  background-image: radial-gradient(#e2d4b1 25%, transparent 25%);
  background-size: clamp(10px, calc(12 / 1440 * 100vw), 12px) clamp(10px, calc(12 / 1440 * 100vw), 12px);
  background-repeat: round;
}
.riceContents_left::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: clamp(10px, calc(12 / 1440 * 100vw), 12px);
  background-image: radial-gradient(#e2d4b1 25%, transparent 25%);
  background-size: clamp(10px, calc(12 / 1440 * 100vw), 12px) clamp(10px, calc(12 / 1440 * 100vw), 12px);
  background-repeat: round;
}

.riceContents_title {
  display: flex;
  align-items: flex-end;
  font-size: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  font-weight: bold;
  letter-spacing: calc(50 / 1000 * 1em);
}
.riceContents_title span {
  flex-shrink: 0;
}
.riceContents_title img {
  display: block;
  width: clamp(64px, calc(151 / 1720 * 100vw), 151px);
}
.riceContents_description {
  font-size: clamp(12px, calc(20 / 1440 * 100vw), 20px);
  margin-top: clamp(8px, calc(32 / 1440 * 100vw), 32px);
  line-height: calc(38 / 20);
  letter-spacing: calc(50 / 1000 * 1em);
}

.riceContents .button {
  display: grid;
  place-items: center;
  width: calc(500 / 1920 * 100vw);
  aspect-ratio: 500/70;
  max-width: 500px;
  margin: 0 auto;
  margin-top: clamp(35px, calc(70 / 1920 * 100vw), 70px);
  background-color: #b07c31;
  font-size: clamp(12px, calc(22 / 1920 * 100vw), 22px);
}
.riceContents_left {
  grid-column: 1/2;
  grid-row: 1/2;
}
.riceContents_right {
  grid-column: 2/3;
  grid-row: 1/2;
  position: relative;
}
.riceContents_right .rice-plant {
  z-index: 1;
  right: -80px;
  bottom: -60px;
}
@media screen and (max-width: 1439px) {
  .riceContents_right .rice-plant {
    right: calc(-56 / 495 * 100%);
    bottom: calc(-48 / 495 * 100%);
  }
}
.riceContents_bottom {
  grid-column: 1/3;
  grid-row: 2/3;
}
.rice-category_list {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.rice-category_list + .rice-category_list {
  margin-top: 20px;
}

/* ========================================================
  メインコンテンツ（寄付金額で選ぶ）
=========================================================*/
.choice-price {
  margin-top: 129px;
}
.choice-price_title {
  font-size: clamp(18px, calc(36 / 1920 * 100vw), 36px);
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  background-image: url(../images/common/price_diamond.png);
  background-size: contain;
  background-position: 0 50%;
  background-repeat: no-repeat;
  line-height: 1;
}
.choice-price_title span {
  padding: 0 34px;
  display: inline-block;
}
.choice-price_subtitle {
  text-transform: uppercase;
  color: #bc3e29;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(14px, calc(20 / 1920 * 100vw), 20px);
  display: block;
  margin-top: 0.8em;
  text-align: center;
  font-weight: bold;
  letter-spacing: calc(110 / 1000 * 1em);
}
.mainContents .choice-price_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: clamp(14px, calc(20 / 1920 * 100vw), 20px);
  column-gap: clamp(14px, calc(20 / 1920 * 100vw), 20px);
  row-gap: clamp(12px, calc(24 / 1920 * 100vw), 24px);
  margin-top: 48px;
}

.mainContents .choice-price_item {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 328/80;
  background-size: contain;
  background-repeat: no-repeat;
}
.mainContents .choice-price_link {
  width: 100%;
  text-align: center;
  position: relative;
  font-size: clamp(12px, calc(24 / 1720 * 100vw), 24px);
  color: #fff;
}
.mainContents .choice-price_link::after {
  position: absolute;
  right: clamp(8px, calc(32 / 1920 * 100vw), 32px);
  top: 50%;
  content: "";
  display: inline-block;
  width: clamp(4px, calc(10 / 1720 * 100vw), 10px);
  height: clamp(4px, calc(10 / 1720 * 100vw), 10px);
  border-top: clamp(1px, calc(2 / 1720 * 100vw), 2px) solid #fff;
  border-right: clamp(1px, calc(2 / 1720 * 100vw), 2px) solid #fff;
  transform: translate(-50%, -30%) rotate(45deg);
}
.mainContents .choice-price_item small {
  font-size: clamp(12px, calc(18 / 1720 * 100vw), 18px);
}

.mainContents .choice-price_item:nth-of-type(odd) {
  background-image: url(../images/price/price_bg-opacity.png);
}
.mainContents .choice-price_item:nth-of-type(even) {
  background-image: url(../images/price/price_bg.png);
}

/* ========================================================
  紹介コンテンツ
=========================================================*/
.introduction {
  background-color: #fffbf3;
  margin-top: 54px;
  padding-bottom: clamp(150px, calc(250 / 1280 * 100vw), 250px);
}
.introductionTop {
  position: relative;
  width: 100%;
  height: 775px;
}
.introductionTop_bg {
  position: absolute;
  width: 100%;
  aspect-ratio: 1920/775;
  background-image: url(../images/背景.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  background-image: url(../images/introductionTop_bg.png);
}
.introductionTop_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, calc(36 / 1440 * 100vw), 36px);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-top: 114px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  letter-spacing: calc(50 / 1000 * 1em);
}
.introductionTop_title span {
  color: #bc3e29;
}
.introductionTop_title::before {
  content: "";
  display: block;
  width: 120px;
  height: 41px;
  background-image: url(../images/common/introductionTop_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  translate: 0 8px;
}
.introductionTop_title::after {
  content: "";
  display: block;
  width: 120px;
  height: 41px;
  background-image: url(../images/common/introductionTop_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  translate: 0 8px;
  transform: scale(-1, 1);
}
.introductionTop_subtitle {
  text-transform: uppercase;
  color: #bc3e29;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  display: block;
  margin-top: 0.8em;
  text-align: center;
  letter-spacing: calc(160 / 1000 * 1em);
  font-weight: bold;
}
.movie {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 810/458;
  margin: 0 auto;
  margin-top: 44px;
}
.movie > div {
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 1024px) {
  .movie {
    max-width: 720px;
  }
}
@media screen and (min-width: 1440px) {
  .movie {
    max-width: 810px;
  }
}

.introductionMiddle {
  background-image: url(../images/introductionMiddle_bg.png);
  background-size: cover;
  background-position: center;
}
.introductionMiddleContents {
  display: flex;
  background-color: #fff;
  opacity: 0.92;
  width: calc(1024 / 1440 * 100%);
  max-width: 1024px;
  aspect-ratio: 1024/484;
  margin: 0 auto;
}
.introductionMiddle_left {
  width: calc(614 / 1024 * 100%);
  max-width: 614px;
}
.introductionMiddle_diamond {
  width: 100%;
  margin-top: clamp(15px, calc(30 / 1440 * 100vw), 30px);
}
.introductionMiddle_left_inner {
  width: 92%;
  max-width: 462px;
  margin: 0 auto;
}
.introductionMiddle_left .diamond {
  margin-top: clamp(20px, calc(43 / 1440 * 100vw), 43px);
}
.introductionMiddle_left_text {
  font-size: clamp(12px, calc(18 / 1440 * 100vw), 18px);
  line-height: calc(35 / 18);
  letter-spacing: calc(25 / 1000 * 1em);
  margin-top: clamp(15px, calc(30 / 1440 * 100vw), 30px);
  font-weight: normal;
  text-align: justify;
}
.introductionMiddle_right {
  width: calc(410 / 1024 * 100%);
  max-width: 410px;
}
.introductionContents {
  margin-top: 141px;
}
.introductionContents_item + .introductionContents_item {
  margin-top: 76px;
}
.introductionContents_item {
  display: flex;
  justify-content: space-between;
}
.introductionContents_item:nth-of-type(1) .introductionContents_left {
  width: calc(514 / 1024 * 100%);
}
.introductionContents_item:nth-of-type(1) .introductionContents_right {
  width: calc(452 / 1024 * 100%);
}
.introductionContents_item:nth-of-type(2) {
  flex-direction: row-reverse;
}
.introductionContents_item:nth-of-type(2) .introductionContents_left {
  width: calc(580 / 1024 * 100%);
}
.introductionContents_item:nth-of-type(2) .introductionContents_right {
  width: calc(395 / 1024 * 100%);
  overflow: hidden;
}
.introductionContents_item_image {
  position: relative;
  z-index: 1;
}
.introductionContents_left {
  position: relative;
}
.rice-plant {
  width: calc(253 / 1440 * 100vw);
  max-width: 253px;
  position: absolute;
}
.introductionContents_item:nth-of-type(1) .rice-plant {
  bottom: -60px;
  left: -148px;
}
.introductionContents_item:nth-of-type(2) .rice-plant {
  bottom: -80px;
  right: -80px;
}
@media screen and (max-width: 1439px) {
  .introductionContents_item:nth-of-type(1) .rice-plant {
    bottom: calc(-60 / 514 * 100%);
    left: calc(-100 / 514 * 100%);
  }
  .introductionContents_item:nth-of-type(2) .rice-plant {
    bottom: calc(-88 / 580 * 100%);
    right: calc(-40 / 580 * 100%);
  }
}
@media screen and (min-width: 1440px) {
  .introduction {
    padding-bottom: 150px;
  }
}

.introductionContents_item .diamond {
  margin-top: clamp(12px, calc(24 / 1440 * 100vw), 18px);
}
.introduction_title {
  font-size: clamp(18px, calc(36 / 1440 * 100vw), 36px);
  color: #bc3e29;
  line-height: calc(52 / 36);
  letter-spacing: calc(50 / 1000 * 1em);
  font-weight: bold;
  padding-top: 0.5em;
}
.introduction_text {
  font-size: clamp(12px, calc(18 / 1440 * 100vw), 18px);
  line-height: calc(35 / 18);
  letter-spacing: calc(50 / 1000 * 1em);
  text-align: justify;
  margin-top: clamp(14px, calc(30 / 1440 * 100vw), 30px);
}
/* ========================================================
  紹介コンテンツ（イベント）
=========================================================*/
.eventContents {
  margin-top: 109px;
}
.eventContents_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: clamp(16px, calc(32 / 1440 * 100vw), 32px);
  column-gap: clamp(16px, calc(32 / 1440 * 100vw), 32px);
  row-gap: 74px;
}
.eventCard_title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.4em;
  column-gap: 0.4em;
  font-size: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  font-weight: bold;
  color: #bc3e29;
  margin: 0 auto;
  margin-top: 27px;
  line-height: 1;
  text-align: center;
}
.eventCard_title::before,
.eventCard_title::after {
  content: "";
  width: 1.5em;
  height: 0.5em;
  background-image: url(../images/common/diamond_fill.svg);
  background-repeat: repeat-x;
  background-size: 0.5em;
  background-position: 0 50%;
  text-align: center;
}
.eventCard_title span {
  display: inline-block;
}
.eventCard_text {
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  line-height: calc(29 / 16);
  letter-spacing: calc(50 / 1000 * 1em);
  margin-top: 23px;
  text-align: justify;
}
/* ========================================================
  寄付金の使い道
=========================================================*/
.usecase {
  position: relative;
  width: 100%;
  background-color: #fffbf3;
  padding-top: clamp(100px, calc(200 / 1440 * 100vw), 200px);
}
.usecase_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/背景.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  z-index: 1;
}
.usecase_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, calc(36 / 1440 * 100vw), 36px);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  -moz-column-gap: 32px;
  column-gap: 32px;
  letter-spacing: calc(50 / 1000 * 1em);
}
.usecase_title::before {
  content: "";
  display: block;
  width: calc(120 / 1440 * 100vw);
  max-width: 120px;
  aspect-ratio: 120/41;
  background-image: url(../images/common/use-case_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  translate: 0 8px;
}
.usecase_title::after {
  content: "";
  display: block;
  width: calc(120 / 1440 * 100vw);
  max-width: 120px;
  aspect-ratio: 120/41;
  background-image: url(../images/common/use-case_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  translate: 0 8px;
  transform: scale(-1, 1);
}
.usecase_subtitle {
  text-transform: uppercase;
  color: #007caf;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  display: block;
  margin-top: clamp(10px, calc(21 / 1440 * 100vw), 21px);
  text-align: center;
  letter-spacing: calc(110 / 1000 * 1em);
  font-weight: bold;
}
.usecase_description {
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  text-align: center;
  margin-top: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  line-height: calc(29 / 16);
  letter-spacing: calc(50 / 1000 * 1em);
}
.usecaseContents {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: clamp(20px, calc(64 / 1440 * 100vw), 64px);
  padding-bottom: 48px;
  z-index: 1;
  position: relative;
}
.usecase_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  column-gap: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  row-gap: clamp(24px, calc(48 / 1440 * 100vw), 48px);
  margin-top: clamp(32px, calc(64 / 1440 * 100vw), 64px);
}
.usecaseContents .card_title {
  font-size: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  font-weight: bold;
  color: #007caf;
  text-align: center;
}
.usecaseContents .card_text {
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  color: #333333;
  text-align: center;
  margin-top: clamp(12px, calc(16 / 1440 * 100vw), 16px);
}
/* ========================================================
  インフォメーション
=========================================================*/
.information {
  background-color: #fffbf3;
  padding-top: 90px;
  padding-bottom: 120px;
  font-size: clamp(10px, calc(14 / 1440 * 100vw), 14px);
}
.information_title {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.4em;
  column-gap: 0.4em;
  font-size: clamp(16px, calc(30 / 1440 * 100vw), 30px);
  text-align: center;
  font-weight: bold;
  width: 55%;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1;
  background-image: url(../images/common/information_diamond@2x.png);
  background-size: contain;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
.information_title span {
  display: inline-block;
}
.information_subtitle {
  text-transform: uppercase;
  color: #bc3e29;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  font-weight: bold;
  display: block;
  margin-top: 0.8em;
  text-align: center;
  letter-spacing: calc(110 / 1000 * 1em);
}
.informationContents {
  display: flex;
  -moz-column-gap: clamp(24px, calc(80 / 1440 * 100vw), 80px);
  column-gap: clamp(24px, calc(80 / 1440 * 100vw), 80px);
  margin-top: 66px;
  font-size: clamp(10px, calc(14 / 1440 * 100vw), 14px);
  line-height: 2;
  width: 92%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: calc(50 / 1000 * 1em);
}
.information_column {
  width: 33%;
}
.information_head {
  font-size: clamp(12px, calc(18 / 1440 * 100vw), 18px);
  padding-bottom: clamp(8px, calc(18 / 1440 * 100vw), 16px);
  font-weight: bold;
}

.information_block + .information_block {
  margin-top: clamp(48px, calc(70 / 1440 * 100vw), 70px);
}

.payment p + p {
  margin-top: clamp(12px, calc(24 / 1440 * 100vw), 24px);
}
.payment .button {
  display: grid;
  place-items: center;
  aspect-ratio: 380/55;
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  background-color: #b07c31;
  margin-top: clamp(14px, calc(30 / 1440 * 100vw), 30px);
}
.shipping p + p {
  margin-top: clamp(18px, calc(40 / 1440 * 100vw), 40px);
}
.return-cancel .button {
  display: grid;
  place-items: center;
  aspect-ratio: 380/55;
  font-size: clamp(12px, calc(16 / 1440 * 100vw), 16px);
  background-color: #b07c31;
  margin-top: clamp(14px, calc(30 / 1440 * 100vw), 30px);
}

.contact .button {
  display: grid;
  place-items: center;
  aspect-ratio: 380/55;
  background-color: #bc3e29;
  margin-top: clamp(14px, calc(30 / 1440 * 100vw), 30px);
}
.tel {
  display: flex;
  align-items: center;
  font-size: clamp(14px, calc(22 / 1440 * 100vw), 22px);
  font-weight: bold;
  -moz-column-gap: 9px;
  column-gap: 9px;
}
.tel-icon {
  width: 27px;
}

/* ========================================================
  フッター
=========================================================*/
.pagetop {
  display: block;
  width: clamp(64px, calc(111 / 1720 * 100vw), 111px);
  position: fixed;
  bottom: calc(85 / 1920 * 100%);
  right: calc(50 / 1920 * 100%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s linear, visibility 0.5s linear;
}
.pagetop.show {
  opacity: 1;
  visibility: visible;
}
.footerContents {
  width: 100%;
  padding-top: clamp(16px, calc(27 / 1440 * 100vw), 27px);
  padding-bottom: clamp(32px, calc(52 / 1440 * 100vw), 52px);
}
.footer_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.footer-item + .footer-item {
  border-left: 1px solid #333;
}
.footer-link {
  display: block;
  font-size: clamp(10px, calc(14 / 1920 * 100vw), 14px);
  padding: 0 0.5em 0.2em;
}
.footer_logo {
  display: block;
  width: clamp(240px, calc(390 / 1440 * 100vw), 390px);
  margin: 0 auto;
}
