@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.1.1
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/* 基本設定
--------------------------------------------*/
a {
	text-decoration: none;
	color: #2d5e7f;
}

a:hover {
	  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

hr.line_1 {
	margin-top: 50px;
	border :1px solid #e5e5e5; 
}
/*ヘッダー画像のx方向へのはみだし調整*/
body {
	overflow-x: hidden;
}

/*要素を角丸にする*/
.border_radius {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

/*contactバナー*/
.contact_banner {
	margin-top: 50px;
	text-align: center;
}

.contact_banner p {
    margin: 0;
}

.contact_banner img {
	margin-top: 10px;
}

.contact_banner a:hover {
	opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity:0.8;
}
/*要素の移動しながらのフェードイン*/
.fade_x {
    font-size: 20px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 2s;
    }
    @keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

/* じわっと画像が表示される5s */
.delayed-image {
 	animation: fadeIn 5s ease 0s 1 normal;
    -webkit-animation: fadeIn 5s ease 0s 1 normal;
}
 
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/* じわっと画像が表示される3s */
.delayed3-image {
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
 
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*ヘッダー画像左寄せ*/
.header {	
	background-position: left;	
}


/*スマホ以上のサイズでは非表示*/
@media screen and (min-width: 480px){
.mobile {
	display: none;	
	}
}

/*スマホ設定*/
@media screen and (max-width: 480px){
.header {
	background-position: left;
	height: 20vw;
}
/*スマホでは非表示*/
.pc {
	display: none;	
	}
}

/*グローバルメニュー設定*/
/*Home*/
#menu-item-2397 a {
	background:url("https://izumi-m.com/wp-content/uploads/2020/04/home.jpg");
    background-position: center;
    margin:0;
    display: block;
    list-style-type: none;
    text-align:center;
    width:120px;/* ボタンの横幅 */
    height:60px;/* ボタンの高さ */
    padding:0;
    text-indent: -9999px;
}

/*Voice sample*/
#menu-item-2395 a {
	background:url("https://izumi-m.com/wp-content/uploads/2026/01/voice_gallery.jpg");
    background-position: center;
    margin:0;
    display: block;
    list-style-type: none;
    text-align:center;
    width:140px;/* ボタンの横幅 */
    height:60px;/* ボタンの高さ */
    padding:0;
    text-indent: -9999px;
}

/*profile*/
#menu-item-2396 a {
	background:url("https://izumi-m.com/wp-content/uploads/2020/04/profile.jpg");
    background-position: center;
    margin:0;
    display: block;
    list-style-type: none;
    text-align:center;
    width:110px;/* ボタンの横幅 */
    height:60px;/* ボタンの高さ */
    padding:0;
    text-indent: -9999px;
}

/*works*/
#menu-item-2393 a {
	background:url("https://izumi-m.com/wp-content/uploads/2020/04/works.jpg");
    background-position: center;
    margin:0;
    display: block;
    list-style-type: none;
    text-align:center;
    width:100px;/* ボタンの横幅 */
    height:60px;/* ボタンの高さ */
    padding:0;
    text-indent: -9999px;
}

/*blog*/
#menu-item-2398 a {
	background:url("https://izumi-m.com/wp-content/uploads/2020/04/blog.jpg");
    background-position: center;
    margin:0;
    display: block;
    list-style-type: none;
    text-align:center;
    width:80px;/* ボタンの横幅 */
    height:60px;/* ボタンの高さ */
    padding:0;
    text-indent: -9999px;
}

/*contact*/
#menu-item-2394 a {
	background:url("https://izumi-m.com/wp-content/uploads/2020/04/contact.jpg");
    background-position: center;
    margin:0;
    display: block;
    list-style-type: none;
    text-align:center;
    width:100px;/* ボタンの横幅 */
    height:60px;/* ボタンの高さ */
    padding:0;
    text-indent: -9999px;
}

.menu-item a:hover{
	opacity: 0.3;
    filter: alpha(opacity=30);
    -moz-opacity:0.3;
}

