@charset "UTF-8";
/*---------------------------------------------------------
Theme Name: bears2023
Theme URI: 
Description: 
Author URI: 
License: 
License URI: 
Tags: 
Version: 20230309
---------------------------------------------------------*/
* {
	font-family: 'FontAwesome'sans-serif;
	margin: 0px;
	padding: 0px;
}
main, article, aside, header, canvas, details, figcaption, figure, footer, nav, section, summary {
	display: block;
	overflow: hidden;
}
html {
	overflow-x: hidden;
}
body {
	min-width: 320px;
	word-wrap: break-word;
	background-color: #fff;
	color: #333;
	font-size: 16px;
	/* font-feature-settings: "palt"; */
	font-family: "Segoe UI", Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media (max-width : 700px){
	body{
	font-size: 14px;
	}
}
strong{
	font-weight: normal;
}
body.mceContentBody {
	background-color:#fff;
}
/* リンクの色 */
a {
	color: #eb3971;
	text-decoration: none;
}
/* リンクにマウスオーバーした時の色 */
a:hover {
	color: #eb3971;
}
img, video, object {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
	display: block;
}
/* 画像リンクのマウスオーバーに透かし */
a:hover img {
	-moz-opacity: 0.8;
	opacity: 0.8;
}
img.size-full, img.size-large {
	height: auto;
	max-width: 100%;
}
.wp-caption{
	height: auto;
	max-width: 100%;
}

.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clear {
	clear: both;
}
.center {
	text-align: center;
	padding-bottom: 20px;
}
li{
	list-style-type: none;
}
strong{
	font-weight: normal;
}
main ol{
	padding: 0;
}
main ol li{
	list-style: none;
}
main ol li ul li{
	list-style-type: square;
}
@media (min-width: 701px){
	.sp{
		display: none;
	}
}
@media (max-width: 700px){
	.pc{
		display: none;
	}
}

/*-----------------------------header*/
#header-inner {
    max-width: 1200px;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    justify-content: space-between;
}
header .sitename{
	display: block;
	margin: 0;
	max-width: 300px;
}

header .sitename a {
	color: #06628c;
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
}
header .sitename a img {
	margin: 0 12px 0 0;
}
header .sitename a:hover {
	-moz-opacity: 0.8;
	opacity: 0.8;
}
@media (max-width: 700px){
	#header-inner {
		padding: 20px;
	}
	header .sitename{
		height: 28px;
	}
	header .sitename a {
		height: 100%;
	}
	header .sitename a img{
		height: 100%;
	}	
}
/*--------------------------------
グローバルナビ
---------------------------------*/
neader nav {
	display: block;
	padding: 0px 0;
}
header nav ul {
	display: flex;
	margin: 15px 0 0;
}

nav ul li {
	/* font-size: 13px; */
	border: none;
	list-style-type: none;
	display: flex;
	align-items: center;
}
nav li a {
	color: #231815;
	padding: 0px 18px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	display: block;
}
nav li a span{
	display: block;
	font-size: 10px;
	color: #eb3971;
	margin: 6px 0 0 0;
	letter-spacing: 0.1em;
}
.sp-navi{
	justify-content: center;
	align-items: center;
	/* position: relative; */
	/* top: 0px; */
	background: #fff;
	height: calc(100% - 115px);
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	width: 70%;
	/* z-index: 101; */
	-webkit-overflow-scrolling: touch;
	display: block;
	padding: 65px 10% 50px;
	z-index: 990;
}
.sp.slidemenu.open .sp-navi{
    box-shadow: 0 0 90px rgb(0 0 0 / 20%);
    transform: translateX(0);
}
.sp.slidemenu li{
	width: 100%;
}
.sp.slidemenu li a{
	display: block;
	border-top: 1px solid #dcdcdc;
	width: 100%;
	text-align: left;
	padding: 20px 0;
}
.sp.slidemenu li a span{color: #b4b4b4;}
.overlay{
    display: none;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.open .overlay{
        display: block;
}
.sp-navi .sp-navi-banner{
	margin: 23px auto 0;
	max-width: 300px;
	width: 80%;
}
.sp.slidemenu .sp-navi .sp-navi-banner a{
	border: none;
	padding: 6px 0;
}
.btn_menu{
  position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
  background: #fff;
  cursor: pointer;
  width: 61px;
  height: 61px;
  border-radius: 100%;
  right: 0px;
  z-index: 2000;
  margin: 4px 20px 0 0;
}

/*ボタン内側*/
.btn_menu span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background: #eb3971;
    width: 35px;
  }

.btn_menu span:nth-of-type(1) {
  top: 16px;
}

.btn_menu span:nth-of-type(2) {
  top: 28px;
}

.btn_menu span:nth-of-type(3) {
  top: 41px;
}

/*activeクラスが付与されると線が回転して×に*/

.btn_menu.active span:nth-of-type(1) {
    top: 20px;
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 66%;
}

.btn_menu.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}

.btn_menu.active span:nth-of-type(3){
    top: 33px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 66%;
}
.sp-navi-bottom {
	margin: 20px 0 0 0;
}
.sp-navi-bottom li{
	border: none;
}
.sp-navi-bottom li a{
	font-size: 14px;
	padding-bottom: 5px;
	color: #666;
}
.sp-navi-bottom li a:before{
	content: "― ";
}
.sp-navi-bottom li:first-child a{
	border-top: none;
	padding: 10px 0;
}
/*-------------------gnavi スマホメニューここまで*/


