@charset "utf-8";
.pc{display:none !important;}

a[href^="tel"]{
	color:inherit;
	text-decoration:none;
}

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;
	vertical-align:baseline;
	background:transparent;
	list-style-type:none;
	font-size: medium;
	color: #000;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Roboto", "Open Sans", "Helvetica Neue","sans-serif","ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	outline:none;
	letter-spacing:0.05em;
	font-size:16px;
	text-align: justify;
	font-feature-settings : "palt";
}
.min{font-family:游明朝,"Yu Mincho",YuMincho, 'Sawarabi Mincho', "Hiragino Mincho ProN","Hiragino Mincho Pro",'Noto Serif JP',HGS明朝E,メイリオ,Meiryo,serif;}

/*共通*/
:root {
  --main-color:#116FEF;
  --dark-color:#043657;
  --sub-color:#CB1212;
  --light-color:#eff9ff;
  --black-color:#000;
}

img{display:block;width:100%;}

/*global menu*/
#panel-btn .top,
#panel-btn .middle,
#panel-btn .bottom{
	width: 30px;
	height: 2px;
	background:#fff;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
#panel-btn{
	width: 50px;
	position: fixed;
	z-index: 99999;
	top: 5px;
	right: 5px;
	transition: 0.3s opacity;
	padding: 20px 0;
}
#panel-btn .top {
	animation: btn-top .5s;
	animation-fill-mode: forwards;
}
#panel-btn .middle {
	transition: .5s opacity;
	opacity: 1;
}
#panel-btn .bottom {
	animation: btn-bottom .5s;
	animation-fill-mode: forwards;
}
#panel-btn.close .middle {
	opacity: 0;
	transition: .5s opacity;
}
#panel-btn.close .top {
	animation: btn-top-close .5s;
	animation-fill-mode: forwards;
}
#panel-btn.close .bottom {
	animation: btn-bottom-close .5s;
	animation-fill-mode: forwards;
}
@keyframes btn-top {
	0% {
		transform: translateY(0px) rotate(-45deg);
	}
	50% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(-10px) rotate(0deg);
	}
}
@keyframes btn-bottom {
	0% {
		transform: translateY(-1px) rotate(45deg);
	}
	50% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(10px) rotate(0deg);
	}
}
@keyframes btn-top-close {
	0% {
		transform: translateY(-10px) rotate(0deg);
	}
	50% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(0px) rotate(-45deg);
	}
}
@keyframes btn-bottom-close {
	0% {
		transform: translateY(10px) rotate(0deg);
	}
	50% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(-1px) rotate(45deg);
	}
}
.global{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-align: center;
	z-index: -1;
	display: none;
	padding: 80px 0 0;
    background: URL("../img/.main_visual_bk.png") no-repeat center;
    background-size: cover;
    background-color: #000;
}
.global li{
	width:100%;
	float:none;
}
.global li a{
	width:100%;
	font-size:14px;
	padding:5%;
	color:#fff;
}
.global li a::before{
	content:"";
	display:inline-block;
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin:0 10px 3px 0;
}
.global * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.global:after {
	background: #ffffff;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	opacity: 1;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index:-1;
}






h2{
	font-family: "rhau", sans-serif;
	text-align:center;
	font-size:150%;
	font-weight:normal;
	margin:0 auto 20px;
	line-height:1.3;
}

h2 span{
	display:block;
	margin:10px auto 0;
	text-align:center;
	font-weight:bold;
}

a.more{
	background:var(--black-color);
	color:#fff;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:8px 30px;
	border-radius:30px;
	width: fit-content;
	margin:0 auto;
	font-size:80%;
	position:relative;
	overflow:hidden;
	z-index:1;
}

a.more:after{
	content:"";
	background:URL("../img/more_arrow.png") no-repeat center;
	background-size:contain;
	display:block;
	height:10px;
	width:20px;
	margin-left:5px;
}

a.more:before{
	background: var(--main-color);
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-delay: 0s, .4s;
}

/*header*/
header{
	width:100%;
	position:fixed;
	z-index:999;
}