/*テキスト設定*/
.m_text {
	font-size: 0.95em;
}
.s_text {
	font-size: 0.9em;
}
.point1{
	font-weight:bold;
	color: #999999;
}

/* Home
--------------------------------------------*/
/*coccoonヘッダー画像非表示設定*/
.home #header{
height:0;
}
.home #header-in{
}
/*サイト名非表示*/
.logo-header{
  display: none;
}

/**/
.article h3 {
	border: none;
	border-left: solid 7px #777 ;
}

/*必要ない情報を非表示*/
.home.page .entry-title,
.home.page .sns-share,
.home.page .sns-follow,
.home.page .date-tags,
.home.page .author-info{
  display: none;
}
/*通知エリアカスタマイズ*/
#notice-area-wrap :hover {
	background-color: #c1c1c1;
	color: #e83d3d;
	transition: all 0.3s ease-in-out;
}

/*welcome*/
.welcome {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/welcome_title.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	font-size: 1em;
	margin: 0 10%;
	padding: 65px 5% 20px 5%;
}

/*top info_pv*/
h3.topInfo_header {
	font-size: 1.1em;
	font-weight: 400;
	letter-spacing: 1px;
	background-color: #000000;
	color: #ffffff;
	margin: 0 10%;
	margin-left: 9.1%;
	margin-bottom: -20px;
	width: 150px;
	height: 35px;
	padding: 7px 0;
	text-align: center;
}

.topInfo {
	font-size: 0.9em;
	margin: 0 10%;
	padding: 20px 5% 10px 5%;
	border: solid 5px #000000;
	border-radius: 15px;
}

.topInfo p {
	margin-bottom:10px !important;
	margin-top: 0;
	padding: 0;
}
.topInfo_content_info {
	padding: 5px 10px 15px 20px;
	background-color: #f4f4f4;
	border-radius: 5px;
	margin-top: 10px;
	margin-bottom: 10px !important;
}
.topInfo_content_info p {
	margin-block-end: 0;
}


/*pv*/
h3.topInfo_header_pv {
	font-size: 1.1em;
	font-weight: 400;
	letter-spacing: 1px;
	background-color: #000000;
	color: #ffffff;
	margin: 0 10%;
	margin-left: 9.1%;
	margin-bottom: -20px;
	width: 200px;
	height: 35px;
	padding: 7px 0;
	text-align: center;
}

.pv1 {
	padding-top: 20px;
	padding-bottom: 15px;
}


/*what's new*/
h3.whatsNew_header {
	font-size: 1.1em;
	font-weight: 400;
	letter-spacing: 1px;
	background-color: #000000;
	color: #ffffff;
	margin: 0 10%;
	margin-left: 9.1%;
	margin-bottom: -20px;
	width: 150px;
	height: 35px;
	padding: 7px 0;
	text-align: center;
}

.whatsNew {
	font-size: 0.9em;
	margin: 0 10%;
	padding: 20px 5% 10px 5%;
	border: solid 5px #000000;
	border-radius: 15px;
}

.whatsNew p {
	margin-bottom:10px !important;
	margin-top: 0;
	padding: 0;
}
.whatsNew_content_info {
	padding: 5px 10px 15px 20px;
	background-color: #f4f4f4;
	border-radius: 5px;
	margin-top: 10px;
	margin-bottom: 10px !important;
}
.whatsNew_content_info p {
	margin-block-end: 0;
}

.whatsNew_date {
	font-size:1.1em;
	color: #9e9e9e;
	margin: 0;
	padding: 0;
	font-weight: bold;
}

.whatsNew_content {
	padding-top: 13px;
	padding-left: 10px;
	border-bottom: 1px solid #e2e2e2;
}

.whatsNew_content_bottom {
	padding-top: 13px;
	padding-left: 10px;
	padding-bottom: 10px;
	border-bottom: none;
}

.whatsNew_plus {
	padding-top: 10px;
	padding-left: 10px;
}

