@charset "utf-8";

:root {
--font-weight-black:900;
--font-size-XSmall:.777em;
--my-darkgrenn:#00A23D;
--my-yellowgreen:#6EB72E;
--my-lightgreen:#EBF8F0;
--my-darkorange:#ED6400;
--my-darkyellow:#FFDE4D;
--my-lightyellow:#FEF5E3;
}
/*------------------
 * setting
 *------------------*/
* {
	margin: 0;
	padding: 0;
	list-style:none;
	outline:0;
	vertical-align: baseline;
	background:transparent;
	/* text-decoration: none; */
	box-sizing: border-box;
}
ol, ul {
	padding-left: 0;
  }
img{
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering:auto;
}
img[height]{
	height: auto;
}
object {
    pointer-events: none;
}
a img,
a object{
	pointer-events: none;
	transition: 0.5s;
	vertical-align:bottom;
}
a:has img{
    display: block;
}
a:hover img,
a:hover object{
	opacity: 0.7;
	transition: 0.5s;
}
figure{
	margin-bottom:0;
}
/*txt*/
main p{
	line-height: 1.8;
}
.Xsmall{
    font-size: var(--font-size-XSmall);
}
section{
	padding:5rem 0;
}
header a,
footer a{
	text-decoration: none;
	display: block;
}
@media (max-width: 575.98px){
	section{
		padding:3rem 0;
	}
}
/*material symbols*/
.material-symbols-rounded {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24
}
.icon-small{
    font-size:20px;
}
.icon-Xsmall{
    font-size:12px!important;
}
.icon-large{
    font-size:48px;
}
.icon-link{
	text-decoration: none;
}
/*------------------
 * cmn parts
 *------------------*/
 /*container*/
 .container-narrow{
	max-width:1080px;
	overflow-x: hidden;
 }
 .container-base{
	max-width:1200px;
	
 }
 .container-wide{
	max-width:1400px;
	overflow-x: hidden;
 }
 /*background*/
 .bg-special{
	background:url("/wp-content/themes/my-theme/assets/images/cmn/bg.png"),var(--bs-primary);
}
.bg-my-lightgreen{
	background:var(--my-lightgreen);
}
.bg-my-lightyellow{
	background:var(--my-lightyellow);
}
/*btn*/
.btn-icon-link{
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-mitsumori.btn-secondary{
	color:var(--bs-white);
	font-weight: 700;
	border-bottom:5px solid var(--my-darkorange);
	transition: 0.2s;
 }
 .btn-mitsumori.btn-secondary.btn-lg {
	--bs-btn-padding-y: .8rem;
	--bs-btn-padding-x: 1.5rem;
	--bs-btn-font-size: 1.33rem;
}
.btn-mitsumori.btn-secondary:hover,
.btn-mitsumori.btn-secondary:active {
	transform: translateY(0.1em);
	border-bottom:5px solid transparent;
	background:var(--my-darkorange);
	transition: 0.2s;
	color:var(--bs-white);
  }
/*mitusmori-form*/
 .mitusmori-form{
	background:var(--bs-light);
	border-radius: 12px;
	padding:20px;
	box-shadow: 0px 5px 7px 0px rgba(0,0,0,.3);
}
 .mitusmori-form h4{
	font-weight: 900;
 }
 .mitusmori-form-area{
	padding:.3em 0;
	align-items: center;
	& .mitusmori-form-label-area{
		text-align: center;
	}
	 & ::placeholder{
		font-size: .77em;
	}
	 & .form-check-label{
		margin-right:5px;
	}
	& .form-check {
		padding-left: 2em;
		margin-bottom: .4rem;
	  }
 }
 @media (max-width: 575.98px) {
	.mitusmori-form h4{
		font-size: 5.2vw;
	}
	.mitusmori-form-area{
		& .mitusmori-form-label-area{
			text-align: left;
			padding-bottom:.4em;
			font-weight: bold;
		}
	}
 }
 /*heading*/
 .heading1{
	position:relative;
	display: block;
	border-bottom:4px solid var(--bs-gray-200);
	padding-bottom:10px;
 }
 .heading1::after{
	position:absolute;
	content:"";
	width:10%;
	height:4px;
	left:0;
	bottom:-4px;
	background:var(--bs-primary);
 }
 section .heading1:not(:first-of-type){
	margin-top:3rem;
}
 .heading-sub{
	font-weight: var(--font-weight-black);
	text-align: center;
	& span{
		display: block;
	}
	& img{
		max-width:80px;
		width:20vw;
	}
}
/*fukidasi*/
/* section:has(+ section .fukidashi) {
	padding-bottom:6rem;
} */
section:has(.fukidashi) {
	padding-top:0;
	position: relative;
}
.container:has(.fukidashi) {
	padding-top:5rem;
}
.fukidashi{
	position: absolute;
    top: -2em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	margin-bottom:1em;
}
.fukidashi >*{
	position:relative;
}
.fukidashi >*:after{
	content: "";
	position: absolute;
	bottom: -29px;
	left: 50%;
	width:20px;
	height:30px;
	clip-path: polygon(17% 100%, 0 0, 100% 0);
	background-color: var(--bs-red);
}
.fukidashi >*{
	margin-bottom: 0rem;
	white-space: nowrap;
	background:var(--bs-red);
	color:var(--bs-white);
	display: inline-block;
	border-radius: 12px;
	padding:.5em .8em;
}

/*load*/
.loader {
	align-items: center;
	background: rgba(var(--bs-white-rgb), 0.8);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
}
.loader::after {
	animation: loader 0.5s linear infinite ;
	border: 3px solid var(--bs-secondary);
	border-radius: 50%;
	border-right: 3px solid var(--bs-gray-300);
	border-top: 3px solid var(--bs-gray-300);
	content: "";
	height: 70px;
	width: 70px;
}
@keyframes loader {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*list*/
.list-style-image li{
	padding-left: 1.2em;
	background-image: url('/wp-content/themes/my-theme/assets/images/cmn/chevron_right_FILL0_wght400_GRAD0_opsz20.svg');
	background-repeat: no-repeat;
	background-size: 1rem;
	background-position: left .4rem;
}
/*pagetop*/
#pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
	z-index: 5;
	& a:link,
	& a:visited{
	text-decoration: none;
	color: var(--bs-secondary);
	opacity: .8;
	}
	& a:hover{
		opacity: .5;
	}
	& .material-symbols-rounded-light {
		font-variation-settings:
		'FILL' 1,
		'wght' 200,
		'GRAD' 0,
		'opsz' 24
	}
}

/*------------------
 * header
 *------------------*/
#header{
	position: relative;
	z-index: 10;
	padding:1.5rem 0;
	& ul{
		margin-bottom:0;
	}
	& #header-inner{
		position:relative;
		justify-content: space-between;
		align-items: flex-end;
		& #header-inner-left{
			width:15%;
		}
		& #header-inner-right{
			width:83%;
			& #header-main{
				justify-content: space-between;
				align-items: flex-end;
			}
		}
	}
	& #headernav{
		& li{
			margin-right:2rem;
		}
		& .nav-link{
			position:relative;
			display: block;
		}
		& .nav-link:after{
			position:absolute;
			width:0;
			height:3px;
			bottom:-8px;
			left:50%;
			transform: translateX(-50%);
			content:"";
			background:var(--bs-primary);
			transition: 0.3s;
			z-index: 1;
		}
		& .nav-link:hover:after,
		& .nav-link.active:after{
			width:100%;
			left:50%;
			transition: 0.3s;
		}
	}
	& #header-medal{
		width:25%;
	}
	
}
@media (max-width: 991.98px){
	#header{
		padding:0;
		& .navbar-brand{
			width:160px;
		}
		& #header-inner{
		position: fixed;
		top: 5vw;
		right: -150vw;
		width: 90vw;
		height: 100vh;
		z-index: 9;
		transition: 0.5s ease-in-out;
		opacity: 0;
		justify-content: flex-start;
			& #header-inner-right{
				width:100%;
				& #header-description{
					text-align: center;
					margin-top:1rem;
					margin-bottom:1rem!important;
				}
				& #header-main{
					align-items: center;
				}
			}
			& #header-inner-left{
				width:100%;
				text-align: center;
			}
		}
		& #headernav{
			width:100%;
			order:3;
			& li{
				margin-right:0;
				padding:1rem 0;
				text-align: left;
				border-bottom:1px solid rgba(var(--bs-black-rgb), 0.2);
				position: relative;
				cursor: pointer;
			}
			& li:first-of-type{
				border-top:1px solid rgba(var(--bs-black-rgb), 0.2);
			}
			& li:after{
				position:absolute;
				display:block;
				content:"";
				bottom:0px;
				width: 8px;
				height: 8px;
				border-top: 2px solid var(--bs-primary);
				border-right: 2px solid var(--bs-primary);
				top: calc(50% - 4px);
				right:0;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
				transition: 0.3s ease-in-out;
			}
			& .nav-link:after{
				display:none;
			}
			& .nav-link:hover{
				color:var(--bs-primary);
			}
		}
		& #header-medal{
			margin-bottom:1.5rem;
			width:50vw;
			order:2;
		}
	}
	.open #header{
		height:100vh;
		& #header-inner{
			right: 5vw;
			opacity: 1;
			transition: 0.5s ease-in-out;
		}
	}
		
}

