@charset "utf-8";
/* CSS Document */
/* レスポンシブル設定は768px～ 1em = 16px*/

h1{font-size: 2rem;}
h2{text-align: center;}
h2 img{margin: auto; }
h3{text-align: center;}
h3 img{margin: auto;}

@media screen and (max-width: 1100px) {
	h2 img{width: 100%; height: auto;}
}
@media screen and (max-width: 870px) {
	h3 img{width: 100%; height: auto;}
}


/* つくり方提案PR動画 一覧 */
.page_title{}
.page_title{background: #333333; width: 100%; padding: 1.5em 0;}
.page_title h1{color: #FFF; font-size: 2rem; font-weight: 700; line-height: 1.4em; text-align: left;
max-width: 1200px; width:calc(100% - 40px); margin: auto; }
.page_title h1 small{display: block; font-size: 16px; line-height: 1; padding-top: 16px;}

.prmovie_lst{width: 100%; display: flex; flex-wrap: wrap; justify-content:space-between;}
.prmovie_lst li{width: calc(100% / 3 - 10px); position: relative; background: #ccc; margin-bottom: 30px;}



/* 動画リスト */


section#top_section_02 ul {
  display: flex;
  flex-wrap: wrap; /* 子要素が折り返しを行うようにする */
  gap: 10px; /* 各ボックスの間隔 */
  width: 100%;
  margin: auto auto 50px;
  padding: 0;
  list-style: none;
  align-items: stretch; /* 各アイテムの高さを揃える */
}

section#top_section_02 ul li {
  flex: 1 1 calc(33.333% - 10px); /* 3列に分け、間隔を考慮 */
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column; /* 内部の要素を縦に並べる */
  justify-content: space-between; /* 内容の間にスペースを均等に配置 */
  border-radius: 10px;
}

section#top_section_02 ul li .youtube:hover{cursor: pointer;}

section#top_section_02 ul li.green {
  background: #2bb9ba;
}

section#top_section_02 ul li.orange {
  background: #f18e26;
}

section#top_section_02 ul li.blue {
  background: #68c2ee;
}

section#top_section_02 ul li p {
  text-align: left;
  line-height: 120%;
}

section#top_section_02 ul li p span {
  display: block;
  font-size: 2em;
  margin: 20px auto 10px;
}

section#top_section_02 ul li h3,
section#top_section_02 ul li h3::after {
	  border: none;
	  padding: 0;
	font-size: 1.4rem;
	margin: auto auto 10px;
}

section#top_section_02 ul li p+h3 {
  text-align: left;
  font-size: 1.125rem;
  margin-bottom: 0px;
}

section#top_section_02 ul li p+h3 img {
  width: 16px;
  height: auto;
  margin-left: 10px;
}

section#top_section_02 ul li h3 img {
  width: 16px;
  height: auto;
  margin-left: 10px;
}

section#top_section_02 ul li p+h3+p {
  text-align: left;
  font-size: 0.6em;
  height: 3em;
}

section#top_section_02 ul.hush {
  display: flex;
  width: 100%;
  height: 3em;
  justify-content: center !important;
  align-content: center;
  margin: 0 auto 40px;
}

section#top_section_02 ul.hush li {
  width: auto;
  border-radius: 0px;
  margin: 0;
  padding: 0;
  flex: none;
  font-size: 1.35rem;
}

section#top_section_02 ul.hush li a {
  background: #FFF;
  padding: 4px 5px 6px;
  font-size: 0.7em;
	line-height: 100%;
  pointer-events: none;
  text-decoration: none;
  color: #000;
}

section#top_section_02 ul.hush li a i {
  font-style: normal;
  color: aqua;
  margin-right: 4px;
}

section#top_section_02 ul li .point {
  flex-grow: 1; /* .point の高さを残りのスペースで埋める */
  padding: 20px 10px;
  border: 5px solid #FF0000;
  border-radius: 14px;
  position: relative;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 上に寄せて表示 */
}

section#top_section_02 ul li .point h4 {
  position: absolute;
  top: -25px;
  left: 10px;
  background: #FF0000;
  color: #FFF;
  border-radius: 16px;
  font-size: 0.7em;
  font-weight: normal;
  padding: 0px 10px;
}

section#top_section_02 ul li .point h4 b {
  font-size: 1.6em;
  font-weight: bold;
  position: relative;
}

section#top_section_02 ul li .point h4 b:before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 20px;
  margin-left: -15px;
  z-index: 0;
  border: 10px solid #FF0000;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

section#top_section_02 ul li .point p {
  font-size: 1.0em;
	font-weight: 700;
  margin: 4px auto 0!important;
}

@media screen and (max-width: 1100px) {
  section#top_section_02 ul.hush {
    height: 5em;
  }
}

@media screen and (max-width: 1000px) {
  section#top_section_02 ul li p+h3 {
    height: 2em;
  }

  section#top_section_02 ul li .point {
    height: 5em;
  }
}

@media screen and (max-width: 850px) {
  section#top_section_02 ul li {
    width: calc(50% - 60px);
  }

  section#top_section_02 ul li p+h3 {
    height: 1em;
  }

  section#top_section_02 ul li .point {
    height: 4em;
  }
}

@media screen and (max-width: 800px) {
  section#top_section_02 ul {
    width: 100%;
    margin-left: 3px;
  }
}

@media screen and (max-width: 650px) {
  section#top_section_02 ul {
    margin: auto;
  }

  section#top_section_02 ul.hush {
    height: auto;
    margin-bottom: 35px;
  }

  section#top_section_02 ul li {
    width: calc(100% - 70px);
    margin: auto auto 20px;
  }

  section#top_section_02 ul li p+h3 {
    height: auto;
  }

  section#top_section_02 ul li p+h3+p {
    text-align: left;
    font-size: 0.6em;
    height: auto;
  }

  section#top_section_02 ul li .point {
    height: auto;
  }
}

@media screen and (max-width: 450px) {
  section#top_section_02 ul {
    margin: auto;
  }

  section#top_section_02 ul li {
    width: 100%;
    margin: auto auto 20px;
  }
}


@media (max-width: 768px) {
  section#top_section_02 ul {
    display: block;
  }
  section#top_section_02 ul li h3 {
    margin-bottom: 8px;
  }
}



