@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css)ver.1 2025.10.14
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*ワインレッド*/
/*濃いピンク*/
/*濃い紫*/
/*中間の紫*/
/*薄いベージュ*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading img {
  margin: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-box {
  margin: auto;
  width: 200px;
  text-align: center;
}

.flashing {
  margin: 0 0 10px;
}
.flashing img {
  width: 120px;
  heifht: auto;
}

.animation-box {
  width: 400px;
  height: 4px;
  background: #FF0199;
  -webkit-animation-name: loadbar-animation;
          animation-name: loadbar-animation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

@keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link, a:visited {
  color: #822C3E;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #5E55D4;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ ベジェ設定 ヘッダー ■■■■■■■*/
.section-transition {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  position: absolute;
  bottom: -1px;
}

.section-transition svg {
  display: block;
  width: 100%;
  height: 100%;
}

/*■■■■■■ ベクター調整 ■■■■■■■*/
.background-decoration {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.background-decoration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.radius-top {
  position: relative;
  z-index: 0;
}
.radius-top svg {
  position: absolute;
  top: 0;
}

.radius-bottom {
  position: relative;
  z-index: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.radius-bottom svg {
  position: absolute;
  bottom: 1px;
}

/*■■■■■■■ MAIN IMG ■■■■■■*/
.bg-pink {
  background-color: #F8B4DC;
}

.bg-pink-gra {
  background-color: #F8B4DC;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B4DC), to(#FFF));
  background: linear-gradient(to bottom, #F8B4DC, #FFF); /* グラデーション背景 */
}

/*■■■■■■■ 汎用設定 ■■■■■■*/
.contents-block {
  margin: 80px 0;
  padding: 0;
}

.contents-in-block {
  margin: 0;
  padding: 80px 0;
}

.bg-ami {
  background-color: #FAF4EF;
}

/*■■■■■■ MAIN ビジュアル ■■■■■■■*/
/* ---------------------------
   ヒーロー全体（FV）
--------------------------- */
header.fv {
  position: relative;
  height: calc(100vh + 100px); /* 全体の高さ */
}

/* ---------------------------
   背景3分割ヒーロー画像
--------------------------- */
.hero-img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; /* 全体の高さをカバー（下80px分も背景で埋める） */
}

.hero-img-block .visual {
  background-size: cover;
  background-position: center;
  position: relative;
}

.visual_1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  background-image: url(../images/hero1.jpg);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.visual_2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  background-image: url(../images/hero2.jpg);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.visual_3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-image: url(../images/hero3.jpg);
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* ---------------------------
リード文
--------------------------- */
.main-read-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-family: "Noto-Serif", Serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
  padding: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#822C3E), to(#610619));
  background: linear-gradient(to top, #822C3E, #610619);
  border: 1px solid #FFF000;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  position: relative;
  -webkit-box-shadow: 1px 1px 3px #333;
          box-shadow: 1px 1px 3px #333;
  position: absolute;
  bottom: 320px;
  left: 3vw;
}
.main-read-box img {
  position: absolute;
  top: -30px;
  left: 20px;
}

/* ---------------------------
   S字背景＋キャッチコピー
--------------------------- */
.main-copy-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px; /* 固定高で上に少しかぶせる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* 背景全体を1枚画像で */
.main-copy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../images/random-bg.jpg);
  background-size: cover;
  background-position: center;
  /* 左高のS字をマスクで作る */
  mask-image: url("../images/s-curve-lefthigh.svg");
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  mask-position: top center;
  /* Safari対応 */
  -webkit-mask-image: url("../images/s-curve-lefthigh.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  -webkit-mask-position: top center;
}

.main-copy-block {
  margin: 0 3vw 60px;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 94vw;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.catch-copy {
  max-width: 780px;
}

.main-copy-block a.cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#FFC400), to(#E6A100));
  background: linear-gradient(to right, #FFC400, #E6A100);
  -webkit-box-shadow: 1px 1px 3px #CCC;
          box-shadow: 1px 1px 3px #CCC;
  font-size: 2.2rem;
  color: #610619;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 60px;
  border: 1px solid #FFF;
  position: relative;
  z-index: 100;
}
.main-copy-block a.cta-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#E6A100), to(#FFC400));
  background: linear-gradient(to right, #E6A100, #FFC400);
  -webkit-box-shadow: 1px 1px 6px #999;
          box-shadow: 1px 1px 6px #999;
}

/* ---------------------------
   スクロール後の見え方調整
--------------------------- */
body {
  margin: 0;
}

/*■■■■■■ 共通 ■■■■■■■*/
/*グレープ装飾タイトル*/
.text-title {
  margin: 0 0 160px;
  padding: 0;
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP";
  font-weight: 400;
  z-index: 2;
}

.text-title span {
  padding: 0 0 0 86px;
  position: relative;
  z-index: 1;
}

.text-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -86px; /* テキストの下に配置 */
  width: 100%;
  min-width: 378px;
  height: 75px; /* 高さ指定 */
  background: url(../images/ti-deco-bottom.png) center center no-repeat;
  z-index: -1;
}

.text-title span.deco-pink {
  color: #FFF;
}
.text-title span.deco-pink::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -86px; /* テキストの下に配置 */
  width: 100%;
  min-width: 378px;
  height: 75px; /* 高さ指定 */
  background: url(../images/ti-deco-bottom_pink.png) center center no-repeat;
  z-index: -1;
}

