@charset "utf-8";

/*----------------------introduction----------------------*/

#introduction {
  background-color: rgba(255, 255, 255, 0.4);
  position:relative;
  text-align: center;
}

h1#top_title {
  display:none;
}

#introduction picture {
  display:block;
  margin:0 auto 40px auto;
}

h2#lead_text {
  font-size:clamp(1.3rem, 0.9rem + 2vw, 2.4rem);
  font-weight: bold;
  margin-bottom:30px;
  line-height:2.6rem;
  color:#333;
}

#introduction p {
  font-size:clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  padding-bottom:50px;
  color:#333;
  font-weight: 600;
}

#introduction nav {
  padding: 0 0 80px 0;
  max-width:1200px;
  margin:0 auto;
}

#introduction nav menu {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: column;
  grid-template-columns: repeat(4, 1fr); 
}

#introduction nav menu li {
  background: url('img/h3_bg.gif') repeat center / 200%;
  box-shadow: 2px 2px 3px #506f44;
  text-align: center;
  border-radius: 5px;
  padding:15px 5px;
}

#introduction nav menu li a {
  color:#fff;
  text-shadow: 1px 2px #333;
  font-size:clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

#introduction nav menu li:hover {
  transform:translateY(5px);
}

.text_animation {
  font-family: 'YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4vw;
  font-weight: 700;
  height:-webkit-max-content;
  height:-moz-max-content;
  height:max-content;
  margin:80px 0;
}

.text_animation.is-active {
  --opacity: 1;
}

.char {
  display: inline-block;
  opacity: var(--opacity, 0);
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}


@media (max-width: 767px) {
  #introduction nav{
  padding: 0 10px 80px 10px;
  }
  #introduction nav menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(2, 1fr); 
  }
  #introduction nav menu li {
    background-size: 300%;
  }
  .text_animation {
    font-size:20vw;
    margin:50px 0;
  }
}

/*----------------------layout----------------------*/

.mamapan {
  overflow: hidden;
  color:#333;
  background: url('img/tea_bg2.webp'),
              linear-gradient(to top, #c9cd9b 0%, #899a4d 35%, #506f44 65%, #77983d 100%);
  background-size: 30%;
  background-repeat: repeat;
  background-blend-mode: screen;          
}

@media (max-width: 767px) {
  .mamapan {
    background-size:80%;
  }
}

.mamapan article {   
  font-size:clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  line-height:2.2rem;
  letter-spacing: 0.05rem;
  
}

.article_frame {
  background-color: #fef7ec;
  display:block;
  margin:0 auto;
  max-width:1240px;
  padding: 0 20px 100px 20px;
  overflow: hidden;
}

#about, #recipe, #howto, #item {
  padding-top:50px;
}

.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);  
}
.grd_col_2fr_r {
  grid-template-columns: repeat(2, 1fr);  
  grid-template-areas:
  "areaA areaB";
}
/*均等3分割*/
.grd_col_3fr {
  grid-template-columns: repeat(3, 1fr); 
}
/*均等4分割*/
.grd_col_4fr {
  grid-template-columns: repeat(4, 1fr);  
}
/*均等5分割*/
.grd_col_5fr {
  grid-template-columns: repeat(5, 1fr);  
}

.grd_itm1 {
  grid-area:areaA;
}
.grd_itm2 {
  grid-area:areaB;
}

.blankb30 {
  margin-bottom:30px;
}

.blankb50 {
  margin-bottom:50px;
}

.blankb80 {
  margin-bottom:80px;
}

.blankb100 {
  margin-bottom:100px;
}

@media (max-width: 767px) {
  .article_frame{
      padding: 0 10px 80px 10px;
    }
  /*スマホ表示の際、分割せず縦並び*/
  .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;
  }
  .grd_col_2fr_r {
    grid-template-areas:
    "areaB"
    "areaA";
    }
  .blankb {
    margin-bottom: 10px;
  }
}

/*----------------------heading + text----------------------*/

.main_heading {
  margin-bottom:50px;
  text-align: center;
  font-size:clamp(1.8rem, 1.945rem + -0.73vw, 1.4rem);
  font-weight:bold;
  padding: 1.8rem 0 1.5rem 0;
  background: url('img/h3_bg.gif') no-repeat center / cover;
  color:#fef7ec;
  text-shadow: 2px 2px 2px #333;
  position: relative;
  line-height:2.2rem;
}