@media (max-width: 575.98px){
	.navbar-brand img{
		width:145px;
	}
}
/*#bm*/
#bm{
	display: none;
}
@media (max-width: 991.98px){
	#bm{
		display: block;
	}
	#bm{
		display: flex;
		position: fixed;
		top: 15px;
		right: 10px;
		height: 44px;
		width: 44px;
		z-index: 10;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: 0.2s ease-in-out;
		& i{
			display: block;
			width: 30px;
			height: 2px;
			background: var(--bs-body-color);
			position: relative;
			transition: 0.3s ease-in-out;
		}
		& i:before,
		& i:after{
			content: "";
			display: block;
			width: 100%;
			height: 100%;
			background: var(--bs-body-color);
			position: absolute;
			top: -10px;
			left: 0;
			transition: 0.3s ease-in-out;
		}
		& i:after{
			top: 10px;
		}
	}
	.open #bm{
		& i{
		background: rgba(154,27,26,0);
		}
		&  i:before,
		&  i:after{
		top: 0;
		transform: rotate(225deg);
		background: var(--bs-primary);
		}
		&  i:after{
		transform: rotate(-225deg);
		}
	}
	.scrolled #bm{
		top: 10px;
	}
	#shade{
		width: 100%;
		height: 100%;
		background: rgba(var(--bs-white-rgb), 1);
		background-size:cover;
		position: fixed;
		top: 0;
		right: -100%;
		opacity: 0;
		z-index: 4;
		pointer-events: none;
		transition: 0.4s ease-in-out;
	}
	.open #shade{
		opacity: 1;
		pointer-events: auto;
		right:0;
	}
}

