@charset "UTF-8";
/**
* グリーンギフトページ
*/
#GreenGift .fs-l-main {
  margin-top: 0;
  padding: 0;
}

#GreenGift .fs-l-pageMain {
  max-width: 100%;
}

#green-head {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #456853;
  overflow: hidden;
}
#green-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/greengift/green-head-bg.webp) center/cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
}
#green-head .inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #green-head .inner {
    padding: 28px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  #green-head .green-head_top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }
}
#green-head .green-head_menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 64px;
  padding: 12px 4px 8px;
  background: #211816;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #green-head .green-head_menu-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
#green-head .green-head_menu-btn_icon {
  position: relative;
  width: 24px;
  height: 18px;
  display: block;
  margin-bottom: 6px;
}
#green-head .green-head_menu-btn_icon::before, #green-head .green-head_menu-btn_icon::after,
#green-head .green-head_menu-btn_icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#green-head .green-head_menu-btn_icon::before {
  top: 0;
}
#green-head .green-head_menu-btn_icon span {
  top: 7.5px;
}
#green-head .green-head_menu-btn_icon::after {
  bottom: 0;
}
#green-head .green-head_menu-btn.is-open .green-head_menu-btn_icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7.5px;
}
#green-head .green-head_menu-btn.is-open .green-head_menu-btn_icon span {
  opacity: 0;
}
#green-head .green-head_menu-btn.is-open .green-head_menu-btn_icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7.5px;
}
#green-head .green-head_menu-btn_label {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}
#green-head .green-head_en {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #green-head .green-head_en {
    font-size: 13px;
  }
}
#green-head .green-head_ttl {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 8px 0 24px;
}
@media screen and (max-width: 767px) {
  #green-head .green-head_ttl {
    font-size: 32px;
    margin: 6px 0 16px;
  }
}
#green-head .green-head_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #green-head .green-head_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease, opacity 0.3s ease;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  #green-head.is-menu-open .green-head_nav {
    max-height: 500px;
    opacity: 1;
  }
}
#green-head .green-head_nav-btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 260px;
  max-width: 100%;
  padding: 12px 40px 12px 15px;
  background: #211816;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#green-head .green-head_nav-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 13px;
  background: url(../img/greengift/icon-arrow-right.webp) no-repeat center/contain;
}
#green-head .green-head_nav-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #green-head .green-head_nav-btn {
    width: 100%;
    font-size: 14px;
  }
}

#green-mv {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 60vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 1200px) {
  #green-mv {
    min-height: 640px;
  }
}
#green-mv .__parallaxLayer {
  position: absolute;
  left: 0;
  top: -20vh;
  width: 100%;
  height: calc(100% + 25vh);
  background-image: url(../img/greengift/gg-top.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

#GreenGift .sec-green {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  #GreenGift .sec-green {
    padding: 48px 20px;
  }
}

.sec-green_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin: 0 0 48px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  color: #211816;
  text-align: center;
}
.sec-green_ttl::before, .sec-green_ttl::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background: rgba(69, 104, 83, 0.4);
}
@media screen and (max-width: 767px) {
  .sec-green_ttl {
    font-size: 18px;
    gap: 12px;
    margin-bottom: 32px;
  }
}

#green-reason .reason-lead,
#green-biglist .sec-green_ttl {
  display: block;
  margin: 0 0 48px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.6;
  color: #456853;
  text-align: center;
}
#green-reason .reason-lead::before, #green-reason .reason-lead::after,
#green-biglist .sec-green_ttl::before,
#green-biglist .sec-green_ttl::after {
  display: none;
  content: none;
}
@media screen and (max-width: 767px) {
  #green-reason .reason-lead,
  #green-biglist .sec-green_ttl {
    font-size: 18px;
  }
}

.gg-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 260px;
  max-width: 100%;
  padding: 12px 40px 12px 15px;
  background: #211816;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.gg-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 13px;
  background: url(../img/greengift/icon-arrow-right.webp) no-repeat center/contain;
}
.gg-btn:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #fff;
}
.gg-btn:visited {
  color: #fff;
}

