@charset "utf-8";
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html {
  position: relative;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

p{
	padding:0;
	margin: 25px 0;
}
img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
hr{
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-top:1px solid #001937
}
a{
	color: #001937;
	text-decoration: none;
	/*スマホでボタンがグレーになるのを消す*/
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover{
}
a:focus, *:focus {
	outline:none;
}
.cf:after {
    content:" ";
    display:block;
    clear:both;
}


h1,h2,h3,h4{
	font-size: 2.4rem;
	margin: 80px 0 40px;
	font-weight: normal;
}
*::selection{
background: #A9F5F2;
color:#fff;
}
*::-moz-selection{
background: #A9F5F2;
color:#fff;
}


img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.mt-10 {margin-top: 10px}
.mt-20 {margin-top: 20px}
.mt-30 {margin-top: 30px}
.mt-40 {margin-top: 40px}
.mt-50 {margin-top: 50px}
.mt-100 {margin-top: 100px}
.mb-0 {margin-bottom: 0px}
.mb-10 {margin-bottom: 10px}
.mb-20 {margin-bottom: 20px}
.mb-30 {margin-bottom: 30px}
.mb-40 {margin-bottom: 40px}
.mb-50 {margin-bottom: 50px}
.mb-100 {margin-bottom: 100px}

.pd-10{padding:10px !important}
.pd-15{padding:15px !important;}

.fs08{font-size: 80%;}
.fs09{font-size: 90%;}
.fs1{font-size: 1.5rem}
.fs2{font-size: 1.6rem}
.fs3{font-size: 1.7rem}
.fs4{font-size: 1.8rem}
.fs5{font-size: 2.1rem}

body{
	margin:0;
	padding:0;
	font-size: 1.6rem;
	line-height: 1.9;
	font-family: sans-serif;
	letter-spacing: .08rem;
	background: #fbfbfb;
	color: #001937;
	overflow-x:hidden;
	min-height: 100vh;
	font-feature-settings: "palt";
	position:relative;
	text-align: justify;
}

@media screen and (max-width:770px) {
	/*body{
		font-size:1.7rem;
	}
	body:before{
		content:none;
	}*/
}

/*Nav---------------------------------*/
header {
	height: auto;
	z-index: 2;
	width: 100%;
	position: fixed;
    backdrop-filter: blur(16px);
}
header nav ul{
	display: flex;
	align-items: center;
	padding: 0;
}
header nav ul li{
	display:flex;
	align-items: center;
	position: relative;
}
header nav ul li a{
	padding: 0 9px;
}
header nav ul li a:hover{
	text-decoration: underline wavy blue;
}
header nav ul li img {
    width: 20px;
    height: auto;
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .menuworks{
	position:relative;
}
header .menuworks ul{
	display:none;
	position:absolute;
	width: 175px;
	height: 175px;
	top: 25px;
	left: 25px;
	padding: 30px 5px;
	background: #fff;
	border:1px solid;
	border-radius:0 50% 50% 50%;
}
header .menuworks ul li a{
    text-align:center;
    font-size: 90%;
    line-height: 1.7;
    padding: 0 0 0 18px;
}
@media screen and (min-width:769px){
	header .menuworks:hover ul{
		display:block;
	    animation: poko .3s forwards;
	}
}
@keyframes poko{
	0%{ transform:scale(0);transform-origin: top left;}
	100%{ transform:scale(1);transform-origin: top left;}
}

#nav_toggle{
	display: none;
}

.menucontact{
	padding: 0;
	margin: 0 10px 0 10px;
}
.menucontact a{
	border-radius: 30px;
	padding: 0 20px;
	display: block;
	color: #fff;
	font-size: 95%;
	background: blue;
	border:1px solid #001936;
	transition: .3s;
}
.menucontact a:hover{
	background: none;
	color: #001936;
	text-decoration: none;
}

.h_sns{
	padding:0 10px
}
.h_sns a{
	text-align:center;
	padding:0 5px;
}
.h_sns img{
	display:block;
	position:relative;
}

@media screen and (max-width:880px){
	nav{
		display:none;
		position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
        z-index: 98;
        backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
	}
	header nav ul{
		display: block;
        width: 90%;
        height: auto;
        position: absolute;
        top: 50px;
        right: 5%;
        padding: 8%;
        background: #fbfbfb;
        border-radius: 13px;
	}
	header nav ul li{
		margin: 30px auto;
		border-bottom: 1px solid #fff;
        padding-bottom: 30px;
	}
	header nav ul li:last-child{
		border: none;
	}
	header nav .menucontact a {
		text-align: center;
		width: 100%;
		padding: 8px 20px;
	}
	header nav ul li a{
		display: flex;
		padding: 0 10px;
	}
	header nav ul li img{
	}
	.h_sns{
		display: flex;
		justify-content: center;
		padding: 0;
	}
	.h_sns a{
		padding:0 10px
	}
	.h_sns img{
		width:20px;
		height: auto;
	}
}

@media screen and (max-width:880px){	
	#nav_toggle{
		display: block;
		width: 45px;
		height: 45px;
		position: fixed;
		top: 13px;
		right: 15px;
		z-index: 100;
		border-radius: 50%;
        background: #fff;
		background: linear-gradient(0deg, #ddd, #fff);
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	}
	#nav_toggle div {
		position: relative;
		width: 12px;
		margin: 11px auto;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #001937;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1){
		top: 0;
	}
	#nav_toggle span:nth-child(2){
		top: 6px;
	}
	#nav_toggle span:nth-child(3){
		top: 12px;
	}
	#nav_toggle p{
		font-size:1rem;
		color: #001937;
		text-align:center;
	    line-height: 1.2;
        letter-spacing: .1em;
	}
	.open #nav_toggle span:nth-child(1) {
		top: 6px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 6px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}