/*------------------
 * footer
 *------------------*/
#footer{
	background:var(--my-darkgrenn);
	color:var(--bs-white);
	& a{
		color:var(--bs-white);
		transition: 0.5s;
	}
	& a:hover{
		color:color-mix(in srgb, var(--bs-white) 60%, var(--my-darkgrenn));
		transition: 0.5s;
	}
}
@media (max-width: 767.98px){
	#footer h3 img{
		width:40vw;
	}
}
/*------------------
 * lv
 *------------------*/
#lv{
	background:var(--bs-tertiary-bg);
	padding:0;
	display: flex;;
	flex-direction: column;
	align-items: center;
	& .container{
		padding-top:2.5rem;
		padding-bottom:2.5rem;
		background-size: auto;
		background-position: right bottom!important;
	}
	& h1{
		margin-bottom:0;
	}
	& p{
		margin-top:1rem;
	}
}
@media (max-width: 767.98px){
	#lv{
		& .container{
			background-size:30% auto!important;
		}
		& p{
			font-size:1rem;
		}
	}
}
@media (max-width: 575.98px) {
	#lv{
		& .container{
			background:none!important;
			padding-top:1.5rem;
			padding-bottom:1.5rem;
		}
		& p{
			& br{
				display: none;
			}
		}
	}
}
/*------------------
 * closing
 *------------------*/
 #closing {
	& .container{
	max-width:900px;
	}
	& h3{
		position: relative;
	}
	& h3:before{
		position: absolute;
		content:"";
		background: url(/wp-content/themes/my-theme/assets/images/cmn/cushion_illust.svg);
		background-repeat: no-repeat;
		background-size: auto 100%;
		height:190px;
		width:190px;
		bottom:-5px;
		left:0px;
		transform:scale(-1, 1);
		z-index: 0;
	}
	& h3:after{
		position: absolute;
		content:"";
		background: url(/wp-content/themes/my-theme/assets/images/cmn/cushion_illust02.svg);
		background-repeat: no-repeat;
		background-size: auto 100%;
		height:200px;
		width:160px;
		bottom:-5px;
		right:0;
		z-index: 0;
	}
	& h3 figure{
		z-index: 1;
		position: relative;
		filter: drop-shadow(-2px -2px 0px var(--bs-primary)) drop-shadow(2px 2px 0px var(--bs-primary)) drop-shadow(-2px 2px 0px var(--bs-primary)) drop-shadow(2px -2px 0px var(--bs-primary));
	}
	& form{
		position: relative;
		z-index:2;
	}
}
@media (max-width: 767.98px){
	#closing {
		& h3{
			padding-bottom:25vw!important;
		}
		& h3:before,
		& h3:after{
			height:25vw;
			width:25vw;
			bottom:-1vw;
		}
		& h3:before{
			left:20vw;
			background-size: 100% auto;
		}
		& h3:after{
			right:20vw;
			background-size: 90% auto;
		}
	}
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*追従フッター調整*/