.text-title span.deco-green {
  color: #F2DBA5;
}
.text-title span.deco-green::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -86px; /* テキストの下に配置 */
  width: 100%;
  min-width: 378px;
  height: 75px; /* 高さ指定 */
  background: url(../images/ti-deco-bottom_green.png) center center no-repeat;
  z-index: -1;
}

.dot-grape::before {
  content: "";
  display: block;
  width: 67px;
  height: 67px;
  background: url(../images/dot-grape.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -8px;
}

.dot-muscat::before {
  content: "";
  display: block;
  width: 71px;
  height: 69px;
  background: url(../images/dot-muscat.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -8px;
}

.text-sub-title {
  font-size: 2rem;
  font-weight: 400;
}
.text-sub-title strong {
  font-size: 2.6rem;
  font-weight: 700;
}

.text-read {
  font-size: 1.8rem;
  line-height: 1.4;
}

/*■■■■■■ #01 なぜ選ばれるのか？ ■■■■■■■*/
.why-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  jystify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 30px;
}

.why-box {
  margin: auto;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 10px;
}

.bg-randum-color {
  background: url(../images/bg-randum-color.jpg) top center no-repeat;
  background-size: cover;
}

.cercle-img-box {
  margin: 0 auto;
  width: 280px;
  height: 280px;
  border-radius: 50%; /* 丸くする */
  overflow: hidden; /* はみ出した部分を隠す */
  display: inline-block; /* 必要に応じて block / inline-block */
  background: #eee; /* 画像読み込み前のプレースホルダ色 */
  vertical-align: middle;
}

/* 画像をコンテナに合わせて切り抜く */
.cercle-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.why-en-title {
  font-family: "Noto Serif JP";
  font-weight: 400;
  color: #822C3E;
  font-size: 3.6rem;
}

.why-jp-title {
  font-family: "Noto Serif JP";
  font-weight: 500;
  color: #822C3E;
  font-size: 2rem;
}

.why-text {
  margin: 10px 0 0;
  font-weight: 400;
  color: #3A3A3A;
  font-size: 1.6rem;
  line-height: 1.4;
}

/*■■■■■■ #02 簡単ステップ ■■■■■■■*/
.step-block {
  margin-bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aling-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 40px;
}

.step-block:after {
  content: "";
  display: block;
  width: 100%;
  height: 108px;
  background: url(../images/decolation-reaf.png) left center repeat-x;
  background-size: 50% auto;
  position: absolute;
  bottom: 30px;
}

.step-box {
  width: 320px;
  background-color: #FFF;
  padding: 20px 30px 40px;
  border-radius: 16px;
  -webkit-box-shadow: 1px 1px 3px #CCC;
          box-shadow: 1px 1px 3px #CCC;
}

.step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}

.step-no {
  display: flex-box;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  color: #FFF;
  font-size: 3rem;
  font-weight: 600;
  background-color: #822C3E;
  font-family: "Arial", Sans-Serif;
}

.step-title {
  font-size: 2rem;
  font-weight: 500;
  color: #822C3E;
  position: relative;
}

.step-read {
  margin: 10px 0 0;
  text-align: left;
}

.next-arrow {
  margin: auto 0 auto auto;
  display: inline-block;
  width: 21px;
  height: 25px;
  background: url(../images/next-arrow.png) center center no-repeat;
  background-size: cover;
}

