/* -------------------------------------------------------------- 全体 */
html{
    scroll-behavior: smooth;
}
body{
    color: #000;
    line-height: 1.5;
    box-sizing: border-box;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
img{
    max-width: 100%;
    height: auto;
}





/* ----------------------------------------------------- 前CSSをリセット */
header a, footer a{
    color: #000;
}
header a:hover, footer a:hover{
    color: #000;
    text-decoration: none;
}

header ul, footer ul, .top_content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.top_content figure{
    margin: 0;
    padding: 0;
}

.top_content h2, footer h2{
    font-size: 100%;
    line-height: 1.5;
    margin-bottom: 0;
}

header, header li, footer, footer li{
    font-size: 1em;
    line-height: 1.5;
}

/* -- sp時footerバナーのクローズボタン -- */
.btn_close{
    padding: 2px 5px;
}


/* -------------------- サイドバーのSNS部分 */
#sticker{
    right: -112px;
    top: 15px;
}

ul.box_snsbtn_pc{
    width: auto;
    margin-left: 0!important;
}
.box_snsbtn_pc li{
    margin: 10px 0;
}
.box_snsbtn_pc .line{
    margin: 0 auto;
}
@media screen and (max-width: 1180px){
    #sticker{
        display: none;
    }
}

/* -------------------- サイドバーの検索ボックス部分 */
.input-medium{
    max-width: 150px;
    width: 100%;
}





/* ------------------------------------------------------ 他 */
.btn_right-icon li a{
    position: relative;
    display: block;
    padding: 0.7em 2.5em 0.7em 0.7em;
    border: 2px solid #4d4d4d;
    border-radius: 2em;
    transition: 0.3s;
    box-shadow: 0 3px 0 #eee;
}
.btn_right-icon li a:after{
    position: absolute;
    top: 5px;
    right: 10px;
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 160%;
    color: #f49aab;
}






/* -------------------------------------------------------------- header */
header{
    padding: 0.5em 1em 1em;
    position: relative;
    background-color: #F4CAD0;
}
header h1{
    padding: 0;
}
header h1 img{
    max-width: 300px;
    width: 100%;
    height: auto;
}

header .header-icon{
    position: absolute;
    top: 18px;
    right: 75px;
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0 0 0 auto;
}
header .header-icon li{
    max-width: 70px;
    width: 100%;
}

header .header-icon li a img{
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 0 rgba(77,77,77,0.3);
    transition: 0.3s;
}

header .header-icon li a:hover img{
    transform: rotate( -10deg );
}

