@charset "utf-8"; /* CSS Document */


body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 800;
  color: #222;
  line-height: 1.8;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0 auto;
  padding: 0;
}

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

/* PCだけ表示 */
.sp_none {
  display: block;
}

/* SPだけ表示 */
.pc_none {
  display: none;
}

/* =========================
  SP（768px以下）
========================= */
@media screen and (max-width: 767px) {

  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
  }

}

html {
  scroll-behavior: smooth;
}

/* =========================
  テキスト選択時のハイライト
========================= */

::selection {
  background-color: #fff895;
}

::-moz-selection {
  background: #fff895;
}


/* =========================
  ページトップボタン
========================= */

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  z-index: 996;
  cursor: pointer;
}

/* SPでは非表示 */
@media only screen and (max-width: 760px) {
  #page-top {
    display: none !important;
  }
}


/* =========================
  LP背景＋PC左右レモンメニュー
========================= */

/* LP全体 */
.lpWrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* 左背景画像：logo-l.png */
.lpWrap:after {
  position: absolute;
  content: "";
  display: block;
  width: calc(50% - 260px);
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: -1;
  left: 0;
  background-image: url(../images/logo-l.png);
  background-repeat: no-repeat;
  background-size: 10.3vw;
  background-position: 0% 100%;
  background-color: #fff7e4;
}

/* 右背景画像：logo-r.png */
.lpWrap:before {
  position: absolute;
  content: "";
  display: block;
  width: calc(50% - 260px);
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: -1;
  right: 0;
  background-image: url(../images/logo-r.png);
  background-repeat: no-repeat;
  background-size: 10.3vw;
  background-position: 100% 0%;
  background-color: #fff7e4;
}

/* 背景ラップ */
.lpWrapBg {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
}