/*中見出し*/
h2 {
    position: relative;
    font-size: 20px;
}
/*小見出し*/

article h3 a {
	text-decoration: none;
	color: #06628c;
}
article h4 {
    padding: 0;
    margin: 40px 0 20px;
    background-size: 20px;
    color: #06628c;
}
article h4:before{
    font-family: FontAwesome;
    content: "\f0da";
    margin: 0 5px 0 0;
    color: #06628c;
}
article h5{
margin-bottom:10px;
font-size:16px;
}
/*リスト */
article ul {
	list-style-type: disc;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-bottom: 10px;
	background: #f9f9f9;
	padding-top: 10px;
	width: 85%;
	margin: 10px auto;
}
article ul li {
	font-size: 14px;
	line-height: 27px;
	margin-left: 0px;
}
article ol {
	list-style-type: decimal;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin-bottom: 10px;
}

article ol li {
	font-size: 14px;
	line-height: 27px;
}
.wp-caption-text a,.wp-caption-text{
	font-size:12px;
	color:#ccc;
}

footer h4 a {
	color: #666;
	text-decoration: none;
}
/* 関連記事の文字 */

/* 記事タイトル下 */

.postinfo{
	font-size: 12px;
	margin: 0px;
	color: #666666;
}
.postinfo{
    font-size: 16px;
    color: #666;
    text-decoration: none;
    padding: 0px 0px 30px;
    text-align: right;
}
.postinfo span{
	font-size: 16px;
}
/* 引用 */
article blockquote {
	background-color: #f3f3f3;
	background-image: url(images/quote.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 70px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
}
/*----------------------------/*アイキャッチ・タイトル*/----*/


.post-category-name p,
.page-name,
.archive-name{
	background: #eb3971;
}
.post-category-name p,
.page-name h1,
.archive-name h1{
	color: #fff;
	padding: 100px 0;
	margin: 0 auto;
	font-size: 30px;
	text-align: center;
	background: url(https://bearsmall.jp/wp-content/uploads/2024/04/cropped-bears02.png) no-repeat center center;
	background-size: cover;
	background-color: rgb(114 114 114 / 50%);
	background-blend-mode: multiply;
	line-height: 1em;
	font-weight: bold;
}
.entry-title {
    line-height: 40px;
    /* color: #06628c; */
    margin: 30px 0 20px;
    font-weight: bold;
    font-size: 32px;
}
@media ( min-width: 701px){
	.post-category-name p,
	.page-name h1,
	.archive-name h1{
		padding: 50px 0;
		font-size: 20px;
		letter-spacing: 0.1em;
	}
}

/*--------------------------------
PAGE TO TOP
---------------------------------*/
#page-top {
	position: fixed!important;
	z-index: 800;
	bottom: 15px;
	right: 16px;
	/* font-size: 12px; */
}
#page-top a {
	background: #fff;
	text-decoration: none;
	color: #eb3971;
	padding: 9px 16px;
	text-align: center;
	display: block;
	border-radius: 100%;
	font-size: 35px;
	/* opacity: 0.3; */
	border: 1px solid #eb3971;
}
#page-top a:hover {
	text-decoration: none;
	background: #f25788;
	color: #fff;
}

