@charset "UTF-8";
/*--ふくおかBizのページで使用されているメディアクエリのまとめです。scssで利用してください。cssでは使えません！！
@mixin pc_screen_under {
  @media screen and (max-width: 1230px){
    @content;
  }
}
@mixin pc_middle_under {
  @media screen and (max-width: 1200px){
    @content;
  }
}
@mixin pc_to_tablet {
  @media screen and (min-width: 768px) and (max-width: 1199px){
    @content;
  }
}
@mixin tablet_over {
  @media screen and (min-width: 768px){
    @content;
  }
}
@mixin tablet_under {
  @media screen and (max-width: 768px){
    @content;
  }
}
@mixin tablet_to_sp {
  @media screen and (min-width: 599px) and (max-width: 767px) {
    @content;
  }
}
@mixin sp_under {
  @media screen and (max-width: 599px){
    @content;
  }
}


呼び出し方（tablet_underのメディアクエリを呼び出す場合）
@include tablet_under(){
これだけ！この中にcssかいてください
}
-----------------------------------------------------*/
.pc_hide {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_hide {
    display: inline-block;
  }
}

.sp_hide {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sp_hide {
    display: none;
  }
}

.child_rearing_book {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .child_rearing_book {
    margin: 23vw auto 0 auto;
    padding: 1rem;
  }
}
.child_rearing_book h1 {
  text-align: center;
}
.child_rearing_book h2 {
  position: relative;
  border-bottom: 1px solid #000;
  font-size: 3rem;
  font-weight: 900;
  padding: 0 15px;
}
.child_rearing_book h2::before {
  position: absolute;
  content: "";
  background-color: #F092AE;
  width: 5px;
  height: 30px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.child_rearing_book .con_box_L, .child_rearing_book .con_box_R {
  width: 100%;
  height: 220px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-bottom: 1px dashed #000;
}
.child_rearing_book .con_box_L:last-of-type, .child_rearing_book .con_box_R:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .con_box_L, .child_rearing_book .con_box_R {
    display: block;
    height: auto;
  }
}
.child_rearing_book .con_box_L .tokusyu_box, .child_rearing_book .con_box_R .tokusyu_box {
  padding: 3rem;
}
.child_rearing_book .con_box_L .tokusyu_box h3, .child_rearing_book .con_box_R .tokusyu_box h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #F092AE;
}
.child_rearing_book .con_box_L .tokusyu_box ul li, .child_rearing_book .con_box_R .tokusyu_box ul li {
  font-size: 1.3em;
}
.child_rearing_book .con_box_L img, .child_rearing_book .con_box_R img {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .con_box_L img, .child_rearing_book .con_box_R img {
    height: 69vw;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0 14%;
       object-position: 0 14%;
  }
}
.child_rearing_book .kikaku_con {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.child_rearing_book .kikaku_con .kikaku_box {
  margin: 1em 20px;
  width: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .child_rearing_book .kikaku_con .kikaku_box {
    width: 100%;
  }
}
.child_rearing_book .kikaku_con .kikaku_box h3 {
  position: relative;
  padding: 10px 10px 10px 88px;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  background-color: #F092AE;
  border-radius: 15px;
}
.child_rearing_book .kikaku_con .kikaku_box h3 span {
  position: absolute;
  padding: 10px;
  font-size: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  color: #F092AE;
  background-color: #fff;
  border-radius: 50px;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.child_rearing_book .kikaku_con .kikaku_box p {
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  .child_rearing_book .tbl_ovf {
    overflow-x: scroll;
  }
}
.child_rearing_book .tbl_bdr_p {
  width: 1200px;
  margin: 20px auto;
  border-top: 1px solid rgb(153, 153, 153);
  border-left: 1px solid rgb(153, 153, 153);
}
.child_rearing_book .tbl_bdr_p th {
  color: #fff;
  background-color: #F092AE;
  border-right: 1px solid rgb(153, 153, 153);
  border-bottom: 1px solid rgb(153, 153, 153);
  font-weight: bold;
  padding: 0.6em 0.5em;
  text-align: center;
}
.child_rearing_book .tbl_bdr_p td {
  border-right: 1px solid rgb(153, 153, 153);
  border-bottom: 1px solid rgb(153, 153, 153);
  padding: 0.6em 0.5em;
}
.child_rearing_book .web_con {
  text-align: center;
}
.child_rearing_book .web_con .web_top {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .web_con .web_top {
    flex-wrap: wrap;
  }
}
.child_rearing_book .web_con .web_top p {
  margin: 10px;
  width: calc(40% - 20px);
}
@media screen and (max-width: 768px) {
  .child_rearing_book .web_con .web_top p {
    width: 100%;
  }
}
.child_rearing_book .web_con .web_top p img {
  width: 80%;
  padding: 10px;
}
.child_rearing_book .web_main {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .web_main {
    flex-wrap: wrap;
  }
}
.child_rearing_book .web_main .main_con {
  margin: 10px;
  width: calc(25% - 20px);
}
@media screen and (max-width: 768px) {
  .child_rearing_book .web_main .main_con {
    width: 100%;
    margin-bottom: 50px;
  }
}
.child_rearing_book .web_main .main_con img {
  border: 1px solid rgb(255, 0, 0);
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.child_rearing_book .web_main .main_con p {
  height: 100px;
  padding: 15px;
  display: inline-block;
  text-align: left;
  position: relative;
}
.child_rearing_book .web_main .main_con p .top_number {
  position: absolute;
  padding: 10px;
  line-height: 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background-color: #F092AE;
  border-radius: 50px;
  top: -20px;
  left: 0;
}
.child_rearing_book .web_main .main_con p .back_image {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -33px;
  right: 0;
}
.child_rearing_book .web_main .main_con p .back_image img {
  width: 100%;
  height: auto;
  border: none;
}
.child_rearing_book .sns_con {
  display: flex;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .sns_con {
    flex-wrap: wrap;
  }
}
.child_rearing_book .sns_con figure {
  margin: 10px;
  width: calc(33% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .sns_con figure {
    width: 100%;
  }
}
.child_rearing_book .sns_con figure p {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .sns_con figure p {
    width: 60%;
    overflow-wrap: break-word;
  }
}
.child_rearing_book .sns_con figure a {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .child_rearing_book .sns_con figure a {
    width: 25%;
  }
}
.child_rearing_book .schedule_com h3 {
  font-size: 2rem;
  font-weight: 900;
}

.kr_contact_con {
  padding: 9em 9em 0;
}
@media screen and (max-width: 599px) {
  .kr_contact_con {
    padding: 9em 0em 0;
  }
}
.kr_contact_con .kr_contact_ttl {
  margin-bottom: 1em;
  font-size: 28px;
  font-family: Verdana, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #232323;
  text-align: center;
}
.kr_contact_con .kr_contact_box label,
.kr_contact_con .kr_contact_box .wpcf7-form-control-wrap {
  display: block;
}
.kr_contact_con .kr_contact_box label input {
  width: 100%;
}
.kr_contact_con .kr_contact_box input[type=submit] {
  display: block;
  margin: 0 auto;
  background: #01bea2;
}/*# sourceMappingURL=child_rearing_book.css.map */