@charset "utf-8";
/*
Theme Name: company
Theme URI: http://sphere-links.co.jp/
Description: company
Version: 1.0
Author: sphere-links
Author URI: http://sphere-links.co.jp/
Tags: company

*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,ol {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}


/* change colours to suit your needs */

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}


/* change colours to suit your needs */

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* change border colour to suit your needs */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}




/*************************************************************

ここまでリセット

*************************************************************/
/*共通*/
/*全体のフォントサイズを指定、remでbodyに引っ張られないようにする*/
html {
  font-size: 62.5%;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

body {
	font-size: 1.4em;
	line-height: normal;/*詰まりすぎを防ぐ*/
	color: #1f2c46;
}
/*全体のフォントサイズを指定*/

a{
	color: #999;
	text-decoration: none;
}

a:hover{
	color: #FF6600;
}

a:hover img{
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.clearfix:after{
  display: table;
  clear: both;
  content: "";
}

div{
	box-sizing: border-box;
}

img{
	max-width: 100%;
	vertical-align: bottom;
}

/*背景*/
body{
	background-image: url(images/bodybg.jpg);
	background-repeat: repeat-x;	
}

.wrap{
	max-width: 950px;
	margin: 0 auto;
	background-color: #fff;
}


/*ヘッダー*/
header h1{
	font-size: 1.0rem;
	text-align: right;
	color: #999;
	padding:3px 20px 0 0;
}
@media screen and (max-width: 768px){
	header h1{
		padding: 3px 5px 0;
		text-align: center;
	}
}

header .logo_area{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px 0 14px;
}
@media screen and (max-width: 768px){
	header .logo_area{
		display: none;
	}
}


/*メニュー*/
header .for_pc>ul{
	display: flex;
}

header .for_pc>ul>li{
    width: calc(100% / 7);
}

header .for_pc ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
    background: -moz-linear-gradient(top, #fbfbfb, #e8e8e8);
    background: -webkit-linear-gradient(top, #fbfbfb, #e8e8e8);
    background: linear-gradient(to bottom, #fbfbfb, #e8e8e8);    
    height: 50px;
    border-right: solid 1px #e6e6e6;
}

header .for_pc ul li:last-child a{
    border: none;
}

#dd {
	text-align: center;
	margin-top: 20px;	
}
@media screen and (max-width: 1199px){
	#dd{
		width: 100%;
		font-size: 15px;
	}
}
@media screen and (max-width: 768px){
	#dd {
		display: none;
	}	
}

#dd > ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    align-items: center;
    background: -moz-linear-gradient(top, #fbfbfb, #e8e8e8);
    background: -webkit-linear-gradient(top, #fbfbfb, #e8e8e8);
    background: linear-gradient(to bottom, #fbfbfb, #e8e8e8);    
    padding: 0 5px 0 5px;
}
#dd > ul > li {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
    padding-top: 15px;    
}
#dd > ul > li:not(:last-child) {
    border-right: solid 1px #e6e6e6;
}
#dd ul li {
  position: relative;
	z-index: 10;
}

#dd>ul>li {
	width: calc(100% / 8);
}

#dd li li {
  border-bottom: 1px solid white;
}
#dd a {
  display: block;
  transition: 0.3s;
	height: auto;
	text-decoration: none;
}
@media screen and (min-width: 1201px){
	#dd a br{
		display: none;
	}
}

#dd a:hover {
  text-decoration: none;
}
#dd > ul > li > a {
	padding-bottom: 15px;
}
#dd > ul > li > a.active {
  border-bottom-color: #37a0da;
}
#dd .level1, #dd .level2 {
  position: absolute;
  z-index: 9;
	/*width: 200px;*/
	width: 100%;
	padding-left: 0;
}
#dd .level1 a, #dd .level2 a {
  padding: 7px 5px;
  background: #f5f5f5;
	font-size: 14px;
	color: #999;
    text-align: left;
}
#dd .level1 .active, #dd .level2 .active {
  color: #999;
  background: #e8e8e8;
}
#dd .level1 {
  top: 100%;
  left: 0;
}
#dd .level2 {
  top: 0;
  left: 100%;
  border-left: 1px solid white;
	padding-left: 0;
}
#dd .item-arrow:after {
  content: "";
  position: absolute;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  top: 50%;
  right: 10px;
  margin-top: -4px;
  border-color: #37a0da;
}