/*--------------------------footer.php*/
#top-googlemap{
    margin: 80px auto;
    width: 100%;
    height: 25vw;
    min-height: 300px;
    max-height: 400px;
}
#top-googlemap iframe {
    width: 100%;
    height: 100%;
}
#companyinfo {
	margin-top: 100px;
}
#companyinfo p{
	font-size: 14px;
	line-height: 1.8em;
}
footer {
    clear: both;
    margin: 82px 0 0 0;
    text-align: center;
    background: #eb3971;
}
footer .footer-inner{
	max-width: 1200px;
	width: calc(100% - 20px);
	margin: 30px auto;
}
footer p{
	font-size: 14px;
	color: #fff;
}
footer .menu-footer-nav-container ul{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer .menu-footer-nav-container ul li{
	list-style-type: none;
	padding: 0 0 20px;
}
footer .menu-footer-nav-container ul li span{
	display: none;
}
footer .menu-footer-nav-container ul li a{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 0 10px;
}
footer .menu-footer-nav-container ul li a:after{
	content: "|";
	margin: 0 0 0 20px;
}
footer .menu-footer-nav-container ul li:last-child a:after{
	content: none;
}
footer .copy {
	font-size: 12px;
	margin: 60px 0 30px;
}
@media (max-width: 700px){
	footer .menu-footer-nav-container ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-left: 10px;
		flex-direction: row;
	}
	footer .menu-footer-nav-container ul li{
		width: 50%;
		text-align: left;
		margin: 0 0 -1px 0;
	}
	footer .menu-footer-nav-container ul li::marker{
		color: #fff;
	}
	footer .menu-footer-nav-container ul li a:after{
		content: "";
		margin: 0;
	}	
	footer .menu-footer-nav-container ul li a:before{
		content: "・";
	}
}
/*------------------------------レイアウト*/
.width-small{
	max-width: 700px;
	width: calc(100% - 20px);
	margin: 0 auto;
}
.width-medium{
	max-width: 960px;
	width: calc(100% - 20px);
	margin-right: auto!important;
	margin-left: auto!important;
}
.width-large{
	max-width: 1200px;
	width: calc(100% - 20px);
	margin: 0 auto;
}
.page article {
    background: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 700px){
	main{
		padding: 20px 0 40px;
	}
	.home main{
		padding-top: 0;
	}
	.single .wrap,
	.archive .wrap{
		width: calc(100% - 20px);
		margin: 0 auto;
	}
}
/*--------------------------------
トップページ
---------------------------------*/
.home .icatch{
	max-width: 1300px;
	margin: 0 auto;
}
.home .icatch img{
	width: 100%;
	margin: 0 auto 0px;
}
.top-aboutbears p a{
	display: block;
	color: #fff;
	background: ;
	display: block;
	background: #eb3971;
	width: 251px;
	text-align: center;
	color: #fff;
	padding: 12px 0;
	margin: 20px auto 0;
}
#top-photo{
	margin-top: 0!important;
	margin-bottom: 60px;
	width: calc(100% - 60px)!important;
}
.top-photo-un-text{
	background: none!important;
	padding-top: 0!important;
}
#top-photo ul {
    display: flex;
    padding: 0;
    width: 100%;
    margin: 0;
}
#top-photo ul li{
    width: calc(100% / 4);
}
#top-photo ul {
    /*display: none;*/
}
#slide-bg {
    display: none;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 400px; /* 画像の高さ */
    background-image: url(https://bearsmall.jp/wp-content/uploads/2023/04/slide-bg-scaled.jpg);
    background-repeat: repeat-x;
    background-size: auto 400px; /* 画像の高さ */
    animation: loop 45s linear infinite;
}


@keyframes loop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -2000px 0; /* 画像のマイナス幅 */
    }
}
.home #top-photo .img-slide{
    background: none;
    height: 250px;
}
.home #top-photo .slick-slide {
    width: 250px!important;
    height: 250px!important;
    object-fit: cover;
    margin: 0 20px;
}
.home #top-photo .slick-slide img{
   width: 250px!important;
    height: 250px!important;
    object-fit: cover;
 	
}
.home .post-list {
	padding: 80px 0;
	margin-top: -3px;
}
.home #post-list-event{
	background: #eb39710d;
}
.home .post-list .section-inner{
	max-width: 1200px;
	width: calc(100% - 20px);
	margin: 0 auto;
	position: relative;
}
.home .post-list .section-inner ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.home .post-list .section-inner h2{
	color: #000000;
	font-size: 40px;
	font-family: "Segoe UI", Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 500;
	align-items: center;
	margin: 0 0 54px;
	background: url(https://bearsmall.jp/wp-content/themes/bears2023/images/icon-bears.png) no-repeat left center;
	background-size: 37px;
	padding: 15px 0 15px 53px;
}
.home .post-list .section-inner h2::first-letter{
	color: #eb3971;
}
.home .post-list .section-inner h2 span{
	margin-left: 16px;
	font-size: 14px;
	font-weight: normal;
	position: relative;
	top: -5px;
}
.home .post-list .section-inner li{
	width: calc(100% / 4 - 2px);
	list-style-type: none;
	position: relative;
	border: 1px solid #e6e6e6;
	background: #fff;
	border-top: 0;
	margin-left: -1px;
}
.home #post-list-event .section-inner li p{
	margin: 0;
	padding: 0px 20px 18px;
	font-size: 14px;
	text-align: center;
}