.org_fixed {
  position: relative;
  z-index: 9999;
}
.org_fixed .-w-fixed_on {
  position: fixed;
  right: 68px;
  bottom: -100px;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.org_fixed .-w-fixed_on.-w-appear {
  bottom: 0;
  opacity: 1;
}
.org_fixed .-w-fixed_on.-w-popup_off {
  opacity: 1;
  bottom: 0;
}
.org_fixed .-w-fixed_off {
  position: fixed;
  bottom: -100px;
  opacity: 0;
}
.org_fixed .-w-mail-sub.-w-appear {
  opacity: 1;
}
.org_fixed .-w-sns-sub li {
  height: 32px;
}
.org_fixed .-w-sns-sub li a {
  display: block;
  height: 100%;
}
.org_fixed .-w-sns-sub.-w-appear {
  opacity: 1;
}
.org_fixed .-w-innner {
  width: 100%;
  height: 48px;
  width: 100%;
  height: 90px;
}
.org_fixed .-w-close {
  display: none;
}
.org_fixed .-w-tracking {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  column-gap: 1px;
  margin-right: 0;
  margin-left: auto;
  width: 60%;
  height: 90px;
  max-width: 500px;
  justify-content: flex-end;
}
.org_fixed .-w-tel-container {
  position: relative;
  background-color: hsla(0, 0%, 100%, 1);
}
.org_fixed .-w-tel-container .-w-tel-link {
  width: 100%;
  border: 1px #000 solid;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.org_fixed .-w-tel-container .-w-tel-link2 {
  box-sizing: border-box;
  display:flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
  position: relative;
}
.org_fixed .-w-tel-container a[href*="tel:"] {
  pointer-events: none;
}
.org_fixed .-w-tel {
  position: relative;
  margin-right: 0;
  width: min(2.5vw, 25px);
  height: min(2.5vw, 25px);
}
.org_fixed .-w-tel path {
  fill: #ffffff;
  fill: rgba(33, 34, 34, 1);
}
.org_fixed .-w-tel_number {
  font-size: 2rem;
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-width: 150px;
}
.org_fixed .-w-hours {
  font-size: 1.4rem;
}
.org_fixed .-w-hours,
.org_fixed .-w-mail-text,
.org_fixed .-w-sns-text {
  position: relative;
  z-index: 9;
}
.org_fixed .-w-tel_text {
  font-size: 1.2rem;
}
.org_fixed .-w-mail-container {
  position: relative;
  background-color: hsla(0, 0%, 100%, 1);
}
.org_fixed .-w-mail-container > a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
  position: relative;
}
.org_fixed .-w-mail-container:hover > a {
  color: rgba(255, 255, 255, 1);
}
.org_fixed .-w-mail-container:hover > a path {
  fill: rgba(255, 255, 255, 1);
}
.org_fixed .-w-mail {
  width: 20px;
  height: 16px;
  position: relative;
}
.org_fixed .-w-mail path {
  fill: rgba(112, 112, 112, 1);
}
.org_fixed .-w-mail-text span:last-child,
.org_fixed .-w-sns-text span:last-child {
  margin-left: -3px;
}
.org_fixed li.-w-add_btn-container:hover::before {
  height: 100%;
}
.org_fixed .-w-add_btn-container {
  position: relative;
  background-color: #ED8700;
}
.org_fixed .-w-add_btn-container > a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
  position: relative;
  flex-direction: column;
  align-items: center;
}
.org_fixed .-w-add_btn-container .-w-img_icon {
  width: 20px;
  height: 20px;
  width: 32px;
  height: 32px;
}
.org_fixed .-w-add_btn-container:hover > a {
  color: rgba(255, 255, 255, 1);
}
.org_fixed .-w-add_btn-container > a:hover::before {
  height: 100%;
}
.org_fixed .-w-sns-container {
  position: relative;
  background-color: hsla(0, 0%, 100%, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.org_fixed .-w-sns-container::before {
  content: "";
  background-color: #313131;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-sns-container:hover {
  color: #fff;
}
.org_fixed .-w-sns-container:hover::before {
  height: 100%;
}
.org_fixed .-w-sns-container:hover .-w-sns > path {
  fill: #fff;
}
.org_fixed .-w-sns {
  width: 17px;
  height: 19px;
  position: relative;
}
.org_fixed .-w-sns path {
  fill: rgba(49, 49, 49, 1);
}
.org_fixed .-w-sns-sub,
.org_fixed .-w-mail-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  background-color: hsla(0, 0%, 100%, 1);
  height: 72px;
  width: 100vw;
  right: 0;
  bottom: -124px;
  left: 0;
  z-index: -1;
  cursor: default;
  transition: all 0.3s;
  opacity: 0;
}
.org_fixed .-w-mail-container.-w-pointer_none > a {
  pointer-events: none;
}
.org_fixed .-w-sns-sub li:not(:first-child) {
  margin-left: 25px;
}
.org_fixed .-w-sns-sub li:last-child {
  margin-left: 0;
}
.org_fixed .-w-facebook-sub,
.org_fixed .-w-twitter-sub,
.org_fixed .-w-line-sub,
.org_fixed .-w-ameba-sub,
.org_fixed .-w-instagram-sub,
.org_fixed .-w-youtube-sub,
.org_fixed .-w-tiktok-sub {
  width: 32px;
  height: 32px;
  vertical-align: top;
  z-index: 9;
}
.org_fixed .-w-sns-none {
  display: none;
}
.org_fixed .-w-facebook-container {
  position: relative;
}
.org_fixed .-w-facebook-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-facebook-container a::before {
  content: "";
  background-color: #1877f2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-facebook-container a:hover {
  color: #fff;
}
.org_fixed .-w-facebook-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-facebook-container a:hover .-w-facebook-blue {
  fill: #fff;
}
.org_fixed .-w-facebook-container a:hover .-w-facebook-white {
  fill: #1877f2;
}
.org_fixed .-w-facebook,
.org_fixed .-w-twitter,
.org_fixed .-w-line,
.org_fixed .-w-ameba,
.org_fixed .-w-instagram,
.org_fixed .-w-tiktok,
.org_fixed .-w-youtube {
  width: 20px;
  height: 20px;
  position: relative;
}
.org_fixed .-w-facebook-blue {
  fill: #1877f2;
}
.org_fixed .-w-facebook-white {
  fill: #fff;
}
.org_fixed .-w-twitter-container {
  position: relative;
}
.org_fixed .-w-twitter-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-twitter-container a::before {
  content: "";
  background-color: #1da1f2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-twitter-container a:hover {
  color: #fff;
}
.org_fixed .-w-twitter-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-twitter-container a:hover .-w-twitter-blue {
  fill: #fff;
}
.org_fixed .-w-twitter-container a:hover .-w-twitter-white {
  fill: #1da1f2;
}
.org_fixed .-w-twitter-blue {
  fill: #1da1f2;
}
.org_fixed .-w-twitter-white {
  fill: #fff;
}
.org_fixed .-w-line-container {
  position: relative;
}
.org_fixed .-w-line-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-line-container a::before {
  content: "";
  background-color: #06c755a1;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-line-container a:hover {
  color: #fff;
}
.org_fixed .-w-line-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-line-container a:hover .-w-line-green {
  fill: #fff;
}
.org_fixed .-w-line-container a:hover .-w-line-white {
  fill: #06c755;
}
.org_fixed .-w-line-green {
  fill: #06c755;
}
.org_fixed .-w-line-white {
  fill: #fff;
}
.org_fixed .-w-ameba-container {
  position: relative;
}
.org_fixed .-w-ameba-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-ameba-container a::before {
  content: "";
  background-color: #306e47;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-ameba-container a:hover {
  color: #fff;
}
.org_fixed .-w-ameba-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-ameba-container a:hover .-w-ameba-green {
  fill: #f9f9f9;
}
.org_fixed .-w-ameba-container a:hover .-w-ameba-white {
  fill: #306e47;
}
.org_fixed .-w-ameba-green {
  fill: #306e47;
}
.org_fixed .-w-ameba-white {
  fill: #f9f9f9;
}
.org_fixed .-w-instagram-container {
  position: relative;
}
.org_fixed .-w-instagram-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-instagram-container a::before {
  content: "";
  background-color: #f00075;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-instagram-container a:hover {
  color: #fff;
}
.org_fixed .-w-instagram-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-instagram-container a:hover .-w-instagram-black {
  fill: #fff;
}
.org_fixed .-w-instagram-black {
  fill: #000;
}
.org_fixed .-w-tiktok-container {
  position: relative;
}
.org_fixed .-w-tiktok-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-tiktok-container a::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-tiktok-container a:hover {
  color: #fff;
}
.org_fixed .-w-tiktok-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-tiktok-container a:hover .-w-line-green {
  fill: #fff;
}
.org_fixed .-w-tiktok-container a:hover .-w-line-white {
  fill: #4cc764;
}
.org_fixed .-w-tiktok-container a .-w-tiktok-subtext {
  z-index: 0;
  margin-left: 6px;
}
.org_fixed .-w-youtube-container {
  position: relative;
}
.org_fixed .-w-youtube-container a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgba(49, 49, 49, 1);
}
.org_fixed .-w-youtube-container a::before {
  content: "";
  background-color: #ff0000;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-youtube-container a:hover {
  color: #fff;
}
.org_fixed .-w-youtube-container a:hover::before {
  height: 100%;
}
.org_fixed .-w-youtube-container a:hover .-w-line-green {
  fill: #fff;
}
.org_fixed .-w-youtube-container a:hover .-w-line-white {
  fill: #4cc764;
}
.org_fixed .-w-top {
  width: 40px;
  position: relative;
  background-color: hsla(0, 0%, 100%, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.org_fixed .-w-top::before {
  content: "";
  background-color: #aaa;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  transition: all 0.3s;
}
.org_fixed .-w-top:hover::before {
  height: 100%;
}
.org_fixed .-w-top:hover path {
  fill: #fff;
}
.org_fixed .-w-arrow {
  width: 16px;
  height: 16px;
  position: relative;
}
.org_fixed .-w-arrow path {
  fill: rgba(49, 49, 49, 1);
}
.org_fixed[data-cms_editable="true"] {
  position: initial;
}
.org_fixed[data-cms_editable="false"] {
  position: initial;
}
.org_fixed[data-cms_editable="true"] .-w-container {
  position: absolute;
  bottom: 0;
  z-index: 9999;
}
.org_fixed[data-cms_editable="false"] .-w-container {
  position: absolute;
  bottom: 0;
  z-index: 9999;
}
.org_fixed[data-cms_editable="true"] .-w-sns-sub,
.org_fixed [data-cms_editable="true"] .-w-mail-sub {
  position: absolute;
  bottom: -24px;
  left: -62vw;
}
.org_fixed[data-cms_editable="false"] .-w-sns-sub,
.org_fixed [data-cms_editable="false"] .-w-mail-sub {
  position: absolute;
  bottom: -24px;
  left: -62vw;
}
.org_fixed .-w-mail-sub div {
  margin: 0;
  margin-left: 30px;
}
.org_fixed .-w-mail-sub a:first-child {
  margin-left: 0;
}
.org_fixed br.-w-sp {
  display: none;
}
.org_fixed .-w-d_none {
  display: none;
}
.org_fixed .-w-underbtn {
  width: calc((100% - 40px) / var(--count));
  border-radius: 5px 5px 0 0;
  width: 90px;
}
.org_fixed .-w-youtube-subtext {
  vertical-align: middle;
  color: #313131;
  font-family: sans-serif;
  font-weight: 900;
  line-height: 2;
  z-index: 1;
  margin-left: 5px;
}
.org_fixed .-w-youtube-container span {
  z-index: 1;
  font-family: sans-serif;
  font-weight: 900;
}
.org_fixed .-w-sns-sub a:hover {
  opacity: 0.7;
}
.org_fixed .sp_box {
  display: none;
}
.org_fixed .-w-info {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.org_fixed .-w-snsbtn {
  background: #fff;
}
.org_fixed .-w-instagram {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.org_fixed .-w-tel-container.-w-underbtn {
  width: calc(100% - 180px - 2px);
}
.org_fixed .-w-img_icon {
  margin: 1rem;
}
.org_fixed .-w-mail-text {
  color: #fff;
}
.org_fixed .-w-tel-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
  height: 100%;
}
.org_fixed .item_ttl {
  display: inline-block;
  width: 5em;
}
.org_fixed .sp_tel_icon {
  display: none;
}
.org_fixed .-w-tel-link2_sp {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}
.org_fixed .-w-add_btn-container a {
  transition: 0.3s;
}
.org_fixed .-w-add_btn-container > a:hover {
  opacity: 0.8;
}
.org_fixed .-w-add_btn-container:nth-child(3) a:hover {
  opacity: 1;
}
.org_fixed .tel_text {
  display: none;
}
@media (min-width: 1024px) {
  .org_fixed .-w-sns-container:hover .-w-sns-sub {
    bottom: 48px;
  }
  .org_fixed .-w-mail-container:hover .-w-mail-sub {
    bottom: 48px;
  }
}
@media (max-width: 1023px) {
  .org_fixed #foot_fixed.-w-fixed_sp_on {
    position: fixed;
    right: 0;
    bottom: -100px;
    left: 0;
    opacity: 0;
    transition: 0.3s;
  }
  .org_fixed #foot_fixed.-w-fixed_sp_on.-w-appear {
    bottom: 0;
    opacity: 1;
  }
  .org_fixed #foot_fixed.-w-fixed_sp_on.-w-popup_off {
    opacity: 1;
    bottom: 0;
  }
  .org_fixed #foot_fixed.-w-fixed_sp_off {
    bottom: -100px;
    opacity: 0;
  }
  .org_fixed br.-w-sp {
    display: initial;
  }
  .org_fixed .-w-mail-container {
    flex-grow: 1;
  }
  .org_fixed .-w-mail-sub {
    max-height: 0;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0 0;
  }
  .org_fixed .-w-mail-sub div {
    margin-left: 0;
    min-width: 50%;
  }
  .org_fixed .-w-mail-sub a {
    margin-left: 0;
    margin-bottom: 20px;
    width: 60%;
  }
  .org_fixed .-w-sns-container {
    flex-grow: 1;
    color: #fff;
  }
  .org_fixed .-w-innner {
    height: 80px;
  }
  .org_fixed .-w-tracking {
    font-size: 3.5vw;
    height: 80px;
    box-shadow: 0 -1px 2px rgba(255, 255, 255, 0.05);
    font-size: 1.6rem;
  }
  .org_fixed .-w-tel-container {
    flex-grow: 1;
  }
  .org_fixed .-w-tel-container .-w-tel-link2 {
    padding: 10px;
  }
  .org_fixed .-w-tel-container a[href*="tel:"] {
    pointer-events: auto;
  }
  .org_fixed .-w-tel-container::before {
    height: 100%;
  }
  .org_fixed .-w-hours span {
    font-size: 12px;
  }
  .org_fixed .-w-hours,
  .org_fixed .-w-mail-text,
  .org_fixed .-w-sns-text {
    margin-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .org_fixed .-w-mail-container > a {
    color: rgba(255, 255, 255, 1);
  }
  .org_fixed .-w-mail-container::before {
    height: 100%;
  }
  .org_fixed .-w-mail path {
    fill: rgba(245, 245, 245, 1);
  }
  .org_fixed .-w-mail-text span:last-child,
  .org_fixed .-w-sns-text span:last-child {
    margin-left: 0;
  }
  .org_fixed .-w-add_btn-container {
    flebx-grow: 1;
  }
  .org_fixed .-w-add_btn-container > a {
    color: rgba(255, 255, 255, 1);
  }
  .org_fixed .-w-add_btn-container::before {
    height: 100%;
  }
  .org_fixed .-w-sns-container::before {
    height: 100%;
  }
  .org_fixed .-w-sns path {
    fill: #fff;
  }
  .org_fixed .-w-sns-text {
    margin-left: 5px;
  }
  .org_fixed .-w-sns-sub {
    pointer-events: none;
  }
  .org_fixed .-w-sns-sub li {
    height: 40px;
  }
  .org_fixed .-w-facebook-sub,
  .org_fixed .-w-twitter-sub,
  .org_fixed .-w-line-sub,
  .org_fixed .-w-ameba-sub,
  .org_fixed .-w-instagram-sub,
  .org_fixed .-w-tiktok-sub,
  .org_fixed .-w-youtube-sub {
    pointer-events: auto;
    position: relative;
    z-index: 1;
  }
  .org_fixed .-w-sns-sub-active,
  .org_fixed .-w-mail-sub-active {
    transform: translateY(-80px);
    bottom: 0;
    height: 90px;
  }
  .org_fixed .-w-mail-sub-active {
    max-height: 50vh;
  }
  .org_fixed .-w-close-container {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .org_fixed .-w-close {
    width: 10px;
    height: 10px;
  }
  .org_fixed .-w-close-black {
    fill: hsla(0, 0%, 0%, 1);
  }
  .org_fixed .-w-facebook-container a {
    color: #fff;
  }
  .org_fixed .-w-facebook-container a::before {
    height: 100%;
  }
  .org_fixed .-w-facebook-container .-w-facebook-blue {
    fill: #fff;
  }
  .org_fixed .-w-facebook-container .-w-facebook-white {
    fill: #1877f2;
  }
  .org_fixed .-w-twitter-container a {
    color: #fff;
  }
  .org_fixed .-w-twitter-container a::before {
    height: 100%;
  }
  .org_fixed .-w-twitter-container .-w-twitter-blue {
    fill: #fff;
  }
  .org_fixed .-w-twitter-container .-w-twitter-white {
    fill: #1da1f2;
  }
  .org_fixed .-w-line-container a {
    color: #fff;
  }
  .org_fixed .-w-line-container a::before {
    height: 100%;
  }
  .org_fixed .-w-line-container .-w-line-green {
    fill: #fff;
  }
  .org_fixed .-w-line-container .-w-line-white {
    fill: #4cc764;
  }
  .org_fixed .-w-ameba-container a {
    color: #fff;
  }
  .org_fixed .-w-ameba-container a::before {
    height: 100%;
  }
  .org_fixed .-w-ameba-container .-w-ameba-green {
    fill: #f9f9f9;
  }
  .org_fixed .-w-ameba-container .-w-ameba-white {
    fill: #306e47;
  }
  .org_fixed .-w-instagram-container a {
    color: #fff;
  }
  .org_fixed .-w-instagram-container a::before {
    height: 100%;
  }
  .org_fixed .-w-instagram-container .-w-instagram-black {
    fill: #fff;
  }
  .org_fixed .-w-tiktok-container a {
    color: #fff;
  }
  .org_fixed .-w-tiktok-container a::before {
    height: 100%;
  }
  .org_fixed .-w-youtube-container a {
    color: #fff;
  }
  .org_fixed .-w-youtube-container a::before {
    height: 100%;
  }
  .org_fixed .-w-top {
    min-width: 50px;
    width: 10vw;
  }
  .org_fixed .-w-top::before {
    height: 100%;
  }
  .org_fixed .-w-arrow path {
    fill: rgba(245, 245, 245, 1);
  }
  .org_fixed .-w-instagram {
    margin-right: 0;
  }
  .org_fixed .-w-img_icon {
    margin-right: 1.6rem;
  }
  .org_fixed .-w-mail-text,
  .org_fixed .-w-sns-text {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .org_fixed .-w-tel_number {
    min-width: auto;
    font-size: 5vw;
  }
  .org_fixed .-w-innner {
    height: auto;
  }
  .org_fixed .hours {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: normal;
    margin: 3px 0 0;
  }
  .org_fixed .hours * {
    display: inline-block;
  }
  .org_fixed .-w-info {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .org_fixed .sp_tel_icon,
  .org_fixed .sp_tel_icon .-w-tel {
    display: block;
    margin: 0 2px 0 0;
  }
  .org_fixed .-w-tracking {
    width: 100%;
    max-width: 100%;
    font-size: max(1rem, 3.4vw);
    font-size: max(1rem, 2.8vw);
  }
  .org_fixed .-w-underbtn {
    width: 80px;
  }
  .org_fixed .-w-add_btn-container .-w-img_icon {
    width: 35px;
    height: 35px;
    margin: .5rem;
  }
  .org_fixed .-w-innner,
  .org_fixed .-w-tracking {
    height: 80px;
  }
  .org_fixed .-w-tel-container a[href*="tel:"].-w-tel-link2_sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
  }
  .org_fixed .tel_box {
    display: flex;
  }
  .org_fixed .tel_text {
    display: block;
    color: #333;
    font-size: 5vw;
  }
  .org_fixed .-w-tel path {
    fill: #333;
  }
  .org_fixed .-w-tel {
    width: min(4.3vw ,30px);
    height: min(6.3vw ,50px);
  }
  .org_fixed .-w-tel-container .-w-tel-link2 {
    padding: 15px;
  }
  .-w-text_wrap {
    margin-left: 20px;
  }
}
@media (max-width: 811px) {
  .org_fixed .-w-tel_number {
    font-size: 24px;
  }
}
@media (max-width: 618px) {
  .-w-text_wrap {
    margin: 0 10px;
  }
}
@media (max-width: 480px) {
  .org_fixed .sp_box {
    padding: 2vw;
  }
  .org_fixed .sp_box .-w-more_btn a {
    min-height: 48px;
  }
  .org_fixed .sp_box .-w-more_btn a span {
    font-size: 14px;
  }
  .org_fixed .sp_box .-w-tel_icon a {
    min-height: 48px;
  }
  .org_fixed .sp_box .-w-tel_icon svg {
    width: 25px;
    height: 25px;
  }
  .org_fixed .item_ttl {
    width: 4.2em;
  }
  .-w-text_wrap {
    margin-left: 0;
  }
}

#foot_fixed .-w-add_btn-container:nth-of-type(3) {
  background: #3CB630;
}

#foot_fixed .-w-add_btn-container {
  border: 1px #000 solid;
  border-bottom: none;
}

#foot_fixed .-w-add_btn-container .-w-mail-text {
  font-size: 12px;
}

body #footer {
  padding-bottom: 80px!important;
}
.org_fixed .-w-hours span {
    font-size: 14px;
    line-height: 16px;
    display: block;
}
@media screen and (max-width: 767.98px){
  #pagetop {
    position: fixed;
    bottom: 80px;
    right: 10px;
  }
  body {
    margin-bottom: 80px;
  }
  #foot_fixed .-w-mail-text P {
    margin-bottom: 10px;
  }
  body #footer {
    padding-bottom: 0px !important;
  }
}

.org_fixed .-w-tel-link {
    row-gap: 0;
}

@media (max-width: 768px) {
    .org_fixed .tel_text {
        font-size: 5vw;
    }
	.org_fixed .-w-fixed_on {
    right: 0;
}
}

.org_fixed .-w-tel_number svg {
    margin-right: 0.2em;
}