/*■■■■■■ #03 なぜジョージアワイン？ ■■■■■■■*/
.about-wine-block {
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.about-wine-box {
  width: 320px;
}

.about-wine-img {
  width: 600px;
}

.about-wine-dl dt {
  padding: 0 0 0 40px;
  margin: 30px 0 0 0;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  color: #822C3E;
  font-family: "Noto Serif JP";
  position: relative;
  display: block;
}
.about-wine-dl dt:before {
  content: "";
  display: block;
  width: 25px;
  height: 55px;
  background: url(../images/dot-wine-glass-in.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.about-wine-dl dd {
  padding: 0 0 0 40px;
  margin: 5px 0 20px 0;
  font-size: 1.6rem;
  line-height: 1.4;
}

.text-appeal {
  margin: 40px 0 0;
  padding: 9px 0 12px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #822C3E;
  border-top: 3px dotted #822C3E;
  border-bottom: 3px dotted #822C3E;
}

.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/*■■■■■■ #04 ラインナップ ■■■■■■■*/
.section-wine-lineup {
  background-color: #FAF4EF;
}

.product-block {
  padding: 0 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.product-detail {
  width: 420px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.prod-taste {
  font-size: 4rem;
  font-family: "Noto Serif JP";
}

.text-taist-white {
  color: #E6B84E;
}

.text-taist-amber {
  color: #F28C8C;
}

.text-taist-red {
  color: #B4808B;
}

.prod-name {
  font-size: 3.2rem;
  line-height: 1.4;
  font-family: "Noto Serif JP";
}
.prod-name small {
  font-size: 2rem;
  display: block;
}

.prod-text {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "Noto Serif JP";
}

.prod-price {
  padding: 5px 0;
  border-top: 2px solid #822C3E;
  border-bottom: 2px solid #822C3E;
  width: 100%;
  font-size: 2.4rem;
  font-family: "Noto Serif JP";
}
.prod-price strong {
  margin: 0 15px;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  color: #822C3E;
  font-family: "Noto Sans JP";
  vertical-align: baseline;
}

ul.taist-dishes {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.2;
}
ul.taist-dishes li {
  position: relative;
  padding: 5px 0 5px 30px;
}

.dot-taist:before {
  content: "";
  display: block;
  width: 17px;
  height: 20px;
  background: url(../images/dot-taist2.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 4px;
}

.dot-dishes:before {
  content: "";
  display: block;
  width: 14px;
  height: 22px;
  background: url(../images/dot-dishes.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 4px;
}

a.buy-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 240px;
  height: 70px;
  border-radius: 35px;
  background-color: #822C3E;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  -webkit-box-shadow: 1px 1px 3px #CCC;
          box-shadow: 1px 1px 3px #CCC;
  cursor: pointer;
}
a.buy-button:hover {
  color: #E6B84E;
  -webkit-box-shadow: 2px 2px 5px #999;
          box-shadow: 2px 2px 5px #999;
}

.bg-water-color_a {
  background: url(../images/bg-rundum_yellow.jpg) center center no-repeat;
  background-size: cover;
}

.bg-water-color_b {
  padding: 80px 0 0;
  background: url(../images/bg-rundum_pink.jpg) center center no-repeat;
  background-size: cover;
}

.bg-water-color_c {
  padding: 80px 0 0;
  background: url(../images/bg-rundum_blue.jpg) center center no-repeat;
  background-size: cover;
}

.bg-water-color_d {
  padding: 80px 0 0;
  background: url(../images/bg-rundum_green.jpg) center center no-repeat;
  background-size: cover;
}

.prod-ditail-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.prod-ditail-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.prod-img-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.prod-img-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*■■■■■■ #05 ラインナップ（サブ） ■■■■■■■*/
.bg-wine-list {
  background-color: #402b40;
}

.prod-sub-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}

.prod-sub-box {
  width: 100%;
  max-width: 520px;
  background-color: #FFF;
  padding: 10px;
  border-radius: 6px;
}

.prod-sub-img-box {
  background: url(../images/img-prod/bg-prod-sub2.jpg) center center no-repeat;
  background-size: cover;
}

.prod-detail {
  margin: 20px 0;
  padding: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.prod-sub-taiste {
  font-size: 3rem;
  font-family: "Noto Serif JP";
}

.prod-sub-name {
  font-size: 2.4rem;
  line-height: 1.4;
  font-family: "Noto Serif JP";
}
.prod-sub-name small {
  font-size: 1.8rem;
  display: block;
}

.bg-rundum-purple {
  background: url(../images/bg-rundum_purple.jpg) center center no-repeat;
  background-size: cover;
}

/*■■■■■■ #06 オリジナルエチケット ■■■■■■■*/
.etiquette-card {
  margin: 0 auto 80px;
  padding: 30px;
  background-color: #FFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 26px;
}

.etiquette-title {
  padding: 5px 10px;
  font-size: 1.8rem;
  color: #822C3E;
  font-weight: 500;
  border-top: 2px solid #822C3E;
  border-bottom: 2px solid #822C3E;
  text-align: center;
}

.etiquette-read {
  font-size: 1.6rem;
  text-align: center;
}

.etiquet-tyeck li {
  font-size: 1.7rem;
  font-weight: 500;
  position: relative;
  text-align: left;
  padding: 2px 0 2px 30px;
}
.etiquet-tyeck li:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url(../images/dot-check.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 7px;
  left: 0;
}

.etiquette-attent {
  font-size: 1.4rem;
}

/*■■■■■■ #07 エントリーゾーン ■■■■■■■*/
.entry-title-block {
  margin: 0 0 20px;
}

.entry-title-block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}

.apeal-line {
  display: block;
  width: 100px;
  height: 2px;
  background-color: #822C3E;
}

.left {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.right {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.entry-title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Noto Serif JP";
}

.entry-read {
  font-size: 1.8rem;
  color: #822C3E;
  font-weight: 500;
}

.entry-btn {
  margin: 40px auto 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 360px;
  height: 84px;
  border-radius: 42px;
  gap: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#FFC400), to(#E6A100));
  background: linear-gradient(to right, #FFC400, #E6A100);
  -webkit-box-shadow: 1px 1px 3px #CCC;
          box-shadow: 1px 1px 3px #CCC;
  font-size: 2.6rem;
  color: #610619;
  font-weight: 500;
  border: 1px solid #FFF;
}
.entry-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#E6A100), to(#FFC400));
  background: linear-gradient(to right, #E6A100, #FFC400);
  -webkit-box-shadow: 1px 1px 6px #999;
          box-shadow: 1px 1px 6px #999;
  color: #822C3E;
}

.text-entry-time {
  color: #822C3E;
  font-weight: 500;
}

.bg-decolation-reaf {
  background: url(../images/bg-leaf_left.png) left 3vw bottom no-repeat, url(../images/bg-leaf_right.png) right 3vw bottom no-repeat;
}

/*■■■■■■ #08 about Dot.10 ■■■■■■■*/
.bg-about {
  background: -webkit-gradient(linear, left top, left bottom, from(#7BA05B), to(#3E502E));
  background: linear-gradient(to bottom, #7BA05B, #3E502E);
}

.text-about {
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: "Noto Serif JP";
  color: #FFF;
}

.text-sign {
  margin: 40px auto;
  color: #FFF;
  font-weight: 500;
}

/*■■■■■■ メールフォーム ■■■■■■■*/
.mfp_rows {
  clear: both;
}

.mfp_rows:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.mfp_rows input[type=text],
.mfp_rows input[type=email],
.mfp_rows input[type=tel],
.mfp_rows input[type=number],
.mfp_rows input[type=date],
.mfp_rows input[type=file],
.mfp_rows select,
.mfp_rows button,
form#mailformpro .mfp_rows label {
  width: 100%;
  min-width: 100%;
  word-break: break-all;
  white-space: normal;
}

.mfp_rows textarea {
  width: 100%;
  min-width: 100%;
}

.mfp_rows .mfp_col1, .mfp_rows .mfp_col2, .mfp_rows .mfp_col3, .mfp_rows .mfp_col4, .mfp_rows .mfp_col5, .mfp_rows .mfp_col6, .mfp_rows .mfp_col7, .mfp_rows .mfp_col8, .mfp_rows .mfp_col9, .mfp_rows .mfp_col10, .mfp_rows .mfp_col25 {
  float: left;
  padding: 0 1.5%;
}

.mfp_rows .mfp_col1 {
  width: 10%;
}

.mfp_rows .mfp_col2 {
  width: 20%;
}

.mfp_rows .mfp_col3 {
  width: 30%;
}

.mfp_rows .mfp_col4 {
  width: 40%;
}

.mfp_rows .mfp_col5 {
  width: 50%;
}

.mfp_rows .mfp_col6 {
  width: 60%;
}

.mfp_rows .mfp_col7 {
  width: 70%;
}

.mfp_rows .mfp_col8 {
  width: 80%;
}

.mfp_rows .mfp_col9 {
  width: 90%;
}

.mfp_rows .mfp_col10 {
  width: 100%;
}

.mfp_rows .mfp_col25 {
  width: 25%;
}

/*■■■■■■ プライバシーポリシー ■■■■■■■*/
.pp-box {
  margin: 20px 0;
}
.pp-box dt {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  border-bottom: 6px solid #822C3E;
  display: inline-block;
}
.pp-box dd {
  padding: 0 0 15px;
  margin: 0 0 15px 0;
  border-bottom: 1px dotted #333;
}
.pp-box dd ul {
  margin: 10px 0 0 2rem;
  list-style-type: disc;
}

.btn-normal {
  margin: 10px auto;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5rem;
  background-color: #CCC;
  font-weight: 600;
}

.btn-normal:hover {
  background-color: #822C3E;
}

/*■■■■■■■ CONTACT/Thanks ページ  ■■■■■■*/
.header-img-block_s {
  width: 100%;
  height: 320px;
  margin: 0;
  padding: 0;
}

.bg-contact-img {
  background: url(../images/main-img.png) center center no-repeat;
  background-size: cover;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ MAIN ビジュアル （XS）■■■■■■■*/
  /* ---------------------------
     ヒーロー全体（FV）
  --------------------------- */
  header.fv {
    position: relative;
    height: calc(100vh + 60px); /* 全体の高さ */
  }
  /* ---------------------------
     背景3分割ヒーロー画像
  --------------------------- */
  .hero-img-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%; /* 全体の高さをカバー（下80px分も背景で埋める） */
  }
  .hero-img-block .visual {
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .visual_1 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    background-image: url(../images/hero1.jpg);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 65%;
  }
  .visual_2 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    background-image: url(../images/hero2.jpg);
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: 65%;
  }
  .visual_3 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background-image: url(../images/hero3_sp.jpg);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 35%;
  }
  /* ---------------------------
  リード文
  --------------------------- */
  .main-read-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #FFF;
    font-family: "Noto-Serif", Serif;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: center;
    padding: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(#822C3E), to(#610619));
    background: linear-gradient(to top, #822C3E, #610619);
    border: 1px solid #FFF000;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px #333;
            box-shadow: 1px 1px 3px #333;
    position: absolute;
    bottom: -100px;
    left: 4vw;
    z-index: 1;
  }
  .main-read-box img {
    position: absolute;
    top: -40px;
    left: 15px;
  }
  /* ---------------------------
     S字背景＋キャッチコピー
  --------------------------- */
  .main-copy-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 320px; /* 固定高で上に少しかぶせる */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* 背景全体を1枚画像で */
  .main-copy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(../images/random-bg.jpg);
    background-size: cover;
    background-position: center;
    /* 左高のS字をマスクで作る */
    mask-image: url(../images/s-curve-lefthigh_sp.svg);
    mask-repeat: no-repeat;
    mask-size: 100% auto;
    mask-position: top center;
    /* Safari対応 */
    -webkit-mask-image: url(../images/s-curve-lefthigh_sp.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% auto;
    -webkit-mask-position: top center;
  }
  .main-copy-block {
    margin: 60px 3vw 60px;
    position: relative;
    z-index: 1;
    text-align: center;
    width: auto;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
  .main-copy-block a.cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: -webkit-gradient(linear, left top, right top, from(#FFC400), to(#E6A100));
    background: linear-gradient(to right, #FFC400, #E6A100);
    -webkit-box-shadow: 1px 1px 3px #CCC;
            box-shadow: 1px 1px 3px #CCC;
    font-size: 2rem;
    color: #610619;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 60px;
    border: 1px solid #FFF;
    position: relative;
    z-index: 100;
  }
  .main-copy-block a.cta-btn img {
    height: 40px;
    width: auto;
  }
  .main-copy-block a.cta-btn:hover {
    background: -webkit-gradient(linear, left top, right top, from(#E6A100), to(#FFC400));
    background: linear-gradient(to right, #E6A100, #FFC400);
    -webkit-box-shadow: 1px 1px 6px #999;
            box-shadow: 1px 1px 6px #999;
  }
  /*■■■■■■ ベジェ設定 ヘッダー（XS） ■■■■■■■*/
  .section-transition {
    height: 40px;
    overflow: hidden;
    line-height: 0;
  }
  .section-transition svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  /*■■■■■■ ベクター調整(XS) ■■■■■■■*/
  .background-decoration {
    width: 100%;
    height: 52px;
    overflow: hidden;
    position: relative;
  }
  .background-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .radius-top {
    position: relative;
    top: -1px;
    z-index: 0;
  }
  .radius-top svg {
    position: absolute;
    top: 1px;
  }
  .radius-bottom {
    position: relative;
    z-index: 0;
    bottom: -1px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .radius-bottom svg {
    position: absolute;
    bottom: 1px;
  }
  /*■■■■■■■ 汎用設定 (XS) ■■■■■■*/
  .contents-block {
    margin: 60px 0;
    padding: 0;
  }
  .contents-in-block {
    margin: 0;
    padding: 60px 0;
  }
  /*■■■■■■ 共通 （XS）■■■■■■■*/
  /*グレープ装飾タイトル*/
  .text-title {
    margin: 0 0 120px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .text-title span {
    padding: 0 0 0 75px;
  }
  .text-title span::after {
    bottom: -90px; /* テキストの下に配置 */
  }
  .text-title span.deco-pink::after {
    bottom: -120px;
  }
  .text-title span.deco-green::after {
    bottom: -90px;
  }
  .dot-grape::before {
    width: 67px;
    height: 67px;
    top: -10px;
  }
  .dot-muscat::before {
    width: 71px;
    height: 69px;
    top: -10px;
  }
  .text-sub-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .text-sub-title strong {
    font-size: 2.6rem;
    font-weight: 700;
  }
  .text-read {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  /*■■■■■■ #02 簡単ステップ(XS) ■■■■■■■*/
  .step-block {
    margin-bottom: 60px;
    gap: 30px;
  }
  .step-block:after {
    height: 60px;
    background-size: 100% auto;
    bottom: 20px;
  }
  .next-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  /*■■■■■■ #03 なぜジョージアワイン？(XS) ■■■■■■■*/
  .about-wine-block {
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .about-wine-box {
    margin: 0 auto;
    width: auto;
  }
  .about-wine-img {
    width: 100%;
  }
  .text-appeal {
    margin: 20px 0 0;
    padding: 9px 0 12px;
    font-size: 2rem;
  }
  /*■■■■■■ #04 ラインナップ (XS)■■■■■■■*/
  .product-block {
    padding: 0 0 60px 0;
    gap: 20px;
  }
  .prod-logo img {
    width: 200px;
  }
  .product-detail {
    width: 360px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .prod-taste {
    font-size: 3rem;
    font-family: "Noto Serif JP";
  }
  .prod-name {
    font-size: 2.6rem;
  }
  .prod-name small {
    font-size: 1.8rem;
  }
  .prod-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .product-image {
    text-align: center;
  }
  .product-image img {
    max-width: 300px;
    height: auto;
  }
  .bg-water-color_b,
  .bg-water-color_c,
  .bg-water-color_d {
    padding: 60px 0 0;
  }
  .prod-ditail-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prod-ditail-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prod-img-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .prod-img-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  /*■■■■■■ #06 オリジナルエチケット(XS) ■■■■■■■*/
  .etiquette-card {
    margin: 0 auto 40px;
  }
  /*■■■■■■ #07 エントリーゾーン (XS) ■■■■■■■*/
  .entry-title-block {
    margin: 0 0 20px;
  }
  .entry-title-block {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .apeal-line {
    display: block;
    width: 2px;
    height: 100px;
    background-color: #822C3E;
  }
  .left {
    margin: auto 40px auto 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .right {
    margin: auto 0 auto 40px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .entry-title {
    font-size: 2.8rem;
  }
  .entry-btn {
    width: 320px;
    height: 80px;
    border-radius: 40px;
    border: 1px solid #FFF;
  }
  .text-entry-time {
    color: #822C3E;
    font-weight: 500;
  }
  .bg-decolation-reaf {
    background: none;
  }
  /*■■■■■■ #08 about Dot.10 (XS) ■■■■■■■*/
  .text-about {
    font-size: 1.6rem;
    text-align: left;
  }
  .text-sign {
    margin: 20px auto;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ MAIN ビジュアル （SM）■■■■■■■*/
  /* ---------------------------
     ヒーロー全体（FV）
  --------------------------- */
  header.fv {
    position: relative;
    height: calc(100vh + 60px); /* 全体の高さ */
  }
  /* ---------------------------
     背景3分割ヒーロー画像
  --------------------------- */
  .hero-img-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%; /* 全体の高さをカバー（下80px分も背景で埋める） */
  }
  .hero-img-block .visual {
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .visual_1 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    background-image: url(../images/hero1.jpg);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 60%;
  }
  .visual_2 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    background-image: url(../images/hero2.jpg);
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: 60%;
  }
  .visual_3 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background-image: url(../images/hero3_sp.jpg);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 40%;
  }
  /* ---------------------------
  リード文
  --------------------------- */
  .main-read-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #FFF;
    font-family: "Noto-Serif", Serif;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: center;
    padding: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(#822C3E), to(#610619));
    background: linear-gradient(to top, #822C3E, #610619);
    border: 1px solid #FFF000;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px #333;
            box-shadow: 1px 1px 3px #333;
    position: absolute;
    bottom: 30px;
    left: 4vw;
    z-index: 1;
  }
  .main-read-box img {
    position: absolute;
    top: -40px;
    left: 15px;
  }
  /* ---------------------------
     S字背景＋キャッチコピー
  --------------------------- */
  .main-copy-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 380px; /* 固定高で上に少しかぶせる */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* 背景全体を1枚画像で */
  .main-copy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(../images/random-bg.jpg);
    background-size: cover;
    background-position: center;
    /* 左高のS字をマスクで作る */
    mask-image: url(../images/s-curve-lefthigh_sp.svg);
    mask-repeat: no-repeat;
    mask-size: 100% auto;
    mask-position: top center;
    /* Safari対応 */
    -webkit-mask-image: url(../images/s-curve-lefthigh_sp.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% auto;
    -webkit-mask-position: top center;
  }
  .main-copy-block {
    margin: 60px auto 50px;
    position: relative;
    z-index: 1;
    text-align: center;
    width: auto;
    max-width: 560px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
  .main-copy-block a.cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: -webkit-gradient(linear, left top, right top, from(#FFC400), to(#E6A100));
    background: linear-gradient(to right, #FFC400, #E6A100);
    -webkit-box-shadow: 1px 1px 3px #CCC;
            box-shadow: 1px 1px 3px #CCC;
    font-size: 2rem;
    color: #610619;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 60px;
    border: 1px solid #FFF;
    position: relative;
    z-index: 100;
  }
  .main-copy-block a.cta-btn img {
    height: 40px;
    width: auto;
  }
  .main-copy-block a.cta-btn:hover {
    background: -webkit-gradient(linear, left top, right top, from(#E6A100), to(#FFC400));
    background: linear-gradient(to right, #E6A100, #FFC400);
    -webkit-box-shadow: 1px 1px 6px #999;
            box-shadow: 1px 1px 6px #999;
  }
  /*■■■■■■ ベジェ設定 ヘッダー（SM） ■■■■■■■*/
  .section-transition {
    height: 60px;
    overflow: hidden;
    line-height: 0;
  }
  .section-transition svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  /*■■■■■■ ベクター調整(SM) ■■■■■■■*/
  .background-decoration {
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
  }
  .background-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .radius-top {
    position: relative;
    top: -1px;
    z-index: 0;
  }
  .radius-top svg {
    position: absolute;
    top: 1px;
  }
  .radius-bottom {
    position: relative;
    z-index: 0;
    bottom: -1px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .radius-bottom svg {
    position: absolute;
    bottom: 1px;
  }
  /*■■■■■■■ 汎用設定 (SM) ■■■■■■*/
  .contents-block {
    margin: 70px 0;
    padding: 0;
  }
  .contents-in-block {
    margin: 0;
    padding: 70px 0;
  }
  /*■■■■■■ 共通 （SM）■■■■■■■*/
  /*グレープ装飾タイトル*/
  .text-title {
    margin: 0 0 120px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .text-title span {
    padding: 0 0 0 75px;
  }
  .text-title span::after {
    bottom: -90px; /* テキストの下に配置 */
  }
  .text-title span.deco-pink::after {
    bottom: -90px;
  }
  .text-title span.deco-green::after {
    bottom: -90px;
  }
  .dot-grape::before {
    width: 67px;
    height: 67px;
    top: -10px;
  }
  .dot-muscat::before {
    width: 71px;
    height: 69px;
    top: -10px;
  }
  .text-sub-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .text-sub-title strong {
    font-size: 2.6rem;
    font-weight: 700;
  }
  .text-read {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  /*■■■■■■ #02 簡単ステップ(SM) ■■■■■■■*/
  .step-block {
    margin-bottom: 60px;
    gap: 30px;
  }
  .step-block:after {
    height: 60px;
    background: url(../images/decolation-reaf.png) center center no-repeat;
    background-size: auto 100%;
    bottom: 20px;
  }
  .step-box {
    width: 360px;
    background-color: #FFF;
    padding: 20px 30px 40px;
    border-radius: 16px;
    -webkit-box-shadow: 1px 1px 3px #CCC;
            box-shadow: 1px 1px 3px #CCC;
  }
  .next-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  /*■■■■■■ #03 なぜジョージアワイン？(SM) ■■■■■■■*/
  .about-wine-block {
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .about-wine-box {
    margin: 0 auto;
    width: auto;
  }
  .about-wine-img {
    width: 100%;
  }
  .text-appeal {
    margin: 20px 0 0;
    padding: 9px 0 12px;
    font-size: 2rem;
  }
  /*■■■■■■ #04 ラインナップ (SM)■■■■■■■*/
  .product-block {
    padding: 0 0 60px 0;
    gap: 20px;
  }
  .prod-logo img {
    width: 200px;
  }
  .product-detail {
    width: 360px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .prod-taste {
    font-size: 3rem;
    font-family: "Noto Serif JP";
  }
  .prod-name {
    font-size: 2.6rem;
  }
  .prod-name small {
    font-size: 1.8rem;
  }
  .prod-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .product-image {
    text-align: center;
  }
  .product-image img {
    max-width: 360px;
    height: auto;
  }
  .bg-water-color_b,
  .bg-water-color_c,
  .bg-water-color_d {
    padding: 60px 0 0;
  }
  .prod-ditail-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prod-ditail-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prod-img-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .prod-img-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  /*■■■■■■ #06 オリジナルエチケット(SM) ■■■■■■■*/
  .etiquette-card {
    margin: 0 auto 40px;
  }
  /*■■■■■■ #07 エントリーゾーン (SM) ■■■■■■■*/
  .entry-title-block {
    margin: 0 0 20px;
  }
  .entry-title-block {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .apeal-line {
    display: block;
    width: 2px;
    height: 100px;
    background-color: #822C3E;
  }
  .left {
    margin: auto 40px auto 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .right {
    margin: auto 0 auto 40px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .entry-title {
    font-size: 2.8rem;
  }
  .entry-btn {
    width: 320px;
    height: 80px;
    border-radius: 40px;
    border: 1px solid #FFF;
  }
  .text-entry-time {
    color: #822C3E;
    font-weight: 500;
  }
  .bg-decolation-reaf {
    padding: 0 0 60px;
    background: url(../images/bg-leaf_left.png) left 3vw bottom no-repeat, url(../images/bg-leaf_right.png) right 3vw bottom no-repeat;
    background-size: 240px auto;
  }
  /*■■■■■■ #08 about Dot.10 (SM) ■■■■■■■*/
  .text-about {
    font-size: 1.6rem;
    text-align: center;
  }
  .text-sign {
    margin: 20px auto;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■ MAIN ビジュアル （MD）■■■■■■■*/
  /* ---------------------------
     ヒーロー全体（FV）
  --------------------------- */
  header.fv {
    position: relative;
    height: calc(100vh + 60px); /* 全体の高さ */
  }
  /* ---------------------------
     背景3分割ヒーロー画像
  --------------------------- */
  .hero-img-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%; /* 全体の高さをカバー（下80px分も背景で埋める） */
  }
  .hero-img-block .visual {
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .visual_1 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    background-image: url(../images/hero1.jpg);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 50%;
  }
  .visual_2 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    background-image: url(../images/hero2.jpg);
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: 50%;
  }
  .visual_3 {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background-image: url(../images/hero3_tab.jpg);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 50%;
  }
  /* ---------------------------
  リード文
  --------------------------- */
  .main-read-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #FFF;
    font-family: "Noto-Serif", Serif;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    padding: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(#822C3E), to(#610619));
    background: linear-gradient(to top, #822C3E, #610619);
    border: 1px solid #FFF000;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px #333;
            box-shadow: 1px 1px 3px #333;
    position: absolute;
    bottom: 30px;
    left: 3vw;
  }
  .main-read-box img {
    position: absolute;
    top: -30px;
    left: 20px;
  }
  /* ---------------------------
     S字背景＋キャッチコピー
  --------------------------- */
  .main-copy-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 360px; /* 固定高で上に少しかぶせる */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* 背景全体を1枚画像で */
  .main-copy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(../images/random-bg.jpg);
    background-size: cover;
    background-position: center;
    /* 左高のS字をマスクで作る */
    mask-image: url(../images/s-curve-lefthigh.svg);
    mask-repeat: no-repeat;
    mask-size: 100% auto;
    mask-position: top center;
    /* Safari対応 */
    -webkit-mask-image: url(../images/s-curve-lefthigh.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% auto;
    -webkit-mask-position: top center;
  }
  .main-copy-block {
    margin: 30px 3vw 60px;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 94vw;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .catch-copy {
    width: 620px;
    height: auto;
  }
  .main-copy-block a.cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: -webkit-gradient(linear, left top, right top, from(#FFC400), to(#E6A100));
    background: linear-gradient(to right, #FFC400, #E6A100);
    -webkit-box-shadow: 1px 1px 3px #CCC;
            box-shadow: 1px 1px 3px #CCC;
    font-size: 2.2rem;
    color: #610619;
    font-weight: 500;
    padding: 10px 40px;
    border-radius: 60px;
    border: 1px solid #FFF;
    position: relative;
    z-index: 100;
  }
  .main-copy-block a.cta-btn:hover {
    background: -webkit-gradient(linear, left top, right top, from(#E6A100), to(#FFC400));
    background: linear-gradient(to right, #E6A100, #FFC400);
    -webkit-box-shadow: 1px 1px 6px #999;
            box-shadow: 1px 1px 6px #999;
  }
  /*■■■■■■ ベジェ設定 ヘッダー（MD） ■■■■■■■*/
  .section-transition {
    height: 80px;
    overflow: hidden;
    line-height: 0;
  }
  .section-transition svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  /*■■■■■■ ベクター調整(MD) ■■■■■■■*/
  .background-decoration {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
  }
  .background-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .radius-top {
    position: relative;
    top: -1px;
    z-index: 0;
  }
  .radius-top svg {
    position: absolute;
    top: 1px;
  }
  .radius-bottom {
    position: relative;
    z-index: 0;
    bottom: -1px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .radius-bottom svg {
    position: absolute;
    bottom: 1px;
  }
  /*■■■■■■■ 汎用設定 (MD) ■■■■■■*/
  .contents-block {
    margin: 80px 0;
    padding: 0;
  }
  .contents-in-block {
    margin: 0;
    padding: 80px 0;
  }
  /*■■■■■■ 共通 （MD）■■■■■■■*/
  /*グレープ装飾タイトル*/
  .text-title {
    margin: 0 0 120px;
    font-size: 3.2rem;
    line-height: 1.6;
  }
  .text-title span {
    padding: 0 0 0 75px;
  }
  .text-title span::after {
    bottom: -90px; /* テキストの下に配置 */
  }
  .text-title span.deco-pink::after {
    bottom: -90px;
  }
  .text-title span.deco-green::after {
    bottom: -90px;
  }
  .dot-grape::before {
    width: 67px;
    height: 67px;
    top: -10px;
  }
  .dot-muscat::before {
    width: 71px;
    height: 69px;
    top: -10px;
  }
  .text-sub-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .text-sub-title strong {
    font-size: 2.6rem;
    font-weight: 700;
  }
  .text-read {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  /*■■■■■■ #02 簡単ステップ(MD) ■■■■■■■*/
  .step-block {
    margin-bottom: 100px;
    gap: 30px;
  }
  .step-block:after {
    height: 100px;
    background: url(../images/decolation-reaf.png) center center no-repeat;
    background-size: auto 100%;
    bottom: 20px;
  }
  .step-box {
    width: 600px;
    background-color: #FFF;
    padding: 20px 30px 40px;
    border-radius: 16px;
    -webkit-box-shadow: 1px 1px 3px #CCC;
            box-shadow: 1px 1px 3px #CCC;
  }
  .next-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  /*■■■■■■ #03 なぜジョージアワイン？(MD) ■■■■■■■*/
  .about-wine-block {
    margin: 60px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .about-wine-box {
    margin: 0 auto;
    width: auto;
  }
  .about-wine-img {
    width: 100%;
    text-align: center;
  }
  .text-appeal {
    margin: 20px 0 0;
    padding: 9px 0 12px;
    font-size: 2rem;
  }
  /*■■■■■■ #04 ラインナップ (MD)■■■■■■■*/
  .product-block {
    padding: 0 0 60px 0;
    gap: 20px;
  }
  .prod-logo img {
    width: 200px;
  }
  .product-detail {
    width: 360px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .prod-taste {
    font-size: 3rem;
    font-family: "Noto Serif JP";
  }
  .prod-name {
    font-size: 2.6rem;
  }
  .prod-name small {
    font-size: 1.8rem;
  }
  .prod-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .product-image {
    text-align: center;
  }
  .product-image img {
    max-width: 360px;
    height: auto;
  }
  .bg-water-color_b,
  .bg-water-color_c,
  .bg-water-color_d {
    padding: 60px 0 0;
  }
  .prod-ditail-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .prod-ditail-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prod-img-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .prod-img-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  /*■■■■■■ #06 オリジナルエチケット(MD) ■■■■■■■*/
  .etiquette-card {
    margin: 0 auto 40px;
  }
  /*■■■■■■ #07 エントリーゾーン (MD) ■■■■■■■*/
  .entry-title-block {
    margin: 0 0 20px;
  }
  .entry-title-block {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .apeal-line {
    display: block;
    width: 2px;
    height: 100px;
    background-color: #822C3E;
  }
  .left {
    margin: auto 40px auto 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .right {
    margin: auto 0 auto 40px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .entry-title {
    font-size: 3.4rem;
  }
  .entry-btn {
    width: 320px;
    height: 80px;
    border-radius: 40px;
    border: 1px solid #FFF;
  }
  .text-entry-time {
    color: #822C3E;
    font-weight: 500;
  }
  .bg-decolation-reaf {
    padding: 0 0 60px;
    background: url(../images/bg-leaf_left.png) left 3vw bottom no-repeat, url(../images/bg-leaf_right.png) right 3vw bottom no-repeat;
    background-size: 300px auto;
  }
  /*■■■■■■ #08 about Dot.10 (MD) ■■■■■■■*/
  .text-about {
    font-size: 1.6rem;
    text-align: center;
  }
  .text-sign {
    margin: 20px auto;
  }
} /*MD*/
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  /* ---------------------------
     S字背景＋キャッチコピー
  --------------------------- */
} /*LG*/
/*------------(XL)------------*/
@media (min-width: 1216px) {
  .main-copy-wrap {
    height: 400px; /* 固定高で上に少しかぶせる */
  }
} /*XXL*/
/*------------(XXL)------------*/
@media (min-width: 1441px) and (max-width: 1920px) {
  /* ---------------------------
     S字背景＋キャッチコピー
  --------------------------- */
  .main-copy-wrap {
    height: 430px; /* 固定高で上に少しかぶせる */
  }
  .main-copy-block a.cta-btn {
    margin-bottom: 5px;
  }
} /*XXL*/