/*now on air*/
h3.nowOnAir_header {
	font-size: 1.1em;
	font-weight: 400;
	letter-spacing: 1px;
	background-color: #000000;
	color: #ffffff;
	margin: 0 10%;
	margin-left: 9.1%;
	margin-bottom: -20px;
	width: 150px;	
	height: 35px;
	padding: 7px 0;
	text-align: center;
}

.nowOnAir {
	font-size: 0.9em;
	margin: 0 10%;
	padding: 20px 0 10px 0;
	border: solid 5px #000000;
	border-radius: 15px;
}

.nowOnAir ul li {
margin: 0 5px 0 0;
}

/*font-awesomeリストマーク設定*/
ul.nowOnAir_list li{
    line-height: 2;
    list-style-type:none;
}

ul.nowOnAir_list li::before{
  content: "\f3c9";
  font-size: 1.1em;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #9e9e9e;
  margin-right:0.5em;
}

/*twitter*/
h3.twitter_header {
	width: 90%;
	border: none;
	margin: 0 25px 10px 25px;
	padding: 0;
	padding-bottom: -5px;
}

.twitterArea {
    margin: 0 auto;
	width: 85%;
}

/*followボタン*/
.followBtn{
	margin: 0 auto;
	margin-top: 10px;
	text-align:center;
}
/*Instagram*/
.instagram {
	margin: 0 0 0 5%;
	padding-bottom: 5px;
}

.instagram_content {
	border-top: solid 5px #000000;
	border-bottom: solid 5px #000000;
	margin: 0 auto;
	margin-top: -20px;
	width: 90%;
}

/*ヘッダー画像エリア設定(フェード)*/
.pc_slider {
    width:100vw;
    max-width: 1400px;
    height:41.65vw;
    max-height:583.1px;
    position:relative;
    margin: 0 auto;
    background-repeat:no-repeat;
    background-size: contain;
    background-position: top center;	
}

/*ヘッダー画像レスポンシブ設定*/
@media screen and (min-width: 481px) {
.pc_slider {
    width:100vw;
    max-width: 1400px;
    height:41.65vw;
    max-height:583.1px;
    position:relative;
    margin: 0 auto;
    background-repeat:no-repeat;
    background-size: contain;
    background-position: top center;	
}

.mobile_slider {
		display: none;
	}
}

@media screen and (max-width: 480px) {
.mobile_slider {
    width:100vw;
    height:57.14vw;
}
.pc_slider {
	display: none;
	}
}
/*通知エリアカスタマイズ*/
.notice-area {
	font-size:0.9em;
}
@media screen and (max-width: 834px){
h3.whatsNew_header,h3.nowOnAir_header {
	    font-size: 0.9em;
		margin-left: 8.5%;
		width: 110px;
		padding-top:8px;
	}
	
h3.topInfo_header {
	    font-size: 0.9em;
		margin-left: 8.5%;
		width: 110px;
		padding-top:8px;
	}

h3.topInfo_header_pv {
	    font-size: 0.9em;
		margin-left: 8.5%;
		width: 150px;
		padding-top:8px;
	}
	
.welcome {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/welcome_title_s.jpg");
	font-size:0.95em;
	margin: 0;
	padding: 55px 0 20px 0;
	}	

}

@media screen and (max-width: 420px) {
#post-25 .entry-content>*, .demo .entry-content p {
    margin-top: -20px;		
	}
#post-25 {
	margin: 0 2%;
}
.whatsNew,.nowOnAir {
	margin: 0;
	}

.topInfo {
	margin: 0;
	}
	
h3.whatsNew_header,h3.nowOnAir_header {
	    font-size: 0.9em;
		margin-left: -2.1%;
		width: 110px;
		padding-top:8px;
	}
	
h3.topInfo_header {
	    font-size: 0.9em;
		margin-left: -1.8%;
		width: 110px;
		padding-top:8px;
	}

h3.topInfo_header_pv {
	    font-size: 0.9em;
		margin-left: -1.8%;
		width: 150px;
		padding-top:8px;
	}