@media only screen and (max-width: 1920px) {
  .lpWrapBg {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* 上背景画像：img_mv_bg_top.png */
.lpWrapBg:after {
  content: "";
  position: fixed;
  background-image: url(../images/img_mv_bg_top.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 19vw;
  top: 0;
  z-index: -1;
  left: 0;
}

/* 下背景画像：img_mv_bg_btm.png */
.lpWrapBg:before {
  content: "";
  position: fixed;
  background-image: url(../images/img_mv_bg_btm.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 21vw;
  bottom: 0;
  z-index: -2;
  left: 0;
}

/* LP本体 */
.lpWrapInner {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, .2);
  /* position: relative; */
  background-color: #fff;
}

/* =========================
  右上レモン画像
========================= */

.mvLemonWrp {
  width: 520px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
}

@media only screen and (min-width: 2550px) {
  .mvLemon {
    width: 15.7vw;
    position: absolute;
    right: -8.03vw;
    top: .42vw;
  }
}

@media only screen and (max-width: 2550px) {
  .mvLemon {
    width: 15.7vw;
    position: absolute;
    right: -7.97vw;
    top: .42vw;
  }
}

@media only screen and (max-width: 1920px) {
  .mvLemon {
    width: 15.7vw;
    /* position: absolute; */
    right: -7.97vw;
    top: .42vw;
  }
}

@media only screen and (max-width: 1300px) {
  .mvLemon {
    display: none;
  }
}

/* =========================
  PC左右レモンメニュー
========================= */

.lemonlinkBox {
  width: 1920px;
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.lemonlink {
  position: absolute;
  width: 195px;
  height: 195px;
  font-size: 18px;
  box-sizing: border-box;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  z-index: 0;
}

.lemonlink:hover {
  opacity: 1;
}

/* レモンメニュー背景画像：img_lemon.png */
.lemonlink:after {
  background-image: url(../images/img_lemon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
}

/* hover時の葉っぱ画像：img_green.png */
.lemonlink:before {
  content: "";
  position: absolute;
  background-image: url(../images/img_green.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.4vw;
  height: 2.3vw;
  top: -0.15vw;
  right: 1.04vw;
  opacity: 0;
  transition: .3s;
}

.lemonlink:hover:before {
  opacity: 1;
}


@media only screen and (min-width: 2550px) {
  .lemonlink--01 {
    top: 258px;
    left: 445px;
    padding-top: 75px;
  }

  .lemonlink--02 {
    top: 478px;
    left: 200px;
    padding-top: 60px;
  }

  .lemonlink--03 {
    top: 664px;
    left: 450px;
    padding-top: 60px;
  }

  .lemonlink--04 {
    top: 439px;
    right: 431px;
    padding-top: 60px;
  }

  .lemonlink--05 {
    top: 607px;
    right: 183px;
    padding-top: 75px;
  }

  .lemonlink--06 {
    top: 779px;
    right: 408px;
    padding-top: 75px;
  }
}

@media only screen and (max-width: 2550px) {
  .lemonlink--01 {
    top: 258px;
    left: 445px;
    padding-top: 75px;
  }

  .lemonlink--02 {
    top: 478px;
    left: 200px;
    padding-top: 60px;
  }

  .lemonlink--03 {
    top: 664px;
    left: 450px;
    padding-top: 60px;
  }

  .lemonlink--04 {
    top: 359px;
    right: 431px;
    padding-top: 60px;
  }

  .lemonlink--05 {
    top: 537px;
    right: 183px;
    padding-top: 75px;
  }

  .lemonlink--06 {
    top: 719px;
    right: 408px;
    padding-top: 75px;
  }
}

@media only screen and (max-width: 1920px) {
  .lemonlinkBox {
    width: 520px;
  }

  .lemonlink {
    position: absolute;
    font-size: .93vw;
    width: 10.1vw;
    height: 10.1vw;
  }

  .lemonlink--01 {
    top: 12.4vw;
    left: -12.21vw;
    padding-top: 4vw;
  }

  .lemonlink--02 {
    top: 22vw;
    left: -24vw;
    padding-top: 3vw;
  }

  .lemonlink--03 {
    top: 31.58vw;
    left: -12.4vw;
    padding-top: 3vw;
  }

  .lemonlink--04 {
    top: 16.69vw;
    right: -14.6vw;
    padding-top: 3vw;
  }

  .lemonlink--05 {
    top: 25vw;
    right: -25vw;
    padding-top: 4vw;
  }

  .lemonlink--06 {
    top: 33.84vw;
    right: -14.6vw;
    padding-top: 4vw;
  }
}

@media only screen and (max-width: 1540px) {
  .lemonlink--01 {
    top: 13.4vw;
    left: -12.21vw;
    padding-top: 4vw;
  }
}

@media only screen and (max-width: 1370px) {
  .lemonlink--01 {
    top: 13.4vw;
    left: -12.21vw;
    padding-top: 4vw;
  }

  .lemonlink--02 {
    top: 21.3vw;
    left: -23vw;
    padding-top: 3vw;
  }

  .lemonlink--03 {
    top: 29.58vw;
    left: -12.4vw;
    padding-top: 3vw;
  }

  .lemonlink--05 {
    top: 25vw;
    right: -24vw;
    padding-top: 4vw;
  }

  .lemonlink--06 {
    top: 33.84vw;
    right: -14.6vw;
    padding-top: 4vw;
  }
}

@media only screen and (max-width: 1300px) {
  .lpWrap:after {
    background-color: #fff7e4;
    background-image: none;
  }

  .lpWrap:before {
    background-color: #fff7e4;
    background-image: none;
  }

  .lpWrapBg:after {
    display: none;
  }

  .lpWrapBg:before {
    display: none;
  }

  .lemonlink {
    display: none;
  }
}


/* =========================
  FV周り
========================= */

/* PC/SP表示切り替え */
.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

/* ページトップボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  z-index: 996;
}

/* 共通ラップ */
.wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden !important;
  background-color: #fff;
}

/* メインFV */
.mainbg {
  position: relative;
}

.mainbg img {
  display: block;
  width: 100%;
}

/* FV下 購入導線 */
.fvLinkWrp {
  background-color: #fff;
}

.fvLink {
  margin: 0 auto;
  padding-top: 12px;
  display: block;
  background-color: #fff;
  padding-bottom: 12px;
  width: 89%;
}

.fvLink--02 {
  display: none;
}

.pci {
  display: block;
}

.spi {
  display: none;
}


/* FV mv */
.fvMovie {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease;
}

.fvMovie video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fvMovie.is-hidden {
  opacity: 0;
  pointer-events: none;
}



/* =========================
  瀬戸田レモン説明セクション
========================= */

section.setoda_lemmon {
  position: relative;
}

section.setoda_lemmon > img {
  display: block;
  width: 100%;
}

section.setoda_lemmon .setoda_lemmon_logo img {
  display: block;
  width: 100%;
}

/* AOSを使わないロゴズームフェードイン */
.fv-logo-zoom {
  animation: fvLogoZoom 1.5s linear both;
}

@keyframes fvLogoZoom {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* SP調整 */
@media only screen and (max-width: 760px) {
  .fvLink {
    margin: 0;
    display: block;
    bottom: -5px;
    position: fixed;
    background-color: transparent;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 10;
  }

  .fvLink.active {
    display: none;
  }

  .fvLink--02 {
    position: static;
    padding-left: 2vw;
    width: 95% !important;
  }

  .fvLink--02 input {
    width: 100%;
  }

  .pci {
    display: none;
  }

  .spi {
    display: block;
	margin: 0 auto;
  }
}

@media only screen and (max-width: 640px) {
  .pc_none {
    display: none !important;
  }

  .sp_none {
    display: block !important;
  }

  #page-top {
    bottom: 110px;
    width: 50px;
    height: 50px;
    right: 30px;
  }

  section.setoda_lemmon .setoda_lemmon_logo {
    top: 3%;
    width: 55%;
  }

}

/* =========================
  setoda_lemmon PC/SP画像切り替え
========================= */

/* PC時 */
section.setoda_lemmon > img.pc_none {
  display: block;
}

section.setoda_lemmon > img.sp_none {
  display: none;
}

/* SP時 */
@media only screen and (max-width: 640px) {
  section.setoda_lemmon > img.pc_none {
    display: none !important;
  }

  section.setoda_lemmon > img.sp_none {
    display: block !important;
  }
}

/* =========================
  setoda_lemmon
========================= */

section.setoda_lemmon {
  position: relative;
}

section.setoda_lemmon > img {
  display: block;
  width: 100%;
}

section.setoda_lemmon .setoda_lemmon_logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 4.5%;
  width: 100%;
  max-width: 272px;
}

@media only screen and (max-width: 640px) {
  section.setoda_lemmon .setoda_lemmon_logo {
    top: 3%;
    width: 65%;
    max-width: none;
  }
}

/* 瀬戸田レモン説明テキスト */
section.setoda_lemmon .setoda_lemmon_text {
  text-align: left;
  padding: 0px 13%;
  line-height: 2.5;
  margin: -15% 0 30px 0;
  font-size: 18px;
  font-weight: 800;
}

@media only screen and (max-width: 640px) {
  section.setoda_lemmon .setoda_lemmon_text {
    text-align: left;
  }
}

@media only screen and (max-width: 640px) {
  section.setoda_lemmon .setoda_lemmon_text {
    font-size: 16px;
    line-height: 2.2;
  }
}

/* FV購入ボタン hover */
@media only screen and (min-width: 761px) {
  .fvLinkWrp .fvLink:hover {
    animation: fuwafuwa01 2s infinite;
  }
}




/* =========================
  LPラップ
========================= */
.lp_wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}	


/* =========================
  CTA
========================= */

.wrap_cta {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.wrap_cta02 {
  background-color: #fff;
}

.wrap_cta03 {
  margin-top: 0;
background-color: #fff;
}

.bg_gray {
  background-color: #f1f1f1;
}

.offer {
  position: relative;
  z-index: 1;
}

.offer > img {
  width: 100%;
  display: block;
}

.newLink {
  width: 100%;
}

/* ボタン共通：位置指定のみ */
#offer_1 .offer_pc_btn01,
#offer_1 .offer_pc_btn02,
#offer_1 .offer_pc_btn03,
.offer02_btn01,
.offer02_btn02,
.offer02_btn03,
.offer03_btn01,
.offer03_btn02,
.offer03_btn03 {
  position: absolute;
}

/* =========================
  CTA1
========================= */

#offer_1 .offer_pc_btn01 {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 72%;
    /* margin-top: 5px; */
    /* transform: translateX(-50%);*/
}

#offer_1 .offer_pc_btn01top {
    bottom: 33.2%;
}

#offer_1 .offer_pc_btn02top {
  bottom: 12.3%;
}

#offer_1 .offer_pc_btn02 {
    width: 73%;
    left: 13.5%;
}