.gg-min-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 120px;
  padding: 6px 30px 6px 16px;
  background: #fff;
  border: 1px solid #211816;
  border-radius: 4px;
  color: #211816;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.gg-min-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 10px;
  background: url(../img/greengift/icon-arrow-right-dark.webp) no-repeat center/contain;
}
.gg-min-btn:hover {
  opacity: 0.7;
}

.gg-min-btn--lg {
  min-width: 200px;
  padding: 8px 34px 8px 20px;
  font-size: 16px;
}
.gg-min-btn--lg::after {
  right: 16px;
}
.gg-min-btn--lg .gg-min-btn_main {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .gg-min-btn--lg {
    width: 260px;
    max-width: 100%;
  }
}

.select-lead_nav .gg-min-btn::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.select-lead_nav .gg-min-btn:hover {
  color: #211816;
  text-decoration: none;
}
.select-lead_nav .gg-min-btn:visited {
  color: #211816;
}

#green-lead {
  position: relative;
  text-align: center;
}
#green-lead .lead-sub {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 19px;
  color: #456853;
}
#green-lead .lead-ttl {
  margin: 8px 0 32px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  color: #456853;
}
#green-lead .lead-body {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.9;
}
#green-lead .lead-body p {
  margin: 0 0 1.6em;
}
#green-lead .lead-body p:last-child {
  margin-bottom: 0;
}
#green-lead .lead-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
#green-lead .lead-deco--left {
  left: -40px;
  bottom: 40px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  #green-lead .lead-deco--left {
    display: none;
  }
}
#green-lead .lead-deco--right {
  right: -40px;
  top: 90px;
  width: 240px;
}
@media screen and (max-width: 767px) {
  #green-lead .lead-deco--right {
    position: static;
    display: block;
    width: 160px;
    margin: 24px auto 0;
  }
}
#green-lead .lead-cta {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #green-lead .lead-ttl {
    font-size: 24px;
  }
  #green-lead .lead-body {
    font-size: 14px;
    text-align: justify;
  }
}

#green-reason .reason-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  #green-reason .reason-list {
    margin-left: 28px;
    margin-right: 28px;
  }
}
#green-reason .reason-item {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 16px);
      -ms-flex: 0 0 calc(50% - 16px);
          flex: 0 0 calc(50% - 16px);
  height: 360px;
  background-color: rgba(69, 104, 83, 0.03);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 959px) {
  #green-reason .reason-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#green-reason .reason-item.reason-item-1 {
  background-image: url(../img/greengift/reason-1.webp);
}
#green-reason .reason-item.reason-item-2 {
  background-image: url(../img/greengift/reason-2.webp);
}
#green-reason .reason-item.reason-item-3 {
  background-image: url(../img/greengift/reason-3.webp);
}
#green-reason .reason-item.reason-item-4 {
  background-image: url(../img/greengift/reason-4.webp);
}
#green-reason .reason-item.reason-item-5 {
  background-image: url(../img/greengift/reason-5.webp);
}
#green-reason .reason-item.reason-item-6 {
  background-image: url(../img/greengift/reason-6.webp);
}
#green-reason .reason-item_panel {
  position: absolute;
  left: 24px;
  top: 24px;
  width: calc(100% - 96px);
  max-width: 300px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}
#green-reason .reason-item_en {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(69, 104, 83, 0.7);
}
#green-reason .reason-item_ttl {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: #211816;
}
#green-reason .reason-item_txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

