@charset "utf-8";

/*============================================*/
/*看板周辺 */
/*============================================*/
#introduction {text-align: center;}
h1#top_title {display:none;}
#introduction hgroup{
    background-color: #fff;
    margin-bottom: 30px;
}
#introduction picture {
  display:block;
  margin:0 auto;
}
.lead_text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6em;
  letter-spacing: 1px;
/*  margin-bottom: 50px;*/
}
#introduction p {
  font-size: clamp(13px, 2vw, 16px);
  color: var(--text-light);
  line-height: 1.9;
  padding: 0 0px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  text-align: left;
}
#introduction p span{
    font-weight: bold;
}
@media (max-width: 767px) {
#introduction,.lead_text {font-size: 1.1rem;}
#introduction p {
    font-size: 0.85rem;
    padding: 0px;
}
.c-header-tertiary{
    position:relative;
    margin-top:74px;
}
/*看板のアスペクト比 CLS対策として*/
picture#billboard{aspect-ratio: 700 / 420;}
}
.lead-sentence {
  color:#000;
  margin: 0 auto 50px;
  padding: 20px 0;
  line-height:1.5rem;
}
.lead-sentence_h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 12px;
  padding: 5px 24px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
p.lead-sentence{
  font-size: clamp(13px, 2vw, 16px);
  color: var(--text-light);
  line-height: 1.9;
  padding: 0 0px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 767px) {
p.lead-sentence{text-align: left;}
}
/*============================================*/
/* ナビ */
/*============================================*/
/*#introduction */
#introduction nav {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #3b833a;
    text-align: center;
    margin-bottom: 50px;
}
#introduction nav menu {
    display: block;
    max-width: 1200px;
    width: 100%;
}
#introduction nav ul {
  list-style-type: none;
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: column;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 0;
}
#introduction nav menu li {
  text-align: center;
  padding:15px 5px;
  color:#fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
}
#introduction nav menu li:first-child {border-right: solid 1px #fff;}
#introduction nav menu li:last-child {border-left: solid 1px #fff;}

@media (max-width: 767px) {
#introduction nav {
padding: 0px;
}
#introduction nav ul {
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-template-columns: repeat(3, 1fr);
}
#introduction nav menu li {
    padding: 10px 0px;
    font-size: 0.7rem;
}
}

/*============================================*/
/*レイアウト */
/*============================================*/
/* ===== BASE ===== */
:root {
  --mainclr:        #edae3c;
  --mainclr-light:  #fff8ee;
  --mainclr-mid:    #ffecca;
  --accent:       #e8a245;
  --accent-light: #fdf4e7;
  --text:         #333;
  --text-light:   #666;
  --border:       #dde8e2;
  --radius:       6px;
}

.mamapan {
  overflow: hidden;
  color: var(--text);
  background: #fff;
  font-size: 18px;
  line-height: 1.8;
}
.mamapan article {
  font-size: 1rem;
  line-height:2rem;
}
a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }
.article_frame {
  position: relative;
  display:block;
  margin: 0px auto;
  max-width:1200px;
  padding: 0px 24px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 50px;
}
.article_frame p{
  font-size: 16px;
/*  margin-bottom: 2%;*/
  line-height: 28px;
/*  text-align: left;*/
}
@media (max-width: 767px) {
.mamapan article {padding: 0px 5px;}
.article_frame {padding: 0px 5px;}
.article_frame p {margin-bottom: 6%;}
}
.grd_gp20 {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(auto-fit);
  justify-content: center;
}
/*均等2分割*/
.grd_col_2fr {
  grid-template-columns: repeat(2, 1fr);
}
/*均等4分割*/
.grd_col_4fr {
  grid-template-columns: repeat(4, 1fr);
}
/*均等5分割*/
.grd_col_5fr {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 767px) {
/*スマホ表示の際、分割せず縦並び*/
.grd_sp1fr {
grid-template-columns: 1fr;
grid-column-gap: 10px;
grid-row-gap: 10px;
}
/*スマホ表示の際、均等2分割横並び*/
.grd_sp2fr {
grid-template-columns: 1fr 1fr;
grid-column-gap: 10px;
grid-row-gap: 10px;
  }
}

/* ===== 画像と説明文（figure / 2分割） ===== */
/* 画像左 */
.explain_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 36px;
}
/* 画像右（reverseクラスで列順逆転） */
.explain_wrap.reverse { direction: rtl; }
.explain_wrap.reverse > * { direction: ltr; }