#offer_1 .offer_pc_btn03 {
    width: 46%;
    right: 10.5%;
    bottom: 1.8%;
}

#offer_1 .offer_pc_btn02 input[type='image'],
#offer_1 .offer_pc_btn03 input[type='image'] {
  width: 100%;
}

/* =========================
  SP時 CTA1のみ位置調整
========================= */

@media only screen and (max-width: 760px) {

  /* 1つ目のボタン位置 */
  #offer_1 .offer_pc_btn01top {
    top: 57.5%;
  }

  /* 2つ目のボタン位置 */
  #offer_1 .offer_pc_btn02top {
    bottom: 11.5%;
  }

  /* 3つ目のボタン位置 */
  #offer_1 .offer_pc_btn03 {
    bottom: 1.5%;
  }

}



/* =========================
  CTA2
========================= */

.offer02_btn01 {
  top: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 362px;
  margin-top: 5px;
}

.offer02_btn02 {
  bottom: 16%;
  right: 15%;
  width: 68%;
}

.offer02_btn03 {
    width: 44%;
    right: 10%;
    bottom: 5.5%;
}

.offer02_btn02 input[type='image'],
.offer02_btn03 input[type='image'] {
  width: 100%;
}

/* =========================
  CTA3
========================= */

.offer03_btn01 {
  top: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 362px;
  margin-top: 5px;
}

.offer03_btn02 {
  bottom: 16%;
  right: 15%;
  width: 68%;
}

.offer03_btn03 {
    width: 44%;
    right: 10%;
    bottom: 5.5%;
}

.offer03_btn02 input[type='image'],
.offer03_btn03 input[type='image'] {
  width: 100%;
}

/* =========================
  CTA Summer / 新規B
========================= */

.offer_summer .offer_summer_btn01 {
    position: absolute;
    bottom: 38.4%;
    left: 14%;
    width: 72.5%;
}

.offer_summer .offer_summer_btn02 {
  position: absolute;
  bottom: 6.2%;
  left: 14%;
  width: 71.5%;
}

.offer_summer .offer_summer_btn03 {
  position: absolute;
  right: 10%;
  bottom: 5.5%;
  width: 44%;
}

.offer_summer .offer_summer_btn01 input[type='image'],
.offer_summer .offer_summer_btn02 input[type='image'],
.offer_summer .offer_summer_btn03 input[type='image'] {
  display: block;
  width: 100%;
}

/* =========================
  CTA Summer hover
========================= */

.offer_summer .offer_summer_btn01:hover {
  animation: fuwafuwa01 2s infinite;
}

.offer_summer .offer_summer_btn02:hover,
.offer_summer .offer_summer_btn03:hover {
  animation: fuwafuwa02 2s infinite;
}

/* =========================
  CTA A共通 / idなし
========================= */

.offer .offer_pc_btn01,
.offer .offer_pc_btn02,
.offer .offer_pc_btn03 {
  position: absolute;
}

.offer .offer_pc_btn01 {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 72%;
}

.offer .offer_pc_btn01top {
  bottom: 35.2%;
}

.offer .offer_pc_btn02top {
  bottom: 12.3%;
}

.offer .offer_pc_btn02 {
  width: 73%;
  left: 13.5%;
}

.offer .offer_pc_btn03 {
  width: 46%;
  right: 10.5%;
  bottom: 1.8%;
}

.offer .offer_pc_btn01 input[type='image'],
.offer .offer_pc_btn02 input[type='image'],
.offer .offer_pc_btn03 input[type='image'] {
  width: 100%;
}
/* =========================
  CTA hover / idなし共通
========================= */

.offer .offer_pc_btn01:hover {
  animation: fuwafuwa01 2s infinite;
}

.offer .offer_pc_btn02:hover,
.offer .offer_pc_btn03:hover {
  animation: fuwafuwa02 2s infinite;
}


/* =========================
  hover
========================= */

#offer_1 .offer_pc_btn01:hover,
.offer02_btn01:hover,
.offer03_btn01:hover {
  animation: fuwafuwa01 2s infinite;
}

#offer_1 .offer_pc_btn02:hover,
#offer_1 .offer_pc_btn03:hover,
.offer02_btn02:hover,
.offer02_btn03:hover,
.offer03_btn02:hover,
.offer03_btn03:hover {
  animation: fuwafuwa02 2s infinite;
}

@keyframes fuwafuwa01 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fuwafuwa02 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translate(0, 0);
  }
}


/* =========================
  SP
========================= */

@media only screen and (max-width: 760px) {
  #offer_1 .offer_pc_btn01:hover,
  #offer_1 .offer_pc_btn02:hover,
  #offer_1 .offer_pc_btn03:hover,
  .offer02_btn01:hover,
  .offer02_btn02:hover,
  .offer02_btn03:hover,
  .offer03_btn01:hover,
  .offer03_btn02:hover,
  .offer03_btn03:hover {
    animation: none !important;
  }
}