/*--------------------------------------*/

.bgwhite{ background:#fbf9f9}

ul{
	margin: 0;
	padding: 0;
}
li{
	list-style:none;
}
.pcshow{
	display:block;
}
.spshow{
	display:none;
}

.attnbtn {
    display: inline-block;
    position: relative;
    margin: 15px 15px 15px 0;
    padding: 16px 50px 16px 35px;
    border-radius: 40px;
    color: #fff;
    font-size: 95%;
    background: blue;
	border:1px solid #001936;
    transition: .3s;
}
.attnbtn:before{
	content: '';
	width: 8px;
	height: 8px;
	border: 1px solid;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	display: block;
	top: 50%;
	right: 22px;
	box-sizing: border-box;
	transition: .3s;
}

.attnbtn:hover{
	background: none;
	color: #001936;
	animation: poyon .5s ease forwards;
}
.attnbtn:hover:before{
	right:18px
}
@keyframes poyon {
    0% {
        transform: scale(1,1) translateY(0)
    }
    30% {
        transform: scale(1.05, 0.95) translateY(5px)
    }
    70% {
        transform: scale(1, 1.05) translateY(-5px)
    }
    100% {
        transform: scale(1,1) translateY(0)
    }
}
.flexbtn{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.wrapper {
	padding-bottom: 75px;
}
.main {
	width:100%;
	padding-top: 80px;
}


h1{
	margin:0;
	position:absolute;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	-o-writing-mode: vertical-rl;
	height: 100vh;
	text-align: center;
	font-size: 80%;
	width: 80px;
	line-height: 80px;
	z-index: 1;
	left: 0;
	font-weight: normal;
	opacity: .8;
}

.headone{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	position: relative;
}
.logo:active{
}
.logo a{
	display:block;
	position: relative;
	z-index: 1;
	width: 80px;
    height: 80px;
    padding: 12px;
}
.logo img{
	width:100%;
	height:auto;

}

.w-nav li a{
	display: inline-block;
	transition: .3s;
	text-decoration: none;

	font-weight:bold;
}
.w-list{
	width: 100%;
	margin-top: 35px;
}

.tophitokoto{
	padding: 100px 0 50px;
}
.star{
	animation:kurukuru 15s linear infinite;
}
@keyframes kurukuru{
	0%{transform:rotate(0deg)}
	100%{transform:rotate(360deg)}
}
.tophitokoto p strong{
	font-size:1.8rem;
}
.introwrap{
}
.introwrap p{
	margin:0;
}
.introwrap .attnbtn{
}

#Front{
}

#Front .wrapper{
	position:relative;
	overflow:hidden;
}
#Front .wrapper:before{
	content: "";
	position: fixed;
	z-index: -1;
	top: 50px;
	right: 2%;
	width: 50vw;
    height: 50vw;
	border-radius: 50%;
	background: #f7ff00;
}
@media screen and (max-width:770px) {
	#Front .wrapper:before{
		top:100px;
		width: 600px;
		height: 600px;
		right: -5vw;
	}
}