.whatsNew,.nowOnAir {
	font-size: 1em;
	}

.topInfo {
	font-size: 1em;
	}
	

	
.welcome {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/welcome_title_s.jpg");
	font-size:0.9em;
	margin: 0;
	padding: 55px 0 20px 0;
	}
	
h3.twitter_header {
	width: 100%;
	margin-left: 0;
	margin-bottom: 15px;
	border-bottom: solid 5px #000;
	}
	
.twitterArea {
	margin-top: 0;	
	margin-bottom: 10px;
	}
	
.followBtn{
		padding-bottom: 50px;
	}
	
.instagram {
	margin-left: 0;
}
	
	.instagram_content {
	margin: 0;
	width: 100%;
}
	
}


/* VoiceSample
--------------------------------------------*/
#post-9 .entry-title {
	background-image: url("https://izumi-m.com/wp-content/uploads/2026/01/voice_gallery_title.jpg");
	margin: 0 auto;
	height: 60px;
	width: 250px;
	text-indent:-9999px;
}
#post-9 {
	margin: 0 20%;
}
#post-9 iframe {
	margin: 0;
}
#post-9 p, .paragraph{
	line-height:1em;
	margin:0;
}
#post-9 .entry-title {
	text-align:center;
}

figcaption {
	text-align:center;
	font-size: 0.9em;
	font-weight: bold;
}

.voice_sample_contents figure {
	margin: 0;
	margin-bottom: -8px;
	padding: 0;
}

.voice_sample_contents h4{
	margin: 0;
	margin-bottom: 5px;
	padding: 10px 0;
}

.SoundCloudPlayer {
	margin-top:50px;
}

.voiceSample_Title {
	margin-bottom:-5px;
}

.SoundBox1 {
	margin-top: 30px;
	margin-bottom:20px;
}

.SoundBox {
	margin-bottom:20px;
}

.sc_title_wrap {
	padding-bottom : 10px;
}

.sc_title {
	line-height: 2em;
	color: #5675C1;
	font-size: 1.1em;
}

/*見出しカスタマイズ*/
#post-9 h4 {
	text-align: center;
}
@media screen and (max-width: 834px) {
#post-9 {
	margin: 0 10%;
}
}

@media screen and (max-width: 420px) {
#post-9 {
	margin: 0 5%;
}
#post-9 .entry-title {
    background-image: url("https://izumi-m.com/wp-content/uploads/2026/01/voice_gallery_title_s.jpg");
	height: 48px;
	width: 200px;
}
.SoundCloudPlayer {
    margin-top: 0px;
}
}

/* Profile
--------------------------------------------*/
.glay {
	background-color: #c6c6c6;
	border-radius: 3px;
	padding: 1px 4px;
	margin-right: 3px;
}
#post-7 .entry-title {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/profile_title.jpg");
	margin: 0 auto;
	height: 60px;
	width: 250px;
	text-indent:-9999px;
}

#post-7 {
	margin: 0 20%;
}

#post-7 .entry-title {
	text-align:center;
}

/*about me*/
.about_me_title {
	margin: 0;
}
.about_me_wrap {
	padding: 0 5%;
	margin: 0;
}
.about_me_wrap p {
	margin: 0;
}
/*flex-box設定*/
.container_1 {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	align-content: flex-start;
	margin-bottom: 10px;
}

.item_1_1 {
	margin: 0;
	padding: 0;
}

.item_1_2 {
	margin: 0;
	padding: 0;
}

.container_2 {
	margin-bottom: 10px;
}
.container_2 p {
    font-weight: bold;
	font-size:1.2em;
}

.container_3 {
	padding: 15px;
	background-color: #f4f4f4;
	margin-top:20px;
	margin-bottom: 20px;
	border-radius: 5px;
}

.container_3 ul {
	list-style: none;
	margin: 0;
	margin-left: 3%;
	padding: 0;
}

.container_4 {
	margin-bottom: 30px;
}

.container_5 {
	margin-bottom: 30px;
}