@media only screen and (max-width: 760px) {
  #offer_1 .offer_pc_btn01,
  .offer02_btn01,
  .offer03_btn01 {
    width: 70%;
	margin-bottom: 15px;
  }
}


	
/* =========================
  モーダル
========================= */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px 15px 120px;
}

.popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 白カード */
.popup .content {
  width: calc(100% - 40px);
  max-width: 600px;
  max-height: 60vh;
  background-image: url("../images/wood_bg.png");
  background-repeat: repeat-y; 
  background-size: 100% auto; 
  padding: 25px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* =========================
  内部構造
========================= */
.popup_wrap {
  padding: 0%;
  text-align: center;
  background: none; /* ←追加 */
}
	
.popup_wrap_bg {
    background: #fff;
    padding: 40px 40px 20px 40px;
    max-width: 480px;
    margin: 0 auto -23px;
}

/* 上画像 */
.popup_wrap_bg > img {
  width: 106%;
  margin-top: -5%;
  margin-left: -5%;
  display: block;
}

/* =========================
  タイトル
========================= */
.popup_wrap h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2.5px;
  margin: 6% 0 6% 0;
  position: relative;
}
.popup_wrap h1 span {
  display: inline-block;
  transform: translateY(3px); /* ←文字だけ下げる */
}
/* レモン装飾 */
.popup_wrap h1::before,
.popup_wrap h1::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/img_lemon.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.popup_wrap h1::before {
  margin-right: 10px;
}

.popup_wrap h1::after {
  margin-left: 10px;
}

/* =========================
  リスト（飲み方ブロック）
========================= */
.popup_wrap ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0 0 40px;
  padding: 0;
  align-items: flex-start;   /* ←これに変更 */
}

/* 左画像 */
.popup_wrap ul li:first-child {
  width: 120px;
  flex-shrink: 0;
}

.popup_wrap ul li:first-child img {
  width: 100%;
  display: block;
}

/* 右テキスト（←ここが今回の修正ポイント） */
.popup_wrap ul li:last-child {
  flex: 1;
}

.popup_wrap ul li:last-child p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: justify;
}

/* =========================
  区切り
========================= */
.parts-divider {
  display: block;
  width: 15%;
  margin: 0 auto 10px;
}

/* =========================
  Lemon Column
========================= */
.popup_wrap h2 {
    text-align: center;
    color: #ff4d1d;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 10px 0 10px;
}

/* 本文 */
.popup_wrap > p {
  font-size: 18px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.02em;
  max-width: 450px;
  margin: 0 auto;
  text-align: justify;
  padding-bottom: 6%;
}

section.setoda_bar .setoda_bar_text {
  text-align: center;
  line-height: 1.7;
  font-weight: 900;
  margin: 2% 0 8% 0;
  font-size: 18px;
}

@media only screen and (max-width: 640px) {
  section.setoda_bar .setoda_bar_text {
    font-size: 16px;
    line-height: 1.7;
  }
}


/* =========================
  閉じるボタン
========================= */
.close {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 500px;
  height: 64px;
  background: #e9e9e9;
  border-radius: 999px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #3b3a80;
  text-align: center;
  line-height: 64px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: all 0.2s ease;
}

.close:hover {
  color: #6b6aa5;
}

.close:active {
  transform: translateX(-50%) scale(0.97);
}

/* =========================
  SP対応
========================= */
@media screen and (max-width: 767px) {
  .popup_wrap ul li:first-child {
    width: 100%;
  }
  .popup_wrap ul li:last-child p {
    font-size: 15px;   /* ←小さくする */
  }	

}
@media screen and (max-width: 767px) {
  .popup_wrap ul {
    align-items: flex-start;  /* ←ここ変更 */
  }

  .popup_wrap ul li:first-child {
    width: 35%;
    margin: 0 auto;        /* ←これで完全中央 */
  }
}
	
/*  標準スマホ（480px以下）*/
@media screen and (max-width: 480px) {
  .popup {
    padding: 12px 8px 88px;
  }

  .popup .content {
    padding: 12px;
  }

  .popup_wrap_bg {
    padding: 18px 18px 12px;
  }

  .popup_wrap h1 {
    font-size: 19px;
    letter-spacing: 0.5px;
    margin: 20px 0;
  }

  .popup_wrap h1::before,
  .popup_wrap h1::after {
    width: 18px;
    height: 18px;
  }

  .popup_wrap ul {
    gap: 10px;
    margin: 0 0 18px;
  }

  .popup_wrap ul li:first-child {
    width: 85px;
  }

  .popup_wrap ul li:last-child p {
    font-size: 13px;
    line-height: 1.65;
  }

  .popup_wrap h2 {
    font-size: 19px;
  }

  .popup_wrap > p {
    font-size: 13px;
    line-height: 1.75;
	width: 90%;
  }

  .close {
    height: 46px;
    line-height: 46px;
    font-size: 15px;
    bottom: 10px;
  }
.popup_wrap_bg > img {
    margin-top: -3%;
    margin-left: -5%;
}
.popup_wrap_bg {
    margin: 0 auto -14px;
}
}

/* 小さめスマホ（375px以下）*/
@media screen and (max-width: 375px) {
  .popup {
    padding: 10px 6px 84px;
  }

  .popup .content {
    padding: 10px;
  }

  .popup_wrap_bg {
    padding: 16px 17px 10px;
  }

  .popup_wrap h1 {
		font-size: 17px;
        line-height: 1.35;
        margin: 15px 0;
  }

  .popup_wrap h1::before,
  .popup_wrap h1::after {
    width: 16px;
    height: 16px;
  }

  .popup_wrap ul li:first-child {
    width: 75px;
  }

  .popup_wrap ul li:last-child p {
    font-size: 12px;
    line-height: 1.6;
  }

  .popup_wrap h2 {
    font-size: 17px;
  }

  .popup_wrap > p {
    font-size: 13px;
    line-height: 1.7;
	width: 85%;
  }

  .close {
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }
.popup_wrap_bg > img {
    margin-top: -3%;
    margin-left: -5%;
}
.popup_wrap_bg {
    margin: 0 auto -13px;
}
}




	
/* list */	
/* =========================
  カード全体
========================= */
.modal-open {
  display: block;
  text-align: center;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
}