h3.main_heading::before,
h3.main_heading::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fef7ec;
}

h3.main_heading::before {
  left: -25px;
  bottom: -25px;
  border-right: 1px solid #77983d;
  transform: rotate(-45deg);
}

h3.main_heading::after {
  right: -25px;
  top: -25px;
  border-left: 1px solid #77983d;
  transform: rotate(-45deg);
}

h3.main_heading span, h4.sub_heading span {
  font-family: 'YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

h3.main_heading span {
  font-weight:500;
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
}

h4.sub_heading {
  margin-bottom:30px;
  text-align: center;
  font-size:clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
  font-weight:bold;
}

h4.sub_heading span {
  font-size:clamp(0.9rem, 0.827rem + 0.36vw, 1.1rem);
  color:#77983d;
}

h5.sub_sub_heading {
  font-size:clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  margin-bottom:30px;
  font-weight:bold;
  line-height:2rem;
}

mark {
  background: linear-gradient(transparent 60%, #a6ce80 0%);
}

figcaption {
  font-size: clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
  margin-top:5px;
  line-height: 1.5rem;
  color:#333;
}

figcaption span {
  font-size:clamp(0.7rem, 0.627rem + 0.36vw, 0.9rem);
  padding:3px 6px;
  margin-right:5px;
  border:1px solid #333;
}

figcaption strong {
  font-size:clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-weight:bold;
  line-height:2rem;
  display:inline-block;
  margin-bottom:30px;
}

figcaption p {
  font-size:clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  margin-bottom: 30px;
  line-height: 2rem;
}

.text_center {
  text-align: center;
}

.mamapan a {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  h1#top_title, h2#lead_text, h3.main_heading, h4.sub_heading, h5.sub_sub_heading, .mamapan p{
    width: auto;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}


/* video
===================
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
*/

/* PCスマホ振り分け
===================*/

@media only screen and (min-width : 320px) {
  .pc_h {
    display: none;
  }

  .smp_h {
    display: inline;
  }
}

@media only screen and (min-width : 768px) {
  .pc_h {
    display: inline;
  }

  .smp_h {
    display: none;
  }
}

@media only screen and (min-width : 1200px) {
  .pc_h {
    display: inline;
  }

  .smp_h {
    display: none;
  }
}


/* 表
===================*/

table.table_material01 thead th {
  background: #f1f1f1;
  padding: 10px 15px;
  vertical-align: middle;
  font-weight:bold;
}

table.table_material01 tbody td {
  background: #ffffff;
  padding: 10px 15px;
  border-bottom: #ababab dashed 1px;
  vertical-align: middle;
}

.table_material01 a{
  text-decoration: underline;
}

/* 注意書き
===================*/

.guideline_ex {
  padding:0;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  max-width: 99%;
	margin-left: 5px;
}

.guideline_ex .box-title {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  background: #f1f1f1;
  padding: 4px;
  text-align: center;
  color: #595655;
  font-weight: 500;
}

.guideline_ex p {
  padding: 5px 20px;
  margin: 0;
  font-size: 1rem;
}

.guideline_ex strong {
  font-weight:bold;
}

.guideline_ex ul {
  list-style: disc;
  list-style-position: inside;
  font-size: 1rem;
  margin:0 25px;
  padding-bottom:15px;
  line-height:1.7rem;
}

.guideline_ex ul li {
  padding-left: 1em;
  text-indent: -1em;
}


/*ボタン等============================================*/

.btn_basic {
  font-size: clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
  padding: 1rem 2rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  border-radius: 0.5rem;
  border: 1px solid #333;
  margin-bottom:20px;
  width:100%;
}

.btn_basic:hover {
  transform:translateY(5px);
}


/*============================================*/
/*SNS */
/*============================================*/

.excursion_sns{
  background-color: #f1f1f1;
}

.sns_wrap {
  max-width: 1200px;
  margin:0 auto;
}

.sns_frame {
  width:60%;
  margin:0 auto; 
  text-align: center;
  grid-template-columns: 4fr 3fr 3fr 3fr;
  padding: 70px 0;
}

.sns_frame div: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;
  }
}