@media (max-width: 640px) {
  .explain_wrap,
  .explain_wrap.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.explain_wrap figure figcaption { margin-top: 6px; font-size: 12px; color: var(--text-light); }
.img_frame {border: 1px solid var(--mainclr); border-radius: 2%;}


/* ===== レシピ（手順説明） ===== */
.recipe_block {
  background: var(--mainclr-light);
  border: 1px solid var(--mainclr-mid);
  border-radius: 10px;
  padding: 24px;
  margin-top: 5%;
}
@media (max-width: 768px) {
  .recipe_block {
  padding: 15px;
}
}
.recipe_block > h4 {
  text-align: center;
  font-size: 20px;
  color: var(--mainclr);
  border-bottom: 2px solid var(--mainclr-mid);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.recipe_inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
@media (max-width: 580px) {
  .recipe_inner { grid-template-columns: 1fr; 
  gap: 20px;}
}

/* 手順リスト */
.recipe_steps {
  list-style: none;
  counter-reset: step;
}
.recipe_steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.recipe_steps li::before {
  counter-increment: step;
  content: counter(step);
  min-width: 28px;
  height: 28px;
  background: var(--mainclr);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.recipe_tip {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}
/* トッピングリスト */
.topping_frame{
  padding: 10px 4px 14px;
}

.topping_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.topping_list li {
  font-size: 14px;
  background: var(--mainclr);
  border: 1px solid var(--mainclr-mid);
  border-radius: 20px;
  padding: 6px 10px;
  color: var(--mainclr);
}

/* ===== 商品グリッド（均等3分割） ===== */
.product_grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .product_grid { grid-template-columns: repeat(2, 1fr); }
}
.product_grid li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  background: #fff;
}

/*.product_grid figure { line-height: 0; }*/

.product_img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.product_grid figcaption {
  padding: 10px 8px 14px;
}
.product_grid figcaption .brand { font-size: 10px; color: var(--text-light); margin-bottom: 6px; }
.product_grid figcaption .name  { font-size: 13px; font-weight: 700; margin-bottom: 10px; }


/* 背景 ============================================*/
.onlyitem-bg01 {
  background-color: #fffcec;
  padding: 50px 0;
  /* article_frame の幅制限を突き破って全幅表示 */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/*============================================*/
/*画像キャプション設定 */
/*============================================*/
figcaption{
  font-size: clamp(0.9rem, 0.727rem + 0.36vw, 1.2rem);
  margin: 10px 0px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5rem;
  color:#333;
}
figcaption span{
  font-size:clamp(0.7rem, 0.627rem + 0.36vw, 0.9rem);
}
figcaption strong{
  font-size:clamp(0.9rem, 0.927rem + 0.36vw, 1.2rem);
  font-weight:bold;
  display:inline-block;
  margin-bottom:20px;
}
figcaption p{
  font-size:clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  line-height: 1.8em;
}
@media (max-width: 767px) {
    figcaption{margin: 0px;}
}

/*============================================*/
/*見出し */
/*============================================*/

/* ===== h3〜h6 見出し ===== */
.article_frame h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--mainclr);
  margin-bottom: 30px;
  margin-top: 30px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.article_frame h3::before,
.article_frame h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--mainclr-mid);
  min-width: 20px;
}

/* aside内テンプレートh3は影響最小化 */
h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 4px;
  text-align: center;
}
.recipe_text h4{
  border-bottom: 2px dotted var(--mainclr-mid);
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-align: left;
}
.explain_wrap h4{
  border-bottom: 2px dotted var(--mainclr-mid);
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-align: left;
}

h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4%;
  margin-top: 2%;
  text-align: center;
}

/* ルビ */
rt {
  font-size: 0.6em;
  font-weight: bold;
  color: var(--mainclr);
}

/* ===== 3列カード ===== */
.trouble_cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
.trouble_cards { grid-template-columns: 1fr; }
}
.trouble_cards li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--mainclr-light);
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.trouble_cards li .tc_icon { font-size: 26px; line-height: 1; }