/* =========================
  画像エリア
========================= */
.modal-open .rel {
  position: relative;
  border: 2px solid #ff4d1d;
  overflow: hidden;
}

.modal-open .rel img {
  width: 100%;
  display: block;
}

/* =========================
  左上ラベル
========================= */
.setoda_bar_abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
}

.setoda_bar_abs img {
  width: 100%;
}

/* =========================
  左下＋（通常は画像そのまま）
========================= */
.setoda_bar_abs02 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
}

.setoda_bar_abs02 img {
  width: 100%;
  display: block;
}

/* 通常時はCSSの＋は出さない */
.setoda_bar_abs02::before,
.setoda_bar_abs02::after {
  content: none;
}

/* =========================
  タイトル
========================= */
.modal-open h1 {
  margin: 15px 0 10px;
}

.modal-open h1 img {
  width: 100%;
  max-width: 260px;
}

/* =========================
  下テキスト
========================= */
.modal-open p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* タグ（通常） */
.box_w {
	border: 1px solid #000;
    padding: 2px 6px;
    font-weight: 900;
    font-size: 15px;
    background: none;
    color: #000;
    transition: 0.3s;
	    background-color: #fff;
}

/* × */
.btn-close {
  width: 16px;
  height: 16px;
  position: relative;
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

/* =========================
  hover時
========================= */

/* ＋ボタン背景 */
.modal-open:hover .setoda_bar_abs02 {
  background: #ff4d1d;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover時は画像を消す（←重要） */
.modal-open:hover .setoda_bar_abs02 img {
  display: none;
}

/* ＋をCSSで表示 */
.modal-open:hover .setoda_bar_abs02::before,
.modal-open:hover .setoda_bar_abs02::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 3px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.modal-open:hover .setoda_bar_abs02::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* タグ反転 */
.modal-open:hover .box_w {
  background: #ff4d1d;
  color: #fff;
  border: 1px solid #ff4d1d;
}
	
	
/* =========================
  2列レイアウト
========================= */
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0%;
    margin: 0 auto;
    width: 85%;
}

.menu-list li {
  list-style: none;
  width: calc(50% - 10px);
  margin: 0;
  padding: 0;
}

/* ボタンは横幅いっぱい */
.modal-open {
  width: 100%;
  display: block;
}

/* =========================
  導入セクション
========================= */


.intro-text {
  background: url(../images/bg/5D3_8009_2.jpg) no-repeat, url(../images/bg/5D3_8027_2.jpg) no-repeat;
  background-position: top -29px left -64px, top 79px right -64px;
  background-size: 24%;
}

/* テキスト */
.lemon-intro .lemon_intro_text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-feature-settings: 'palt';
  font-size: 18px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  padding: 40px 0 50px 0;
}

/* SP調整 */
@media only screen and (max-width: 640px) {
  .intro-text {
    background-position: top 62px left -38px, bottom 22px right -37px;
    background-size: 30%;
  }

  .lemon-intro .lemon_intro_text {
    font-size: 16px;
    line-height: 2;
  }
}



.speech01 {
  width: 61%;
  display: block;
  margin: 0 auto;
}
.speech02 {
    margin: 0 auto;
    margin-top: 42px;
}

.lemon-intro .monthly ul {
  list-style: none;
  text-decoration: none;
  margin: 0 auto;
  padding: 0 6%;
}