.container_6 {
	margin-bottom: 10px;
}
.container_6 p {
	margin-top: 7px;
}

.profile_name {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0;
	margin-right: 10px;
}
.profile_subTitle {
	display: inline;
	background-color: #3d3d3d;
	color: #fff;
	padding: 2px 10px;
	border-radius: 3px;
	margin-bottom: 5px;
}

.vs_link {
	font-size: 0.8em;
}

.video2 {
	margin-bottom: 10px;
}

/*History*/
h4.history_title {
   padding-left: 3%;	
}

.history_wrap {
	padding: 0 5%;
	margin: 0;
}
.history_wrap p {
	margin: 10px 0;
}

.history_subTitle {
	display: inline;
	background-color: #3d3d3d;
	color: #fff;
	padding: 2px 10px 4px 10px;
	margin-top: 5px;
	border-radius: 3px;
}
.history_wrap .wp-block-image{
	margin-top: 15px;
	margin-bottom: 0;
}

@media screen and (max-width: 834px) {
#post-7 {
	margin: 0 5%;
}
}
@media screen and (max-width: 420px) {
#post-7 {
	margin: 0 ;
}
#post-7 .entry-title {
    background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/profile_title_s.jpg");
	height: 48px;
	width: 200px;
}
}

/* Works
--------------------------------------------*/
#post-84 .entry-title {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/works_title.jpg");
	margin: 0 auto;
	height: 60px;
	width: 250px;
	text-indent:-9999px;
}

#post-84 {
	margin: 0 20%;
}

#post-84 .entry-title {
	text-align:center;
}

.tv_station_name {
	font-size: 0.8em;
    color: #ffffff;
    background-color: #3d3d3d;
	padding: 2px 8px 3px 8px;
	margin-bottom:0;
	border-radius: 3px;
}

h4.works_title_top {
   padding-left: 20px;
   margin-top: 1em;
}
/*動画エリアflex*/
.movie_wrap {
	display: flex;
	}

.movie_img {
	width: 400px;
	min-width: 270px;
}

.movie_info {
	margin-left: 20px;
}

.movie_title {
	font-size: 1.2em;
	font-weight:bold;
	margin-bottom: 5px;
}

ul.movie_title_list {
	font-size:0.95em;
	list-style: none;
	margin: 15px 0;
	padding: 0;
}
/*テレビ局ごとのまとまり*/
.tv_wrap{
	margin-bottom: 15px;
}

h4.works_title {
   padding-left: 20px;
}

.works_link {
	font-size: 0.8em;
}
	
.works_contents{
	padding-left:20px;
}

.works_contents p{
    margin: 3px 0;
}

.works_subtitle {
	margin-left: 30px;
	margin-bottom: 7px;
}
/*各リスト表示*/
.tv_title_list,.vp_list,.cm_list {
	list-style: none;
	margin-left:0;
	padding-left: 0!important;
}

.tv_title_list li,.vp_list li,.cm_list li {
	background: url(https://izumi-m.com/wp-content/uploads/2021/04/listmark2.jpg) no-repeat 10px 8px;
	margin-left:0;
	padding-left: 25px!important;
}

ul.tv_subtitle_list {
	list-style: none;
	margin-left: 50px;
	margin-bottom: 0px!important;
	padding: 5px 0 30px 0;
	padding-bottom: 10px!important;
	font-size: 0.9em;
}
ul.tv_subtitle_list li{
	background: url(https://izumi-m.com/wp-content/uploads/2021/04/listmark1.jpg) no-repeat 10px 5px;
	margin-left:0;
	padding-left: 25px!important;
}
.info_block {
	display: inline-block;
	padding: 10px;
	padding-top: 5px;
	padding-left: 50px;
	font-size: 0.9em;
}

.text_flame1 {
	display: inline-block;
	background-color: #f2f2f2;
	margin-top: 5px;
	border-radius: 5px;
	padding: 3px 8px;
	font-size: 0.9em;
}

@media screen and (max-width: 834px) {
#post-84 {
	margin: 0 5%;
}
.movie_img{
		max-width:70%;
		margin: 0 auto;
}
.movie_wrap{
		display: block;
	}
}


@media screen and (max-width: 420px) {
#post-84 {
	margin: 0;
}
#post-84 .entry-title {
    background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/works_title_s.jpg");
	height: 48px;
	width: 200px;
}
.tv_title_list,.vp_list,.cm_list {
	margin-left:0;
	padding-left:0!important;
}