.home #post-list-event .section-inner li p span{
	background: #eb3971;
	color: #fff;
	padding: 3px 5px;
	margin: 0px 5px 0 0;
	position: relative;
	top: 1px;
}
.home #post-list-news .section-inner li p{
	margin: 10px 0 0 0;
	padding: 0px 20px 13px;
	font-size: 14px;
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 0;
}
.home .post-list .section-inner li figure{
	margin: 0;
}
.home #post-list-event .section-inner li figure img{
	width: 100%;
}
.home #post-list-news .section-inner li figure img{
	width: 100%;
	height: 20vw;
	max-height: 366px;
	object-fit: cover;
	object-position: top;
}
.home #post-list-news .section-inner li figure img.no-img{
	object-position: center;
}
.home #post-list-event .section-inner li h3{
	padding: 12px 10px 15px;
	line-height: 1.3;
	text-align: center;
}
.home #post-list-news .section-inner li h3{
	padding: 12px 20px 38px;
	line-height: 1.8;
	text-align: left;
}
.home .post-list .section-inner li h3 a{
    font-size: 16px;
    color: #333;
}
.home .post-list ul + p{
	position: absolute;
	right: 0;
	top: 0px;
}
.home .post-list ul + p a{
	display: block;
	background: #eb3971;
	width: 170px;
	text-align: center;
	color: #fff;
	padding: 17px 0;
}
#top-bannerarea{
	margin: 30px 0 100px;
}
#top-bannerarea .wp-block-column {
    padding: 0 20px;
}
@media ( min-width : 701px){
	.home .sp-icatch{
		display: none;
	}
}
@media ( max-width : 700px ){
	.home .pc-icatch{
		display: none;
	}
	.slick-slider {
	    max-width: 700px;
	    width: 100%;
	    overflow: hidden;
	}
	
	.slick-slide img {
	    max-width: 100vw;
	    /* width: 100%; */
	    /* max-height: 65vw; */
	}
    #top-photo ul {
        flex-wrap: wrap;
    }
    #top-photo ul li{
        width: calc(100% / 2);
    } 
	.home #top-photo .img-slide{
	    background: none;
	    height: 200px;
	}
	.home #top-photo .slick-slide {
	    margin: 0 5px;
	    width: 200px!important;
	    height: 200px;
	}
	.home #top-photo .slick-slide img{
	    width: 200px!important;
	    height: 200px!important;
	    object-fit: cover;
	}
	.home .post-list{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.home .post-list .section-inner h2{
		font-size: 26px;
		margin: 0 0 20px;
	}
	.home .post-list .section-inner h2 span{
		font-size: 12px;
		top: 0px;
	}
	.home .post-list .section-inner li{
		width: calc(50% - 2px);
	}
	.home .post-list .section-inner li h3 a{
	    font-size: 14px;
	    color: #333;
	}
	.home #post-list-event .section-inner li figure img{
		height: 100%;
	}
	.home #post-list-news .section-inner li figure img{
		height: 50vw;
	}
	.home .post-list ul + p{
		position: relative;
		margin: 40px auto 0;
	}
	.home .post-list ul + p a{
		display: block;
		background: #eb3971;
		width: 170px;
		text-align: center;
		color: #fff;
		padding: 17px 0;
		margin: 0 auto;
	}
	.home #top-bannerarea{
		margin: 0px 0 30px;
		max-width: 263px;
	}
	#top-bannerarea .wp-block-column {
	    padding: 20px 0px;
	}
}

/*--------------------------------
ぱんくず
---------------------------------*/
.breadcrumb {
	font-size: 13px;
	padding: 30px 0px 80px;
	width: 98%;
}
.breadcrumb div {
	display: inline;
}
.breadcrumb a {
	color: #666;
	text-decoration: none;
}
@media (max-width: 700px){
	.breadcrumb {
		font-size: 13px;
		padding: 0px 0px 20px;
		width: calc( 100% - 20px);
	}
}

/*--------------------------------
エディタ用
---------------------------------*/
/*テーブル */
article table {
	border-top: 1px #999 solid;
	border-right: 1px #999 solid;
	margin-bottom:20px;
	width:100%;
}
table tr th{
  border: 1px solid #999;
  font-weight: normal;
}
table tr td {
	padding: 10px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #999;
	border-left-color: #999;
	font-size: 16px;
	/* line-height: 18px; */
}

#main article table {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #999;
	border-right-color: #999;
	color: #333;
}
.ie8 img {
	width: auto;
}
/*リスト */
article ul {
	list-style-type: disc;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-bottom: 10px;
}
article ul li {
	font-size: 17px;
	line-height: 27px;
}
article ol {
	list-style-type: decimal;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-bottom: 10px;
}

article ol li {
	font-size: 17px;
	line-height: 27px;
}

/*--------------------------------
検索フォーム
---------------------------------*/
aside #search {
	padding-bottom: 0px;
	position: relative;
	width: 100%;
}
#s {
	height: 33px;
	color: #333;
	font-size: 14px;
	border-radius: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #ccc;
	z-index: 10;
	padding: 5px 65px 10px 5px;
	width: 100%;
	box-sizing: border-box;
}
#searchsubmit {
	border-radius: 0;
	background-color: #ccc;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 50px;
	height: 32px;
	z-index: 20;
}
*:first-child + html #searchsubmit {
	top: 1px;
}




/*--------------------------------
ページャー
---------------------------------*/

.p-navi dl dt {
	font-weight: bold;
	font-size: 14px;
	line-height: 27px;
	float: left;
	width: 50px;
	color: #666;
}
.p-navi dl dd {
	font-size: 15px;
	padding-left: 55px;
	line-height: 27px;
}

.pagination {
	clear: both;
	position: relative;
	font-size: 11px;
	line-height: 13px;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 6px 9px 5px 9px;
	text-decoration: none;
	width: auto;
	color: #fff;
	background-color: #999;
}
.pagination a:hover {
	color: #fff;
	background-color: #666666;
}
.pagination .current {
	padding: 6px 9px 5px 9px;
	color: #fff;
	background-color: #CCCCCC;
}



/*-----------------------------------------------

media Queries スマホサイズ

----------------------------------------------------*/


@media screen and (max-width: 770px){
	.smanone {
		display: none;
	}


	main figure img{
		margin: 0 auto;
	}
	#itiran dl{
		width: 100%;
	}
	#itiran dd h3 {
		font-size: 16px;
		line-height: 22px;
		font-size: 18px;
		margin: 0 0 10px;
		padding: 0;
		color: #06628c;
		line-height: 22px;
		margin-left: 0px;
		border: none;
    }
	.entry-title {
		font-size: 18px;
		line-height: 1.2;
	}
	#comments {
		padding: 3%;
	}
	aside {
		width: 100%;
		/* background: #efefef; */
		padding: 10px 0;
		clear: both;
		float: none;
		width: 100%;
		position: static !important;
	}
	#mybox .textwidget figure{
		width: 160px;
	}

		aside h4 {
		background: #f9f9f9;
	}
	#itiran .clearfix dd .blog_info p {
		margin-bottom: 0;
	}
}