header:after{
	content:"";
	display:block;
	position:absolute;
	height:100%;
	width:100%;
	background:#000000d1;
	left:0;
	top:0;
	z-index:-1;
	animation: slideIn .8s cubic-bezier(0.895, 0.030, 0.685, 0.220) 0s forwards;
    transform: translateX(-100%);
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
  70%,100% {
    opacity: 1;
  }
}

header .inner{
	margin:0 auto;
	display:flex;
	align-items:center;
	height:55px;
}

header .logo{
	width:100%;
}


header .logo img{
	width:55%;
	padding-right:3%;
	max-width:330px;
	margin:0 auto;
}

.main_nav{
	display:flex;
	align-items:center;
    flex-wrap: wrap;
	justify-content: flex-end;
}

.main_nav li{
	min-width:20%;
}

.main_nav li a{
	display:block;
	color:#fff;
	font-weight:bold;
	padding: 10px 20%;
	box-sizing:border-box;
	line-height:1;
}

.main_nav li a span{
	display:block;
	color:#fff;
	font-size:65%;
	font-weight:normal;
	line-height:1;
	padding-left:15px;
	margin:5px auto;
}

/* main */
main{
	background:URL("../img/bk.png") ;
	background-size:contain;
}

/* FV */
.fv{
	height:calc(85vh - 100px);
	background:URL("../img/bk_fixed.png") no-repeat;
	background-size:cover!important;
	background-position:left 20% bottom;
	position:relative;
}


