@charset "utf-8";
/* CSS Document */

/* title_img */
.title_img {
  width: 100%;
  height: auto;
}
.title_img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 639px){
  .title_img {
    padding-right: 5%;
    padding-left: 5%;
  }
}

/* poster_img */
.poster_img {
  background-color: #fff;
  width: 100%;
}
.poster_img p {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.poster_img p img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 639px){
  .poster_img {
    padding-right: 5%;
    padding-left: 5%;
  }
}


/* lead */
.lead {
  max-width:900px;
  width: 94%;
  margin: 30px auto 0;
}
.lead p {
  padding-top: 20px;
}


/* リスト */
.area_item {
  width: 96%;
  margin: 80px auto 0;
}
.area_item_tit {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    padding: 10px 20px 20px;
    text-align: center;
}
.area_item:nth-child(odd) .area_item_tit {
    margin-right: 0;
    margin-left: auto;
}
.area_item_tit:before {
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFC000;
    transform: skewY(-2deg) translateY(-10px);
}
  .area_item:nth-child(odd) .area_item_tit:before {
    transform: skewY(2deg) translateY(-10px);
  }
.area_item_tit:after {
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFC000;
    height: 50%;
}
.area_item_tit span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.8rem;
}

.area_item_content {
  display: flex;
  flex-wrap: wrap;
}
  .area_item:nth-child(odd) .area_item_content {
    flex-direction: row-reverse;
  }
.area_item_content .item_img {
  width: 40%;
  margin-top: -30px;
}
  .area_item_content .item_img img {
    width: 100%;
    height: auto;
  }
.area_item_content .item_txt {
  position: relative;
  width: 60%;
}
.area_item_content .item_txt .balloon-left {
  position: absolute;
  left: -30px;
  width: 100%;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
}
.area_item_content .item_txt .balloon-right {
  position: absolute;
  right: -30px;
  top: -50px;
  width: 100%;
  text-align: right;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  z-index:2;
}
.balloon-left p {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  width: 60%;
  padding: 40px;
  font-size: 1.6rem;
  background: #C1E5F5;
  border-radius: 100vh;
}
.balloon-left p:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 30px solid #C1E5F5;
  z-index: 0;
}
.balloon-right p {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  width: 60%;
  padding: 40px;
  font-size: 1.6rem;
  background: #61CBF4;
  border-radius: 100vh;
  text-align: left;
}
.balloon-right p:before {
  content: "";
  position: absolute;
  top: 45%;
  right: -40px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 30px solid #61CBF4;
  z-index: 0;
}
.balloon_cmn {
  position:absolute;
  border-radius: 100vh;
  width: 50%;
  padding: 50px 30px;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  z-index:1;
}
.area_item:nth-child(even) .balloon_cmn {
  background-color: #61CBF4;
  top: 25%;
  right: 0;
}
.area_item:nth-child(odd) .balloon_cmn {
  background-color: #C1E5F5;
  top: 25%;
  width: 52%;
}
.balloon-left2 p,
.balloon-right2 p {
  position: relative;
}
.balloon-left2 p:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -68px;
  margin-top: -20px;
  border: 15px solid transparent;
  border-right: 30px solid #61CBF4;
  z-index: 0;
  rotate: 18deg;
}
.balloon-right2 p:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -68px;
  margin-top: -10px;
  border: 15px solid transparent;
  border-left: 30px solid #C1E5F5;
  z-index: 0;
  rotate: -12deg;
}

.related_link {
  position: relative;
  margin-top: 60px;
}
.related_link dt {
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  border-radius: 100vh;
  background-color: #4C93D2;
  padding: 4px 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.related_link dd ul {
  border-radius: 10px;
  background-color: #DCEEFC;
  padding: 40px 30px 30px;
  font-size: 1.6rem;
}
.related_link dd ul li {
  margin-bottom: 10px;
  margin-left: 30px;
}
  .related_link dd ul li:last-child {
    margin-bottom: 0px;
  }
.related_link dd ul li:before {
  display: inline-block;
  width: 30px;
  margin-left: -30px;
}
.related_link dd ul li.icon_news:before {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 900;
  padding-left: 3px;
  color: #09f;
}
.related_link dd ul li.icon_youtube:before {
  font-family: "Font Awesome 5 Brands";
  content: "\f167";
  font-weight: 900;
  color: #ff0000;
}
.related_link dd ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 639px) {
  .area_item {
    margin-top: 50px;
  }
  .area_item_content .item_img {
    width: 100%;
    margin-top: -30px;
  }
  .area_item_content .item_txt {
    position: initial;
    width:　100%;
  }
  .area_item_content .item_txt .balloon-left {
    position: initial;
    margin-top: -30px;
  }
  .area_item_content .item_txt .balloon-right {
    position: initial;
    margin-top: -30px;
  }
  .balloon-left p {
    width: 80%;
  }
  .balloon-left p:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 30px solid #C1E5F5;
    z-index: 0;
  }
  .balloon-right p {
    width: 80%;
  }
  .balloon-right p:before {
    content: "";
    position: absolute;
    top: -25px;
    right: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 30px solid #61CBF4;
    z-index: 0;
  }
  .balloon-left2 p:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 45%;
    margin-top: -40px;
    border: 15px solid transparent;
    border-bottom: 30px solid #61CBF4;
    z-index: 0;
    rotate: -18deg;
  }
  .balloon-right2 p:before {
    content: "";
    position: absolute;
    top: -58px;
    right: 45%;
    margin-top: -10px;
    border: 15px solid transparent;
    border-bottom: 30px solid #C1E5F5;
    z-index: 0;
    rotate: 12deg;
  }
  .balloon_cmn {
    position:initial;
    width: 80%;
    margin-top: -20px;
    padding: 30px 30px;
  }
  .area_item:nth-child(even) .balloon_cmn {
    margin-right: 0;
    margin-left: auto;
    width: 80%;
  }
  .area_item:nth-child(odd) .balloon_cmn {
    margin-right: auto;
    margin-left: 0;
    width: 80%;
  }
  .related_link {
    position: initial;
    margin-top: 20px;
  }
  .related_link dt {
    position: initial;
    border-radius: 10px 10px 0 0;
  }
  .related_link dd ul {
    border-radius: 0 0 10px 10px;
    padding: 20px;
  }
}

/* 資料請求 */
.commentary {
  background: #fff;
  padding: 2% 3%;
  border-radius: 20px;
  margin-top: 5%;
	margin-right: 5%;
  margin-bottom: 5%;
	margin-left: 5%;
  border:#adebbf solid 10px;
}
.commentary .commentary_tit {
    color:#07a834;
    font-weight: bold;
    margin-bottom: 3.5%;
    display: block;
    font-size: 1.8rem;
    border-bottom: #2cda5d solid 1px;
    padding-bottom: 2%;
}
.commentary_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.commentary_inner .commentary_img {
  width: 270px;
}
  .commentary_inner .commentary_img img {
    width: 100%;
    height: auto;
  }
.commentary_inner .commentary_txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - (270px + 3%));
}


@media screen and (max-width: 639px) {
  .commentary_inner .commentary_img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .commentary_inner .commentary_txt {
    width: 100%;
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .area_item_content .item_txt {
    width: 100%;
  }
}

/* bn_area */
.bn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 5%;
}
  .bn_area a {
    display: block;
  }
.bn_area .btn_info {
  width: calc((100% - 40px) / 5);
  text-align: left;
}
@media screen and (max-width: 639px){
  .bn_area .btn_info {
    width: calc((100% - 10px) / 2);
  }
}