/*----------------------------------------------------

media Queries PCサイズ

----------------------------------------------------*/
@media screen and (min-width: 771px){
.single .wrap,
.archive .wrap{
	max-width: 1200px;
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.single main{
	width: calc(100% - 380px);
}

.single main .eventday{
	font-size: 23px;
	font-weight: bold;
	display: inline-block;
	vertical-align: bottom;
	padding-top: 4px;
	margin-bottom: -20px;
	margin-left: -30px;
}
.single main .eventday span{
	display: inline-block;
	color: #fff;
	margin: 0 0px 0 0;
	font-size: 18px;
	position: relative;
}
.single main .eventday span.flag {
  display: inline-block;
  position: relative;
  height: 62px;
  line-height: 56px;
  text-align: center;
  padding: 2px 0;
  font-size: 18px;/*文字サイズ*/
  background: #7f9dfb;/*背景色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
}
.single main .eventday span.flag span {
  margin: 0;
  padding: 0 30px 0 30px;
  display: block;
  border-top: dashed 1px #FFF;
  border-bottom: dashed 1px #FFF;
}

.single main .eventday span.flag:after {
  position: absolute;
  content: '';
  z-index: 1;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.single .wrap article {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 30px;
}
.single article p,.archive article p span{
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 1em;
}
.single .wrap aside,
.archive .wrap aside{
	padding: 35px 0;
	width: 310px;
}
.single .wrap aside a,
.archive .wrap aside a{
	font-size: 16px;
	/* width: 100px; */
}
.single .wrap aside a img,
.archive .wrap aside a img{
	/* object-fit: contain; */
	/* object-position: center; */
	object-fit: cover;
	width: 130px;
	height: 130px;
	object-position: center;
	vertical-align: center!important;
}
#itiran dd h3 {
}
.clearfix dd .blog_info p {
	margin: 10px 0 5px;
}


/*IEで要素がズレるのを対応*/
.ie7 aside ul li, .ie8 aside ul li, .ie9 aside ul li {
	display: list-item;
	padding: 0;
}
#itiran dl {
	width: 100%;
	float: left;
}
.post ul li:nth-child(1),
.post ul li:nth-child(5){
    margin-left: 0px;
}
}
@media (max-width: 770px){

	.single main .eventday{
		font-size: 16px;
		font-weight: bold;
		display: inline-block;
		vertical-align: bottom;
		padding-top: 0px;
		margin-bottom: -20px;
		margin-left: 0px;
	}

	.single main .eventday span{
		display: inline-block;
		color: #fff;
		margin: 0 0px 0 0;
		font-size: 14px;
		position: relative;
	}
	.single main .eventday span.flag {
	  display: inline-block;
	  position: relative;
	  height: 41px;
	  line-height: 56px;
	  text-align: center;
	  padding: 1px 0;
	  font-size: 14px;/*文字サイズ*/
	  background: #7f9dfb;/*背景色*/
	  color: #FFF;/*文字色*/
	  box-sizing: border-box;
	}
	.single main .eventday span.flag span {
	  margin: 0;
	  padding: 7.5px 30px 7.5px 11px;
	  display: block;
	  border-top: dashed 1px #FFF;
	  border-bottom: dashed 1px #FFF;
	}
	
	.single main .eventday span.flag:after {
	  position: absolute;
	  content: '';
	  z-index: 1;
	  top: 0;
	  right: 0;
	  width: 0px;
	  height: 0px;
	  border-width: 20px 15px 20px 0px;
	  border-color: transparent #fff transparent transparent;
	  border-style: solid;
	}
	.single .entry-title {
		font-size: 18px;
		margin-left: 10px;
		line-height: 1.2;
	}
	.single article p,
	.single article p span{
		font-size: 16px;
		line-height: 1.6em;
		margin-bottom: 1em;
	}
	.single .wrap aside,
	.archive .wrap aside{
		padding: 35px 0;
	    width: 100%;
	}
	.single .wrap aside a,
	.archive .wrap aside a{
		font-size: 16px;
	}
	.single .wrap aside a img,
	.archive .wrap aside a img{
		object-fit: cover;
		width: 130px;
		height: 130px;
		object-position: center;
		vertical-align: center!important;
	}
	.widget_search,
	.widget_archive{
		max-width: 300px!important;
		width: 80%;
		margin: 20px auto 20px!important;
	}
}