.lemon-intro .monthly li {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.lemon-intro {
  font-weight: 800;
}



/* =========================
  月替わりセクション
========================= */
.monthly {
  background: url(../images/wood_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 3% auto 0;
  padding: 60px 0 40px;
  max-width: 816px;
  width: 100%;
}

.monthly ul {
  padding: 0 5%;
}

.monthly ul li {
  width: 100%;
}

.monthly h1 {
  margin: 0 5% 5% !important;
}

/* 見出し */
.monthly-head {
  position: relative;
}

.monthly-label {
  position: absolute;
  left: 16px;
  width: 210px;
  top: -100px;
}

@media only screen and (max-width: 768px) {
  .monthly-label {
   width: 40% !important;
  }
}

@media only screen and (max-width: 375px) {
    .monthly-label {
        width: 44% !important;
    }
}



/* 本文 */
.monthly article h2 {
  text-align: center;
}

.monthly article p {
  text-align: justify;
  line-height: 1.5;
  width: 100%;
  margin: 0 auto;
  font-size: 22px;
  letter-spacing: 0;
  margin-top: 10px;
}

@media only screen and (max-width: 850px) {
  .monthly article p {
    width: 100%;
    font-size: 16px;
  }
}

/* コラム */
.monthly-column {
  background-color: #fff;
  width: 90%;
  margin: 6% auto 0;
  left: 0;
  right: 0;
  position: relative;
}

.monthly-column img {
  max-width: 47px;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.monthly-column h2 {
  padding-top: 4%;
  color: #ff4d1d;
}

.monthly-column p {
  padding: 2% 5% 6%;
  box-sizing: border-box;
}


/* =========================
  リストセクション
========================= */
.lemon-list {
  background: url(../images/bg/setoda_bar_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding-bottom: 10%;
  position: relative;
}

.lemon-list .bubbles {
  background: #fffde8;
}

.lemon-list .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  z-index: 999;
}

/* タイトル */
.list-title {
  max-width: 364px;
  width: 100%;
  margin: 0 auto;
  right: 0;
  left: 0;
  padding: 5% 0;
}

.lemon-list p {
  text-align: center;
  line-height: 1.5;
}

/* リスト */
.lemon-list ul {
  display: flex;
  justify-content: center;
  margin-top: 5%;
  flex-flow: wrap;
}

.lemon-list ul li {
  width: 42%;
  margin: 2% 2%;
}

/* hover */
.lemon-list ul li:hover .box_w {
  color: #fff;
  background: #363387;
  transition: 0.2s;
}

/* ボタン */
.lemon-list ul li button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
}

.lemon-list ul li button.close {
  background-color: #fff;
  color: #333487;
  font-size: 20px;
  width: 25%;
  border: none;
  outline: none;
  appearance: none;
  padding: 1%;
  position: fixed;
  text-align: center;
  border-radius: 100px;
  bottom: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lemon-list ul li button h1 {
  padding: 5% 0 0;
}

/* ラベル */
.lemon-list ul li button p .box_w {
  border: solid 1px #000;
  background: #fff;
  color: #000;
  padding: 0 5px;
  font-size: 15px;
}

@media only screen and (max-width: 790px) {
  .lemon-list ul li button p .box_w {
    font-size: 13px;
  }
}

/* × */
.lemon-list ul li button .btn-close {
  display: inline-block;
  padding: 9px 0 7px;
  margin: 0 3px;
}

.lemon-list ul li button .btn-close::before,
.lemon-list ul li button .btn-close::after {
  display: block;
  content: '';
  width: 15px;
  height: 1px;
  background: #000;
}

.lemon-list ul li button .btn-close::before {
  transform: rotate(-45deg);
}

.lemon-list ul li button .btn-close::after {
  transform: rotate(45deg);
}

/* 画像枠 */
.lemon-list ul li .rel {
  outline: solid 2px #363387;
  outline-offset: -2px;
  position: relative;
}

/* 左上 */
.lemon-list ul li .rel .setoda_bar_abs {
  position: absolute;
  top: 0%;
  width: 30%;
}

/* ＋ */
.lemon-list ul li .rel .setoda_bar_abs02 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  max-width: 36px;
}

/* hover＋ */
.lemon-list ul li:hover .setoda_bar_abs02 {
  background: url('../images/bg/link_hover_summer.png') no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
}

.lemon-list ul li:hover .setoda_bar_abs02 img {
  display: none;
}

/* setoda_bar
------------------------------------------------------*/
section.setoda_bar {
  background: url(../images/bg/setoda_bar_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding-bottom: 10%;
  position: relative;
  z-index: 20;
  background-color: #fffdea;
}


section.setoda_bar .wrap_in {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  z-index: 9999;
}

section.setoda_bar h2.setoda_bar_ttl {
  max-width: 364px;
  width: 100%;
  margin: 0 auto;
  right: 0;
  left: 0;
  padding: 5% 0;
}



@media only screen and (max-width: 640px) {
  section.setoda_bar {
    background: url(../images/bg/setoda_bar_bg_sp.png) no-repeat top center;
    background-size: cover;
	background-color: #fffdea;
  }
  section.setoda_bar h2.setoda_bar_ttl {
    width: 50%;
    padding: 15% 0 5%;
  }
}


/*　泡表現　*/
section.setoda_bar {
  position: relative;
}

section.setoda_bar .wrap_in {
  position: relative;
  z-index: 2;
}


/* =========================
  setoda_bar 月別カード ラベル文字
========================= */

section.setoda_bar ul li button p .box_w {
  font-size: 15px;
}

/* SP調整 */
@media only screen and (max-width: 640px) {
  section.setoda_bar ul li button p .box_w {
    font-size: 11px;
  }
}



/* =========================
   泡パーティクル
========================= */
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #ffd720;
  border-radius: 50%;
  opacity: 0;
  animation: bubble 16s ease-in infinite;
  animation-fill-mode: backwards;
  z-index: 1;
}

.bubble:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 10%;
  animation-duration: 4s;
}

.bubble:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 11%;
  animation-delay: 6s;
}

.bubble:nth-child(3) {
  width: 30px;
  height: 30px;
  left: 75%;
  animation-duration: 12s;
}

.bubble:nth-child(4) {
  width: 50px;
  height: 50px;
  left: 45%;
  animation-duration: 14s;
  animation-delay: 2s;
}

.bubble:nth-child(5) {
  width: 15px;
  height: 15px;
  left: 60%;
  animation-duration: 5s;
}

.bubble:nth-child(6) {
  width: 30px;
  height: 30px;
  left: 70%;
  animation-duration: 6s;
}

.bubble:nth-child(7) {
  width: 25px;
  height: 25px;
  left: 80%;
  animation-duration: 4s;
}

.bubble:nth-child(8) {
  width: 15px;
  height: 15px;
  left: 85%;
  animation-duration: 8s;
}

.bubble:nth-child(9) {
  width: 20px;
  height: 20px;
  left: 20%;
  animation-duration: 10s;
}

.bubble:nth-child(10) {
  width: 20px;
  height: 20px;
  left: 10%;
  animation-duration: 4s;
}

.bubble:nth-child(11) {
  width: 30px;
  height: 30px;
  left: 20%;
  animation-delay: 3s;
}

.bubble:nth-child(12) {
  width: 20px;
  height: 20px;
  left: 2%;
  animation-duration: 6s;
}

.bubble:nth-child(13) {
  width: 50px;
  height: 50px;
  left: 5%;
  animation-delay: 8s;
}

.bubble:nth-child(14) {
  width: 60px;
  height: 60px;
  left: 90%;
  animation-delay: 10s;
}

.bubble:nth-child(15) {
  width: 30px;
  height: 30px;
  left: 88%;
  animation-delay: 10s;
}

@keyframes bubble {
  0% {
    bottom: -100px;
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(100px);
    opacity: 1;
  }
  100% {
    bottom: 100%;
    transform: translateX(0);
    opacity: 1;
  }
}


/* =========================
  staff_love
========================= */

section.staff_love {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 2% 0 2% 0;
  padding-top: 60px;
  background-color: #fff;
}

