/******  style-original.css　 ******/


@charset "utf-8";

/*/////////////////////////////////////////////
//　　〇〇〇〇
///////////////   ここから   /////////////////*/
/******  setting start ******/
/******  setting end ******/

/******  setting start ******/
/******  setting end ******/
/*/////////////   ここまで   ///////////////////
//　　〇〇〇〇
////////////////////////////////////////////*/


/******  setting start ******/
/******  setting end ******/



/*/////////////////////////////////////////////
//　　共通セッティング
///////////////   ここから   /////////////////*/ 

/****** ページ全体 setting start ******/
.all-wrapper {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	margin-top: 70px;
}
/****** ページ全体 setting end ******/

/****** サブタイトル setting start ******/
.sub-top-title {
	background-color: #3ddebf;
	padding: 30px 0;
	text-align: center;
}
.sub-top-title h1 {
	color: #ffffff;
	margin: 0 0 -10px 0;
	font-size: 25px;
}
.sub-top-title h2 {
	color: #FFFFFF;
	margin: 0 0 -10px 0;
	font-size: 25px;
}
.sub-top-title p {
	color: #ffffff;
	font-family: 'SignPainter';
    font-style: normal;
	font-size: 30px;
}
@media screen and (min-width: 480px){
	.sub-top-title {
		
	}
	.sub-top-title h1 {
		font-size: 30px;
	}
	.sub-top-title h2 {
		font-size: 30px;
	}
	.sub-top-title p {
		font-size: 32px;
	}
}
@media screen and (min-width: 768px){
	.sub-top-title {
		
	}
	.sub-top-title h1 {
		font-size: 40px;
	}
	.sub-top-title h2 {
		font-size: 40px;
	}
	.sub-top-title p {
		font-size: 35px;
	}
}
/****** サブタイトル setting end ******/

/******  setting start ******/
/******  setting end ******/
/*/////////////   ここまで   ///////////////////
//　　共通セッティング
////////////////////////////////////////////*/