/*-----------------------------------------------

about

-------------------------------------------------*/
.page-id-5425 article {
    line-height: 1.8em;
}
.page-id-5425 article p{
    font-size: 16px;
    font-weight: 500;
}
.page-id-5425 .about-intro{
	max-width: 800px;
	width: calc(100% - 40px);
	margin: 0px auto 0;
}
.page-id-5425 article .wp-block-group h2{
    font-size: 24px;
    margin: 0 0 40px;
}
.page-id-5425 article .wp-block-group p.has-text-align-center{
	margin: 0 0 30px;
}
.page-id-5425 article .wp-block-group h2 strong{
	background: linear-gradient(transparent 60%, #ff6 60%);
}
.page-id-5425 article .wp-block-group h3{font-size: 28px;}
:root{
	--about-width: 1150px;
}
.page-id-5425 .about-concept{
    max-width: 800px;
    width: calc(100% - 40px);
	margin: 100px auto;
}
.page-id-5425 .about-point{
    /* max-width: var(--about-width); */
    margin: 100px auto;
    /* width: calc(100% - 40px); */
    padding: 50px calc((100% - 1160px) / 2);
    background: #eb39710d;
}
.page-id-5425 .about-point-box {
	display: flex;
	justify-content: space-between;
	margin: 0px 0;
	padding: 20px;
	/* background: #fff; */
}
.page-id-5425 .about-point-box figure{
	width: 45%;
}
.page-id-5425 .about-point-box figure img{
	width: 100%;
}
.page-id-5425 .about-point-box .about-point-box-text{
	width: calc(55% - 50px);
}
.page-id-5425 .about-point-box .about-point-box-text h3{
    font-size: 22px;
    color: #d10e40;
    margin: 0 0 30px;
    padding: 15px 0 15px 40px;
    background: url(https://bearsmall.jp/wp-content/themes/bears2023/images/icon-bears.png) no-repeat left center;
    background-size: 29px;
}
.page-id-5425 .about-point-box .about-point-box-text ul{
	background: none;
	padding: 0 0 0 0px;
	margin: 40px 0 40px;
}
.page-id-5425 .about-point-box .about-point-box-text ul li a:before{
	content: "- ";
}
.page-id-5425 .about-point-box:nth-child(2) {
	display: flex;
}

.page-id-5425 .about-point-box:nth-child(2) {
	display: flex;
}
.page-id-5425 .about-point-box:nth-child(2) figure{
	order: 2;
}
.page-id-5425 .about-gaiyo{
	background: url(https://bearsmall.jp/wp-content/uploads/2024/04/about2.png) top 48% center no-repeat;
	padding: 80px 20px 50px;
	background-size: 100%;
	background-size: cover;
	background-color: rgb(173 173 173);
	background-blend-mode: multiply;
	color: #fff;
}
.page-id-5425 .about-gaiyo .wp-block-group__inner-container{
    max-width: 800px;
    margin: 0 auto;
    width: calc(100% -40px);
}
.page-id-5425 .about-gaiyo h3{
	letter-spacing: 0.2em;
}
.page-id-5425 .about-gaiyo h3 + p{
	margin: 30px 0 50px;
}
.page-id-5425 .about-gaiyo table{
	background: #fff;
	color: #333;
	border: none;
}
.page-id-5425 .about-gaiyo table th,
.page-id-5425 .about-gaiyo table td{
	border: none;
	padding: 13px 30px;
}
@media (max-width: 700px){
	.page-id-5425 article {
	    line-height: 2.4em;
	}
	.page-id-5425 .about-intro,
	.page-id-5425 .about-concept p{
		text-align: left!important;
	}
	.page-id-5425 .about-intro{
		margin: 50px auto 0;
	}
	.page-id-5425 .about-concept{
		margin: 50px auto;
	}
	.page-id-5425 article .wp-block-group h2{
		font-size: 18px;
	}

	.page-id-5425 .about-point-box{
		flex-wrap: wrap;	
	}
	.page-id-5425 .about-point-box figure,
	.page-id-5425 .about-point-box .about-point-box-text{
		width: 100%;
	}
	.page-id-5425 .about-point-box figure{
		order: 2;
		margin: 40px 0 0;
	}
	.page-id-5425 .about-point-box .about-point-box-text{
		order: 1;
	}
	.page-id-5425 .about-point-box .about-point-box-text h2{
		font-size: 18px;
	}
	.page-id-5425 .about-point-box .about-point-box-text h3{
		font-size: 16px;
		text-align: center;
		margin: 0 0 15px;
		padding: 0 0 5px 46px;
		background: none;
	}
	.page-id-5425 .about-point-box .about-point-box-text h3:before{
		background: url(https://bearsmall.jp/wp-content/uploads/2023/04/icon-kuma.png) center top no-repeat;
		background-size: 34px;
		content: "　";
		display: inline-block;
		width: 41px;
		background-position: left center;
	}
	.page-id-5425 .about-point-box .about-point-box-text ul{
		margin: 20px 0 0;
	}
	.page-id-5425 article .wp-block-group h3{
	    font-size: 16px!important;
	}
	.page-id-5425 .about-gaiyo table th,
	.page-id-5425 .about-gaiyo table td{
		border: none;
		font-size: 14px;
		display: block;
		text-align: center;
	}
	.page-id-5425 .about-gaiyo table td:first-child{
		font-weight: bold;
		padding: 10px 0 0;
		line-height: 1.4em;
		}
	.page-id-5425 .about-gaiyo table td:last-child{
			padding: 0px 0 10px;
		}
	.page-id-5425 .about-gaiyo table tr:first-child td:first-child {
		padding: 20px 0 0 ;
	}
	.page-id-5425 .about-gaiyo table tr:last-child td:last-child {
			padding: 0 0 20px;
		}
}
/*-----------------------------------------------

floor

-------------------------------------------------*/
ul.floor-linkbtn{
	width: 100%;
	max-width: 800px;
	margin: 0 auto 60px;
	display: flex;
	justify-content: space-between;
	background: #fff;
}
ul.floor-linkbtn li{
	width: 30%;
	text-align: center;
}
ul.floor-linkbtn li a{
	display: block;
	border: 2px solid #ccc;
	border-radius: 4px;
	color: #444;
	padding: 10px 0;
	font-size: 23px;
	font-weight: 555;
}
ul.floor-linkbtn li a:hover{
	background: #ffcfde;
	border: 2px solid #eb3971;
	color: #eb3971;
}
ul.floor-linkbtn li.floor-linkbtn-on a{
	color: #eb3971;
	border: 2px solid #eb3971;
}
ul.floor-linkbtn + figure{
	max-width: 1000px;
	width: 98%;
	margin: 0 auto;
}
.shoplist{
	width: 98%;
	max-width: 1033px;
	margin: 0 auto;
}
.shoplist table{
	border-collapse: collapse;
}
.shoplist table tr td.num {
	text-align: center;
	background: #f29c9f;
	color: #fff;
}
.shoplist table tr td.odd{
	font-size: 16px;
}
.shoplist table tr td.odd a{
	color: #333;
}
.shoplist table tr td.odd a:after{
	content: "HP";
	font-size: 12px;
	background: #f29c9f;
	color: #fff;
	padding: 0px 4px;
	margin: 0 0 0 10px;
}
.shoplist table td:nth-child(2){
	font-weight: bold;
}
.shoptable{
	width: 98%;
	max-width: 1033px;
	margin: 0 auto;
}
.shoptable table{
	border-collapse: collapse;
}
.shoptable table tr td{
	border: 1px solid #999;
}
.shoptable table tr td:nth-child(1) {
	text-align: center;
	background: #f29c9f;
	color: #fff;
}
.shoptable table tr td:nth-child(2){
	font-size: 16px;
}
.shoptable table tr td:nth-child(2) a{
	color: #333;
}
.shoptable table tr td:nth-child(2) a:after{
	content: "HP";
	font-size: 12px;
	background: #f29c9f;
	color: #fff;
	padding: 0px 4px;
	margin: 0 0 0 10px;
}
.shoptable table td:nth-child(2){
	font-weight: bold;
}
@media (max-width: 700px){

	ul.floor-linkbtn{
		width: 100%;
		max-width: 800px;
		margin: 0 auto 40px;
		padding: 10px;
		display: flex;
		justify-content: space-between;
		background: #fff;
	}
	ul.floor-linkbtn li a{
		display: block;
		border: 2px solid #ccc;
		border-radius: 4px;
		color: #444;
		padding: 5px 0;
		font-size: 14px;
		font-weight: 555;
	}

	.shoptable{
		margin: 0 0 0 10px;
		/* overflow-x: scroll; */
		width: calc(100% - 40px);
		padding: 10px;
		display: block!important;
		box-sizing: content-box!important;
	}
	.shoptable table{
		width: 800px!important;
		margin: 0;
	}
	.shoptable table tr td:nth-child(1) {
		width: 10px;
	}
	.shoptable table tr td:nth-child(2) {
		width: 100px;
	}
	.shoptable table tr td:nth-child(3) {
		width: 100px;
	}
	.shoptable table tr td:nth-child(4) {
		width: 67px;
	}
	.shoptable table tr td:nth-child(5) {
		width: 127px;
	}
}
/*--------------------------------------------------

event news

----------------------------------------------------*/
.googlecal {
    margin: auto;
}
.googlecal iframe { /* 各リストのスタイル */
  width: 100%;
  padding: 8px;
  margin: 3px;
  flex-shrink: 0;
  list-style: none;
}
.page-id-5428 .post-list {
	padding: 80px 0;
	margin-top: -3px;
}
.page-id-5428 #post-list-event{
	background: #eb39710d;
	margin-top: 100px;
}
.page-id-5428 .post-list .section-inner{
	max-width: 1200px;
	width: calc(100% - 20px);
	margin: 0 auto;
	position: relative;
}
.page-id-5428 .post-list .section-inner ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	width: 100%;
	background: none;
}
.page-id-5428 .post-list .section-inner h2{
	color: #000000;
	font-size: 40px;
	font-weight: 500;
	align-items: center;
	margin: 0 0 30px;
	background: url(https://bearsmall.jp/wp-content/themes/bears2023/images/icon-bears.png) no-repeat left center;
	background-size: 37px;
	padding: 15px 0 15px 53px;
}
.page-id-5428 .post-list .section-inner h2::first-letter{
	color: #eb3971;
}
.page-id-5428 .post-list .section-inner h2 span{
	margin-left: 16px;
	font-size: 14px;
	font-weight: normal;
	position: relative;
	top: -5px;
}
.page-id-5428 .post-list .section-inner li{
	width: calc(100% / 4 - 2px);
	list-style-type: none;
	position: relative;
	border: 1px solid #e6e6e6;
	background: #fff;
	border-top: 0;
	margin-left: -1px;
}
.page-id-5428 #post-list-event .section-inner li p{
	margin: 0;
	padding: 0px 20px 18px;
	font-size: 14px;
	text-align: center;
}

.page-id-5428 #post-list-event .section-inner li p span{
	background: #eb3971;
	color: #fff;
	padding: 3px 5px;
	margin: 0px 5px 0 0;
	position: relative;
	top: -2px;
}
.page-id-5428 #post-list-news .section-inner li p{
	margin: 10px 0 0 0;
	padding: 0px 20px 13px;
	font-size: 14px;
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 0;
}
.page-id-5428 .post-list .section-inner li figure{
	margin: 0;
}
.page-id-5428 #post-list-event .section-inner li figure img{
	width: 100%;
	height: 23vw;
	object-fit: cover;
	object-position: top;
}
.page-id-5428 #post-list-news .section-inner li figure img{
	width: 100%;
	height: 20vw;
	object-fit: cover;
	object-position: top;
}
.page-id-5428 #post-list-event .section-inner li h3{
	padding: 12px 10px 15px;
	line-height: 1.3;
	text-align: center;
}
.page-id-5428 #post-list-news .section-inner li h3{
	padding: 12px 20px 38px;
	line-height: 1.8;
	text-align: left;
}
.page-id-5428 .post-list .section-inner li h3 a{
    font-size: 16px;
    color: #333;
}