section.staff_love .wrap_in {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

section.staff_love a img {
  width: auto;
  margin: 5% auto;
  display: block;
}

section.staff_love h1 {
  max-width: 452px;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

section.staff_love ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0 auto;
  width: 90%;
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
}

section.staff_love ul li {
  width: 440px;
  list-style: none;
  text-align: center;
}

section.staff_love .balloon2 {
  position: relative;
  display: inline-block;
  margin: 3em 0 1.7em;
  padding: 30px;
  color: #000;
  font-size: 14px;
  background: #fff;
  border: solid 1px #363387;
  box-sizing: border-box;
}

section.staff_love .balloon2:before {
  content: '';
  position: absolute;
  bottom: -17.5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url("https://gigaplus.makeshop.jp/imaoka4185/lp/images/img_speech_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 18px;
  z-index: 2;
}

section.staff_love .balloon2 p {
  margin: 0;
  padding: 0;
  text-align: justify;
  font-size: 20px;
  line-height: 1.2;
}

section.staff_love .review-container {
  position: relative;
  z-index: 2;
}

/* staff_love フェードイン
------------------------------------------------------*/
.js-fade {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 850px) {
  section.staff_love {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 760px) {
  section.staff_love .balloon2 p {
    font-size: 16px;
    line-height: 1.2;
  }
}


/* =========================
  広島県ブランドレモンについて
========================= */

section.lemon_sanchi {
  position: relative;
}

section.lemon_sanchi img {
  display: block;
  width: 100%;
}

section.lemon_sanchi h1 {
  margin: 0;
  padding: 0;
}

section.lemon_sanchi .lemon_sanchi_bg01 p {
  text-align: center;
}

/* AOSを使わないzoom-in */
.js-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s linear, transform 0.8s linear;
}

.js-zoom-in.is-visible {
  opacity: 1;
  transform: scale(1);
}
/* =========================
  lemon_sanchi タイトル
========================= */

.sanchi_ttl {
  margin: 0;
  padding: 0;
}

.sanchi_ttl img {
  width: 100%;
  display: block;
}

/* PC時 */
.sanchi_ttl .pc {
  display: block;
}

.sanchi_ttl .sp {
  display: none;
}

/* SP時 */
@media only screen and (max-width: 640px) {
  .sanchi_ttl .pc {
    display: none;
  }

  .sanchi_ttl .sp {
    display: block;
  }
}
.sanchi_text {
  text-align: center;
  padding: 40px 0 50px 0px;
  line-height: 2;
  font-size: 18px;
  font-weight: 800;
}
/* =========================
  lemon_sanchi 背景＋テキスト
========================= */

.lemon_sanchi_bg01 {
  background: url(../images/5D3_8034_3.jpg), url(../images/5D3_8034_2.jpg);
  background-size: 15%, 25%;
  background-position: 0% 16%, 100% 84%;
  background-repeat: no-repeat;
  padding: 5% 0;
}

.sanchi_text {
  text-align: center;
  padding: 40px 0 50px 0px;
  line-height: 2;
}

/* =========================
  SP調整 lemon_sanchi テキスト
========================= */

@media only screen and (max-width: 640px) {
  .sanchi_text {
    font-size: 16px;
    line-height: 2;
  }
}



/* =========================
  レシピ
========================= */

section.recipe {
  background-color: #f1f1f1;
  padding-bottom: 1%;
  position: relative;
}

/* 見出し画像 */
section.recipe > h1 {
  margin: 0;
  padding: 0;
}

section.recipe > h1 img {
  display: block;
  width: 100%;
}

/* =========================
  recipe 導入テキスト
========================= */

section.recipe .recipe_intro_text {
  text-align: center;
  padding: 40px 0 50px 0px;
  line-height: 2;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

@media only screen and (max-width: 640px) {
  section.recipe .recipe_intro_text {
    font-size: 16px;
    line-height: 2;
  }
}

section.recipe .recipe_txt_bg01 {
  position: relative;
  background-color: #fff;
  z-index: 0;
}

section.recipe .recipe_txt_bg01:after {
  background: url(../images/img_recipe_lemon.png), #fff;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  width: 174px;
  height: 244px;
  background-size: contain;
  right: 0;
  top: 0;
  z-index: -1;
}

/* レシピブロック */
section.recipe .recipe_wrap {
  padding: 0;
  margin: 0 0 5%;
  background-color: #f1f1f1;
}

/* レシピ画像 */
section.recipe .recipe_title {
  background-color: #fff;
  position: relative;
  text-align: center;
}

section.recipe .recipe_title img {
  display: block;
  width: 100%;
}

/* 材料・作り方 共通 */
section.recipe section.recipe_wrap .howmake,
section.recipe section.recipe_wrap .zairyo {
  width: 70% !important;
  margin: 0 auto !important;
  padding: 0 8.8% 10%;
  background-color: #fff;
}

/* 材料リスト */
section.recipe .zairyo .flex {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
}

section.recipe .tab-reader {
  margin: 0;
  padding: 0;
  list-style: none;
}

section.recipe .tab-reader li {
  list-style: none;
}

section.recipe .tab-reader-box1_min {
  font-size: 12px;
  font-weight: normal;
}

section.recipe .tab-reader-box2 {
  flex: auto;
}

section.recipe hr.tab-r-line {
  position: relative;
  top: calc(50% - 1px);
  margin: 0 10px;
  border: none;
  border-top: dotted 2px #ccc;
}

/* 材料・作り方見出し */
section.recipe .zairyo h2,
section.recipe .howmake h2 {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 0 3%;
}

section.recipe .zairyo h2:before,
section.recipe .howmake h2:before,
section.recipe .zairyo h2:after,
section.recipe .howmake h2:after {
  content: '';
  background-image: url('../images/bg/midashi.png');
  background-size: auto;
  height: 3px;
  flex-grow: 1;
}

section.recipe .zairyo h2:before,
section.recipe .howmake h2:before {
  margin-right: 3%;
}

section.recipe .zairyo h2:after,
section.recipe .howmake h2:after {
  margin-left: 3%;
}

/* 作り方リスト */
section.recipe .howmake ul {
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
}

section.recipe .howmake ul li {
    width: 100%;
    line-height: 1.5;
    margin-left: 0;
    padding-bottom: 3%;
    list-style: none;
    position: relative;
}

/* POINT枠 */
section.recipe .howmake article {
  border: solid 1px #eb6100;
  background-color: #fffde1;
  margin-top: 3%;
}

section.recipe .howmake .article_bottom {
  margin-bottom: 3%;
}

section.recipe .howmake article ul {
  display: flex;
  margin: 0;
  padding: 0;
}

section.recipe .howmake article li:first-child {
  width: 30%;
}

section.recipe .howmake article li:last-child {
  width: 70%;
}

section.recipe .howmake article li:first-child {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.recipe .howmake article li:first-child p {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0px;
  margin-left: 0;
  color: #eb6100;
  border-bottom: solid 1px #eb6100;
  display: inline-block;
}

section.recipe .howmake article ul li p {
  padding: 6%;
  font-size: 14px;
  margin: 0;
}

@media only screen and (max-width: 640px) {
  section.recipe .recipe_txt_bg01:after {
    width: 27.1vw;
    height: 38.1vw;
  }
}

/* =========================
  レシピ アコーディオン
========================= */

.accordion_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px;
  border-bottom: 2px solid #ccc;
}

.accordion_icon {
  font-size: 20px;
  margin: 0;
}

.accordion_content {
  display: block;
  height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: height 0.3s ease, padding-top 0.3s ease;
}

.accordion.is-open .accordion_content {
  padding-top: 20px;
}

.howmake.accordion .accordion_header h2 {
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
  width: auto !important;
  word-break: keep-all !important;
}

/* アコーディオン見出しでは、h2の左右線を消す */
.howmake.accordion .accordion_header h2:before,
.howmake.accordion .accordion_header h2:after {
  content: none;
}

/* =========================
  recipe 見出し装飾
========================= */

section.recipe .zairyo h2,
section.recipe .howmake h2 {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 0 3%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

section.recipe .zairyo h2::before,
section.recipe .howmake h2::before,
section.recipe .zairyo h2::after,
section.recipe .howmake h2::after {
  content: '';
  background-image: url('../images/bg/midashi.png');
  background-size: auto;
  height: 3px;
  flex-grow: 1;
}

section.recipe .zairyo h2::before,
section.recipe .howmake h2::before {
  margin-right: 3%;
}

section.recipe .zairyo h2::after,
section.recipe .howmake h2::after {
  margin-left: 3%;
}

/* accordion内の作り方見出し */
section.recipe .howmake.accordion .accordion_header h2 {
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
  width: 100%;
  word-break: keep-all !important;
  margin: 0;
}

/* 材料・作り方の見出し */
section.recipe section.recipe_wrap .zairyo h2,
section.recipe section.recipe_wrap .howmake h2 {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 0 5%;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

/* 見出し前後の装飾線 */
section.recipe section.recipe_wrap .zairyo h2:before,
section.recipe section.recipe_wrap .howmake h2:before,
section.recipe section.recipe_wrap .zairyo h2:after,
section.recipe section.recipe_wrap .howmake h2:after {
  content: '';
  background-image: url(../images/bg/midashi.png);
  background-size: auto;
  height: 3px;
  flex-grow: 1;
}

/* 左側の装飾線 */
section.recipe section.recipe_wrap .zairyo h2:before,
section.recipe section.recipe_wrap .howmake h2:before {
  margin-right: 3%;
}

/* 右側の装飾線 */
section.recipe section.recipe_wrap .zairyo h2:after,
section.recipe section.recipe_wrap .howmake h2:after {
  margin-left: 3%;
}

/* 材料・作り方 見出しの太さ */
section.recipe section.recipe_wrap .zairyo h2,
section.recipe section.recipe_wrap .howmake h2 {
  font-weight: 800;
}

section.recipe section.recipe_wrap .zairyo .tab-reader-box1_min {
  font-size: 12px;
  font-weight: 800;
}

/* =========================
  SP調整 recipe 本文文字
========================= */

@media only screen and (max-width: 640px) {
  section.recipe .zairyo,
  section.recipe .howmake,
  section.recipe .tab-reader,
  section.recipe .tab-reader span,
  section.recipe .accordion_content,
  section.recipe .accordion_content li {
    font-size: 15px;
    line-height: 1.8;
  }

  section.recipe .howmake article ul li p {
    font-size: 13px;
    line-height: 1.6;
  }
}



/* =========================
  footer
========================= */

.foot {
  position: relative;
  z-index: 1;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
}

.foot img {
  max-width: 274px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.foot address {
  font-style: normal;
  font-size: 10px;
  text-align: center;
  margin-top: 10px;
}

/* =========================
  スロット風 表示アニメーション
========================= */

.slot-reveal {
  opacity: 1;
  transform: none;
  overflow: hidden;
}

.slot-reveal img {
  display: block;
  transform: translateY(-110%);
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.slot-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.slot-reveal.is-visible img {
  transform: translateY(0);
}


/* =========================
  SP追従CTA 表示・重なり順調整
========================= */

@media only screen and (max-width: 760px) {
  .fvLinkWrp .fvLink {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.is-flow:not(.modal-opened) .fvLinkWrp .fvLink {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    z-index: 9000;
  }

  body.modal-opened .fvLinkWrp .fvLink {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}


/* =========================
  modal表示中は追従ボタンを隠す
========================= */

body.modal-opened .fvLink,
body.modal-opened #page-top,
body.modal-opened .openBtnInner,
body.modal-opened .openbtn {
  display: none !important;
  pointer-events: none !important;
}

/* =========================
  modal 重なり順 修正
========================= */

.popup {
  z-index: 99999;
}

.popup.active {
  z-index: 99999;
}

.popup .content {
  position: relative;
  z-index: 100000;
}

.close {
  z-index: 100001;
}