.catlist{
}
.catlist ul{
    width: 100%;
}
.catlist ul li{
    margin-right: 1px;
    padding: 10px 8px 0 0;
    display: inline-block;
}
#Blog .catlist ul li{
}

.catlist ul li a {
	font-size: 90%;
	display:inline-block;
	position:relative;
	text-decoration:none;
	text-align:center;
	z-index:0;
	padding:5px 15px;
	border-radius: 25px;
	background: #fff;
	border: 1px solid #001937;
	transition:background .25s ease, color .25s ease !important;
}

.catlist ul li a:hover,
.catlist ul .current-cat a{
	background: #00ff9c;
	/*color: #fff !important;*/
}

.w-nav{
	margin:0;
	padding:0;
}
.w-nav li{
	display: inline-block;
	margin-right:8%;
}
.w-contents{
	width: 100%;
	padding: 0 80px 0 135px;
	position: relative;
	max-width: 1800px;
	margin: 0 auto;
	overflow:hidden;
}
.list-innercontent{
	display:flex;
	flex-wrap:wrap;
	margin: 80px 0;
}
.w-box{
	height:auto;
	padding: 30px 1%;
	position:relative;
	width: calc(100% / 4);
}
.w-box p{
	font-size:90%;
	margin: 14px 0;
	line-height: 1.7;
}
.w-box a{
	text-decoration:none;
	color: #001937;
	display: block;
	transition: text-decoration .3s;
}
.w-box a:hover{
}
.w-box a img{
	width:100%;
	height:auto;
	transition:transform .6s;
	border-radius: 40px;
}
.w-box a img:hover{
	transform:scale(1.02)
}

.w-boxtitle{
	padding: 15px 0 0 0;
	line-height: 1.5;
}
.w-boxtitle p {
    margin: 0;
}

.w-box .txtin{
	width:100%;
}
.catlink{
	margin-top: 13px;
	opacity:.8;
}
.catlink a{
	padding-right:5px;
	display: inline-block;
	background: #fff;
	font-size: 80%;
	border-radius: 40px;
	padding: 4px 12px;
	margin: 0 4px 4px 0;
    border: 1px solid #ccc;
}
.mypostdate{
	font-size:1.1rem;
}
.arcivetitle{
	font-weight:normal;
	margin:0;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #ddd;
}

.dividearea{
	display:flex;
	justify-content: space-between;
	gap: 64px;
}
.dividebox{
	width:50%;
	padding:0;
}
.divideboxprof {
    width: 50%;
    padding: 0;
}
.divideboxprof p{
	margin:12px 0;
}
.dividebox30{
	width:30%;
	padding:0 10px;
}
.dividebox70{
	width:70%;
	padding:0 10px;
}
.dividebox img{
	width: 100%;
	height: auto;
}
.dividebox:nth-child(1) {
}
.dividebox:nth-child(2) {
}
.staff_a{
	margin:80px 0 0 0;
}
.over_l{
	position:relative;
}

.over_l video{
	width:100%;
	height:auto;
	vertical-align: bottom;
	border-radius: 40px;
}

.about{
	width: 100%;
}
.aboutbg{
}
.aboutimg_a{
	overflow:hidden;
	border-radius: 100px 100px 100px 0;
}
.nadonado{
	margin-left:2.5rem;
}
.nadonado li{
	list-style: none;
	position:relative;
	margin: 8px 0;
    line-height: 1.6;
}
.nadonado li::after {
  content: '';
  display: block;
  position: absolute;
  top: 1.2rem;
  left: -2rem;
  width: 10px;
  height: 5px;
  border-left: 2px solid #001937;
  border-bottom: 2px solid #001937;
  transform: rotate(-45deg);
}

.about dl dd{
	margin:0 0 0 20px
}

.about h2,.w-contents h2{
	font-size: 2.6rem;
	position:relative;
	padding-bottom: 40px;
	line-height: 1.8;
}

