@charset "utf-8";

/*============================================*/
/*看板周辺 */
/*============================================*/

.l-body{
  margin-top:0;
}

section{
  padding-top:30px;
}

hgroup{
  text-align: center;
  margin:0 auto;
}
h1#top_title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.8rem, 1.364rem + 2.18vw, 3rem);
  font-weight: 700;
  color:#546569;
}

h1#top_title span.feature{
  font-size: clamp(2rem, 1.891rem + 0.55vw, 2.3rem);
  display:block;
  padding-bottom:50px;
  margin-bottom:30px;
  border-bottom:solid 1px #333;
}

h1#top_title span.thema{
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  display:block;
  padding-bottom:50px;
  margin-bottom:30px;
  border-bottom:solid 1px #333;
}

h2#mid_title{
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight:500;
  position: relative;
  padding:30px 0;
  color:#546569;
}

h2#mid_title::before{
  position: absolute;
  content: attr(data-en);
  top:-3%;
  left:50%;
  transform: translateX(-50%);
  color:#ae585f;
}

h3#lead_text{
  text-align: center;
  font-size:clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  padding:0 10px 50px 10px;
}

section#introduction{
  padding-top:0;
}

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

#introduction p {
  text-align: center;
  font-size:clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
  padding-bottom: 60px;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#introduction nav {
  padding: 0 0 80px 0;
  max-width:1160px;
  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-color:#546569;
  text-align: center;
  padding:15px 5px;
  border-radius: 5px;  
}

#introduction nav menu li a {
  color:#fff;
  font-size: clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
  font-weight:600;
}


@media (max-width: 767px) {
  h2#mid_title{
    padding:60px 0;
  }

  #introduction nav {
  padding: 0 10px 80px 10px;
  }
  
  #introduction nav menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(2, 1fr); 
  }
  .c-header-tertiary{
    position:relative;
    margin-top:74px;
  }
}

#link_01, #link_02, #link_03, #link_04{
  padding-top:50px;
}

/*============================================*/
/*レイアウト */
/*============================================*/

.mamapan {
  overflow: hidden;   
}

.c-breadcrumbs{
  background-color: #fff;
}

.article_frame {
  display:block;
  margin:0 auto;
  max-width:1200px;
  padding: 0 20px 100px 20px;
  overflow: hidden;
}

section.bgcolor{
  background-color: #e0dcd3;
}

.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);  
}

/*3：2分割*/
.grd_col_3_2 {
    grid-template-columns: 3fr 2fr;
}

.grd_col_2_3 {
    grid-template-columns: 2fr 3fr;
}

.grd_col_1_3 {
    grid-template-columns: 1fr 3fr;
}

/*均等2分割 写真が右*/
.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;
}

.blankb {
  margin-bottom: 20px;
}

.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;
  } 
}

/*============================================*/
/*見出しその他 */
/*============================================*/

h4.section_title {
  font-family: "Shippori Mincho", serif;
  margin-bottom:30px;
  font-size: clamp(1.5rem, 1.245rem + 1.27vw, 2.2rem);
  font-weight:600;
}

h4.section_title span{
  font-size: clamp(0.9rem, 0.755rem + 0.73vw, 1.3rem);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-left: 20px;
  border-left: solid 1px #333;
  padding-left: 20px;
}

h5.regenerative{
  font-size:clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
  font-weight: bold;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-bottom:30px;
  color:#546569;
  border-left: 4px solid #546569;
  padding-left:1rem;
}

.mamapan p {
  font-size: clamp(0.9rem, 0.827rem + 0.36vw, 1.1rem);
  font-weight: 500;
  line-height: 1.8rem;
  color:#333;
}

hgroup.ttl_lecture{
  position: relative;
  margin-bottom:50px;
}

hgroup.ttl_lecture picture{
  z-index: 0;
}

.ttl_lecture h5{
  position: absolute;
  top:30%;
  left:50%;
  transform: translateX(-50%);
  color:#fff;
  font-size: clamp(1.2rem, 0.182rem + 5.09vw, 4rem);
  font-family: "Shippori Mincho", serif;
  font-weight:600;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  z-index: 1;
  margin:0;
}

.ttl_lecture h5 span{
  font-size: clamp(1.2rem, 0.909rem + 1.45vw, 2rem);
}

.mamapan figure img{
  margin-bottom: 10px;
}

.mamapan figcaption p{
  font-size: clamp(0.9rem, 0.827rem + 0.36vw, 1.1rem);
  margin-top:5px;
  line-height: 1.8rem;
}

.mamapan figcaption h5{
  font-family: "Shippori Mincho", serif;
  margin-bottom:10px;
  font-size: clamp(1.5rem, 1.245rem + 1.27vw, 2.2rem);
  font-weight:600;
  position: relative;
  padding-bottom:50px;
}

.mamapan figcaption h5::after{
  position: absolute;
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  content:attr(data-en);
  top:50%;
  left:0%;
}

.mamapan figcaption address{
  font-size:clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
  margin-bottom:5px;
}

.mamapan figcaption address.insta{
  background: url("../report_thinksoil/img/insta_logo.svg") no-repeat;
  padding-left: 5%;
  background-size: 4%;
}

.mamapan figcaption h6{
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-weight:600;
}

.text_center{
  text-align: center;
}

.mamapan a{
  cursor: pointer;
  color:#ae585f;
}


mark{
  display:block;
  padding:5px;
  color:#fff;
  margin-bottom:10px;
}

mark.gray{
  background-color: #546569;
}

mark.red{
  background-color: #b50100;
}

hr.separator{
  border: 0;
  height: 1rem;
  margin: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

hr.separator::before{
  content: attr(data-symbol);
  font-size: 1rem;
  letter-spacing: .5rem;
  opacity: .75;
}

.mamapan dl{
  font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
  position:relative;
}

.mamapan strong{
  font-size: clamp(1.2rem, 0.909rem + 1.45vw, 2rem);
  font-weight: 600;
  line-height:2.8rem;
  font-family: "Shippori Mincho", serif;
}

.mamapan dt.question{  
  font-weight: 600;
  margin-bottom:10px
}

.mamapan dt.question::before{
  content:'< ' attr(data-en) ' >';
  display:inline-block;
  padding-right:0.25rem;
  color:#888;
  font-size: 0.8rem;
}

.mamapan dd.answer{
  margin-bottom:30px;
}

.mamapan dd.answer p{
  font-size:clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
}


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

  h4.section_title {
    margin-bottom:10px;
  }
 
}

/*============================================*/
/*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;
  }
}

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

.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: #fff;
  border-radius: 0.5rem;
  background-color: #333;
  border: 1px solid #333;
  margin-bottom:80px;
  width:100%;
}

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

a.btn_basic:hover {
  color:#fff;
}

/*============================================*/
/*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 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: 20px;
  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;
  }
}