#green-biglist.sec-green {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: rgba(69, 104, 83, 0.1);
}
#green-biglist.sec-green .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#green-biglist.sec-green .biglist-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
}
@media screen and (min-width: 960px) {
  #green-biglist.sec-green .biglist-list {
    padding: 0 96px;
  }
}
@media screen and (max-width: 959px) {
  #green-biglist.sec-green .biglist-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 32px;
  }
}
@media screen and (max-width: 767px) {
  #green-biglist.sec-green .biglist-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
#green-biglist.sec-green .biglist-item {
  max-width: 276px;
  width: 100%;
  margin: 0 auto;
}
#green-biglist.sec-green .biglist-item_link {
  display: block;
  color: inherit;
  text-decoration: none;
}
#green-biglist.sec-green .biglist-item_link:hover {
  opacity: 0.8;
}
#green-biglist.sec-green .biglist-item_img {
  position: relative;
  margin: 0 0 12px;
  background: #f5f5f5;
  overflow: hidden;
  aspect-ratio: 276/560;
  border-radius: 50% 50% 0 0/24.643% 24.643% 0 0;
}
#green-biglist.sec-green .biglist-item_img .thumb {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
#green-biglist.sec-green .biglist-item_img .is-main {
  position: relative;
  opacity: 1;
}
#green-biglist.sec-green .biglist-item_img .is-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#green-biglist.sec-green .biglist-item_img:hover .is-main {
  opacity: 0;
}
#green-biglist.sec-green .biglist-item_img:hover .is-hover {
  opacity: 1;
}
#green-biglist.sec-green .biglist-item_img:hover .thumb {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
#green-biglist.sec-green .biglist-item_name {
  margin: 0 0 4px;
  font-size: 22px;
}
#green-biglist.sec-green .biglist-item_size {
  margin: 0 0 8px;
  font-size: 16px;
  color: #456853;
}
#green-biglist.sec-green .biglist-item_price {
  margin: 0 0 12px;
  font-size: 14px;
}
#green-biglist.sec-green .biglist-item_price span {
  font-size: 16px;
  color: #456853;
}
#green-biglist.sec-green .biglist-item_price span.is-tbd {
  color: #d55656;
}
#green-biglist.sec-green .biglist-item_desc {
  margin: 0 0 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.7;
}
#green-biglist.sec-green .biglist-item_more {
  margin: 0;
}
#green-biglist.sec-green .biglist-cta {
  text-align: center;
}

#green-faq .accordion-qa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-left: 100px;
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  #green-faq .accordion-qa {
    margin-left: 0;
    margin-right: 0;
  }
}
#green-faq .accordion-qa_item {
  border: 1px solid #456853;
  border-radius: 8px;
  padding: 16px 32px 24px;
}
#green-faq .accordion-qa_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  min-height: 35px;
  cursor: pointer;
  list-style: none;
}
#green-faq .accordion-qa_title::-webkit-details-marker {
  display: none;
}
#green-faq .accordion-qa_title::before {
  content: "Q";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  color: #456853;
}
#green-faq .accordion-qa_label {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
}
#green-faq .accordion-qa_icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#green-faq .accordion-qa_icon-img {
  display: block;
  width: 6px;
  height: 18px;
  background: url(../img/greengift/icon-faq-arrow.webp) no-repeat center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
#green-faq .accordion-qa_item.is-opened .accordion-qa_icon-img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#green-faq .accordion-qa_body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
#green-faq .accordion-qa_item.is-opened .accordion-qa_body {
  margin-top: 16px;
}
#green-faq .accordion-qa_body .inner {
  position: relative;
  margin: 0;
  padding: 16px 24px 16px 64px;
  background: rgba(69, 104, 83, 0.1);
  font-size: 14px;
  line-height: 1.75;
}
#green-faq .accordion-qa_body .inner::before {
  content: "A";
  position: absolute;
  left: 24px;
  top: 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  line-height: 1;
  color: #456853;
}
@media screen and (max-width: 767px) {
  #green-faq .accordion-qa_item {
    padding: 12px 16px 16px;
  }
  #green-faq .accordion-qa_label {
    font-size: 14px;
  }
  #green-faq .accordion-qa_body .inner {
    padding: 12px 16px 12px 48px;
  }
  #green-faq .accordion-qa_body .inner::before {
    left: 16px;
    top: 12px;
    font-size: 24px;
  }
}