ul.tv_subtitle_list {
	margin-left: 30px;
	}

.info_block {
	display: inline-block;
	padding: 10px;
	padding-top: 5px;
	padding-left: 35px;
	font-size: 0.9em;
}
	.tv_title_list li,.vp_list li,.cm_list li {
	background: url(https://izumi-m.com/wp-content/uploads/2021/04/listmark2.jpg) no-repeat 10px 6px;		
	}

}

/* Blog
--------------------------------------------*/
.blogcard-wrap {
	width: 100%;
	margin: 0 0 10px 0;
}

aside#media_image-2 {
	text-align: center;
}

aside#media_image-3 {
	text-align: center;
}

h3.widget-title {
	background-color: #3d3d3d;
	color: #ffffff;
	text-align: center;
	font-size:0.9em;
	border-radius: 5px;
}

.post-date {
	font-size:0.85em;
	color: #9e9e9e;
	margin: 0;
	padding: 0;
}

/*最新の投稿：サイドバー調整*/
#recent-posts-2 ul li{
	font-size: 0.9em;
	padding-left:10px;
	line-height: 1.1;
	list-style-type: none;
}
/*最新の投稿：リストマーク*/
#recent-posts-2 ul li a::before {
  content: "\f14b";
  font-size: 1.1em;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #9e9e9e;
  margin-right:0.5em;
}

#categories-2 ul li{
	font-size: 0.9em;
	padding-left:10px;
	line-height: 1.1;
	list-style-type: none;
}
/*カテゴリー：リストマーク*/
#categories-2 ul li a::before {
  content: "\f0c8";
  font-size: 0.9em;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #9e9e9e;
  margin-right:0.5em;
}

/*アーカイブ：サイドバー調整*/
#archives-2 ul li{
	font-size: 0.9em;
	padding-left:10px;
	line-height: 1.1;
	list-style-type: none;
}
/*アーカイブ：リストマーク*/
#archives-2 ul li a::before {
  content: "\f073";
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  color: #9e9e9e;
  margin-right:0.5em;
}
/*ブログタイトルレスポンシブ設定*/
/*1023px以上*/
@media screen and (min-width: 1023px){
aside#media_image-3 {
	display: none;
}
}

/*1023px以下*/
@media screen and (max-width: 1023px){
aside#media_image-2 {
	display: none;
}
}

/*420px以下*/
@media screen and (max-width: 420px){
aside#media_image-3 {
    margin: -10px auto 0;
    width: 70%;
}
}
/* Contact
--------------------------------------------*/
#post-18 .entry-title {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/contact_title.jpg");
	margin: 0 auto;
	height: 60px;
	width: 250px;
	text-indent:-9999px;
}

#post-18 {
	margin: 0 20%;
}

#post-18 .entry-title {
	text-align:center;
}

#post-18 .wp-block-table {
	margin: 0 auto;
}
table th, table td {
	border: none;
	background-color: #ffffff;
}
figure.wp-block-table table{
	width: 100%;
}

.search-edit, input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
	font-size: 1em;
}

.green_btn_s {
	font-size: 0.65em;
	font-weight: bold;
	padding: 2px 6px;
	background-color: #9e9e9e;
	color: #fff;
	margin-bottom: 5px;
	position: relative;
	top: -2px;

}

input[type='submit']{
	background-color: #3d3d3d;
	color: #fff;
}

@media screen and (max-width: 420px) {
#post-18 {
	margin: 0 5%;
}
	
#post-18 label {
	font-size:1em;
}
	