.about h2:after, .w-contents h2:after{
	content:"● ▲ ■";
	font-size:50%;
	position:absolute;
	bottom: 0;
	left:0;
	color: #00ff95;
}
#Intro h2{
    margin: 40px 0;
    font-size: clamp(2.5rem, 1.7rem + 1.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.8;
    display: inline-block;
    padding-bottom: 0;
}
#Intro h2:after{
	content:none;
}
@media screen and (max-width:770px) {
	#Intro h2{
		margin: 50px 0 60px;
	}
}
.about dt{
	position:relative; 
	margin-top:30px;
	font-weight:bold;
	font-size: 1.8rem;
}
.about dt:before{
	content: "↓";
	position: absolute;
	top:-35px;
	left:30px;
}
.about dt:first-child:before{
	content: none;
}

.about .gyoum strong{
	/* font-size:1.6rem; */
}


@keyframes kigou{
	0%{letter-spacing:-.5em}
	100%{letter-spacing:auto;}
}
#Blog .w-contents h2:after{
}
.about h3,.w-contents h3{
	padding-bottom: 15px;
}
.about h4,.w-contents h4{
	position: relative;
}

#Staffphoto{
	position:relative;
	background: url(/wp-content/themes/shirokuma-design/img/myphoto24-2.jpg);
	background-repeat:  no-repeat;
	background-position: 50% -250px;
	background-size: 775px auto;
	margin: 0;
	border-radius: 40px;
	max-height: 440px;
}

@keyframes line{
	0% {
		width:0;
	}
	100% {
		width:100px;
	}
}

.g_list{
}
.g_list li {
    list-style: disc;
    margin-left: 2rem;
    line-height: 1.4;
    margin-bottom: 15px;
}
.voice {
    padding: 3px 5% 20px;
    margin-top: 30px;
    position:relative;
    background: #fff;
}
.voice:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	  border-bottom: 30px solid transparent;
  border-left: 30px solid #efff00;
}


.voicearea{
	position: relative;
	height: 650px;
}
.voiceimgarea{
	width: 70%;
	height: auto;
}
.voiceimgarea img{
	width: 100%;
	height: auto;
}
.voicebox{
	position: absolute;
	right: 0;
	top:50px;
	width: 55%;
	height: auto;
	background: rgba(255,255,255,.9);
	padding: 20px;
	box-shadow: 3px 3px 4px rgba(0,0,0,.1);
	border: 1px solid #ccc;
	border-radius: 4px;
}
.post table{
	width:90%;
	margin:0 auto;
}
.post table, .post td, .post th {
	border: 1px solid #dadada;
	border-collapse: collapse;
}
.post th{
	width:20%
}
.post td {
	padding: 5px 10px;
	width: 40%;
}

.singlecontent{
	padding: 25px 7%;
	position:relative;
	margin:40px auto;
	max-width: 1200px;
}
.singlecontent .the_contentinner a{
	display: inline-block;
	text-decoration: underline;
}
.singlecontent .post{
	position:relative;
}
.singlecontent img{
	width: 100%;
	height: auto;
	max-width: 800px;
	display: block;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
	padding: 20px 0;
}
.singlecontent h2{
	padding-bottom: 40px;
    margin: 50px 0 0;
}
.singlecontent h2:after{
}

.singlecontent h3{
	border-bottom: 1px solid;
}

.singlecontent .col-2{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	max-width:800px;
	margin:0 auto;
}
.singlecontent .col-2 img{
	width:50%;
	margin: 0;
	padding: 0;
}

.the_contentinner .external{
	position:relative;
	padding-right:23px;
}
.the_contentinner .external:after {
    content: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJfeDMyXyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0id2lkdGg6IDE2cHg7IGhlaWdodDogMTZweDsgb3BhY2l0eTogMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6IiBzdHlsZT0iZmlsbDogcmdiKDc1LCA3NSwgNzUpOyI+PC9wYXRoPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MCw0NzIgNDAsMjk2IDQwLDEzNiA0MCw5NiAwLDk2IDAsNTEyIDQxNiw1MTIgNDE2LDQ3MiAzNzYsNDcyIAkiIHN0eWxlPSJmaWxsOiByZ2IoNzUsIDc1LCA3NSk7Ij48L3BvbHlnb24+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjIzMi44MTIsMzEyLjgyOSAzNTAuNjcxLDE5NC45NjkgMzUwLjY3MSwyNzkuNzY2IDM5MC42NzEsMjc5Ljc2NiAzOTAuNjcxLDEyNi42ODggMjM3LjU5NCwxMjYuNjg4IAoJCTIzNy41OTQsMTY2LjY4OCAzMjIuMzksMTY2LjY4OCAyMDQuNTMxLDI4NC41NDcgCSIgc3R5bGU9ImZpbGw6IHJnYig3NSwgNzUsIDc1KTsiPjwvcG9seWdvbj4KPC9nPgo8L3N2Zz4=');
	width:14px;
	height:14px;
	position:absolute;
	top: 1px;
	right:4px
}

