@charset "UTF-8";
/* CSS Document */

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

　   webフォント

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

@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
/*
	font-family: "Reddit Sans", serif;
	font-weight: <weight>;
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
*/



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

　   ページ読み込み　ふわっと表示

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

  body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    -o-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}

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

　   全体

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

html {
	margin:			0!important;
	padding:		0!important;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	-moz-text-size-adjust:		none;
	-webkit-text-size-adjust:	100%;
	}
	
body{
	color: #000000;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Helvetica, sans-serif;
	font-family: "Reddit Sans";
	font-size: 16px;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	line-height:	200%;
	width:			100%;
	padding:		0;
	margin: 0;
	}
	@media only screen and (max-width: 640px) {
		body{
			font-size: 15px;
			}
		}
	@media only screen and (max-width: 540px) {
		body{
			font-size: 14.5px;
			line-height:	220%;
			}
		}
	@media only screen and (max-width: 480px) {
		body{
			font-size: 13.5px;
			font-weight: normal;
			}
		}
	@media only screen and (max-width: 360px) {
		body{
			font-size: 13px;
			}
		}

	img {
		border:			0;
		vertical-align:	middle;
		}
	a img {
		text-align:center;
		border-style:none;
		}




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

　   共通パーツ

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

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

　テキスト

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


/* リンク 装飾なし　*/
a{
	text-decoration: none;
    transition: .3s;
	}
/*a:hover{
    opacity: .7;
}*/

/*フォント指定*/
.tiny{
    font-size: 0.7em;
    }

/*フォント色指定*/
.ft_green{
	color: #50be50;
	}

.ft_red{
	color: #ff0000;
	}

/*.en{
	font-family: "EB Garamond";
	font-weight: 400;
	}*/



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

　フォントスタイル

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

.ft_garamond{
	font-family: "EB Garamond";
	font-weight: 400;
	}

.ft_sans{
	font-family: "Reddit Sans", serif;
	}

.ft_zenmincho{
	font-family: "Zen Old Mincho", serif;
  	font-weight: 400;
	}




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

　フォントサイズ

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

.ft_size_150{
	font-size:150%;
	letter-spacing:2px;
	}
.ft_size_260{
	font-size:260%;
	margin-bottom:1.5rem;
	letter-spacing:2px;
	}
.ft_size_540{
	font-size:540%;
	letter-spacing:7px;
	}
	@media only screen and (max-width: 767px) {
		.ft_size_150{
			font-size:130%;
			}
		.ft_size_260{
			font-size:240%;
			}
		.ft_size_540{
			font-size:480%;
			letter-spacing:5px;
			}
		}
	@media only screen and (max-width: 540px) {
		.ft_size_260{
			font-size:220%;
			margin-bottom:1.2rem;
			}
		.ft_size_540{
			font-size:420%;
			}
		}
	@media only screen and (max-width: 480px) {
		.ft_size_150{
			font-size:120%;
			}
		.ft_size_260{
			font-size:200%;
			margin-bottom:1rem;
			}
		.ft_size_540{
			font-size:360%;
			}
		}
	@media only screen and (max-width: 360px) {
		.ft_size_260{
			font-size:180%;
			}
		.ft_size_540{
			font-size:320%;
			}
		}
	@media only screen and (max-width: 260px) {}







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

　デバイスで表示切り替え

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

/*　PCで非表示、スマホで表示　*/
.pc_hidden{
	display: none;
	}
	@media only screen and (max-width: 900px) {
		.pc_hidden{
			display:block !important;
			}
		}
/*　スマホで非表示、PCで表示　*/
.sp_hidden{
	display: block;
	}
	@media only screen and (max-width: 900px) {
		.sp_hidden{
			display:none!important;
			}
		}


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

　罫線

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

hr.line_solid{
	border: none;
	border-bottom: solid 1px #ccc;
	margin: 1.5rem 0 1.8rem 0;
	}




/*　回りこみ解除　*/
.clear{
	clear:both;
	float: none;
	}
.clear::after {
	content: " "; 
	display: block;
	clear: both;
	}

/*PCでのtel:無効に*/
[href^="tel"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
	}
@media screen and (max-width: 767px) {
    [href^="tel"] {
        pointer-events: auto;
    	}
	}




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

　画像

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

img {
	border:			0;
	vertical-align:	middle;/*画像 縦配置時の隙間なくす*/
	}
a img {
	text-align:center;
    border-style:none;
	}


/*.shake-side {
    animation: shake-side 3s infinite ease-in-out;
	}


@keyframes shake-side {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}*/



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

　ボタン 角丸

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

/*ボタン センター揃え*/
.btn_wrap{
	text-align: right;
	}
.btn_wrap a{}
	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}






/*-----丸がボタンに変形する-----*/
.btntransform{
	position: relative;
    display: inline-block;
	padding:0 60px 0 0 ;
	line-height: 60px;
    text-decoration: none;
    outline: none;
	z-index: 1;
	}
.btntransform span{
	position: inherit;
	right:0;
	color: #50be50;
	font-size: 0.9rem;
	margin-right: 0.75rem;
	z-index: 10;
	transition:.3s ease-out;
	}
.btntransform:hover span{
	color: #fff!important;
	right:-30px;
	}

/*矢印 設定*/
.btntransform .arrow{
	content: url("../img/arrow01.svg");
	position: absolute;
	right: 24px;
	top: 25px;
	width: 12px;
	height: 10.5px;
	z-index: 1;
	transition:.3s ease-out;
	}