/*============================================*/
/*画像関係　他 */
/*============================================*/
.c-responsive-img {
display: inline-block;
height: auto;
max-width: 100%;
}
.recipe-hr {
  max-width: 165rem;
  height: 4px;
  margin: 10rem auto;
  border-top: 0;
  background: radial-gradient(farthest-side,#707070,#707070 2px,transparent 2px,transparent) repeat-x;
  background-size: 12px 4px
}
/*字間拡げる*/
.lt_sp{letter-spacing: 0.5rem;}
@media screen and (max-width: 767px) {
  .lt_sp{letter-spacing: 0.3rem;}
}


/* ===== ボタン関連 ===== */
a.btn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 28px;
  margin: 2% 0;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
a.btn:hover { opacity: 0.75; text-decoration: none; }
a.btn_maple    { background:#ac8f4a; color: #fff; border: 1px solid #ac8f4a; }
a.btn_fill    { background: #fff; color: var(--mainclr); border: 1px solid var(--mainclr); }
a.btn_fill:hover {background: var(--mainclr);color: #fff;}
a.btn_gn   { background: var(--mainclr); color: #fff; border: 1px solid var(--mainclr); }

.product_grid a.btn { min-width: 100px; padding: 8px 12px; font-size: 14px; }
.closing {
  background: linear-gradient(135deg,#fff0e0,#ffd380);
  padding: 56px 24px;
  text-align: center;
}
.closing p {
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #1a3d2a;
  font-weight: 500;
  text-align: center;
}

/*=============
ボタン　a.btn_04
=============*/
a.btn_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: var(--mainclr);
  border: 1px solid var(--mainclr);
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_04:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_04:hover {
  background: #fff;
  color: #23524f;
}
a.btn_04:hover:before {
  border-top: 2px solid #23524f;
  border-right: 2px solid #23524f;
}

@media screen and (max-width: 767px) {
  a.btn_04 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    position: relative;
    background: #dabfa3;
    border: 1px solid #dabfa3;
    box-sizing: border-box;
    padding: 0 25px 0 40px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    margin-bottom:20px;
  }
}

/*============================================*/
/*クリップボードで画像 */
/*============================================*/
/* コピーボタン */
.copy_btn {
  width:80%!important;
  padding: 4px 15px;
  margin-left:15px;
  margin-top: 30px;
  margin-bottom: 10px;
  color:#ffffff;
  font-weight:bold;
  background:#005a91;
  border: solid 2px #005a91;
  border-radius: 20px;
  transition: .4s;
  text-align: center;
}
 
.copy_btn:hover {
  background: #ffffff;
  color: #005a91;
}
.copy_btn:hover {
	cursor: pointer;
}

/*============================================*/
/* 全体ピンポイント設定 */
/*============================================*/
.text-bold{font-weight: bold;}
.img-circle {border-radius: 50%;}
/*角丸*/
.kadomaru {border-radius: 8px;}

/*============================================*/
/*下に空白 */
/*============================================*/
/* 100px */
.bottom_blank100 {margin-bottom: 100px;}
/* 80px */
.bottom_blank80 {margin-bottom: 80px;}
/* 50px */
.bottom_blank {margin-bottom: 50px;}
/* 30px */
.row_bottom{margin-bottom:30px;}
/* 20px */
.bottom_blank20{margin-bottom: 20px;}
/* 10px */
.bottom_blank10{margin-bottom: 10px;}
/* PC30px、スマホ10px */
.row_bottom30{margin-bottom:30px;}
/* PC80px、スマホ30px */
.row_bottom80{margin-bottom:80px;}
/* PCだけ30px */
.bottom_pcblank30{margin-bottom: 30px;}
@media screen and (max-width: 475px) {
/* PC30px、スマホ10px */
.row_bottom30{margin-bottom:10px;}
/* スマホだけ30px */
.row_bottom-30{margin-bottom:30px;}
/* PC80px、スマホ30px */
.row_bottom80{margin-bottom:30px;}
/* PCだけ30px */
.bottom_pcblank30{margin-bottom: 0px;}
}
/*下部の余白マージン（PCは広く、smpでは狭く）*/
/* PC50px、スマホ30px */
.margin_blank_responsiv50 {margin-bottom:50px;}
@media (max-width: 767px){
.margin_blank_responsiv50 {margin-bottom:30px;}
}
/* PC100px、スマホ50px */
.margin_blank_responsiv {margin-bottom:100px;}
@media (max-width: 767px){
.margin_blank_responsiv {margin-bottom:50px;}
}
/* PC150px、スマホ80px */
.margin_blank_responsiv150 {margin-bottom:150px;}
@media (max-width: 767px){
.margin_blank_responsiv150 {margin-bottom:80px;}
}
/*============================================*/
/*上に空白 */
/*============================================*/
/* 10px */
.top_blank10{margin-top: 10px;}
/* 30px */
.top_blank30{margin-top: 30px;}
/* 50px */
.top_blank50{margin-top: 50px;}
/* 80px */
.top_blank80{margin-top: 80px;}

/*============================================*/
/* PCスマホ表示 */
/*============================================*/
@media only screen and (max-width : 320px) {
.pc_h{display:none;}
.smp_h{display:inline;}
}
@media only screen and (min-width : 320px) {
.pc_h{display:none;}
.smp_h{display:inline;}
}
@media only screen and (min-width : 992px) {
.pc_h{display:inline;}
.smp_h{display:none;}
}
@media only screen and (min-width : 1200px) {
.pc_h{display:inline;}
.smp_h{display:none;}
}
/*============================================*/
/*SNS */
/*============================================*/
.excursion_sns {background-color: #f1f1f1;}
.sns_wrap {
  max-width: 1200px;
  margin:0 auto;
}
.sns_frame {
  width:60%;
  /* max-width:1200px;*/
  margin:0 auto; 
  text-align: center;
  grid-template-columns: 4fr 3fr 3fr 3fr;
  padding: 70px 0;
}
.sns_frame li:first-child {
  text-align: left;
  height:-webkit-min-content;
  height:-moz-min-content;
  height:min-content;
  border-right: solid 1px #333;
}
.sns_frame img {width:40%;}
.sns_frame h5 {
  font-family: serif;
  font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
  font-weight: bold;
  margin: 20px 0px;
  text-align: center;
}
.sns_frame h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  margin-bottom: 5px;
  line-height:1.1rem
}
.sns_frame p{
  font-size: 0.75rem;
  text-align:left;
  line-height:1rem;
}
.sns_frame a {color:#333;}
@media screen and (max-width: 767px) {
.sns_frame {
  width:70%;
  height:-webkit-min-content;
  height:-moz-min-content;
  height:min-content;
}
.sns_frame img {width:70%;}
.sns_frame h5{margin:8px;}
.sns_frame h6, .sns_frame p {
  display:none;
  height:0;
}
}