.the_contentinner h4{
	position:relative;
	padding-left:24px
}
.the_contentinner h4:before{
	content:"▼";
	position:absolute;
	top:6px;
	left:0;
	transform:rotate(-90deg);
	color: #F55B4E;
	font-size: 1.8rem;
}

.the_contentinner .note{
	background:#fff;
	padding: 40px 6%;
	border: 1px solid;
    border-radius: 5px;
}
.the_contentinner .note ul{
	margin-left: 20px; 
}
.the_contentinner .note ul li{
	list-style-type: decimal;
    line-height: 1.6;
    margin: 12px 0;
    padding-left: 5px;
}
.the_contentinner .note ul li a{
	display:initial;
}
.the_contentinner .note h4{
	margin:0 0 25px
}
.the_contentinner .note p{
	/*margin:0*/
}

.no-post{
	margin-left:5%;
}
.post img{
	width: 100%;
	height: auto;
	max-width: 800px;
	display: block;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
	padding: 20px 0;
}

.shopprof{
	width: 100%;
	margin-top:40px;
	text-align: left;
	border-collapse: collapse;
	/*border-spacing: 1px*/
}
.shopprof th{ 
	width:25%;
	border-bottom: 2px solid #143259;
}
.shopprof td{
	width:75%;
	border-bottom: 1px solid #143259;
}
.shopprof th, .shopprof td{
	padding:12px 5px 12px 15px;
	font-weight: normal;
}
.post-meta{
	color: #aaa;
	font-weight: normal;
	font-size: 90%;
}
.gmark{
	position: relative;
	padding-left: 20px;
}
.gmark:before{
	content:"";
	position:absolute;
	top:9px;
	left:0;
	width:14px;
	height:14px;
	background:url(/wp-content/themes/shirokuma-design/img/gmark.png);
	background-size:contain;
	background-repeat:no-repeat;
}
#footer{
	position: absolute;
	bottom: 0;
	margin-bottom: 5px;
	width: 100%;
	z-index: 1;
	letter-spacing: .05em
}
#footer a{
	text-decoration: none;
	color: #001937;
	font-weight:normal !important;
	font-size: 1.3rem
}
#footer a span{
}
.maparea{position: absolute;left: 10px;bottom: 0;}
.copy{position: absolute;bottom: 0;left: calc(50% - 60px);}
#f_btn{
	position: fixed;
	right: 10px;
	bottom: 5px;
	display: none;
}
#f_btn img{
    display: block;
    height: 40px;
    width: auto;
    margin: 0 auto;
}
.top_wrap{
	margin:100px 0 75px;
}

.adbox{
	display:flex;
	flex-wrap:wrap;
	border-top: 1px dotted #001937;
    padding-top: 50px;
	position: relative;
}
.adbox:before{
	content:"【PR/広告】";
	position:absolute;
	top:0;
	left:0;
	font-size:1.4rem;
	color:#aaa;
}
.adbox .a_each{
	width: 20%;
	height:auto;
	padding: 8px;
}
.adbox .a_each a{
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #001937;
    font-size: 1.3rem;
    aspect-ratio: 1 / 1;
}
.adbox .a_each a:after{
	content:none;
}
.adbox .a_each a span{
	display:flex;
	justify-content:center;
	align-items:center;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	padding:10px;
	background:#fff;
}
.adbox .a_each img{
    margin: 0 auto;
	display: block;
	width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
	padding: 0;
}

#Sitemappage ul li{
	position:relative;
	padding-left:15px;
}
#Sitemappage ul li:before{
	content:"";
	position:absolute;
	top:0;

	bottom:0;
	left:0;
	margin:auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent #001937;
}


@media screen and (max-width:1280px) {
	.w-box{width: calc(100%/3);}
	}