#sp_g_nav{
	display: none;
}

@media screen and (max-width: 768px){
/*SPメニューを出しつつPCを非表示に*/
	#sp_g_nav{
		display: block;
		height: 56px;
		top: 0;
		z-index: 20;
		width: 100%;
		position: relative;
	}
	.for_pc{
		display: none;
	}

	.sp_logo{
		position: absolute;
		top: 7px;
		left: 10px;
		width: 127px;
	}

	.sp_to_top{
		position: absolute;
		top: 10px;
		right: 10px;
		width: 100px;
	}

	.lg_m{
	text-align:right;
	}
	/*メニューの動き*/
	.menu-trigger,
	.menu-trigger span{
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		cursor :pointer;
	}
	.menu-trigger{
		position: relative;
		width: 50px;
		height: 50px;
		z-index: 2;
	}
	.menu-trigger span{
		position: absolute;
		background: #000;
		width: 30px;
		height: 2px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.menu-trigger span:nth-of-type(1){
		top: 15px;
	}
	.menu-trigger span:nth-of-type(2){
		top: 0;
		bottom: 0;
	}
	.menu-trigger span:nth-of-type(3){
		bottom: 15px;
	}
	.menu-trigger.active span:nth-of-type(1){
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2){
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3){
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	}
	/*メニューの動き END*/
	
	#sp_g_nav .sp_nav ul{
		background-color: #fff;
		opacity: 0.9;
	}
	.sp_nav{
	  display: none;
	  position: absolute;
	  top: 70;
	  width: 100%;
		z-index: 3;
	}
	#sp_g_nav .sp_nav>li{
		text-align:center;
		width: 100%;
		border-bottom: solid 1px #43577C;
	}
	#sp_g_nav .sp_nav li a,
    .sp_sub_menu>span{
		display: block;
		padding: 10px;
		color: #43577C;
		font-size: 1.6rem;
        width: 75%;
        margin: 0 auto;
        text-align: left;
        box-sizing: border-box;
	}
    
    .sp_sub_menu span.level0{
        display: flex;
        justify-content: space-between;
    }
	
	.sp_sub_menu .level0 > a{
    margin: 0!important;
padding: 0!important;
	}
    
	.sp_nav>ul>li.sp_sub_menu>ul{
		display: none;
		padding-left: 1em;
		margin-top: 0.5em;
        padding: 10px;
	}    
    
    .level1_wrap{
        padding: 0!important;
        margin: 0!important;
    }
    
    .level1_wrap>li{
        width: 75%;
        padding-left: 1em;
        padding-right: 10px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .level1_wrap ul a{
        padding: 0!important;
        width: 100%!important;
        font-size: inherit!important;
    }
    
    .level1{
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }
    
    .level1+ul{
        padding-left: 1em;
        margin-bottom: 10px;
        display: none;
    }
    
    
    
}




/*トップページ*/
.contents_wrap{
	max-width: 930px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px){
	.contents_wrap{
		display: block;
		padding: 30px 10px 0;
	}
}

.contents_wrap .left{
	width: 660px;
    margin-right: 20px;
}
@media screen and (max-width: 768px){
	.contents_wrap .left{
		width: 100%;
		margin-bottom: 50px;
        margin-right: 0;
	}
}

.contents_body{
    line-height: 1.8;
    word-break: break-all;
}

.contents_body a{
    color: #FF7600;
}

.contents_body a:hover{
    color: #ff3208;
}