/*/////////////////////////////////////////////
//　　ヘッダー
///////////////   ここから   /////////////////*/ 
nav {
	position:fixed;
	width: 100%;
	height: 70px;
	background: #FFFFFF;
	top: 0;
	display: block;
	z-index: 1000;
}
.drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
}
.logo {
	height: 70px;
}
.logo img{
	margin-left: 20px;
	margin-top: 10px;
	height: 50px;
	width: auto;
	object-fit: contain;
	padding-top: 0;
}
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    				/* bodyに対しての絶対位置指定 */
    width: 20px;
    height: 70px;
    cursor: pointer;
    z-index: 3;
	right:20px;
}
.Toggle span {
    display: block;
    position: absolute;
    width: 20px;
    border-bottom: solid 2px #333;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out; 			/*変化の速度を指定*/
}
.Toggle span:nth-child(1) {
    top:25px;
}
.Toggle span:nth-child(2) {
    top: 35px;
}
.Toggle span:nth-child(3) {
    top: 45px;
}
.Toggle.active span:nth-child(1) {
    top: 35px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 35px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*ナビゲーション部分*/
.menu {
	margin-top: 0;
	text-align:left;
	/*transition: .5s ease;/*滑らかに表示*/
	-webkit-transform: translateX(105%);
	transform: translateX(105%);		/*左に隠しておく*/
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);			/*中身を表示（右へスライド）*/
}
.menu ul{
	margin: 0;
	width: 100%;
	height:100vh;
	background:#ffffff;
	padding: 20px 5% 100px 5%;
	overflow-y: scroll;
	box-sizing: border-box;
}
.menu ul li{
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1.5px dashed #1AA455;
	position: relative;
	text-align: center;
}
.menu ul div.menu-sp li:after{
	display: none;
}
.menu ul li:after{
	position: absolute;
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	right: 20px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	color: #1AA455;
	font-size: 20px;
}
.menu ul li a {
	display:block;
	font-weight:bold;
	color:#333333;
	padding: 25px 0;
	padding-right: 40px;
	text-decoration:none;
}
.menu ul div.menu-sp li{
	border-bottom:none;
	width: 100%;
	background: #F78E15;
	margin-top: 20px;
}
.menu ul div.menu-sp li a{
	padding: 15px 0;
	color: #ffffff;
}
.menu ul div.menu-sp li:nth-child(2){
	background:#1AA455;
	margin-top: 0;
}
.menu-pc{
	display: none;
}
@media screen and (min-width: 480px)and ( max-width:1024.9px){
	.menu ul div.menu-sp{
		display: flex;
	}
	.menu ul div.menu-sp li{
		width: 50%;
	}
	.menu ul div.menu-sp li:nth-child(2){
		margin-top: 20px;
	}
}
@media (any-hover: hover){

}
@media screen and (min-width: 1025px) {
	nav {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.Toggle {
		display: none;
	}
	.menu {
		height: 70px;
		background-color: transparent;
		margin-top:0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-transition: none;
		-moz-transition   : none;
		transition        : none;
		width: 100%;
	}
	.menu ul {
		height: 28px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		margin: 0;
		padding: 0;
		padding-right: 20px;
		background: none;
		text-align: right;
		overflow-y:hidden;
		margin-top: 4.5px;
	}
	.menu ul li{
		padding: 0 10px;
		border-bottom: none;
		text-align: left;
		font-size: 16px;
		line-height: 28px;
	}
	.menu ul li:after{
		display: none;
	}
	.menu ul li a {
		padding:0;
		padding-right: 0;
		text-align: center;
		border-bottom: none;
		color: #333333;
	}
	.menu ul.menu-pc li{
		font-weight: 100;
		font-size: 14px;
	}
	.menu ul.menu-pc li i{
		color: #1AA455;
		padding-right: 5px;
	}
	.menu ul.menu-pc li:nth-last-child(2) a{
		color: #1AA455; 
	}
	.menu ul.menu-pc li:nth-last-child(1) a{
		color: #1AA455; 
	}
	.menu ul.menu-pc li:nth-last-child(1){
		color: #1AA455;
		border: 1px solid #1AA455;
		border-radius: 100px;
		height: 26px;
		background: rgba(26,164,85,0.05);
	}
	.menu ul.menu-pc li{
		font-weight: 100;
	}
	.menu ul li.menu-pc.site{
		background: #F78E15;
		height: 26px;
		margin-right: 10px;
	}
	.menu ul li.menu-pc.line{
		background: #1AA455;
		height: 26px;
	}
	.menu ul li.menu-pc.line a,.menu ul li.menu-pc.site a{
		color: #ffffff;
	}
	.menu-pc{
		display: block;
	}
	.menu-sp{
		display: none;
	}
}	
@media screen and (min-width: 1200px){
	.menu ul li{
		font-size: 16px;
	}
}
/*/////////////   ここまで   ///////////////////
//　　ヘッダーセッティング
////////////////////////////////////////////*/


/*/////////////////////////////////////////////
//　　フッターセッティング
///////////////   ここから   /////////////////*/ 
.footer-under{
	text-align: center;
	padding: 40px 0 10px 0;
	width: 90%;
	margin: auto;
}
.footer-top p{
	font-weight: 600;
	font-size: 20px;
}
.footer-top img{
	object-fit: contain;
	width: 50%;
	max-width: 240px;
}
.footer-under-menu{
	margin: 20px 0;
	display:grid;
	grid-row-gap: 5px;
	grid-template-columns: 1fr 1fr;
	font-weight: 600;
}
.footer-under-sns{
	display: flex;
	right: 0;
	left: 0;
	margin: auto;
	width: fit-content;
}
.footer-under-sns img{
	object-fit: contain;
	height: 30px;
	width: fit-content;
	padding: 0 10px;
}
.footer-under-under{
	text-align: center;
}
.footer-under-under p{
	color: #858585;
}
.footer-under-under{
	margin: 20px 0;
}
.copyright{
	padding-bottom: 20px;
	font-size: 13px;
	line-height: 20px;
}
@media screen and (min-width: 480px){
	.footer-under-sns img{
		height: 40px;
		padding: 0 10px;
	}
}
@media screen and (min-width: 768px){
	.footer-under-menu{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer-under-menu a{
		padding-right: 40px;
	}
	.footer-under-menu a:last-child{
		padding-right: 0;
	}
	.footer-under-under p{
		color: #858585;
		padding: 5px 10px;
	}
	.footer-under-under{
		margin: 20px auto;
		display: flex;
		width: fit-content;
		right: 0;
		left: 0;
	}
}
@media screen and (min-width: 1025px){
	.copyright{
		padding-bottom: 0;
	}
}
/*/////////////   ここまで   ///////////////////
//　　フッターセッティング
////////////////////////////////////////////*/