.fv_text{
	width:100%;
	position:absolute;
	bottom:15%;
	left:0;
	right:0;
	margin:auto;
	text-align:center;
	transition: bottom 0.2s ease-out;
 text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.fv_text p{
	color:#fff;
	text-align:center;
	font-size:200%;
	font-weight:bold;
}

.fv_text p span{
	font-family: "rhau", sans-serif;
	color:#fff;
	display:block;
	font-size:70%;
	text-align:center;
	font-weight:normal;
}

/* トップページ */
section .inner{
	width:100%;
	margin:0 auto;
}

.home section{
	padding:55px 0 40px;
}

section.about p{
	width:95%;
	margin:0 auto 40px;
	line-height:2;
	font-size:120%;
}

section.members{
	background:URL("../img/bk_brown.png") no-repeat;
	background-size:cover;
	background-position:center;
}

section.members ul{
	display:flex;
	flex-wrap:wrap;
	align-items:baseline;
	justify-content: center;
	margin:0 auto 40px;
	flex-wrap:wrap;
}

section.members ul li{
	width:45%;
	margin:0 2.5% 20px;
}

section.members ul li p{
	font-size:90%;
	color:#fff;
	font-weight:bold;
	word-break: break-all;
	white-space: normal;
	text-align:center;
	line-height:1.5;
	margin:5px auto 15px;
}

section.members h2,section.members h2 span{
	color:#fff;
}

section.news{
	background:URL("../img/bk_news.png") no-repeat;
	background-size:cover;
	background-position:center;
}

section.news h2,section.news h2 span{
	color:#fff;
}

section.news ul{
	width:95%;
	margin:0 auto 60px;
}

section.news ul li{
	margin:0 auto 10px;
}

section.news ul li:first-child{
	border-top:0.5px solid #fff;
}

section.news ul li a{
	padding:10px 0;
	display:block;
	border-bottom:0.5px solid #fff;
}

section.news ul li a p.date{
	font-weight:bold;
	font-family: "rhau", sans-serif;
	margin:0 auto;
}

section.news ul li a p{
	color:#fff;
	font-size:90%;
	margin:0 auto 10px;
}


section.online .online_content{
	width:95%;
	margin:0 auto 40px;
	box-sizing:border-box;
	background:#b3982f45;
	overflow:hidden;
}

section.online .online_u{
	margin:0 auto 60px;
}

section.online .online_content .content_head{
	padding:10px;
}

section.online .online_content .content_head .left{
	width:100%;
	margin:0 auto 10px;
}
section.online .online_content .content_head .right{
}

section.online .online_content .content_head .right p{
	margin:0 auto 15px;
	font-size:90%;
}

section.online .online_content .content_head .right a{
	margin:0 auto 15px;
}

section.online .online_content .slider_l,section.online .online_content .slider_r{
  width: 100%;
  overflow: hidden;
}

section.online .online_content .slider_l ul{
	display:flex;
	animation: slide-left 25s linear infinite;
	margin:0 auto 10px;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

section.online .online_content .slider_r ul{
	display:flex;
	animation: slide-right 25s linear infinite;
}

@keyframes slide-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

section.online .online_content ul li{
  flex: 0 0 auto;
  margin-right: 10px;
}

section.online .online_content ul li img{
  width: 100px;
  height: auto;
  display: block;
}

section.online .online_content ol{
	display:flex;
	width:100%;
	margin:20px auto;
    flex-wrap: wrap;
	justify-content: center;
}

section.online .online_content ol li{
	width:49%;
	margin:0 0.5% 10px;
	background:#ffffffcc;
	border-radius:20px;
	overflow:hidden;
}

section.online .online_content ol li a{
	display:block;
	padding:10px 10px 30px;
	box-sizing:border-box;
	height:100%;
	position:relative;
}

section.online .online_content ol li dt{
	margin:0 auto 10px;
	height:90px;
	position:relative;
	overflow:hidden;
}

section.online .online_content ol li dt img{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	transition:0.5s;
}

section.online .online_content ol li dd h3{
	text-align:center;
	margin:0 auto 10px;
}

section.online .online_content ol li dd h3 span{
	display:block;
	font-size:66%;
	font-weight:normal;
	text-align:center;
}

section.online .online_content ol li dd p.price{
	font-weight:bold;
	font-size:130%;
	text-align:center;
	color:var(--sub-color);
	line-height:1.2;
	margin:0 auto 10px;
}

section.online .online_content ol li dd p.price span{
	display:block;
	font-size:50%;
	font-weight:normal;
	text-align:center;
	color:var(--sub-color);
}

section.online .online_content ol li dd p.text{
	font-size:80%;
	margin:0 auto 20px;
}

section.online .online_content ol li dd .more_link{
	position:absolute;
	bottom:10px;
	left:0;
	right:0;
	color:#fff;
	background:var(--main-color);
	border-radius:20px;
	width:80%;
	margin:0 auto;
	text-align:center;
	padding:3px 0;
	font-size:80%;
}

section.children{
	background: URL("../img/bk_brown.png") no-repeat;
	background-size: cover;
	background-position: center;
}

section.children h2,section.children h2 span{
	color:#fff;
}

section.children .inner{
	width:100%;
	margin:0 auto;
}

section.children .inner .box{
	overflow:hidden;
}

section.children .inner .box_l .right{
	width:95%;
	margin:0 auto 30px;
}

section.children .inner .box_l .right p{
	color:#fff;
	font-weight:bold;
	line-height:2;
	margin:0 auto 40px;
}

section.children .inner .box_l .left{
	width:70%;
	margin:0 auto;
}

section.children .inner .box_r{
}

section.children .inner .box_r .right{
	width:70%;
	margin:0 auto;
}

section.children .inner .box_r .left{
	width:70%;
	margin:0 auto 10px;
}

section.children .inner .box_r .left img{
	margin:20px auto 0;
}

section.journal .inner{
	width:100%;
	margin:0 auto;
}

section.journal .inner ul{
	display: flex;
    width: 98%;
    margin: 20px auto;
    justify-content: center;
	flex-wrap:wrap;
}

section.journal .inner ul li{
	width: 48%;
	margin:0 1%;
	background: #ffffffcc;
	margin-bottom: 10px;
}

section.journal .inner ul li:last-child{
	margin-right: 0;
}

section.journal .inner ul li dt{
	margin:0 auto 20px;
	height:90px;
	position:relative;
	overflow:hidden;
}

section.journal .inner ul li dt img{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	width:100%;
}

section.journal .inner ul li dd{
	font-size:90%;
}

section.journal .inner ul li dd p{
	font-weight:bold;
	margin:0 auto 10px;
	font-size:110%;
}

section.journal .inner ul li a{
	display:block;
	box-sizing: border-box;
	padding: 10px;
}

footer{
	padding-top:200px;
	position:relative;
}

footer:after{
	content:"";
	display:block;
	width:100%;
	height:200px;
	background:URL("../img/bk_footer.png") no-repeat center;
	background-size:cover;
	position:absolute;
	top:0;
	left:0;
}

footer .inner{
	width:100%;
	margin:40px auto;
	overflow:hidden;
}

footer .inner ul{
	display:flex;
    justify-content: space-evenly;
	margin:0 auto 40px;
	flex-wrap:wrap;
}

footer .inner ul li{
	width:50%;
	margin:0 auto 20px;
	display:flex;
	align-items:center;
    justify-content: center;
}

footer .inner ul li a{
	display:flex;
	align-items:center;
    justify-content: center;
}

footer .inner ul.sns{
	display:flex;
    justify-content:center;
}

footer .inner ul.sns li{
	width:64px;
	margin:0 10px;
}

footer .inner ul li a{
	font-family: "rhau", sans-serif;
	color:var(--black-color);
	text-align:center;
	display:block;
}

footer .inner ul li a span{
	font-size:60%;
	display:block;
	text-align:center;
}

address{
	text-align:center;
	font-style:normal;
	font-size:80%;
	padding-bottom:70px;
}

/* SVG */
svg .svg-elem-1{stroke-dashoffset:742.5399780273438px;stroke-dasharray:742.5399780273438px;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.8s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.8s}svg.active .svg-elem-1{stroke-dashoffset:0}svg .svg-elem-2{stroke-dashoffset:742.5399780273438px;stroke-dasharray:742.5399780273438px;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.9s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.9s}svg.active .svg-elem-2{stroke-dashoffset:0}svg .svg-elem-3{stroke-dashoffset:154.4619903564453px;stroke-dasharray:154.4619903564453px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1s}svg.active .svg-elem-3{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-4{stroke-dashoffset:148.40756225585938px;stroke-dasharray:148.40756225585938px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.1s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.1s}svg.active .svg-elem-4{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-5{stroke-dashoffset:62.339603424072266px;stroke-dasharray:62.339603424072266px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s}svg.active .svg-elem-5{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-6{stroke-dashoffset:62.3397331237793px;stroke-dasharray:62.3397331237793px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.3s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.3s}svg.active .svg-elem-6{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-7{stroke-dashoffset:62.33966827392578px;stroke-dasharray:62.33966827392578px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.4000000000000001s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.4000000000000001s}svg.active .svg-elem-7{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-8{stroke-dashoffset:69.5234375px;stroke-dasharray:69.5234375px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.84s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.5s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.84s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.5s}svg.active .svg-elem-8{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-9{stroke-dashoffset:86.46866607666016px;stroke-dasharray:86.46866607666016px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.6s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.6s}svg.active .svg-elem-9{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-10{stroke-dashoffset:55.54914093017578px;stroke-dasharray:55.54914093017578px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.08s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.7000000000000002s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.08s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.7000000000000002s}svg.active .svg-elem-10{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-11{stroke-dashoffset:87.5845947265625px;stroke-dasharray:87.5845947265625px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.2s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.8s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.2s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.8s}svg.active .svg-elem-11{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-12{stroke-dashoffset:87.68110656738281px;stroke-dasharray:87.68110656738281px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.3199999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.9000000000000001s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.3199999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.9000000000000001s}svg.active .svg-elem-12{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-13{stroke-dashoffset:87.68108367919922px;stroke-dasharray:87.68108367919922px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.44s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.44s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2s}svg.active .svg-elem-13{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-14{stroke-dashoffset:69.52351379394531px;stroke-dasharray:69.52351379394531px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.56s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.1s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.56s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.1s}svg.active .svg-elem-14{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-15{stroke-dashoffset:72.21593475341797px;stroke-dasharray:72.21593475341797px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.68s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.2s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.68s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.2s}svg.active .svg-elem-15{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-16{stroke-dashoffset:95.2120361328125px;stroke-dasharray:95.2120361328125px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.7999999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.3s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.7999999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.3s}svg.active .svg-elem-16{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-17{stroke-dashoffset:62.43758010864258px;stroke-dasharray:62.43758010864258px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.92s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.4000000000000004s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 1.92s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.4000000000000004s}svg.active .svg-elem-17{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-18{stroke-dashoffset:69.5235595703125px;stroke-dasharray:69.5235595703125px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.04s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.5s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.04s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.5s}svg.active .svg-elem-18{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-19{stroke-dashoffset:53.12579345703125px;stroke-dasharray:53.12579345703125px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.16s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.6s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.16s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.6s}svg.active .svg-elem-19{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-20{stroke-dashoffset:26.129072189331055px;stroke-dasharray:26.129072189331055px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.28s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.7s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.28s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.7s}svg.active .svg-elem-20{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-21{stroke-dashoffset:27.62232780456543px;stroke-dasharray:27.62232780456543px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.4s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.8s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.4s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.8s}svg.active .svg-elem-21{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-22{stroke-dashoffset:14.907739639282227px;stroke-dasharray:14.907739639282227px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.52s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.9000000000000004s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.52s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.9000000000000004s}svg.active .svg-elem-22{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-23{stroke-dashoffset:27.62232780456543px;stroke-dasharray:27.62232780456543px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.6399999999999997s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.6399999999999997s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3s}svg.active .svg-elem-23{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-24{stroke-dashoffset:14.907751083374023px;stroke-dasharray:14.907751083374023px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.76s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.1000000000000005s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.76s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.1000000000000005s}svg.active .svg-elem-24{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-25{stroke-dashoffset:53.12580108642578px;stroke-dasharray:53.12580108642578px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.88s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.2s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 2.88s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.2s}svg.active .svg-elem-25{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-26{stroke-dashoffset:26.129074096679688px;stroke-dasharray:26.129074096679688px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.3s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.3s}svg.active .svg-elem-26{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-27{stroke-dashoffset:12.914401092147399px;stroke-dasharray:12.914401092147399px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.12s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.4000000000000004s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.12s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.4000000000000004s}svg.active .svg-elem-27{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-28{stroke-dashoffset:16.68031883239746px;stroke-dasharray:16.68031883239746px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.2399999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.5s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.2399999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.5s}svg.active .svg-elem-28{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-29{stroke-dashoffset:162.54000854492188px;stroke-dasharray:162.54000854492188px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.36s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.6000000000000005s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.36s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.6000000000000005s}svg.active .svg-elem-29{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-30{stroke-dashoffset:115.90000915527344px;stroke-dasharray:115.90000915527344px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.48s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.7s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.48s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.7s}svg.active .svg-elem-30{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-31{stroke-dashoffset:4.13628300444106px;stroke-dasharray:4.13628300444106px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.5999999999999996s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.8s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.5999999999999996s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.8s}svg.active .svg-elem-31{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-32{stroke-dashoffset:4.13628300444106px;stroke-dasharray:4.13628300444106px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.7199999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.9000000000000004s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.7199999999999998s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 3.9000000000000004s}svg.active .svg-elem-32{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-33{stroke-dashoffset:4.13628300444106px;stroke-dasharray:4.13628300444106px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.84s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.84s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4s}svg.active .svg-elem-33{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-34{stroke-dashoffset:32.31376647949219px;stroke-dasharray:32.31376647949219px;fill:transparent;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.96s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.1000000000000005s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 3.96s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.1000000000000005s}svg.active .svg-elem-34{stroke-dashoffset:0;fill:rgb(255,255,255)}svg .svg-elem-35{stroke-dashoffset:524.6130981445312px;stroke-dasharray:524.6130981445312px;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.08s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.2s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.08s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.2s}svg.active .svg-elem-35{stroke-dashoffset:0}svg .svg-elem-36{stroke-dashoffset:526.1170654296875px;stroke-dasharray:526.1170654296875px;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.2s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.3s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.2s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.3s}svg.active .svg-elem-36{stroke-dashoffset:0}svg .svg-elem-37{stroke-dashoffset:527.6824951171875px;stroke-dasharray:527.6824951171875px;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.32s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.4s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.32s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.4s}svg.active .svg-elem-37{stroke-dashoffset:0}svg .svg-elem-38{stroke-dashoffset:525.4996337890625px;stroke-dasharray:525.4996337890625px;-webkit-transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.4399999999999995s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.5s;transition:stroke-dashoffset 1s cubic-bezier(0.47,0,0.745,0.715) 4.4399999999999995s,fill 0.7s cubic-bezier(0.47,0,0.745,0.715) 4.5s}svg.active .svg-elem-38{stroke-dashoffset:0}

/* single */
.single_content{
	padding:80px 0 40px;
	overflow:hidden;
	width:100%;
	margin:0 auto;
}

section.single_content .inner{
	width:95%;
	margin:0 auto 40px;
}

.sidebar{
	width:95%;
	margin:20px auto;
}

.post_cate a{
	padding:10px;
	background:#333;
	color:#fff;
	font-size:90%;
}

.single .single_content h1 {
    text-align: center;
    font-size: 180%;
	margin:40px auto 20px;
    border-bottom: none;
    padding-bottom: 10px;
}

.page section p, .single section p {
    margin:0 auto 20px;
    font-size: 100%;
	line-height:2;
}

.post_content .content .wp-block-image img{
	width:auto;
	margin:0 auto 20px;
}

.thumb{
	margin:0 auto 40px;
}

.thumb img{
	height:auto;
}

.post_content .content h2{
	text-align:left;
	margin:0 auto 20px;
}

.content .wp-block-quote{
	border:none;
	box-sizing:border-box;
	background:var(--light-color);
	padding:20px 40px;
}

.content .wp-block-quote p{
	font-size:80%;
	margin:0 auto;
}

.content .wp-block-quote p strong{
	display:inline-block;
	margin:0 auto 10px;
}

.sidebar h2{
	font-weight:bold;
	font-size:150%;
	margin:0 auto 20px;
}

.sidebar h3{
	font-weight:bold;
	font-size:120%;
	padding:10px 0;
}

.sidebar ul{
	border-top:1px solid #333;
	padding:20px 0;
}

.sidebar li{
	overflow:hidden;
	margin:0 auto 30px;
}

.sidebar .blog_list li a{
	display:flex;
	align-items:center;
}

.sidebar .blog_list li img{
	width:23%;
	height:auto;
}

.sidebar .blog_list li h4{
	width:75%;
	margin-left:2%;
	font-size:70%;
}

.sidebar .online_list li a{
	display:block;
	overflow:hidden;
}

.sidebar .online_list li img{
	width:25%;
	float:right;
}

.sidebar .online_list li h4,.sidebar .online_list li p{
	float:left;
	width:73%;
}

.sidebar .online_list li *{
	font-size:90%;
}

.sidebar .online_list li p{
	margin:0 auto;
}

.sidebar .online_list li p span{
	font-size:60%;
}

.sidebar .online_list li h4 span{
	display:block;
}

.sidebar li:last-child a{
	display:flex;
	align-items:center;
	color:#333;
	font-size:90%;
	font-weight:bold;
}

.sidebar li:last-child a:before{
	content:"";
	display:block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #555555;
	border-right: 0;
	margin-right:5px;
}

.sidebar .news_list li a p{
	font-size:80%;
	margin:0 auto;
	line-height:1.5;
	font-weight:bold;
}

.sidebar .news_list li a p.date{
	font-size:70%;
	font-weight:normal;
}

.sidebar li a:hover *{
	text-decoration:underline;
}

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

.reco li{
	width:49%;
	margin:0 auto 10px;
}

.reco li a{
	display:block;
	width:100%;
	height:100%;
	box-sizing:border-box;
	padding:20px;
	border:1px dotted #333;
}

.reco li a p{
	font-size:90%;
}

.reco li a img{
	margin:0 auto 10px;
	height:auto;
}

.reco_title{
	font-size:120%;
	text-align:left;
	border-left:4px solid #333;
	padding-left:2%;
}

main.archive_post{
	padding: 80px 0;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	background:none;
}

.archive_post .picup{
	width:100%;
	margin:0 auto;
}

.archive_post ul.archive_list{
	display:flex;
	flex-wrap:wrap;
}

.archive_post ul.archive_list li{
	width:48%;
	margin:0 1% 20px;
}

.archive_post ul.archive_list li h3{
	font-size:95%;
}

.archive_post ul.archive_list li a{
	padding:5px 5px 25px;
	box-sizing:border-box;
	display:block;
	height:100%;
	position:relative;
}

.archive_post ul.archive_list li a:hover{
	background:var(--light-color);
}


.archive_post ul.archive_list li .thumb{
	position:relative;
	height:90px;
	overflow:hidden;
	margin:0 auto 10px;
}

.archive_post ul.archive_list li .thumb img{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.archive_post ul.archive_list li .thumb p{
	position:absolute;
	top:0;
	right:0;
	background:#333;
	color:#fff;
	z-index:2;
	padding:5px 10px;
	font-size:70%;
}

.archive_post ul.archive_list li h3 span{
	display:block;
	font-size:80%;
	font-weight:normal;
	margin:5px auto;
}

.archive_post ul.archive_list li .date{
	position:absolute;
	text-align:right;
	font-size:70%;
	bottom:5px;
	right:5px;
}



.archive_item_list li a dt{
	margin:0 auto;
	height:180px;
	position:relative;
	overflow:hidden;
}

.archive_item_list li a dt p{
	position: absolute;
	top: 0;
	right: 0;
	background: #333344b3;
	color: #fff;
	z-index: 2;
	padding: 2px 10px;
	font-size: 70%;
}

.archive_item_list li a dt img{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	transition:0.5s;
}

.archive_item_list li a:hover dt img{
	transform: scale(1.1);
	transition:0.5s;
}

.archive_item_list li a:hover{
	background:#fff;
	transition:0.5s;
}

.archive_item_list li a:hover .more_link{
	background:var(--main-color);
	color:#fff;
	border:1px solid var(--main-color);
	transition:0.5s;
}

.archive_item_list li a dd h3{
	text-align:center;
	margin:0 auto 5px;
}

.archive_item_list li a dd h3 span{
	display:block;
	font-size:80%;
	font-weight:normal;
	text-align:center;
}

.archive_item_list li a dd p.price{
	font-weight:bold;
	font-size:140%;
	text-align:center;
	color:var(--sub-color);
	line-height:1.2;
	margin:0 auto 5px;
}

.archive_item_list li a dd p.price span{
	display:block;
	font-size:50%;
	font-weight:normal;
	text-align:center;
	color:var(--sub-color);
}

.archive_item_list li a dd p.text{
	font-size:80%;
	margin:0 auto 20px;
}

.archive_item_list li a dd .more_link{
	border:1px solid var(--black-color);
	border-radius:20px;
	width:80%;
	margin:0 auto;
	text-align:center;
	padding:5px 0;
	font-size:90%;
}


.single_content .post_content dt{
	margin:0 auto 10px;
	height:300px;
	position:relative;
	overflow:hidden;
}

.single_content .post_content dt p{
	position: absolute;
	top: 0;
	right: 0;
	background: #333;
	color: #fff;
	z-index: 2;
	padding: 5px 10px;
	font-size: 70%;
}

.single_content .post_content dt img{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	transition:0.5s;
}

.single_content .post_content dd h3{
	text-align:center;
	margin:0 auto 10px;
}

.single_content .post_content dd h3 span{
	display:block;
	font-size:80%;
	font-weight:normal;
	text-align:center;
}

.single_content .post_content dd p.price{
	font-weight:bold;
	font-size:140%;
	text-align:center;
	color:var(--sub-color);
	line-height:1.2;
	margin:0 auto 10px;
}

.single_content .post_content dd p.price span{
	display:block;
	font-size:50%;
	font-weight:normal;
	text-align:center;
	color:var(--sub-color);
}

.single_content .post_content dd p.text{
	font-size:100%;
	margin:0 auto 20px;
	text-align:center;
}

.single_content .post_content dd .more_link{

}

.single_content .post_content dd .more_link a{
	display:block;
	border:1px solid var(--black-color);
	border-radius:20px;
	width:80%;
	margin:0 auto;
	text-align:center;
	padding:5px 0;
	font-size:90%;
}

.single_content .post_content dd .more_link a:hover{
	background:var(--main-color);
	color:#fff;
	border:1px solid var(--main-color);
	transition:0.5s;
}

main.post_page{
	padding:80px 0 0;
	background: URL("../img/bk.png");
    background-size: cover;
}

main.post_page .inner{
	background:#ffffff8a;
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
	padding:20px;
}

main.post_page .inner h1{
	text-align:center;
	font-size:160%;
	margin:0 auto 20px;
}

main.post_page .inner p{
	font-size:90%;
}

.about_member{
	background: URL("../img/bk_brown.png") no-repeat;
    background-size: cover;
    background-position: center;
	overflow:hidden;
}

main.post_page .about_member .inner{
	padding-top:80px;
	background: #ffffffb5;
}

.about_member ul li{
	margin:0 auto;
	overflow:hidden;
	padding:20px 0;
	border-bottom:1px dotted #333;
}

.about_member ul li:last-child{
	border:none;
}

.about_member ul li>img{
	width:60%;
	margin:0 auto 20px;
}

.about_member ul li .member_content{
	width:100%;
}

.about_member ul li p.about_name{
	font-size:160%;
	font-weight:bold;
	font-family: "rhau", sans-serif;
	margin:0 auto 10px;
	text-align:center;
}

.about_member ul li p{
	font-size:100%;
	line-height:1.5;
	margin:0 auto 10px;
}

.page section .wpcf7-form{
	width:95%;
	margin:0 auto;
}

.page section .wpcf7-form p{
	text-align:center;
}

.page section .wpcf7-form .form_label p{
	margin:0 auto;
}

.wpcf7-form label{
	margin:0 auto 40px;
}

.wpcf7-form label>span{
	width:68%;
}

.wpcf7-form label>span input{
	width:100%;
	margin:0 auto 30px;
}

.wpcf7-form .form_label{
	width:100%;
	display:flex;
	align-items: center;
	justify-content: flex-start;
	margin-right:2%;
}


.wpcf7-form .form_label span{
	color:#fff;
	font-size:60%;
	padding:1px 5px;
	margin-left:10px;
	border-radius:5px;
	background:var(--main-color);
}

.wpcf7-form .wpcf7-submit{
	width:80%;
	margin:40px auto;
	display:block;
}

.fixed{
	position:fixed;
	right:0;
	bottom:5px;
	width:50%;
	z-index:999;
}

.fixed a{
	display:block;
	padding:5px;
	box-sizing:border-box;
	border-radius:10px 0 0 10px;
	background:#06C755;
	background-size: cover;
}

.fixed a h3{
	color:#fff;
	font-size:85%;
	text-align:center;
}

.fixed a h3 span{
	color:#fff;
	font-size:60%;
	margin-right:5px;
}

.fixed a p{
	color:#fff;
	font-size:70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed a img{
	display:none;
}

.fixed a p:after{
	content: "";
    background: URL("../img/more_arrow.png") no-repeat center;
    background-size: contain;
    display: block;
    height: 10px;
    width: 20px;
    margin-left: 5px;
}

.members_single .post_content{
	width:95%;
	margin:0 auto;
}

.members_single .post_content img{
	width:50%;
	margin:0 auto 40px;
}

.members_single .post_content .more{
	margin:60px auto;
}

#online_intro{
	padding-top:20px;
}

.page section p.soldout{
	font-weight:bold;
	text-align:center;
	line-height:1;
	margin:0 auto 10px;
	background:var(--sub-color);
	color:#fff;
	padding:3px 0;
	font-size:90%;
}

section.online #online_intro ol{
	margin:0 auto 60px;
}

section.online #online_intro h2{
	margin:0 auto 20px;
	font-size:80%;
}

section.online #online_intro h2:before{
	margin:0 auto;
	content:"";
	display:block;
	width:150px;
	height:150px;
	border-radius:50%;
	margin:0 auto 10px;
}

section.online #online_intro h2.heading-shop_optimal:before{
	background:#fff URL("../img/shop_optimal.png") no-repeat;
	background-size:contain;
	background-position:center;
}

section.online #online_intro h2.heading-shop_voice:before{
	background:#fff URL("../img/shop_voice.jpg") no-repeat;
	background-size:contain;
	background-position:center;
}
section.online #online_intro h2.heading-shop_natural:before{
	background:#fff URL("../img/shop_natural.png") no-repeat;
	background-size:contain;
	background-position:center;
}
section.online #online_intro h2.heading-shop_mu:before{
	background:#fff URL("../img/shop_mu.png") no-repeat;
	background-size:contain;
	background-position:center;
}

section.online #online_intro ol.ol-shop_mu dt{
	height:200px;
}

section.online #online_intro ol.ol-shop_mu dt img{
	height:100%;
	width:auto;
	margin-top:20px;
}

section.online #online_intro ol.ol-shop_mu dd h3{
	width:95%;
	margin:0 auto 20px;
	font-size:90%;
}