.blog_top .left ul{
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px){
	.blog_top .left ul{
		justify-content: space-around;
	}
}

.blog_top .left li{
	width: 210px;
	/*border: solid 1px #eee;*/
	padding: 10px;
	box-sizing: border-box;
	/*margin-right: 10px;
	margin-bottom: 10px;*/
    margin: 0 5px 10px 5px;
}
@media screen and (max-width: 768px){
	.blog_top .left li{
		width: 45%;
	}
	.blog_top .left li:nth-child(2n){
		margin-right: 0;
	}
}
@media screen and (max-width: 500px){
	.blog_top .left li{
		width: 100%;
		margin-right: 0;
	}
}

.blog_top .left li .photo{
	margin-bottom: 10px;
}

.blog_top .left li .photo a{
	display: block;
	width: 100%;
	height: 188px;
    border: solid 1px #eee;	
}

.blog_top .left li .photo a:hover{
    opacity: 0.6;
}

.blog_top .left li .text{
    word-break: break-all;
}

.blog_top .left li .text a{
	color: #FF6600;
}

.blog_top .left li .text a:hover{
    color: #ff0000;
}

.blog_top .left li .text p:nth-of-type(2){
	margin-bottom: 10px;
}

.contents_wrap .right{
	width: 240px;
}
@media screen and (max-width: 768px){
	.contents_wrap .right{
		width: 100%;
	}
}

.contents_wrap .right .latest_blog_ttl{
	text-align: center;
	background-color: #43577C;
	color: #fff;
	padding: 10px;
    border-radius: 2px;
    font-size: 1.6rem;
}

.contents_wrap .right>ul{
	margin-top: 20px;
}

.contents_wrap .right>ul li{
	border-bottom: solid 1px #eee;
	padding-bottom: 10px;
	margin-bottom: 10px;
	padding-left: 10px;
}

.pagination{
	text-align: center;
	margin-top: 20px;
    border-top: solid 1px #eee;
    padding-top: 20px;    
}

.pagination>span{
    background-color: #FF6600;
    color: #fff;
    padding: 3px 10px;   
    border: solid 1px #FF6600;
}

.pagination>a{
     padding: 3px 10px;      
    border: solid 1px #d4d4d4;
}

.pagination>a:hover{
    background-color: #FF6600;
    color: #fff;   
}