.btntransform:hover .arrow{
	content: url("../img/arrow02.svg");
	right: 0;
	}

/* 丸が動く */
.btntransform::after{
	content:'';
	position:absolute;
	right:0;
	z-index: 0;
	width:60px;
	height:60px;
	border: solid 1px #50be50;
	border-radius:30px;
    transition:.3s ease-out;
	padding-right: 0;
	}
/*hoverした際の丸の形状*/
.btntransform:hover::after{
	width:calc(100% + 30px);
	background-color: #50be50;
	right:-30px;
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.btntransform{
			padding:0 40px 0 0 ;
			line-height: 40px
			}
		.btntransform span{
			margin-right: 0.5rem;
			}
		/*矢印 設定*/
		.btntransform .arrow{
			right: 14px;
			top: 15px;
			}
		/* 丸が動く */
		.btntransform::after{
			width:40px;
			height:40px;
			border-radius:20px;
			}
		/*hoverした際の丸の形状*/
		.btntransform:hover::after{
			width:calc(100% + 20px);
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








.readmore{
	color: #50be50!important;
	text-decoration: none!important;
	font-weight: bold;
	line-height: 100%;
	position: relative;
	left: 0;
	}
.readmore::before{
	content: url("../img/arrow01.svg");
	display: inline-block;
	width: 9px;
	height: 11px;
	margin-right: 0.7rem;
	position: relative;
	left: 0;
	transition: .2s;
	}

.readmore:hover{
	left: -1rem;
	}
.readmore:hover::before{
	opacity: 0;
	left: 1rem;
	}

	@media only screen and (max-width: 900px) {
		.readmore{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {
		.readmore{
			font-size: 0.8rem;
			}
		.readmore::before{
			width: 9px;
			height: 11px;
			margin-right: 0.25rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/* ボタン共通設定 */
.btn{
    position: relative;
	overflow: hidden;
	text-decoration: none!important;
	display: inline-block;
   	border: 1px solid #999;
    padding: 1.5rem;
    text-align: center;
    outline: none;  
    transition: ease .2s;
	width: 60%;
	min-width: 360px;
	margin: 1rem auto 0 auto;
	}
.btn span {
	position: relative;
	z-index: 3;
	color:#333;
	}
.btn:hover span{
	color:#fff;
	}

/* 背景が流れる（中央から横全体） */
.bgcenterx:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #333;
	width: 100%;
	height: 100%;
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
	}
.bgcenterx:hover:before{
	transform:scale(1, 1);
	}

	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {
		.btn{
			padding: 0.75rem 3rem;
			font-size: 85%;
			width: inherit;
			min-width: 80%;
			max-width: 80%;
			}
		}
	@media only screen and (max-width: 767px) {
		.btn{
			max-width: 80%;
			padding: 0.5rem 2rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





a{
	transition: .2s;
	}
a:hover{
	/*color: #aaa;*/
	}




/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.hover_slidebar a{
	position: relative;
	}

.hover_slidebar.current a,
.hover_slidebar a:hover{}

.hover_slidebar a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background:#ddd;
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.hover_slidebar.current a::after,
.hover_slidebar a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
	}







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

　   wrapper

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

.wrapper{
	overflow: hidden;
	}







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

　   header

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

header#header{} 


/*-- サイトタイトル--*/
.site_ttl{
    position:absolute;
    top: 1.2rem;
    left: 4%;
	z-index: 999;
	}
.site_ttl a{
	display: block;
	width:100%;
	height:auto;
	}

.site_ttl:hover a{
	transform: scale(1.1, 1.1);
	}

.site_ttl img{
	width:100%;
	max-width: 180px;
	height:auto;
	max-height: 151.998px;
	-webkit-filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1)); /* SafariなどのWebkitブラウザ用 */
	filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
	}
	@media only screen and ( max-width : 600px ) {
		.site_ttl a{
			width:80%;
			}
		}
    @media only screen and (max-width: 480px) {
		/*-- サイトタイトル--*/
		.site_ttl{
			top: 0.75rem;
			}
		.site_ttl a{
			width:52%;
			}
        }
    @media only screen and (max-width: 320px) {
        }






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

　   main

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

main#main{}

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

共通

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

section{
	padding-top: 4em;
	padding-bottom: 4em;
	}

.container{
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
	}
.container980{
    max-width: 980px;
    width: 92%;
    margin: 0 auto;
	}
    @media only screen and (max-width: 767px) {
		section{
			padding-top: 2.5em;
			padding-bottom: 2.5em;
			}
        }
	@media only screen and (max-width: 480px) {
		section{
			padding-top: 2em;
			padding-bottom: 2em;
			}
}
    @media only screen and (max-width: 320px) {}




/* 幅を強制的に全画面*/
.widthover{
	width: 100vw!important;
	margin: 0 calc(50% - 50vw) 3rem calc(50% - 50vw)!important;
	}
.widthover .column2 .inner{
	width: 49.8%;
	}
	@media only screen and (max-width: 767px) {
		.widthover .column2{
			display: flex;
			justify-content:space-between;
			}
		}
	@media only screen and (max-width: 480px) {
		.widthover .column2{
			display: block;
			justify-content:center;
			}
		.widthover .column2 .inner{
			width: 100%;
			}
		}




.bdr_fullwidth{
	width: 100vw!important;
	margin: 1rem calc(50% - 50vw) 1rem calc(50% - 50vw)!important;
	border-bottom:solid 1px #ccc;
	}





/*改行位置調整*/
.br_span{
	display: inline-block;
	}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}


.bg_texture___ltgr{
	background: url("../img/bg_lightgreen.jpg") repeat;
	background-size: 370px;
	}

.bg_texture___gr{
	background: url("../img/bg_green.jpg") repeat;
	background-size: 370px;
	}



.txalign_center{
	text-align: center;
	}



.ft_noto{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	}




/*-----

hoverで右へ動く

-----*/

.hover-slideleft{
	position: relative;
	left: 0;
	transition: .3s;
	}
.hover-slideleft:hover{
	left: 0.5rem;
	}







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

　セクションタイトル

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


/*-----

営業日カレンダー・Instagram

-----*/

.sec_calendar .sec_heading,
.sec_insta .sec_heading{
	line-height: 200%;
	letter-spacing: 2px;
	text-align: center;
	}
.sec_calendar .sec_heading h2,
.sec_insta .sec_heading h2{
	color: #50be50;
	font-size: 1.8rem;
	}
.sec_calendar .sec_heading .en,
.sec_insta .sec_heading .en{}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.sec_calendar .sec_heading h2,
		.sec_insta .sec_heading h2{
			font-size: 1.5rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_calendar .sec_heading h2,
		.sec_insta .sec_heading h2{
			font-size: 1.35rem;
			}
		.sec_calendar .sec_heading .en,
		.sec_insta .sec_heading .en{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_calendar .sec_heading,
		.sec_insta .sec_heading{
			line-height: 180%;
			}
		.sec_calendar .sec_heading h2,
		.sec_insta .sec_heading h2{
			font-size: 1.25rem;
			letter-spacing: 0;
			}
		.sec_calendar .sec_heading .en,
		.sec_insta .sec_heading .en{
			font-size: 0.8rem;
			letter-spacing: 1px;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/*-----

ご案内・アクセス情報

-----*/

.sec_info .sec_heading,
.sec_access .sec_heading,
.tex .sec_heading{
	display: flex;
	align-items: center;
	/*line-height: 100%;*/
	clear:both;
	float: none;
	}
.sec_info .sec_heading:after,
.sec_access .sec_heading:after,
.tex .sec_heading:after{
	border-top: 1px solid #C0E8C0;
    content: "";
	flex-grow:1;
	display: block;
	clear: both;
	margin-left: 1rem;
	}

.sec_info .sec_heading h2,
.sec_access .sec_heading h2,
.tex .sec_heading h2{
	color: #50be50;
	font-size: 1.8rem;
	margin: 0 1rem 0 0.5rem;
	line-height: 150%;
	}
.tex .sec_heading h2{
	font-size: 1.5rem;
	}
.sec_info .sec_heading .en,
.sec_access .sec_heading .en,
.tex .sec_heading .en{
	letter-spacing: 4px;
	}

/*見出し前の木のアイコン*/
.sec_info .sec_heading::before,
.sec_access .sec_heading::before,
.tex .sec_heading::before{
	content: url('../img/icon_tree01.svg');
    display: inline-block;
    width: 62px;
    height: 72px;
	margin-bottom:1.75rem;
	}

	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.sec_info .sec_heading h2,
		.sec_access .sec_heading h2,
		.tex .sec_heading h2{
			font-size: 1.5rem;
			margin: 0 1rem 0 0.5rem;
			}
		.tex .sec_heading h2{
			font-size: 1.35rem;
			}
		.sec_info .sec_heading .en,
		.sec_access .sec_heading .en,
		.tex .sec_heading .en{
			letter-spacing: 3px;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_info .sec_heading h2,
		.sec_access .sec_heading h2,
		.tex .sec_heading h2{
			font-size: 1.35rem;
			}
		.tex .sec_heading h2{
			font-size: 1.25rem;
			}
		}
	@media only screen and (max-width: 540px) {
		/*見出し前の木のアイコン*/
		.sec_info .sec_heading::before,
		.sec_access .sec_heading::before,
		.tex .sec_heading::before{
			width: 40px;
			height: 48px;
			margin-bottom:0.75rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_info .sec_heading h2,
		.sec_access .sec_heading h2,
		.tex .sec_heading h2{
			font-size: 1.25rem;
			margin: 0 0.5rem 0 0.5rem;
			}
		.sec_info .sec_heading .en,
		.sec_access .sec_heading .en,
		.tex .sec_heading .en{
			letter-spacing: 1px;
			}
		.sec_info .sec_heading:after,
		.sec_access .sec_heading:after,
		.tex .sec_heading:after{
			margin-left: 0.5rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}













/*-----

お知らせ

-----*/

.sec_news .sec_heading{
	text-align: center;
	}

.sec_news .sec_heading .en{
	color: #50be50;
	font-size: 3rem;
	letter-spacing: 1rem;
	margin-bottom: 1.2rem;
	}
.sec_news .sec_heading h2{
	font-size: 1.3rem;
	letter-spacing: 2px;
	line-height: 100%;
	}

/* 左右に斜め線(両端を丸く) */
.ttl_lineboth{
	align-items: center;
	display: flex;
	justify-content: center;
	}
.ttl_lineboth::before,
.ttl_lineboth::after {
	background-color: #50be50;
	border-radius: 2px;
	content: "";
	height: 2px;
	width: 2.5rem;
	}
.ttl_lineboth::before {
	margin-right: 0.5rem;
	transform: rotate(60deg);
	}
.ttl_lineboth::after {
	margin-left: 0.5rem;
	transform: rotate(-60deg);
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.sec_news .sec_heading .en{
			font-size: 2.5rem;
			letter-spacing: 1rem;
			margin-bottom: 0.8rem;
			}
		.sec_news .sec_heading h2{
			font-size: 1.1rem;
			}
		/* 左右に斜め線(両端を丸く) */
		.ttl_lineboth{
			align-items:baseline;
			justify-content: center;
			}
		.ttl_lineboth::before,
		.ttl_lineboth::after {
			width: 2rem;
			}
		.ttl_lineboth::before {
			margin-right: 0.3rem;
			}
		.ttl_lineboth::after {
			margin-left: 0.3rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_news .sec_heading .en{
			font-size: 1.1rem;
			letter-spacing: 0.5rem;
			margin-bottom: 1rem;
			margin-right: -0.5rem;
			}
		.sec_news .sec_heading h2{
			font-size: 1.35rem;
			}
		/* 左右に斜め線(両端を丸く) */
		.ttl_lineboth{
			align-items:baseline;
			justify-content: center;
			}
		.ttl_lineboth::before,
		.ttl_lineboth::after {
			width: 1.2rem;
			}
		.ttl_lineboth::before {
			margin-right: 0;
			}
		.ttl_lineboth::after {
			margin-left: 0;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_news .sec_heading .en{
			margin-bottom: 0.5rem;
			}
		.sec_news .sec_heading h2{
			font-size: 1.2rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}










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

　メッセージ

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

.sec_message{
	height: 680px;
	background: url("../img/bg_illust_tree01.png") no-repeat;
	background-position: 110% -50px;
	}

.sec_message___wrap{
	position: relative;
	}


.sec_message___upper{
	position: relative;
	}

.sec_message .ph001{
	width:50%;
	height: auto;
	}
.sec_message .ph001 img{
	width: 100%;
	height: auto;
	}

.sec_message .tx{
	position: absolute;
	top: 1.2rem;
	left: 50%;
	width: calc(50% - 3.5rem);
	margin-left: 3.5rem;
	}
.sec_message .catch{
	color: #50be50;
	font-size: 1.8rem;
	line-height: 150%;
	margin-bottom: 1rem;
	}
.sec_message .lead{
	margin-bottom: 2rem;
	}


.sec_message___lower{
	position:absolute;
	right: 0;
	top: 420px;
	}

.sec_message .ph002{
	width: 100%;
	max-width: 725px;
	height: auto;
	max-height: 240px;
	text-align: right;
	}
.sec_message .ph002 img{
	width: 90%;
	height: auto;
	}


.sec_message .leaf001{
	position: absolute;
	z-index: 10;
	left: -12%;
	top: 60px;
	width: 100%;
	max-width: 300px;
	}
.sec_message .leaf001 img{
	width: 100%;
	height: auto;
	}

.sec_message .leaf002{
	position: absolute;
	right: 5%;
	top: -60px;
	z-index: 10;
	width: 100%;
	max-width: 120px;
	}
.sec_message .leaf002 img{
	width: 100%;
	height: auto;
	}
	@media only screen and (max-width: 1100px) {
		.sec_message .ph001{
			width:55%;
			height: 460px;
			overflow: hidden;
			display: flex;
			justify-content: center;
			align-items: center;
			}
		.sec_message .ph001 img{
			width: auto;
			height: 100%;
			}
		.sec_message .tx{
			top: 1.2rem;
			left: 55%;
			width: calc(45% - 3.5rem);
			margin-left: 3.5rem;
			}
		.sec_message .lead{
			margin-bottom: 0.5rem;
			}
		}
	@media only screen and (max-width: 980px) {
		.sec_message .catch{
			font-size: 1.5rem;
			}
		.sec_message .lead{
			font-size: 0.95rem;
			line-height: 200%;
			}
		.sec_message .ph002{
			width: 100%;
			text-align: right;
			position: relative;
			right: 0;
			}
		.sec_message .ph002 img{
			width: 75%;
			}
		}
	@media only screen and (max-width: 840px) {
		.sec_message .tx{
			top: 0.5rem;
			left: 55%;
			width: calc(45% - 2.5rem);
			margin-left: 2.5rem;
			}
		.sec_message .catch{
			font-size: 1.35rem;
			}
		}
	@media only screen and (max-width: 767px) {
		.sec_message{
			height: 1080px;
			}
		.sec_message___wrap{
			position: inherit;
			}
		.sec_message___upper{
			position: inherit;
			}
		.sec_message___upper .widthover{
			margin: 0 calc(50% - 50vw) 2rem calc(50% - 50vw)!important;
			}
		.sec_message .ph001{
			width:100%;
			}
		.sec_message .tx{
			position: inherit;
			width:100%;
			margin-left: 0;
			margin-bottom: 2rem;
			}
		.sec_message___lower{
			position:inherit;
			}
		.sec_message .ph002{
			position: inherit;
			}
		.sec_message .ph002 img{
			width: 100%;
			}
		.sec_message .leaf001{
			left: -2%;
			top: 75vh;
			}
		.sec_message .leaf002{
			top: 60px;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_message{
			height: 880px;
			}
		.sec_message .ph001{
			height: 360px;
			}
		.sec_message .ph001 img{
			object-fit: cover;
			}
		.sec_message .lead{
			font-size: 0.9rem;
			}
		.sec_message .leaf001{
			top: 70vh;
			}
		.sec_message .leaf002{
			top: 50px;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_message{
			height: 860px;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_message{
			height: 840px;
			}
		.sec_message .lead{
			font-size: 0.85rem;
			line-height: 180%;
			}
		.sec_message .leaf001{
			top: 65vh;
			}
		.sec_message .leaf002{
			top: 40px;
			}
		}
	@media only screen and (max-width: 360px) {
		.sec_message{
			height: 820px;
			}
		}
	@media only screen and (max-width: 260px) {}









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

　場内のご案内

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

/*囲み*/
.sec_info{}

/*説明文*/
.sec_info .lead{
	font-size: 1.1rem;
	margin: 2rem 0 3rem 3rem;
	}


/*-- 紹介エリア囲み --*/
.sec_info___wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}

/*個別囲み*/
.sec_info .item{
	position: relative;
	width: 47%;
	padding-bottom: 100px;
	margin-bottom:50px;
	}

/*写真エリア*/
.sec_info .ph{
	display: flex;
	justify-content: center;
	align-items: center;
	}
.sec_info .ph img{
	width: auto;
	height: 100%;
	max-height: 400px;
	}

/*テキストエリア*/
.sec_info .info_heading{
	position: absolute;
	top: 60%;
	background: #fff;
	padding: 1.5rem 2rem 0rem 2rem;
	width: 70%;
	}
.sec_info .info_heading a{
	color: inherit;
	text-decoration: none;
	}


/*-- 見出し囲み --*/
.sec_info .info_heading___wrap{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 2rem;
	}

/*アイコン*/
.sec_info .icon{
	width: 74px;
	height: 50px;
	}
.sec_info .icon img{
	width: 100%;
	height: auto;
	}

/*名称*/
.sec_info .ttl{
	line-height: 180%;
	margin-left: 1rem;
	}
.sec_info h3{
	color: #50be50;
	font-size: 1.5rem;
	margin: 1rem 0 0 0;
	}
/*英字*/
.sec_info .en{
	font-size: 0.8rem;
	letter-spacing: 2px;
	}

/*概要文章*/
.sec_info .text{
	position: relative;
	top: 80px;
	left: 2rem;
	width: calc(100% - 4rem);
	}
.sec_info .text p{
	font-size: 0.9rem;
	line-height: 180%;
	margin-bottom: 1rem;
	}


	@media only screen and (max-width: 1100px) {
		/*個別囲み*/
		.sec_info .item{
			margin-bottom: 80px;
			}
		/*写真エリア*/
		.sec_info .ph img{
			width: auto;
			height: 100%;
			max-height: 320px;
			}
		/*テキストエリア*/
		.sec_info .info_heading{
			top: 58%;
			padding: 0.75rem 1rem 0.75rem 1rem;
			width: 80%;
			}
		/*名称*/
		.sec_info .ttl{
			margin-left: 0.5rem;
			}
		.sec_info h3{
			font-size: 1.4rem;
			margin: 1rem 0 0 0;
			}
		}
	@media only screen and (max-width: 940px) {
		/*個別囲み*/
		.sec_info .item{
			margin-bottom: 20px;
			}
		/*写真エリア*/
		.sec_info .ph img{
			max-height: 260px;
			}
		/*テキストエリア*/
		.sec_info .info_heading{
			top: 50%;
			padding: 0.75rem 0.5rem 0 0.5rem;
			width: 85%;
			}
		.sec_info h3{
			font-size: 1.2rem;
			}
		/*概要文章*/
		.sec_info .text{
			top: 70px;
			left: 1rem;
			width: calc(100% - 2rem);
			}
		}
	@media only screen and (max-width: 767px) {
		/*説明文*/
		.sec_info .lead{
			font-size: 1rem;
			margin: 0rem 0 2rem 2rem;
			}
		/*個別囲み*/
		.sec_info .item{
			position: inherit;
			margin-bottom: 20px;
			padding-bottom: 0;
			}
		/*写真エリア*/
		.sec_info .ph img{
			max-height: 200px;
			}
		/*テキストエリア*/
		.sec_info .info_heading{
			position: inherit;
			top: inherit;
			padding: 0.5rem 0 0 0;
			margin: 0;
			width: 85%;
			}
		/*概要文章*/
		.sec_info .text{
			top: -1rem;
			left: inherit;
			width: 100%;
			margin: 0;
			padding: 0;
			}
		}
	@media only screen and (max-width: 600px) {
		/*説明文*/
		.sec_info .lead{
			font-size: 0.95rem;
			margin: 0.5rem 0 1.5rem 0;
			}
		/*写真エリア*/
		.sec_info .ph img{
			max-height: 170px;
			}
		/*テキストエリア*/
		.sec_info .info_heading{
			padding: 1rem 0 0 0;
			width: 100%;
			}
		/*アイコン*/
		.sec_info .icon{
			width: 62px;
			height: 43px;
			}
		.sec_info h3{
			margin: 0 0 0 0;
			}
		/*英字*/
		.sec_info .en{
			font-size: 0.7rem;
			line-height: 130%;
			}
		/*概要文章*/
		.sec_info .text p{
			font-size: 0.9rem;
			}
		}
	@media only screen and (max-width: 480px) {
		/*説明文*/
		.sec_info .lead{
			font-size: 0.9rem;
			line-height: 170%;
			}
		/*アイコン*/
		.sec_info .icon{
			width: 56px;
			height: 39px;
			}
		/*テキストエリア*/
		.sec_info .info_heading{
			padding: 0.75rem 0 0 0;
			}
		.sec_info h3{
			font-size: 1.1rem;
			}
		/*英字*/
		.sec_info .en{
			font-size: 0.65rem;
			}
		/*概要文章*/
		.sec_info .text p{
			font-size: 0.8rem;
			line-height: 170%;
			margin-bottom: 0.5rem;
			}
		}
	@media only screen and (max-width: 360px) {}









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

　お知らせ

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

.sec_news{}

.sec_news___wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	}

.sec_news .post{
	width: 50%;
	padding: 2rem 0;
	/*border-top: dashed 1px #50be50;*/
	}
.sec_news .post:nth-child(-n+2){
	border-top: none;
	}
.sec_news .post a{
	display: flex;
	justify-content:flex-start;
	align-items:flex-start;
	color: inherit;
	}

.sec_news .post .ph{
	width: 45%;
	border-radius: 3px;
	height: 160px;
	overflow: hidden;
	margin-right: 3%;
	}
.sec_news .post .ph img{
	width: auto;
	min-width: 100%;
	height: 100%;
	object-fit: contain;
	}

.sec_news .post .tx{
	width: 45%;
	margin-right: 7%;
	}
.sec_news .post .date{
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
	}
.sec_news .post .ttl{
	line-height: 170%;
	}

	@media only screen and (max-width: 767px) {
		.sec_news___wrap{
			width: 100%;
			margin: 0 auto 2rem auto;
			}
		.sec_news .post{
			width: 48%;
			padding: 2rem 0 1rem 0;
			}
		.sec_news .post a{
			display: block;
			}
		.sec_news .post .ph{
			width: 100%;
			height: 160px;
			}
		.sec_news .post .ph img{
			width: 100%;
			min-width: inherit;
			height: auto;
			}
		.sec_news .post .tx{
			width: 100%;
			margin-top: 0.5rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_news .post{
			padding: 2rem 0 0 0;
			}
		.sec_news .post .ph img{
			width: 100%;
			height: auto;
			object-fit: cover;
			}
		.sec_news .post .date{
			font-size: 0.8rem;
			margin-bottom: 0.2rem;
			}
		.sec_news .post .ttl{
			font-size: 0.9rem;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_news .post .ph{
			height: 150px;
			}
		}
	@media only screen and (max-width: 510px) {
		.sec_news .post .ph{
			height: 135px;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_news .post .ph{
			height: 120px;
			}
		}
	@media only screen and (max-width: 360px) {
		.sec_news .post .ph{
			height: 100px;
			}
		}
	@media only screen and (max-width: 260px) {}









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

　アクセス情報

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

.sec_access{
	padding-bottom: 0;
	}
.sec_access .lead{
	font-size: 1.1rem;
	margin: 2rem 0 3rem 3rem;
	}

	@media only screen and (max-width: 767px) {
		.sec_access .lead{
			font-size: 1rem;
			margin: 0rem 0 2rem 2rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_access .lead{
			font-size: 0.95rem;
			margin: 0.5rem 0 0 0;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_access .lead{
			font-size: 0.9rem;
			line-height: 170%;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}


/*-----

バナー2つ

-----*/

.sec_access___bnr{
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	}

.sec_access___bnr .item{
	flex: 1;
	margin-right: 3rem;
	}
.sec_access___bnr .item:last-child{
	margin-right: 0;
	}

.sec_access___bnr a{
	display: flex;
	align-items: center;
	border: solid 1px #C0E8C0;
	border-radius: 3px;
	color: inherit;
	line-height: 150%;
	padding: 1.5rem 2rem;
	}

.sec_access___bnr img{
	width: 96px;
	height: auto;
	margin-right: 1.5rem;
	}

.sec_access___bnr .tx{}
.sec_access___bnr .ttl{
	color: #50be50;
	font-size: 1.5rem;
	margin: 0.5rem 0 0.25rem 0;
	}
.sec_access___bnr .en{
	font-size: 0.8rem;
	letter-spacing: 3px;
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.sec_access___bnr .item{
			flex: 1;
			margin-right: 1rem;
			}
		.sec_access___bnr a{
			line-height: 150%;
			padding: 1rem 1.2rem;
			}
		.sec_access___bnr img{
			width: 70px;
			margin-right: 1rem;
			}
		.sec_access___bnr .ttl{
			font-size: 1.3rem;
			margin: 0.2rem 0 0 0;
			}
		.sec_access___bnr .en{
			font-size: 0.8rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_access___bnr{
			margin-top: 1.5rem;
			}
		.sec_access___bnr img{
			width: 60px;
			margin-right: 1rem;
			}
		.sec_access___bnr .ttl{
			font-size: 1.1rem;
			}
		.sec_access___bnr .en{
			font-size: 0.75rem;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_access___bnr{
			display: block;
			justify-content: center;
			}
		.sec_access___bnr .item{
			margin-right: 0;
			margin-bottom: 0.5rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/*-----

googlemap

-----*/

.accessmap{
	margin-top: 4rem;
	}
.accessmap iframe{
	width: 100%;
	height: 400px;
	vertical-align: bottom!important;
	}
	@media only screen and (max-width: 767px) {
		.accessmap{
			margin-top: 2rem;
			}
		.accessmap iframe{
			height: 320px;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





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

　営業日カレンダー

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

.sec_calendar{}
.sec_calendar___wrap{
	margin-top: 3rem;
	}

/*xoカレンダー*/
table.xo-month{}
table.xo-month .month-header{}
table.xo-month .month-header .month-prev .nav-prev{
	position: relative;
	left: 1rem;
	}
table.xo-month tbody *{
	border: none;
	}
	@media only screen and (max-width: 767px) {
		.sec_calendar___wrap{
			margin-top: 1.2rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}







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

　Instagram

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


	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








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

　   footer

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

footer#footer{
	color: #fff;
	padding: 6rem 0;
	}
	@media only screen and (max-width: 767px) {
		footer#footer{
			padding: 3rem 0 2rem 0;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}



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

　footer 上段

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

.footer_upper{
	text-align: center;
	}

.footer_upper___wrap{
	display: flex;
	justify-content:space-around;
	}


.footer_sns .ttl,
.footer_contact .ttl{
	font-size: 1.75rem;
	letter-spacing: 6px;
	margin-bottom: 0.4rem;
	}

.footer_sns .tx,
.footer_contact .tx{
	font-size: 0.95rem;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
	}


.footer_sns{
	border-right: solid 1px #fff;
	flex: 1;
	}

.footer_sns___wrap{
	display: flex;
	justify-content:center;
	}

.footer_sns .item{
	padding: 0 2rem;
	}
.footer_sns .item:first-child{
	border-right: solid 1px #fff;
	}

.footer_sns .item a{
	color: #fff;
	}
.footer_sns .item a:hover{
	opacity: .7;
	}

.footer_sns .item i{
	font-size: 2rem;
	font-weight: normal;
	}

.footer_sns .item span{
	display: block;
	font-size: 0.85rem;
	line-height: 100%;
	letter-spacing: 1px;
	}

.footer_contact{
	flex: 1;
	}

/*電話番号*/
.footer_contact .phone{}
.footer_contact .phone a{
	color: #fff;
	font-size:2.5rem;
	letter-spacing: 2px;
	}
/*受付時間*/
.footer_contact .time{
	font-size: 0.9rem;
	line-height: 150%;
	}
	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.footer_sns .ttl,
		.footer_contact .ttl{
			font-size: 1.5rem;
			letter-spacing: 6px;
			margin-bottom: 0;
			}
		.footer_sns .tx,
		.footer_contact .tx{
			font-size: 0.9rem;
			margin-bottom: 1rem;
			}
		.footer_contact .phone a{
			font-size:1.8rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.footer_upper___wrap{
			display: block;
			justify-content:center;
			}
		.footer_sns{
			border-right: none;
			flex: none;
			display: inline-block;
			border-bottom: solid 1px #fff;
			padding-bottom: 2rem;
			margin-bottom: 2rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




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

　footer 下段

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

.footer_lower{
	margin-top: 10rem;
	}

.footer_lower___wrap{
	display: flex;
	justify-content:space-between;
	}


.footer_ttl{
	width: 100%;
	max-width: 180px;
	height: auto;
	max-height: 151.998px;
	}
.footer_ttl img{
	width: 100%;
	height: auto;
	}


.footer_holi{}
.footer_holi___wrap{}

.footer_add{
	margin-bottom: 1.5rem;
	}

.footer_holi___wrap .row{
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	}
.footer_holi___wrap .ttl{
	border: solid 1px #fff;
	font-size: 0.85rem;
	text-align: center;
	padding: 0 1rem;
	}
.footer_holi___wrap .row:last-child .ttl{
	padding-left: calc(1.5rem - 1px);
	padding-right: calc(1.5rem - 1px);
	}
.footer_holi___wrap .cont{
	padding-left: 1rem;
	}

	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.footer_lower{
			margin-top: 4rem;
			}
		.footer_add{
			margin-bottom: 0.25rem;
			}
		.footer_holi___wrap .row{
			margin-bottom: 0.25rem;
			}
		.footer_holi___wrap .ttl{
			font-size: 0.8rem;
			padding: 0 0.5rem;
			line-height: 200%;
			}
		.footer_holi___wrap .row:last-child .ttl{
			padding-left: calc(1rem - 1px);
			padding-right: calc(1rem - 1px);
			}
		}
	@media only screen and (max-width: 600px) {
		.footer_lower___wrap{
			display: block;
			justify-content:center;
			}
		.footer_ttl{
			margin: 0 auto;
			margin-bottom: 1rem;
			}
		.footer_holi{
			text-align: center;
			}
		.footer_add{
			margin-bottom: 1rem;
			}
		.footer_holi___wrap .row{
			display: inline-flex;
			align-items: center;
			}
		.footer_holi___wrap .cont{
			padding-left: 0.5rem;
			}
		.footer_holi___wrap .row{
			margin-right: 1rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/*メニュー*/
.footer_menu{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 1.25rem 0 2.2rem 0;
	}

.footer_menu dl{
	width: 25%;
	line-height: 200%;
	}

.footer_menu dt{
	font-size: 90%;
	}
.footer_menu dd{
	font-size: 75%;
	line-height: 210%;
	}
.footer_menu dd::before{
	content: "- ";
	margin-left: 0.2rem;
	}
.footer_menu dd:last-of-type{
	margin-bottom: 0.8rem;
	}

.footer_menu a{
	position: relative;
	left: 0;
	}
.footer_menu a:hover{
	left: 0.5rem;
	}

	@media only screen and (max-width: 900px) {
		.footer_menu dl{
			width: 30%;
			margin-top: 1.5rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.footer_menu dl{
			width: 48%;
			}
		}
	@media only screen and (max-width: 480px) {
		/*メニュー*/
		.footer_menu{
			display: none;
			}
		}






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

　コピーライト

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

.cpright{
	font-size: 0.85rem;
	letter-spacing: 1px;
	margin-top: 3rem;
	}

.cpright small{}

	@media only screen and (max-width: 767px) {
		.cpright{
			margin-bottom: 5rem;
			}
		}
			@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





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

　フローティングバナー

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

.floating-banner {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 10;
	}
.floating-banner a{
	background: url("../img/bg_green.jpg") repeat;
	border-radius: 3px 0 0 3px;
	color: white;
	padding: 2rem 1.75rem;
	font-size: 1rem;
	font-weight: bold;
	width: 1.5rem;
	height: auto;
	writing-mode: vertical-rl; /* 縦書き */
	display: flex;
	align-items: center; /* 縦方向中央揃え */
	justify-content: center; /* 横方向中央揃え */
	white-space: nowrap; /* テキストが折り返さないように */
	margin-bottom: 0.5rem;
	box-shadow: 0px 0px 10px -7px #333;
	transition: .3s;
	}
.floating-banner a:hover{
	opacity: .7;
	}
.floating-banner .bnr{}
.floating-banner .bnr span{}
.floating-banner .bnr:nth-of-type(1) span::before{
	content: url('../img/icon_floating01.svg');
	}
.floating-banner .bnr:nth-of-type(2) span::before{
	content: url('../img/icon_floating02.svg');
	}
.floating-banner .bnr span::before{
    display: inline-block;
    width: 36px;
    height: 26px;
	margin-bottom:0.75rem;
	}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.floating-banner {
			position: fixed;
			top: inherit;
			bottom: 0;
			left: 0;
			right: 0;
			margin: auto;
			transform: none;
			display: flex;
			box-shadow: 0px 0px 15px -7px #333;
			}
		.floating-banner .bnr{
			width: 50%;
			}
		.floating-banner .bnr:first-child{
			border-right: solid 1px #fff;
			}
		.floating-banner a{
			font-size: 0.85rem;
			border-radius: 0;
			padding: 1rem 1rem 1.2rem 1rem;
			width: auto;
			writing-mode: unset!important;
			margin-bottom: 0;
			box-shadow:none;
			}
		.floating-banner .bnr span::before{
			width: 36px;
			height: 26px;
			margin-bottom:0;
			margin-right: 0.5rem;
			position: relative;
			top: 5px;
			}
		}
	@media only screen and (max-width: 480px) {
		.floating-banner a{
			padding: 0.5rem 1rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}







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

　画像hover時zoomするアニメーション

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

.zoomIn{
	overflow: hidden;
	}
.zoomIn img{
	transition:0.3s all;
	}

.zoomIn img:hover{
	transform:scale(1.1,1.1);
	}




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

　左側から表示されるアニメーション

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

.anime_wrap.curtain{
    position: relative;
    overflow: hidden;
	}

.curtain::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2;
    transition: .5s;
	}
.curtain.show::before{
    transform: translateX(100%);
	}
.curtain img{
    opacity: 0;
    transition: .5s;
	}
.curtain.show img{
    opacity: 1;
	}





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

　画像ふわふわさせるアニメーション

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

.swing_object {
	animation: floating-x 8s ease-in-out infinite alternate-reverse;
	}
.swing_object___target {
	animation: floating-y 4s ease-in-out infinite alternate-reverse;
	}

	@keyframes floating-x {
		0% {
			transform: translateX(-4%);
			}
		100% {
			transform: translateX(4%);
			}
		}
	@keyframes floating-y {
		0% {
			transform: translateY(-2%);
			}
		100% {
			transform: translateY(2%);
			}
		}


.swing_object2 {
	animation: floating-x2 6s ease-in-out infinite alternate-reverse;
	}
.swing_object2___target {
	animation: floating-y2 3s ease-in-out infinite alternate-reverse;
	}

	@keyframes floating-x2 {
		0% {
			transform: translateX(8%);
			}
		100% {
			transform: translateX(-8%);
			}
		}
	@keyframes floating-y2 {
		0% {
			transform: translateY(4%);
			}
		100% {
			transform: translateY(-4%);
			}
		}




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

　1文字ずつ表示されるアニメーション

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

@keyframes showTextFromBottom{
	  0%{
		transform: translateY( 100% );
		}
	  50%{
		transform: translateY( -20% );
		}
	  100%{
		transform: translateY( 0px );
		}
	}

.anime-up.displayed span{
	animation: showText 1s backwards;
	display: inline-block;
	}
.anime-up.displayed > span{
	overflow: hidden;
	}
.anime-up.displayed > span > span{
	animation: showTextFromBottom 0.5s backwards;
	}