.page-id-5428 .post-list ul + p {
    position: absolute;
    right: 0;
    top: 0px;
}
.page-id-5428 .post-list ul + p a{
	display: block;
	background: #eb3971;
	width: 170px;
	text-align: center;
	color: #fff;
	padding: 17px 0;
	margin: 0 auto;
}
@media (max-width: 700px){
	.page-id-5428 .post-list {
		padding: 40px 0;
	}
	.page-id-5428 .post-list .section-inner li{
		width: calc(100% / 2 - 2px);
	}
	.page-id-5428 .post-list .section-inner li figure img{
		height: 63vw!Important;
	}
	.page-id-5428 .post-list .section-inner h2{
		font-size: 26px!important;
	}
	.page-id-5428 .post-list  li h3{
		font-size: 14px;
	}
	.page-id-5428 .post-list ul + p{
	    position: relative!important;
	    margin: 40px auto 0;
	}
	.home .post-list ul + p a {
	    display: block;
	    background: #eb3971;
	    width: 170px;
	    text-align: center;
	    color: #fff;
	    padding: 17px 0;
	    margin: 0 auto;
	}
}
/*------------------------------------------

-----------------------------event news itiran archive*/

.archive-post-list{
	max-width: 1200px;
	width: calc(100% - 20px);
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	background: none;
	padding: 0;
}
.archive-post-list h2{
	color: #000000;
	font-size: 40px;
	font-family:"Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: 500;
	align-items: center;
	margin: 0 0 30px;
}
.archive-post-list h2::first-letter{
	color: #eb3971;
}
.archive-post-list h2 span{
	margin-left: 16px;
	font-size: 14px;
	font-weight: normal;
	position: relative;
	top: -5px;
}
.archive-post-list li{
	width: calc(100% / 4 - 2px);
	list-style-type: none;
	position: relative;
	border: 1px solid #e6e6e6;
	background: #fff;
	border-top: 0;
	margin-left: -1px;
	margin-bottom: 40px;
}
.archive-post-list li p{
	margin: 0;
	padding: 0px 20px 10px;
	font-size: 14px;
	text-align: center;
}