#green-delivery {
  text-align: center;
}
#green-delivery .delivery-photo img {
  display: block;
  width: 800px;
  height: auto;
  margin: 0 auto 40px;
  max-width: 80vw;
}
#green-delivery .delivery-lead {
  margin: 0 0 40px;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  #green-delivery .delivery-lead {
    font-size: 16px;
  }
}
#green-delivery .delivery-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 32px;
  background: rgba(69, 104, 83, 0.1);
  border-radius: 32px;
  text-align: left;
}
@media screen and (max-width: 959px) {
  #green-delivery .delivery-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#green-delivery .delivery-area_map {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 376px;
      -ms-flex: 0 0 376px;
          flex: 0 0 376px;
}
@media screen and (max-width: 959px) {
  #green-delivery .delivery-area_map {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 376px;
    margin: 0 auto;
  }
}
#green-delivery .delivery-area_map img {
  display: block;
  width: 100%;
  height: auto;
}
#green-delivery .delivery-area_note {
  margin: 10px 0 0;
  font-size: 14px;
}
#green-delivery .delivery-area_list {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
#green-delivery .delivery-area_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(69, 104, 83, 0.3);
}
#green-delivery .delivery-area_list li:last-child {
  border-bottom: none;
}
#green-delivery .delivery-area_list .pref {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
#green-delivery .delivery-area_list .detail {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
#green-delivery .delivery-area_list .city {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
}
#green-delivery .delivery-area_list .other {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #green-delivery .delivery-area_list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
  #green-delivery .delivery-area_list .pref {
    text-align: left;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40px;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
}

#green-product-all {
  margin: 0 8px;
  padding: 24px 20px;
  background: #456853;
  text-align: center;
}
#green-product-all .c-heading {
  margin: 0;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 22px;
}
#green-product-all .c-heading span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  #green-product-all {
    padding: 20px 16px;
  }
  #green-product-all .c-heading {
    font-size: 18px;
  }
}

#GreenGift .fs-c-productList {
  margin-top: 0;
  margin-left: 8px;
  margin-right: 8px;
  padding: 24px 20px;
  overflow: hidden;
  background: rgba(69, 104, 83, 0.1);
}

.gg-btn-return {
  text-align: center;
  margin-top: 3em;
}
.gg-btn-return a:hover {
  opacity: 0.8;
}
.gg-btn-return img {
  width: 480px;
  max-width: 80vw;
}

.sec-select_ttl {
  margin: 0 0 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  color: #456853;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-select_ttl {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

#select-lead {
  text-align: center;
}
#select-lead .select-lead_body {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 2.25;
}
#select-lead .select-lead_body p {
  margin: 0 0 1.6em;
}
#select-lead .select-lead_body p:last-child {
  margin-bottom: 0;
}
#select-lead .select-lead_body strong {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #select-lead .select-lead_body {
    font-size: 14px;
    line-height: 1.9;
    text-align: justify;
  }
  #select-lead .select-lead_body strong {
    font-size: 18px;
  }
}
#select-lead .select-lead_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #select-lead .select-lead_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.select-intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin: 0 0 56px;
}
.select-intro_txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 400px;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.95;
  text-align: justify;
}
.select-intro_txt p {
  margin: 0 0 1.2em;
}
.select-intro_txt p:last-child {
  margin-bottom: 0;
}
.select-intro_img {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 480px;
      -ms-flex: 1 1 480px;
          flex: 1 1 480px;
  max-width: 480px;
}
.select-intro_img img {
  display: block;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .select-intro {
    gap: 20px;
    margin-bottom: 32px;
  }
  .select-intro_txt {
    font-size: 14px;
  }
  .select-intro_img img {
    height: 220px;
  }
}