#post-18 .entry-title {
    background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/contact_title_s.jpg");
	height: 48px;
	width: 200px;
}
}

/* 投稿シングルページ共通
--------------------------------------------*/
/*投稿ページヘッダー画像設定*/
.single .header{
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/post_header_01.jpg");
	background-position: left center;
	width:100vw;
	height: 10.41vw; /*ヘッダーロゴに合わせて90pxに*/
}

/*投稿ページの余分な情報非表示*/
.cat-label {
	display: none;
}
.post .author-info {
	display:none;
}
/*投稿ページ余白調整*/
.single .main {
	padding: 40px 100px;
}

@media screen and (min-width: 769px) {
	.single .header-in {
		min-height: 20vw; /*hederに合わせて同じ位の数値で調整*/
	}
}
@media screen and (max-width: 420px) {
	.single .header {
		height: 20vw;
	}
.single .main {
		padding: 5% 5%;
	}
}

/* 固定ページ共通
--------------------------------------------*/
/*固定ページヘッダー画像設定*/
.page .header {
	background-image: url("https://izumi-m.com/wp-content/uploads/2020/04/post_header_01.jpg");
	background-position: left center;
	width:100vw;
	height: 10.41vw; /*ヘッダーロゴに合わせて90pxに*/
}
@media screen and (min-width: 769px) {
	.page .header-in {
		min-height: 200px; /*hederに合わせて同じ位の数値で調整*/
	}
}
@media screen and (max-width: 420px) {
	.page .header {
		height: 20vw;
	}
}

/*固定ページの余分なボタン非表示*/
/*シェアボタン･フォローボタン*/
.page .sns-share,
.page .sns-follow {
    display: none;
}
/*日付・著者情報非表示*/
.page .date-tags,
.page .author-info {
    display: none;
}


/* コンテンツをフェードインさせるcss
--------------------------------------------*/
#main{
    animation: fadeIn 1s ease-out 0s 1 normal;
}
#sidebar {
    animation: fadeIn 1s ease-out 0s 1 normal;
}

@keyframes fadeIn {
    from {transform: translateY(10%); opacity: 0;}
    100% {transform: translateY(0%); opacity: 1;}
}
#header-container {
    animation: Down 1s ease-out 0s 1 normal;
}

@keyframes Down {
    from {transform: translateY(-10%); opacity: 0;}
    100% {transform: translateY(0%); opacity: 1;}
}

#breadcrumb {
    animation: Right 1s ease-out 0s 1 normal;
}

@keyframes Right {
    from {transform: translateX(10%); opacity: 0;}
    100% {transform: translateX(0%); opacity: 1;}
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* テストページ用css（テスト完了後削除）
--------------------------------------------*/
#post-3584 {
	margin: 0 20%;
}
#post-3584 .entry-title {
	text-align: center;
}

#post-3535 {
	margin: 0 20%;
}
#post-3535 .entry-title {
	text-align: center;
}

#post-3564 {
	margin: 0 20%;
}
#post-3564 .entry-title {
	text-align: center;
}

/*---------------------------------------------------------------------*/
#post-5889 .entry-title {
	background-image: url("https://izumi-m.com/wp-content/uploads/2026/01/voice_gallery_title.jpg");
	margin: 0 auto;
	height: 60px;
	width: 250px;
	text-indent:-9999px;
}
#post-5889 {
	margin: 0 20%;
}
#post-5889 iframe {
	margin: 0;
}
#post-5889 p, .paragraph{
	line-height:1em;
	margin:0;
}
#post-5889 .entry-title {
	text-align:center;
}

@media screen and (max-width: 834px) {
#post-3584 {
	margin: 0 5%;
}
	#post-3535 {
	margin: 0 5%;
}
	#post-3564 {
	margin: 0 5%;
}
}

@media screen and (max-width: 420px) {
#post-3584 {
	margin: 0;
}
	#post-3535 {
	margin: 0;
}
	#post-3564 {
	margin: 0;
}

}