.archive-post-list li p span{
	background: #eb3971;
	color: #fff;
	padding: 3px 5px;
	margin: 0px 5px 0 0;
	position: relative;
	/* top: -2px; */
}
.archive-post-list li figure{
	margin: 0;
}
.archive-post-list li figure img{
	width: 100%;
}
.archive-post-list li h3{
	padding: 12px 10px 15px;
	line-height: 1.3;
	text-align: center;
}
.archive-post-list li h3 a{
    font-size: 16px;
    color: #333;
}
@media ( max-width : 700px){
	.archive-post-list li{
		width: calc(100% / 2 - 2px);
	}
	.archive-post-list li figure img{
		width: 100%;
	}
}
/*----------------------------------------------single aside*/
aside .post-list h2{
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0 20px;
}
aside .post-list  h2::first-letter{
	color: #eb3971;
}
aside .post-list h2 span{
    font-size: 14px;
    position: relative;
    top: -5px;
    left: 10px;
    display: inline-block;
}
aside .post-list li {
    overflow: hidden;
    margin: 0 0 15px;
    border-bottom: 1px solid #ececec;
}
aside .post-list li figure {
    width: 130px;
    /* height: 130px; */
    float: left;
}
aside .post-list li h3 {
    width: calc(100% - 150px);
    margin: 0 0 14px 15px;
    float: left;
}
aside .post-list li h3 a{
    color: #333;
}
aside .post-list li h3 + p{
    width: calc(100% - 150px);
    margin: 0 0 0 15px;
    float: left;
}

aside .widget_search {
    margin: 20px 0;
}
aside .wp-block-search__input{
    border: 1px solid #ccc;
}
aside .widget_archive select {
    width: 100%;
    padding: 9px;
    border: 1px solid #ccc;
}
aside .widget_archive select option{
    font-size: 18px;
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
  }

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  width: 50%;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 20px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}