.select-table {
  margin: 0 0 48px;
  font-size: 14px;
}
.select-table_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 10px;
  border-bottom: 1px solid rgba(69, 104, 83, 0.2);
}
.select-table_row:last-child {
  border-bottom: none;
}
.select-table_row--head {
  background: #f2f2f2;
  border-bottom: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
}
.select-table--white .select-table_row:not(.select-table_row--head) {
  background: #fff;
}
.select-table .col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 160px;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}
.select-table .col-1 span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}
.select-table .col-2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  text-align: justify;
}
.select-table .col-3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.select-table .select-table_point-ttl {
  display: none;
}
.select-table .col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 180px;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.select-table .col-4 a {
  color: #211816;
  text-decoration: underline;
}
.select-table .col-4 a:hover {
  opacity: 0.7;
}
.select-table_row--head .col-1 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .select-table_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    border-bottom: none;
  }
  .select-table_row--head {
    display: none;
  }
  .select-table .col-1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 6px;
    margin-bottom: 1em;
    padding: 8px 12px;
    background: #456853;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
  }
  .select-table .col-1 span {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.85);
  }
  .select-table .col-1, .select-table .col-2, .select-table .col-3, .select-table .col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: none;
  }
  .select-table .col-2,
  .select-table .col-3 {
    margin-bottom: 1em;
    padding-left: 12px;
    padding-right: 12px;
  }
  .select-table .col-4 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .select-table .select-table_point-ttl {
    display: block;
    margin: 0 0 0.5em;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 18px;
    color: #456853;
  }
  .select-table .col-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2em;
  }
  .select-table .col-4 a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 40px;
    padding: 6px 18px;
    background: #fff;
    border: 1px solid #456853;
    border-radius: 999px;
    color: #456853;
    font-weight: 700;
    text-decoration: none;
  }
}

#select-location.sec-green--tint {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  background: rgba(69, 104, 83, 0.1);
}
#select-location.sec-green--tint > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select-size {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin: 0 0 48px;
}
.select-size_main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 400px;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
  max-width: 400px;
}
.select-size_txt {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.95;
  text-align: justify;
}
.select-size_txt p {
  margin: 0 0 1.2em;
}
.select-size_txt p:last-child {
  margin-bottom: 0;
}
.select-size_note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.7;
}
.select-size_img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 360px;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  max-width: 360px;
}
.select-size_img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .select-size {
    gap: 24px;
  }
  .select-size_txt {
    font-size: 14px;
  }
  .select-size_img {
    -webkit-flex-basis: 240px;
        -ms-flex-preferred-size: 240px;
            flex-basis: 240px;
    max-width: 240px;
    margin: 0 auto;
  }
  .select-size_img img {
    aspect-ratio: 1/1;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 80%;
       object-position: center 80%;
  }
}

.select-size_table {
  font-size: 14px;
}
.select-size_table .select-size_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(69, 104, 83, 0.2);
}
.select-size_table .select-size_row--head {
  background: #f2f2f2;
  border-bottom: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.select-size_table .select-size_row--accent {
  background: rgba(69, 104, 83, 0.08);
}
.select-size_table .select-size_row--accent .col-1 {
  color: #456853;
}
.select-size_table .select-size_row--accent .col-1 span {
  color: #456853;
}
.select-size_table .select-size_row:last-child {
  border-bottom: none;
}
.select-size_table .col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 120px;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}
.select-size_table .col-1 span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}
.select-size_table .col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 120px;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.select-size_table .col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 136px;
      -ms-flex: 0 0 136px;
          flex: 0 0 136px;
}
@media screen and (max-width: 767px) {
  .select-size_table .select-size_row {
    gap: 6px;
  }
  .select-size_table .col-1 {
    -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
            flex-basis: 100px;
  }
  .select-size_table .col-2 {
    -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
            flex-basis: 100px;
  }
  .select-size_table .col-3 {
    -webkit-flex-basis: 110px;
        -ms-flex-preferred-size: 110px;
            flex-basis: 110px;
  }
}

.select-cta {
  text-align: center;
  margin: 0;
}/*# sourceMappingURL=ec-greengift.css.map */