@media screen and (max-width:1280px) {
	.singlecontent h2{
		writing-mode: initial;
		-ms-writing-mode: initial;
		-webkit-writing-mode: initial;
		-o-writing-mode: initial; 
		margin: 25px 0;
		float: none;
		position: relative;
		font-feature-settings: "palt";
	}
	.singlecontent h2:after{
	}
}
@media screen and (max-width:1280px) {
	.dividearea{
		display: block;
		max-width: 700px;
	}
	.dividebox,.dividebox30,.dividebox70{
		width:100%;
		margin:0;
		padding:0;
	}
	.divideboxprof {
		width: 100%;
		padding: 15px 0;
	}
	.dividebox70{
		padding:15px;
	}
	.dividebox:nth-child(1),
	.dividebox:nth-child(2){
		padding:0;
	}
	#Staffphoto{
		height:280px;
		margin:0;
		background-size: 150%;
	}
	.voicearea{
		height: 650px;
	}
	.voiceimgarea{
		width: 100%;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}
	.voicebox{
		position: relative;
		width: 100%;
		height: auto;
		background: rgba(255,255,255,.9);
		padding: 20px;
		box-shadow: 3px 3px 4px rgba(0,0,0,.1);
		border: 1px solid #ccc;
		border-radius: 4px;
	}
	.over_l{
		margin: 48px 0 0 0;
	}
}
@media screen and (max-width:950px) {
	.w-box{
		width: 50%;
		margin:0;
		padding: 25px 8px;
	}
	.w-box:nth-child(odd) {
		border-right: none;
	}
}
@media screen and (max-width:500px) {
	.w-box{
		width:100%;
	}
}
@media screen and (max-width:770px) {
	.pcshow{
		display:none;
	}
	.spshow{
		display:block;
	}
	header{
		position: relative;
		background-image:none;
		z-index:2;
		backdrop-filter:none;
		border: none;
		background: none;
	}
	h1{
		position: relative;
		writing-mode:initial;
		-ms-writing-mode: initial;
		-webkit-writing-mode:initial;
		-o-writing-mode: initial;
		width: 100%;
		text-align: left;
		line-height: 1rem;
		height: auto;
		padding: 10px 15px;
		background: none;
		font-size: 1.2rem;
		backdrop-filter:none;
		border: none;
	}
	.logo a{
	}
	.menupita{
		position:fixed !important;
		top:15px !important;
		animation:.6s suuu ease-out;
	}
	.main{
		margin:0;
		padding: 0;
	}
	.topbg{
		background:none;
	}
	.tophitokoto{
		padding: 30px 0 5vh;
	}
	.w-contents{
		width: 100%;
		padding: 0 20px;
	}
	.about h2, .w-contents h2{
		margin: 30px 0 40px;
	}
	.aboutimg_a{
		margin: 50px 0 0 0;
	}
	.shopprof th, .shopprof td{
		width:100%;
		display:block;
	}
	.shopprof th{
		border:none;
		padding: 12px 5px 0 15px;
		font-weight: bold;
	}
	.shopprof td{
	padding: 5px 5px 12px 15px;
	}
	.w-list {
		margin-top: 50px;
	}
	.catlist ul{
		width: 100%;
	}
	.catlist ul li{
	}
	.catlist ul li a{
		font-size:1.2rem;
	}
	.headone{
	}
	.singlecontent{
		margin:20px auto;
		padding: 25px 0;
	}
	.singlecontent h2:after{
		left:0;
	}
	.attnbtn{
		margin: 5px 10px 10px 0;
	}
	.copy{
	}
	#footer{
		bottom: 0;
		z-index:0;
	}
	.fnavi{
	}
	.menuworks:before,
	.menuabout:before,
	.menucontact:before,
	.menublog:before{
		margin-right: 15%;
	}
	.top_wrap{
		margin:75px 0 0 0;
	}
	.each_title{
		transform: none;
		opacity: 1;
		background:none;
		position: relative;
	}
	.toplist .each{
		flex-basis: 100%;
	}
	.toplist .each img{
		/*height:200px;*/
	}
	.adbox .a_each{
		width:50%;
	}
	.adbox .a_each a span{
		height: calc(50vw - 40px);
	}
}

@keyframes suuu{
	0%{top:-50px;}
	100%{top:5px;}
}

.hvr-float:active, .hvr-float:focus, .hvr-float:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}


.fadeinimg{
	opacity:0;
	animation: fuwaan .8s ease-out forwards;
}
@keyframes fuwaan{
	0%{opacity:0;transform:translateX(20px)}
	100%{opacity:1;transform:translateX(0)}
}


iframe{
	margin: 20px 0;
}