/* ----------------------------- ヘッダーアイコンアニメーション */
header .header-icon li.adchange{
    animation-name: fadein;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateY(-30px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

header .header-icon li.ad{
    animation-name: fadein;
    animation-duration: 1.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateY(-30px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

header .header-icon li.pamphlet{
    animation-name: fadein;
    animation-duration: 1.9s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateY(-30px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

header .header-icon li.company{
    animation-name: fadein;
    animation-duration: 2.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateY(-30px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

header .header-icon li.contact{
    animation-name: fadein;
    animation-duration: 3.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateY(-30px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}


header > div.header_menu {
	margin: 0 auto;

}

.menu-btn > i {
    position: absolute;
    top: 0;
    right: 0;
	display: inline-block;
	padding: 25px 12px;
	cursor: pointer;
    color: #fff;
    font-size: 350%
}

.header-menu-wrap{
    background-color: #fff;
    max-width: 95%;
    width: 100%;
    margin: 0 auto 2em;
    padding: 2em;
    border-radius: 50px;
}


.nav-content{
	background-color: #F4CAD0;
	width: 90%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 50;
    padding-top: 75px;
	overflow: auto;
    -webkit-transform: translateX(100%);
	transform: translateX(100%);
	transition-duration: 600ms;
}


.nav-close{
	display: none;
	background-color: black;
	opacity: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 40;
	transition-duration: 300ms;
}

#menu-checkbox{
	display: none;
}
#menu-checkbox:checked ~ .nav-close {
	display: block;
	opacity: 0.5;
}
#menu-checkbox:checked ~ .nav-content{
    -webkit-transform: translateX(0%);
	transform: translateX(0%);
}





/* アコーディオンメニュー 参考：https://webdesignday.jp/inspiration/technique/css/5316/?msclkid=a813bb05d0c911ecb8c9933fa983a73a*/
.acd-check{
    display: none;
}
.acd-label{
    display: block;
    padding: 10px;
    position: relative;
    font-size: 200%;
    font-weight: bold;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 5px 10px;
    transition: .5s;
    visibility: hidden;
    list-style-type: none;
}
.acd-content li{
    margin: 0.5em 0 0.5em 2em;
    font-size: 120%;
    font-weight: 600;
}

.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

/* メニュー（アコーディオン以外） */
.header_menu .nav-content ul.header-menu-bnr{
    max-width: 100%;
    width: 100%;
    list-style-type: none;
    margin: 2em auto 0;
    display: flex;
    flex-wrap: wrap;
}

.header_menu .nav-content ul.header-menu-bnr li{
    max-width: 250px;
    width: 100%;
    margin: 0.5em auto;
}

.header_menu .nav-content ul.header-menu-bnr li a img{
    border-radius: 10px;
    box-shadow: 0 5px 0 #eee;
    transition: 0.3s;
}
.header_menu .nav-content ul.header-menu-bnr li a:hover img{
    box-shadow: 0 5px 0 #f49aab;
}

.header_menu .nav-content ul.nav_btn{
    max-width: 100%;
    width: 100%;
    list-style-type: none;
    margin: 2em auto 0;
    display: flex;
    flex-wrap: wrap;
}

.header_menu .nav-content ul.nav_btn li{
    max-width: 45%;
    width: 100%;
    margin: 0.5em auto;
    text-align: center;
    font-weight: bold;
}
.header_menu .nav-content ul.nav_btn li a:active{
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    box-shadow: 0 0 0 transparent;
}

/* ------------------------------ メニュー装飾 */
.acd-label{
    transition: 0.3s;
    border-radius: 0.5em;
}
.acd-label:hover{
    background-color: #f7f6f5;
}
.acd-label span{
    font-family: 'Century Gothic', sans-serif;
    display: block;
    font-size: 45%;
    font-weight: 400;
    color: #f49aab;
    display: flex;
    align-items: center;
    margin-top: -0.5em;
}
.acd-label span:before{
    border-top: 1px solid;
    content: "";
    width: 25px; 
    margin-right: 5px;
    margin-left: 60px;
}

header .header_menu .nav-content .header-menu-wrap label.acd-label img{
    transition: 0.3s;
}
.acd-label:hover img{
    transform: rotate(-20deg)
}

.acd-label:nth-of-type(2n):hover img{
    transform: rotate(20deg)
}

@media screen and (max-width: 540px){
    .acd-label span{
        display: none;
    }
    .acd-label:hover{
        background-color: transparent;
    }
}



/* -------------------------------------------------- メニュー内アイコン */
/* ---------- PC時は非表示 */
header .header_menu .nav-content .header-menu-wrap .header-icon-sp{
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    display: none;
}

header .header_menu .nav-content .header-menu-wrap .header-icon-sp li{
    max-width: 30%;
    width: 100%;
    margin-right: 5px;
}
header .header_menu .nav-content .header-menu-wrap .header-icon-sp li:last-of-type{
    margin-right: 0;
}
header .header_menu .nav-content .header-menu-wrap label.acd-label img{
    max-width: 50px;
    width: 100%;
    margin-right: 0.1em;
}





/* -------------------------------------------------------------- footer */
footer{
    padding: 0;
    background-color: #f4f4f4;
}

.footer_link-sns{
    max-width: 1000px;
    margin: 0 auto;
}

.footer_link-sns h2{
    text-align: center;
    margin-top:0;
}

.footer_link-sns ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
}

.footer_link-sns ul li{
    margin: 0 0.3em 1em;
}
.footer_link-sns ul li a{
    display: block;
    box-shadow: 0 4px 0 #ddd;
    transition: 0.3s;
    border-radius: 5px;
}
.footer_link-sns ul li a img{
    border-radius: 5px;
}
.footer_link-sns ul li a:hover{
    box-shadow: 0 4px 0 #f49aab;
}

.footer_link-sns ul li.bnr_sns a{
    max-width: 60px;
    width: 100%;
    font-size: 150%;
    background-color: #ddd;
    color: #fff;
    padding: 0.3em 0.4em;
}

.footer_link-sns ul li.bnr_twitter a{
/*    background-color: #1DA1F2;*/
    background-color: #4d4d4d;
}
.footer_link-sns ul li.bnr_facebook a{
    background-color: #1877f2;
}
.footer_link-sns ul li.bnr_instagram a{
    background: -moz-linear-gradient(top, #FFDD83, #F26939 30%, #CF2E92 60%, #4C64D3);
    background: -webkit-linear-gradient(top, #FFDD83, #F26939 30%, #CF2E92 60%, #4C64D3);
    background: linear-gradient(to bottom, #FFDD83, #F26939 30%, #CF2E92 60%, #4C64D3);
}



.footer_main{
    background-color: #e8e6e3;
    padding: 30px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer_main .footer_main-wrap{
    max-width: 500px;
    width: 100%;
    padding: 0 1em;
}

.footer_main .footer_main-wrap h3{
    margin-bottom: 0.5em;
}
.footer_main .footer_main-wrap h3 img{
    max-width: 300px;
    width: 100%;
    height: auto;
}

.footer_main .footer_main-wrap p span.zip-code{
    font-size: 85%;
}

footer .footer_main .footer_main-wrap .footer_bnr{
    display: flex;
    max-width: 300px;
    margin: 1em 0 0 0;
}

footer .footer_main .footer_main-wrap .footer_bnr li img{
    height: 70px;
    width: auto;
    margin-right: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
}

footer .footer_main .footer_main-wrap .footer_menu{
    position: relative;
}

footer .footer_main .footer_main-wrap .footer_menu li{
    list-style-type: none;
    padding-left: 2em;
    font-size: 90%;
}
footer .footer_main .footer_main-wrap .footer_menu li:before{
    font-family: 'Font Awesome 5 Free';
    content: "\f138";
    position: absolute;
    left : 0.7em;
    color: #f49aab;
    font-weight: bold;
}




/* ------------------------------------------------------ go-top */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #f49aab;
  opacity: 0.7;
  border-radius: 50%;
  z-index: 100;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -12px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}















/* -------------------------------------------------------------- index */
.top_content{
    background-color: #fff;
    padding-top: 1em;
}

.top_content a{
    color: #000;
}
.top_content a:hover{
    text-decoration: none;
}
}

.top_content h2, footer .footer_link-sns h2{
    text-align: center;
}
.top_content h2 img, footer .footer_link-sns h2 img{
    max-width: 500px;
    width: 100%;
    margin: 0.5em auto 1em;
}




/* ---------------------------------------- お知らせ部分 */
.info_wrap{
    max-width: 1000px;
    margin: 0 auto 1em;
    display: flex;
    justify-content: space-between;
    border: 3px solid #F4CAD0;
    border-radius: 1em;
    padding: 1.5em 1em;
    background-color: #f4f4f4;
}

.info_wrap .main_swiper{
    max-width: 65%;
    width: 100%;
    background-color: #fff;
    padding: 1em 1em 2.3em;
    border-radius: 1em;
    margin-right: 10px;
}
.info_wrap .main_swiper img{
    max-width: 100%;
    width: 100%;
}

.info_wrap .info{
    max-width: 35%;
    width: 100%;
    padding: 1em;
    background-color: #fff;
    border-radius: 1em;
}

.info_wrap .info h2{
    font-size: 130%;
    font-weight: bold;
    position: relative;
    margin-bottom: 0.6em;
    text-align: center;
}
.info_wrap .info h2:before{
      content: '';
      position: absolute;
      bottom: -5px;
      display: inline-block;
      width: 50px;
      height: 5px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: #F4CAD0;
      border-radius: 2px;
}

.info_wrap .info ul{
    font-size: 90%;
    list-style-type: none;
    margin: 0
}
.info_wrap .info li{
    padding: 0.5em 0;
    border-bottom: 1px dashed #ddd;
}
.info_wrap .info li a{
    display: block;
}

/* ------------------------------ お知らせSP時閉じる */
.info_wrap .info ul{
    font-size: 90%;
    list-style-type: none;
    margin: 0
}
.info_wrap .info li{
    padding: 0.5em 0;
    border-bottom: 1px dashed #ddd;
}
.info_wrap .info li a{
    display: block;
}

.info-title{
	pointer-events: none;
    display: none;
}
#info-box1{
    display: none;
}

@media screen and (max-width: 768px){
	.info-title{
        display: block;
		pointer-events: all;
        text-align:center;
        font-weight: bold;
        border-bottom: 2px solid #f49aab;
        color: #f49aab;
	}
	
	.info-toggle{
		height: 0;
		padding: 0 8px;
		transition: .2s;
		overflow: hidden;
	}
    
    .info-toggle h2{
        display: none;
    }
	
	input:checked + .info-toggle{
		height: auto;
		padding: 8px;
	}
}





/* ---------------------------------------- スライダー下メニュー */
.top_menu{
    max-width: 1000px;
    margin: 2em auto;
}
.top_menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 3px solid #F4CAD0;
    border-radius: 1em;
}

.top_menu ul li{
    max-width: 25%;
    width: 100%;
    font-weight: bold;
}
.top_menu ul li a{
    display: block;
    border-right: 1px dashed #ddd;
    transition: 0.4s;
    padding: 0.7em;
}
.top_menu ul li:last-of-type a{
    border-right: 0;
}
.top_menu ul li a:hover{
    color: #f49aab;
}


.top_menu ul li a dl dt img{
    max-width: 40px;
    width: 100%;
}

.top_menu ul li a figure img{
    max-width: 40px;
    transition: 0.3s;
}
.top_menu ul li a:hover figure img{
    transform: rotate(-20deg)
}

.top_menu ul li:nth-of-type(2n) a:hover figure img{
    transform: rotate(20deg)
}





/* ---------------------------------------- 最新号紹介 */
.magazine-enq_wrap{
    background-image:url(../img/bg.png);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
}

.magazine-enq_wrap .magazine-enq_container{
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    
}
.magazine-enq_wrap .magazine-enq_container h2{
    width: 100%;
    text-align: center;
}
.magazine-enq_wrap .magazine-enq_container section.magazine{
    max-width: 50%;
    width: 100%;
    padding: 1em;
}

.magazine-enq_wrap .magazine-enq_container section.magazine figure{
    display: flex;
}
.magazine-enq_wrap .magazine-enq_container section.magazine figure img{
    max-width: 200px;
    width: 100%;
    margin-right: 1em;  
}

.magazine-enq_wrap .magazine-enq_container section.magazine figure img{
    border: 1px solid #888;
}

/* ---------------------------------------- 赤ちゃんと！・123歳誌名 */
.magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dt{
    font-size: 130%;
    font-weight: bold;
    color: #000;
}
.magazine-enq_wrap .magazine-enq_container section.magazine_akachanto figure figcaption dl dt span{
    background: linear-gradient(transparent 60%, rgba(244,154,171,0.6) 60%);
}
.magazine-enq_wrap .magazine-enq_container section.magazine_123sai figure figcaption dl dt span{
    background: linear-gradient(transparent 60%, rgba(85,191,191,0.6) 60%);
}

/* ---------------------------------------- 特集 */
.magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dd{
    margin-top: 0.5em;
}
.magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dd.featurearticle span{
    font-weight: bold;
}
.magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dd.featurearticle span.subtitle{
    font-weight: 400;
    font-size: 85%;
}


/* ---------------------------------------- 最新号・アンケートボタン */
.magazine-enq_wrap .magazine-enq_container .magazine .saishin-enq{
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin: 1em 0;
}

.btn_saishin-enq{
    text-align: center;
    max-width: 48%;
    width: 100%;
}
/* -- アンケート回答期限表示 -- */
.btn_saishin-enq p {
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
    font-size: 85%;
    margin: 0
}
.btn_saishin-enq p:before, .btn_saishin-enq p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 1px;
    border-radius: 5px;
    background-color: #000;
    content: "";
}
.btn_saishin-enq p:before{
    left: -30px;
    -webkit-transform: rotate( 50deg );
    transform: rotate( 50deg );
}
.btn_saishin-enq p:after{
    right: -30px;
    -webkit-transform: rotate( -50deg );
    transform: rotate( -50deg );
}

.btn_saishin-enq a{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.7em 1em;
    color: #FFF;
    font-weight: 600;
    background: #6bb6ff;
    border-radius: 2em;
}
.magazine_akachanto .btn_saishin-enq a{
    background: #f49aab;
}
.magazine_123sai .btn_saishin-enq a{
    background: #55bfbf;
}

.magazine-enq_wrap .magazine-enq_container .magazine_akachanto .saishin-enq{
    margin-top: 3.3rem;
}

/* ---------------------------------------- アンケート終了ボタン */
.btn_saishin-enq-end{
    text-align: center;
    padding: 0.7em 1em;
    color: #4d4d4d;
    font-weight: 600;
    background: #ddd;
    border-radius: 2em;
    margin-top: 1.5em;
}
.btn_saishin-enq-end p{
    margin: 0;
}






/* ---------------------------------------- サブコンテンツ */
.sub_content{
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.sub_content .sub_content_wrap{
    max-width: 70%;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
}

.sub_content .sub_content_wrap h2{
    text-align: center;
}




.sub_hearth, .sub_food, .sub_play, .sub_recommend, .sub_special, .sub_contact{
    margin: 2em 0;
}
/* ---------------------------------------- 病気・ケア・健康 */
.sub_hearth ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style-type: none;
    margin:0;
}

.sub_hearth ul li{
    max-width: 48%;
    width: 100%;
    padding: 1em 0;
    text-align: center;
}
.sub_hearth ul li a img{
    border: 3px solid #f49aab;
    box-shadow: 0 5px 0 #ddd;
    border-radius: 1em;
    transition: 0.3s;
    max-width: 250px;
    width: 100%;
}
.sub_hearth ul li a:hover img{
    box-shadow: 0 5px 0 #f49aab;
}



/* ---------------------------------------- 離乳食 */
.sub_food ul{
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-weight: bold;
}

.sub_food ul li{
    max-width: 32%;
    width: 100%;
}

.sub_food ul li a{
    display: block;
    box-shadow: 0 5px 0 #ddd;
    border-radius: 1em;
    background-color: #fff;
    transition: 0.3s;
}
.sub_food ul li a:hover{
    box-shadow: 0 5px 0 #eab32a;
}

.sub_food ul li a figure img{
    border-radius: 1em 1em 0 0;
}
.sub_food ul li a figure figcaption{
    padding: 0.5em 0;
}



/* ---------------------------------------- 赤ちゃんの遊び・暮らし */
.sub_play figure{
    text-align: center;
    margin-right: 1em;
}
.sub_play figure a{
    
}
.sub_play figure a img{
    border-radius: 50%;
    padding: 0.7em;
    margin: 0;
    border: 3px solid #ddd;
    transition: 0.3s;
}
.sub_play figure a figcaption{
    font-weight: bold;
    margin-top: 0.5em;
}

.sub_play figure a:hover img{
    border: 3px solid #77a869;
}






/* ---------------------------------------- 赤ちゃんとママ社　おすすめの本 */
.sub_recommend ul{
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sub_recommend ul li{
    max-width: 32%;
    width: 100%;
    margin: 1em 0;
    
}
.sub_recommend ul li a{
    display: block;
    padding: 1em 0.7em;
    border: 2px solid #f4f4f4;
    background-color: #f4f4f4;
    border-radius: 1em;
    transition: 0.3s;
}
.sub_recommend ul li a:hover{
    border: 2px solid #825c93;
}

.sub_recommend ul li a figure figcaption{
    font-size: 85%;
    margin-top: 0.5em;
}

.sub_recommend .btn01{
    margin: 1em 0;
    text-align: center;
}
.sub_recommend .btn01 a{
    display: block;
    max-width: 300px;
    widows: 100%;
    margin: 0 auto;
    padding: 0.5em;
    border: 2px solid #825c93;
    font-size: 120%;
    background-color: #825c93;
    color: #fff;
    font-weight: bold;
    border-radius: 2em;
    box-shadow: 0 3px 0 #ddd;
    transition: 0.2s;
}
.sub_recommend .btn01 a:hover{
    background-color: #fff;
    color: #825c93;
}

.sub_recommend p{
    font-size: 80%;
    text-align: center;
}




/* ---------------------------------------- 読者限定コンテンツ */
.sub_special figure{
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
}
.sub_special figure a{
    display: flex;
    align-items: center;
    border: 3px solid #ddd;
    padding: 0.5em;
    border-radius: 1em;
    transition: 0.3s;
}
.sub_special figure a:hover{
    border: 3px solid #6888bc;
}
.sub_special figure a img{
    max-width: 250px;
    width: 100%;
}
.sub_special figure a figcaption{
    max-width: 400px;
    width: 100%;
    padding: 2em 1.5em;
    font-size:85%;
}
.sub_special figure a figcaption span.special_title{
    font-size: 110%;
    font-weight: bold;
    color: #6888bc;
}




/* ---------------------------------------- お問い合わせ */
.sub_contact ul{
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sub_contact ul li{
    max-width: 30%;
    width: 100%;
    padding: 1em 0;
}

.sub_contact ul li a{
    display: block;
    box-shadow: 0 3px 0 #ddd;
    border-radius: 0.3em;
    transition: 0.3s;
}
.sub_contact ul li a:hover{
    box-shadow: 0 3px 0 #f47b56;
}




/* ---------------------------------------- smile baby present */
.sub_content .ad .ad_sbp{
    background-color: rgba(244,154,171,0.3);
    background-image: repeating-linear-gradient(-60deg,#fff,#fff 4px,transparent 0,transparent 5px);
    border-radius: 1em;
    padding: 0.5em 1em;
    text-align: left;
}




/* ---------------------------------------- 広告 */
.sub_content .ad{
    max-width: 30%;
    width: 100%;
    padding: 1em;
    text-align: center;
}

.sub_content .ad h3{
    text-align: center;
    padding: 0.5em;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    margin: 1em 0;
    font-size: 100%;
    font-weight: normal;
    line-height: 1.5;
}

.sub_content .ad ul li{
    margin: 1em 0;
}










/* -----------------------------------------------------------------------------

レスポンシブ

-------------------------------------------------------------------------------*/
@media screen and (max-width: 1024px){
    .info_wrap, .top_menu{
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}





@media screen and (max-width: 925px){
    /* ---------------------------------------- 赤ちゃんと！・123歳誌名 */
    .magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dt{
        font-size: 110%; 
    }
    /* ---------------------------------------- 最新号・アンケートボタン */
    .magazine-enq_wrap .magazine-enq_container .magazine .saishin-enq{
        font-size: 85%;
    }
    
}





@media screen and (max-width: 820px){
    header .header-icon, header .sp-none{
        display: none;
    }
    header .header_menu .nav-content .header-menu-wrap .header-icon-sp{
        display: flex;
    }
    
    header h1{
        text-align: center;
    }
    
    /* メニュー（アコーディオン以外） */
    .header_menu .nav-content ul.nav_btn{
        margin: 2em auto 0;
        display: block;
    }

    .header_menu .nav-content ul.nav_btn li{
        max-width: 450px;
        width: 100%;
        margin: 0.5em auto;
    }
    
    
    
    
    /* ---------------------------------------- 最新号紹介 */
    /* ---------------------------------------- 赤ちゃんと！・123歳誌名 */
    .magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dt{
        font-size: 130%; 
    }
    .magazine-enq_wrap .magazine-enq_container section.magazine figure{
        display: block;
        text-align: center;
    }
    .magazine-enq_wrap .magazine-enq_container section.magazine figure img{
        max-width: 200px;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }
    .magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption{
        min-height: 9.5em;
    }
    
    
    
    
    
    /* ---------------------------------------- スライダー下メニュー */
    .top_menu ul{
        flex-wrap: wrap;
        justify-content: flex-start;
        border: none;

    }

    .top_menu ul li{
        max-width: 49%;
        width: 100%;
        margin-right: 1%;
        margin-bottom: 0.5em;
    }
    .top_menu ul li:nth-of-type(2n){
        margin-right: 0;
    }
    .top_menu ul li a{
        display: block;
        border: 3px solid #f49aab;
        border-radius: 1em;
    }
    .top_menu ul li:last-of-type a{
        border-right: 3px solid #f49aab;
    }
}




@media screen and (max-width: 768px){
    .top_content{
        font-size: 90%;
    }
    
    /* -------------------------------------------------------------- header */
    .nav-content {
        width: 100%;
        max-width: 100%;
    }
    /* -------------------------------------------------------------- footer */
    .footer_main{
        display: block;
    }

    .footer_main .footer_main-wrap{
        max-width: 100%;
        margin-bottom: 2em;
    }
    
    
    
    
    
    /* ---------------------------------------- お知らせ部分 */
    .info_wrap{
        display: block;
    }

    .info_wrap .main_swiper{
        max-width: 100%;
        margin-right: 0;
        background-color: transparent;
        padding: 0 0 2.5em 0;
        border-radius: 0;
        margin-right: 0;
    }

    .info_wrap .info{
        max-width: 100%;
        margin: 1em auto 0;
    }
    
    .info_wrap .info li{
        width: 100%;
        margin: 0;
    }
    .info_wrap .info li a{
        padding: 0.5em;
        display: block;
    }
    
    
    
    


    /* ---------------------------------------- 最新号・アンケートボタン */
    .magazine-enq_wrap .magazine-enq_container .magazine .saishin-enq{
        display: block;
        margin: 1em 0;
    }

    .btn_saishin-enq, .btn_saishin-enq-end{
        max-width: 200px;
        margin:0.5em auto;
    }
    .btn_saishin-enq-end{
        margin-top: 2em;
    }
    


    


    
    
    
    
    
    
    
    
    
    
    /* ---------------------------------------- サブコンテンツ */
    .sub_content{
        display: block;
    }

    .sub_content .sub_content_wrap{
        max-width: 100%;
    }
    .sub_hearth, .sub_food, .sub_play, .sub_recommend, .sub_special, .sub_contact{
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    
    
    
    
    
    
    
    /* ---------------------------------------- 広告 */
    .sub_content .ad{
        max-width: 100%;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sub_content .ad h3{
        width: 100%;
        margin: 2em 0;
    }
    
    .sub_content .ad ul{
        display: flex;
        flex-wrap: wrap;
    }
    .sub_content .ad ul li{
        max-width: 49%;
        width: 100%;
        margin-left: 1%;
    }
    .sub_content .ad ul li img{
        width: 100%;
    }
    .sub_content .ad ul li:nth-last-of-type(2n){
        margin-left: 0;
    }
    
    
    
    
    
    /* ---------------------------------------- smile baby present */
    .sub_content .ad .ad_sbp{
        align-items: center;
    }
    .sub_content .ad .ad_sbp li:last-of-type{
        padding-left: 1em;
    }
    
}





@media screen and (max-width: 540px){
    header{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
    }
    .content, .container{
        margin-top: 100px;
    }
    header h1 img{
        max-width: 250px;
    }
    .menu-btn > i {
        font-size: 250%
    }
    
    .acd-label{
        font-size: 150%;
        border-bottom: 3px dotted #ddd;
        border-radius: 0;
    }
    .acd-label:after{
        background: #f49aab;
        color: #fff;
        box-sizing: border-box;
        content: '\f067';
        display: block;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        padding: 5px 10px;
        position: absolute;
        right: 0;
        top: 0px;
    }
    .acd-check:checked + .acd-label:after{
        content: '\f068';
    }
    header .header_menu .nav-content .header-menu-wrap label.acd-label img{
        max-width: 35px;
    }
    
    
    
    
    /* -------------------------------------------------------------- footer */
    .footer_main .footer_main-wrap:last-of-type{
        display: none;
    }    
    
    
    
    

    /* -------------------------------------------------------------- index */
    /* ---------------------------------------- ヘッダー下部分 */
    .info_wrap{
        border: none;
    }
    
    /* ---------------------------------------- スライド下メニュー */
    .top_menu ul li a{
        border: 2px solid #f49aab;
        padding: 0.3em;
        border-radius: 2em;
        box-shadow: 0px 3px 0px #eee;
    }
    .top_menu ul li:last-of-type a{
        border-right: 2px solid #f49aab;
    }
    .top_menu ul li a figure{
        display: flex;
        align-items: center;
    }
    .top_menu ul li a figure img{
        max-width: 40px;
        background-color: rgba(244,154,171,0.6);
        padding: 0.5em;
        margin-right: 0.5em;
        border-radius: 50%;
    }
    
    /* ---------------------------------------- 離乳食 */
    .sub_food ul{
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub_food ul li{
        max-width: 49%;
        margin-bottom: 0;
        margin-right: 1%;
    }
    .sub_food ul li:nth-of-type(1){
        margin-right: 2%;
        margin-bottom: 2em;
    }
    .sub_food ul li:nth-of-type(3){
        margin-right: 0;
    }

    .sub_food ul li a figure figcaption{
        padding: 0.5em 0;
    }
    
    
    
    
    
    /* ---------------------------------------- 赤ちゃんとママ社　おすすめの本 */
    .sub_recommend ul{
        justify-content: flex-start;
    }
    .sub_recommend ul li{
        max-width: 48%;
        margin-left: 2%;
    }
    .sub_recommend ul li:nth-last-of-type(2n){
        margin-left: 0;
    }

    .sub_recommend .btn01{
        max-width: 350px;
        width: 100%;
        margin: 1em auto;
    }
    
    
    
    
    
/* ---------------------------------------- 読者限定コンテンツ */
    .sub_special figure a{
        display: block;
        padding: 0.5em;
        text-align: center;
    }
    .sub_special figure a img{
        max-width: 100%;
    }
    .sub_special figure a figcaption{
        text-align: left;
        max-width: 100%;
        padding: 1em;
    }
    
    
    
    
    /* ---------------------------------------- お問い合わせ */
    .sub_contact ul li{
        max-width: 49%;
        padding: 1em auto;
    }
}



@media screen and (max-width: 500px){
    /* -------------------------------------------------------------- index */
    /* ---------------------------------------- スライド下メニュー */
    .top_menu ul li a{
        font-size: 90%;
    }

    .top_menu ul li a figure img{
        max-width: 35px;
    }
}

@media screen and (max-width: 465px){
    /* -------------------------------------------------------------- index */
    /* ---------------------------------------- スライド下メニュー */
    .top_menu ul li a{
        font-size: 80%;
    }

    .top_menu ul li a figure img{
        max-width: 30px;
    }
    

    /* ---------------------------------------- 最新号・アンケートボタン */
    .magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption{
        min-height: 11em;
    }

    .btn_saishin-enq, .btn_saishin-enq-end{
        font-size: 85%;
    }
    
    .btn_saishin-enq p:before, .btn_saishin-enq p:after {
        width: 15px;
        height: 0.7px
    }
    .btn_saishin-enq p:before{
        left: -25px;
    }
    .btn_saishin-enq p:after{
        right: -25px;
    }
}





@media screen and (max-width: 414px){
    /* -------------------------------------------------------------- header */
    .acd-label{
        font-size: 110%;
    }
    .acd-content{
        margin-left: 0.5em;
    }
    .acd-content li{
        margin: 0.5em 0;
        font-size: 100%;
    }
    header .header_menu .nav-content .header-menu-wrap label.acd-label img{
        max-width: 30px;
    }
    
    .header_ad{
        font-size: 80%;
        position: absolute;
        top: 20px;
        right: 175px;
    }

    .header_pamphlet{
        font-size: 80%;
        position: absolute;
        top: 20px;
        right: 135px;
    }
    .header_company{
        font-size: 80%;
        position: absolute;
        top: 20px;
        right: 105px;
    }

    .header_contact{
        font-size: 80%;
        position: absolute;
        top: 20px;
        right: 70px;
    }
    
    

    /* -------------------------------------------------------------- footer */
    .top_content{
        font-size: 85%;
    }
    
    
    
    
    
    
    
    /* ---------------------------------------- 最新号紹介 */
    .magazine-enq_wrap .magazine-enq_container section.magazine figure{
        display: block;
        text-align: center;
    }
    
    .magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption dl dt{
        font-size: 115%;
}

    .magazine-enq_wrap .magazine-enq_container section.magazine ul{
        display: block;
    }
    
    .magazine-enq_wrap .magazine-enq_container section.magazine ul li{
        max-width: 300px;
        width: 100%;
        margin: 1em auto;
    }





@media screen and (max-width: 376px){
    /* -------------------------------------------------------------- index */
    /* ---------------------------------------- スライド下メニュー */
    .top_menu ul{
        display: block;
    }
    .top_menu ul li{
        max-width: 95%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 100%;
    }
    .top_menu ul li:nth-of-type(2n){
        margin-right: auto;
    }

    .top_menu ul li a figure img{
        max-width: 35px;
    }
}
@media screen and (max-width: 300px){
    /* -------------------------------------------------------------- header */
    header h1 img{
        max-width: 180px;
    }
    
    header .header_menu .nav-content .btn_right-icon{
        font-size: 72%;
    }
    
    /* -------------------------------------------------------------- index */
    .acd-label{
        font-size: 90%;
        padding-right: 2.5em;
    }
    .acd-content{
        font-size: 80%;
    }
    
    .magazine-enq_wrap{
        background-image: none;
    }
    .magazine-enq_wrap .magazine-enq_container{
        display: block;
    }
    
    .magazine-enq_wrap .magazine-enq_container section.magazine{
        max-width: 100%;
    }
    
    .magazine-enq_wrap .magazine-enq_container section.magazine_akachanto{
        background-image: url(../img/bg_02-1.png);
        background-repeat: repeat;
        background-position: center;
        background-size: contain;
    }
    
    .magazine-enq_wrap .magazine-enq_container section.magazine_123sai{
        background-image: url(../img/bg_02-2.png);
        background-repeat: repeat;
        background-position: center;
        background-size: contain;
    }
    
    .magazine-enq_wrap .magazine-enq_container section.magazine figure figcaption{
        min-height: auto;
    }
    
    .magazine-enq_wrap .magazine-enq_container .magazine_akachanto .saishin-enq{
        margin-top: 1rem;
    }
}