.blog_ttl{
    text-align: center;
    background-color: #43577C;
    color: #fff;
    padding: 10px;
    border-radius: 2px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.lefty_group .blog_ttl{
    background-color: #004ea2;
}

.accordion_group .blog_ttl{
    background-color: #991c38;
}

.harmonica_group .blog_ttl{
    background-color: #f29015;
}



.blog_sub_ttl{
    background-color: #eaeaea;
    padding: 5px;
    margin-bottom: 20px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.inner_harmonica_group{
    display: flex;
    flex-wrap: wrap;
}

.inner_harmonica_group .harmonica_blog{
    width: 400px;
    margin-right: 10px;
}
@media screen and (max-width: 768px){
    .inner_harmonica_group .harmonica_blog{
        width: 100%;
        margin-right: 0;
    }
}

.blog_top .left .inner_harmonica_group li{
    padding: 0;
}

.inner_harmonica_group .harmonica_event{
    width: 250px;
}
@media screen and (max-width: 768px){
    .inner_harmonica_group .harmonica_event{
        width: 100%;
        margin-right: 0;
    }
}

.inner_harmonica_blog{
    display: flex;
    flex-wrap: wrap;
}

.inner_harmonica_blog .photo{
    width: 120px;
    margin-right: 10px;
}
@media screen and (max-width: 768px){
    .inner_harmonica_blog .photo{
        width: 100%;
        margin: 0 0 10px 0;
    }
}

.inner_harmonica_blog .photo a{
    display: block;
    width: 100%;
    height: 120px;
    border: solid 1px #eee;    
}

.inner_harmonica_blog .text{
    width: calc(100% - 140px);
}
@media screen and (max-width: 768px){
    .inner_harmonica_blog .text{
        width: 100%;
    }
}

.inner_harmonica_blog .text a{
    color: #FF6600;
}

.inner_harmonica_blog .text .date{
    margin-bottom: 10px;
}

/*イベント一覧*/
.harmonica_event_now{
    background-color: #f29015;
    padding: 10px 15px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;    
}

.harmonica_event_old{
    background-color: #888;
    padding: 10px 15px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;    
}

.accordion_event_now{
    background-color: #991c38;
    padding: 10px 15px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;    
}

.accordion_event_old{
    background-color: #888;
    padding: 10px 15px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;    
}

.blog_top .left .event_archive li{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.blog_top .left .event_archive li .photo{
    width: 200px;
    margin-right: 20px;
}

.blog_top .left .event_archive li .text{
    width: calc(100% - 220px);
}

.date{
    display: inline-block;
    padding: 3px 7px;
    margin-top: 5px;
    margin-bottom: 5px;    
}

.date.lefty_news_date,
.date.lefty_blog_date{
    color: #fff;    
    background-color: #004ea2;    
}

.date.accordion_news_date,
.date.accordion_blog_date,
.date.accordion_event_date{
    color: #fff;    
    background-color: #991c38;    
}

.date.harmonica_news_date,
.date.seekers_diary_date,
.date.harmonica_event_date,
.date.harmonica_blog_date{
    color: #fff;    
    background-color: #f29015;    
}



/*一覧ページ*/
.cat_main_visual{
    margin-bottom: 30px;
}




.side_nav_group,
.side_nav_hr{
    border-bottom: solid 1px #eee;
    margin-bottom: 30px;
}

.side_nav_group>div{
    margin-bottom: 30px;
}

.side_nav_group h2{
    position: relative;    
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.side_nav_group h2::after{
    position: absolute;
    content: " ";
    display: block; 
    bottom: -3px;
    width: 30%;    
}

.side_nav_group h2 {
    border-bottom: solid 3px #efefef;
}

.side_guitar h2{
    color: #004ea2;
}

.side_accordion h2{
    color: #991c38;
}

.side_harmonica h2{
    color: #f29015;
}

.side_guitar h2:after {
    border-bottom: solid 3px #004ea2;
}

.side_accordion h2:after {
    border-bottom: solid 3px #991c38;
}

.side_harmonica h2:after {
    border-bottom: solid 3px #f29015;
}

.cat_side_bn li{
    margin-bottom: 5px;
}

/*
.cat_side_bn li a{
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
    border: solid 1px #d26400;
}

.cat_side_bn li.lefty_bn a{
    background-color: #ea6f00;
    color: #fff;
}
.cat_side_bn li.lefty_bn a:hover{
    background-color: #ff9636;
}

.cat_side_bn li.harmonica_event_bn a{
    background-color: #ea6f00;
    color: #fff;
}
.cat_side_bn li.harmonica_event_bn a:hover{
    background-color: #ff9636;
}

.cat_side_bn li.harmonica_blog_bn a{
    background-color: #ea6f00;
    color: #fff;
}
.cat_side_bn li.harmonica_blog_bn a:hover{
    background-color: #ff9636;
}

.cat_side_bn li.accordion_event_bn a{
    background-color: #ea6f00;
    color: #fff;
}
.cat_side_bn li.accordion_event_bn a:hover{
    background-color: #ff9636;
}

.cat_side_bn li.accordion_blog_bn a{
    background-color: #ea6f00;
    color: #fff;
}
.cat_side_bn li.accordion_blog_bn a:hover{
    background-color: #ff9636;
}

.cat_side_bn li.sunday_talk_bn a{
    background-color: #ea6f00;
    color: #fff;
}
.cat_side_bn li.sunday_talk_bn a:hover{
    background-color: #ff9636;
}
*/



.latest_blog_ttl{
    margin-bottom: 20px;
}

.latest_blog{
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.latest_blog .image-sub{
    display: block;
    height: 80px;
    width: 80px;
    border: solid 1px #eee;
    margin-right: 10px;
}

.latest_blog .image-sub:hover{
    opacity: 0.6;
}

.latest_blog .image-sub+div{
    width: calc(100% - 90px);
}

.latest_blog .image-sub+div p{
    word-break: break-all;
}

.pn_article{
    text-align: center;
}

.pn_article .imgLiquid{
    display: block;
    width: 100%;
    border: solid 1px #eee;
    margin-bottom: 5px;
    height: 150px;
}
@media screen and (max-width: 768px){
    .pn_article .imgLiquid{
        height: 100px;
    }
}

.pn_article .imgLiquid:hover{
    opacity: 0.6;
}

.back_btn{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;    
}

.back_btn p{
    margin: 0 20px;
}

.back_btn p:nth-of-type(1) a{
    background-color: #4062a8;
}

.back_btn p:nth-of-type(1) a:hover{
    background-color: #4e75c5;
}

.back_all a{
    display: block;
    background-color: #FF7600;
    width: 200px;
    margin: 20px auto 50px auto;
    padding: 10px 5px;
    text-align: center;
    color: #fff;    
    box-sizing: border-box;
}

.back_all a:hover{
    background-color: #ff9336;
}

/*詳細ページ*/
.breadcrumbs{
    max-width: 930px;
    width: 100%;
    margin: 10px auto;
}

.blog_detail .photo{
	margin-bottom: 30px;
}

.blog_detail .photo>div{
	display: block;
	width: 100%;
	height: 300px;
}
@media screen and (max-width: 768px){
	.blog_detail .photo>div{
		height: 200px;
	}
}

.blog_detail .text>p:nth-of-type(1){
	font-size: 2.2rem;
	margin-bottom: 20px;
	border-bottom: solid 1px #eee;
	padding-bottom: 10px;
	color: #43577C;
}

.blog_detail .text>p:nth-of-type(1) span{
	display: block;
	font-size: 1.4rem;
}

.blog_detail .contents_body img{
	height: auto;
}

.blog_detail .articles{
	border-top: solid 1px #eee;
	padding-top: 30px;
	margin-top: 40px;
}

.blog_detail .articles ul li.prev{
	float: left;
    width: 150px;  
}
@media screen and (max-width: 768px){
    .blog_detail .articles ul li.prev{
        width: 100px;
    }
}

.blog_detail .articles ul li.next{
	float: right;
    width: 150px;  
}
@media screen and (max-width: 768px){
    .blog_detail .articles ul li.next{
        width: 100px;
    }
}

.tag_cloud{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tag_cloud a{
    display: block;
    margin: 5px;
    border: solid 1px #eee;
    font-size: 1.2rem!important;
    padding: 5px;
}

.tag_cloud a:hover{
    color: #fff;
    background-color: #FF6600;
}

.related_ttl{
    text-align: center;
    background-color: #43577C;
    color: #fff;
    padding: 10px;   
    border-radius: 2px;
    margin-bottom: 20px;
    font-size: 1.6rem;    
}

.related_items ul{
    display: flex;
    flex-wrap: wrap;
}

.related_items li{
    width: 210px;
    border: solid 1px #eee;
    padding: 10px;
    box-sizing: border-box;
    margin-right: 10px;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px){
    .related_items li{
        width: 100%;
    }
}

.related_items li a{
    color: #FF6600;
}

.related_items li a:hover{
    color: #ff0000;
}

.related_items li .photo{
    margin-bottom: 10px;
}

.related_items li .photo a {
    display: block;
    width: 100%;
    height: 188px;
    border: solid 1px #eee;
}

.related_items li .photo a:hover{
    opacity: 0.6;
}

.imgLiquid_error{
    background-image: url("images/no_image.png");
    background-size: cover;
    background-position: center;
}

/*フッター*/
footer{
	font-size: 1.0rem;
	margin-top: 50px;
}

footer .f_link{
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	padding: 20px 0;
}
@media screen and (max-width: 768px){
	footer .f_link{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 20px 10px;
	}
}

footer .f_link ul{
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px){
	footer .f_link ul{
		display: block;
		width: 45%;
	}
}

footer .f_link ul li{
	padding-right: 10px;
}
@media screen and (max-width: 768px){
	footer .f_link ul li{
		text-align: center;
		margin-bottom: 10px;
	}
}

footer .f_link ul li::after{
	content: "|";
	padding-left: 10px;
}
@media screen and (max-width: 768px){
	footer .f_link ul li::after{
		content: none;
	}
}

footer .f_link ul li:last-child:after{
	content: none;
}

footer .copy{
	text-align: center;
	color: #4d4d4d;
}

footer .copy p{
	margin-bottom: 10px;
}









/*ブログテンプレート*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.625em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.625em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
	margin-bottom: 1.625em;
}


/*ビデオ相談室*/
.items_h2{
    border: solid 1px #c5c5c5;
    padding: 8px 10px;
    color: #707070;
    font-weight: normal;
    margin-bottom: 5px;
    background-color: #fdfdfd;    
}

.items_list li{
    margin-bottom: 5px;
    text-indent: -1em;
    padding-left: 1em;
}

.items_list+p{
    font-size: 10px;
    color: #999;
}

.side_banner{
    text-align: center;
    margin-top: 30px;
}

.side_banner li{
    margin-bottom: 10px;
}

.side_banner li:nth-of-type(1){
    border-top: solid 1px #c3c3c3;
    padding-top: 10px;
    border-bottom: solid 1px #c3c3c3;
    padding-bottom: 10px;   
}

.consultation_wrap h2{
    background-color: #004ea1;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 15px;
}

.consultation_wrap h2 span{
    color: #f49014;
}

.consultation_wrap .about_wrap{
    line-height: 1.8;
    font-size: 14px;   
    margin-bottom: 40px;
}

.consultation_wrap .about_wrap p{
    margin-bottom: 10px;
}

.consultation_wrap .about_wrap .text1{
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.consultation_wrap .about_wrap a{
    color: #ec8400;
    text-decoration: underline;
}

.consultation_wrap .about_wrap a:hover{
    text-decoration: none;
}

.guitar_box{
    margin-bottom: 100px;
}

.guitar_box h3{
    /*color: #000;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: normal;
    border-left: solid 10px #004ea1;
    background-color: #f3f3f3;
    */
}

.guitar_box h3{
    position: relative;
    padding-bottom: 5px;
    border-bottom: 4px solid #ccc;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #00438a;
}
.guitar_box h3::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #004ea1;
}




.details_wrap .photo{
    width: 200px;
    height: 200px;
    background-color: #434343;
    margin-right: 20px;
}
@media screen and (max-width: 600px){
    .details_wrap .photo{
        margin: 0 auto 10px auto;
    }
}

.details_wrap .text{
    line-height: 1.8;
}
@media screen and (max-width: 600px){
    .details_wrap .text{
        width: 100%;
    }
}

.text_color1{
    color: #e50013;
    font-weight: bold;
}

.text_color2{
    background:linear-gradient(transparent 60%, #ff6 60%);
}

.reservation_btn{
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;    
}

.reservation_btn a{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    width: 60%;
    margin: 0 auto;    
    background: -moz-linear-gradient(top, #ff5c23, #d63e09);
    background: -webkit-linear-gradient(top, #ff5c23, #d63e09);
    background: linear-gradient(to bottom, #ff5c23, #d63e09);
    border: solid 1px #f1521a;
}
@media screen and (max-width: 768px){
    .reservation_btn a{
        width: 80%;
    }
}

.reservation_btn a:hover{
    background: -moz-linear-gradient(top, #ff8c64, #ef4c14);
    background: -webkit-linear-gradient(top, #ff8c64, #ef4c14);
    background: linear-gradient(to bottom, #ff8c64, #ef4c14);
}

/*
.accordion_box h3{
    color: #000;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: normal;
    border-left: solid 10px #f49014;
    background-color: #f3f3f3;    
}
*/

.accordion_box h3{
    position: relative;
    padding-bottom: 5px;
    border-bottom: 4px solid #ccc;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #af6100;
}
.accordion_box h3::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #f49014;
}

.prec_wrap{
    margin-top: 40px;
    border-top: solid 1px #dedede;
    padding-top: 15px;    
    line-height: 1.6;
}

.prec_wrap li{
    text-indent: -1em;
    padding-left: 1em;
}

.reservation_wrap{
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
}

.reservation_wrap h2{
    background-color: #004ea1;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.calendar-caption {
	font-size:2.5rem !important;
}

.monthly-prev-next {
	font-size:1.8rem !important;
}

.career_color{
	color:#ec8400;
}


/*ブログギャラリー*/
.gallery{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;    
}

@media screen and (min-width: 769px){
    .gallery-item{
        width: calc((100% - 32px)/3);
        margin: 0 16px 16px 0;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
}
@media screen and (max-width: 768px){
    .gallery-item{
        width: calc((100% - 16px)/2);
        margin: 0 16px 16px 0;        
    }
}

@media screen and (min-width: 769px){
    .gallery-item:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 768px){
    .gallery-item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.gallery-item:nth-last-child(2){
    margin-right: 0;
}

.gallery-item dt{
    height: 100%;
    position: relative;
}

.gallery-item dt a{
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;    
}

.gallery-item img{
    height: 100%!important;
    flex: 1;
    object-fit: cover;    
}


.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
    margin-bottom: 30px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

figcaption{
    box-sizing: border-box;
}

.accordion_blog p{
    margin-bottom: 20px;
}


.accordion_blog h2{
    font-size: 2.0rem;
    font-weight: normal;
    margin-bottom: 10px;
}

.accordion_blog ol{
    margin-bottom: 30px;
    padding-left: 20px;
}

.accordion_blog ol li{
    list-style: decimal;
}

.accordion_blog .wp-block-cover{
    padding: 40px 20px;
    margin-bottom: 30px;
}

.accordion_blog .wp-block-cover p{
    margin-bottom: 5px;
}

.accordion_blog .wp-block-cover ul{
    margin-bottom: 20px;
}

.accordion_blog h4{
    font-size: 2.0rem;
}

.accordion_blog .blocks-gallery-item__caption{
    line-height: 1.4;
}
.event_none{
	margin-bottom: 15px;
}


/* 20210308追記 */

.guitar_box.border_box {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    padding: 20px 0;
}
.guitar_box.border_box .flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.guitar_box.border_box .reservation_btn {
    background-color: none;
    padding: 0;
    margin-top: 0;
    flex-basis: 49%;
}
.reservation_btn a {
    width: 100%;
}
.reservation_btn.guitar_btn a {
    background:#00438a;
    border: none;
    border-radius: 0;
}
.reservation_btn.accordion_btn a {
    background:#f49014;
    border: none;
    border-radius: 0;
}
.text_big {
    font-size: 1.6rem;
}
@media screen and (max-width: 768px){
.guitar_box.border_box .flex{
    display: block;
}
.guitar_box.border_box .reservation_btn {
    max-width: 600px;
    margin: 0 auto 20px;
}
}

.environment.border_box{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    padding: 20px 0;
}

.environment.border_box h3{
    font-size: 2rem;
    margin-bottom: 15px;
}
.environment.border_box p{
    margin-bottom: 20px;
}

.blog_detail h3{
    font-size: 2.4rem;
}
@media screen and (max-width: 768px){
    .blog_detail h3{
        
    }
}