/*plug in CSS----------------------------------*/
.addtoany_shortcode{
	text-align: center;
	padding: 20px 0 0;
	margin-top: 40px;
}
.a2a_kit:before{
  content:"シェアする";
  font-size: 1.2rem;
  display: block;
}
.fb-share-button{
	width:100%;
	text-align:center;
	margin:30px 0;
}
.fb-share-button iframe{
	margin:0 auto;
}
.fb_iframe_widget_fluid{
	display:inline-block !important;
}
/*　ContactForm7　*/
.table-res-form {
    width: 100%;
	max-width: 900px;
	margin:75px auto 0;
}
.table-res-form th, .table-res-form td {
    padding: 5px 0;
    background:none;
	font-weight: normal;
}
.table-res-form th {
    width: 185px;
}
.wpcf7 .table-res-form th{
	text-align:left;
}
.wpcf7 .table-res-form th p,
.wpcf7 .table-res-form td p{
	margin:0;
	padding:0;
}
.table-res-form .requied {
	font-size: 1.1rem;
    color: #54ABC6;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 2px;
    margin-left: 3px;
    line-height: 1.2;
    border: 1px solid #54ABC6;
}
.wpcf7-form-control-wrap{
	width: 100%;
    max-width: 900px;
}

span.wpcf7-not-valid-tip{
	text-align:left;
	font-size:80% !important;
}

/*ここから770px以下の指定*/

@media only screen and (max-width: 770px) {
    .table-res-form th, .table-res-form td {
        width: 100%;
        display: block;
    }
    .table-res-form th {
        padding-bottom: 0;
        text-align: left;
    }
    .table-res-form .empty {
        display: none;
    }
}

/*各入力フォームスタイリング*/
.table-res-form input[type="text"], input[type="email"], input[type="url"], textarea {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 0.5em;
    width: 100%;
}
.table-res-form input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, textarea:focus {
    background: #f8fbff;
}

input[type="button"], input[type="submit"], textarea, input {
	-webkit-appearance: none;
	border-radius: 4px;
}

input[type="submit"]{
	border-style:none;
	cursor : pointer;
	padding: 25px 40px;
	border-radius: 40px;
	width: 100%;
	max-width: 500px;
	background: blue;
	color: #fff;
	border: 1px solid blue;
	transition: background .3s;
	margin:0 auto;
	display:block;
	font-size: 100%;
	font-weight: normal;
	filter: drop-shadow(0px 2px 2px rgba(0,0,0,.15));
}
input[type="submit"]:hover {
	background: #fff;
	color: blue;
	animation: poyon .5s ease forwards;
}
input[type="checkbox"] {
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #ccc;
	background: #fff;
	vertical-align: -5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #54ABC6;
  border-bottom: 2px solid #54ABC6;
  content: '';
}
.wpcf7-list-item{
	margin: 0 1em 0 0 !important;
}
.submitbox {
	display:block;
	border: none;
	margin: 50px auto 100px;
}
.submitbox:hover input[type="submit"]{
}

textarea, input {
	padding: 5px;
	width: 100%;
	margin-top: 5px;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	/*background: #f4feff;*/
	font-family: 'Zen Kaku Gothic New',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 100%;
}

/*youtube------------------------------------*/
.video{
  position:relative;
  width:100%;
  max-width:800px;
  padding-top: 46.25%;
  margin:0 auto 50px;
}
.video iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}


/*関連記事------------------------------------*/
.related_post_title{
	position: relative;
	padding-bottom:10px;
	margin: 75px 0 25px !important;
}

ul.related_post li{
}
ul.related_post li a{
	color: #001937;
	font-size: 95%;
}
.wp_rp_wrap {
	clear: both;
}

ul.related_post {
	margin: 0 0 18px 0 !important;
	padding: 0 !important;
	-moz-column-count: 2 !important;
	-moz-column-gap: 40px !important;
	-moz-column-rule: 1px solid #ccc !important;
	-webkit-column-count: 2 !important;
	-webkit-column-gap: 40px !important;
	-webkit-column-rule: 1px solid #ccc !important;
	column-count: 2 !important;
	column-gap: 40px !important;
	column-rule: 1px solid #ccc !important;
	line-height: 1.5;
}
ul.related_post li {
	overflow: hidden !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 0 10px 0 !important;
	-moz-column-break-inside: avoid !important;
	-webkit-column-break-inside: avoid !important;
	break-inside: avoid-column !important;
}
ul.related_post li img {
	display: block !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none !important;
	float: none !important;

	border-radius: 3px !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
}
ul.related_post li a.rp_thumbnail {
	display: block !important; 
	width: 75px !important;
	height: 75px !important;
	overflow: hidden;
	float: left !important;
	margin: 0 10px 0 0 !important;
	padding: 0 !important;
}

@media screen and (max-width: 480px) {
	ul.related_post {
		-moz-column-count: auto !important;
		-moz-column-gap: normal !important;
		-moz-column-rule: none !important;
		-webkit-column-count:auto !important; 
		-webkit-column-gap: normal !important;
		-webkit-column-rule: none !important;
		column-count: auto !important;
		column-gap: normal !important;
		column-rule: none !important;
	}
}

ul.related_post li .wp_rp_category a {
	display: inline !important;
}


/*-----------------------------------------*/
.top_oshirase{
	margin-bottom:50px;	
	/*border-bottom: 1px solid #143258;*/
    padding-bottom: 50px;
}
.top_oshirase ul{
}
.top_oshirase ul li{
	display: flex;
	flex-wrap: wrap;
	padding:5px 0;
}
.top_oshirase ul li span{
	display: inline-block;
	width: 130px;
}
.top_oshirase ul li a{
}
.top_oshirase ul li a:hover{
}
#Oshirase .singlecontent h2{
	writing-mode: initial;
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
    -o-writing-mode: initial;
    margin: 25px 0;
    float: none;
    position: relative;
}

.toplisttitle{
	color:#001937;
	display: inline-block;
}
.each_title{
	/* padding:10px 0; */
	line-height: 1.4;
}
@media only screen and (max-width: 1200px) {
	.top_oshirase ul li span{
		width:100%;
	}
}

/*-----------------------------------------*/
.swiper-container{
	margin-bottom:50px;
	border-bottom: 1px solid #143258;
    padding-bottom: 50px;
	overflow:visible !important;
}
.swiper-container:last-child{
	border:none;
}

.swiper-slide img{
	width:100%;
	height:auto;
	position:relative;
	z-index:-2;
}
.swiper-slide{
	position:relative;
	transition:transform .6s;
}
.swiper-slide:hover{
	transform:translateY(-15px);
}
.swiper-slide .top_title{
	display: block;
	position:relative;
	color:#fff;
	font-size:85%;
	border-radius: 40px;
	overflow: hidden;
}
.swiper-slide .top_title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 25%) 0%, rgb(0 0 0 / 0)50%);
    z-index: -1;
    transition: .3s;
}
.swiper-slide .top_title:hover{
	color:#fff !important;
	transition:background .6s
}


.swiper-container .each_title{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.swiper-container .each_title p{
	position:absolute;
	bottom:0;
	/* padding:0 15px */
	margin: 20px;
}
@media only screen and (max-width: 770px) {
	.swiper-container .each_title p{
		margin: 10px;	
	}
}
/*-----------------------------------------*/

.oshirase_wrap h3{
	margin: 0;
	padding: 5px 0 0;
	border: none;
	font-size: 1.6rem;
}
.oshirase_ul{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	border-bottom:1px solid #ddd;
	padding-bottom:10px;
	margin-bottom:10px;
}
.oshirase_ul .date{
	width: 150px;
	text-align: center;
}
.oshirase_title{
	width:calc(100% - 150px)
}
.oshirase_title a{
	display:inline-block;
}
.oshirase_title p{
	font-size:1.2rem;
	margin: 5px 0;
}
@media only screen and (max-width: 770px) {
	.oshirase_ul .date,
	.oshirase_title{
		width:100%;
	}
	.oshirase_ul .date{
		text-align: left;
	}
}

figure {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.post figure{
	margin:0 auto;
	padding: 0;
}
.wp-block-video{
	width: 100%;
	max-width: 800px;
	height: auto;
	margin: 0 auto;
}
.singlecontent figcaption{
	font-size: 85%;
	text-align: center;
}
.wp-block-video video{
	width: 100%;
	height: auto;	
}
.post-password-form label{
	display:block;
	margin:25px 0 50px;
}
.grecaptcha-badge{
	display:none !important
}

.agenda a{
	text-decoration: none;
}
.agenda a:after{
	content: none;
}
