@charset 'utf-8';

/* ------------------------------------------------------------ COMMON ------------------------------------------------------------ */

html {
	font-size: 62.5%;
}

body {
	width:100%;
    font-size: 1.6rem; /* 初期値16px */
	line-height:1.8;
	color:#000;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}


/* ページ遷移のトランジション [ローディングあり] */

body #loader-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99999;
	pointer-events: none;
	background-color: #ccc;
	opacity: 0;
	-webkit-transition: opacity .8s ease;
	transition: opacity .8s ease;
	will-change: opacity;
}

body.transition #loader-wrapper {
	opacity: 1;
}

body.evacuation #loader-wrapper { /* for IE10 */
	z-index: -1;
}

body #loader-wrapper #loader {
	position: absolute;
	top:calc(50% - 22px);
	left:calc(50% - 22px);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	border-top: 3px solid rgba(255, 255, 255, 0.2);
	border-right: 3px solid rgba(255, 255, 255, 0.2);
	border-bottom: 3px solid rgba(255, 255, 255, 0.2);
	border-left: 3px solid rgba(255, 255, 255, 0.8);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: loader 1.1s infinite linear;
	animation: loader 1.1s infinite linear;
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* box-sizing */

* {
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* 画像 */

img {
	max-width: 100%;
	height: auto;
}

a img {
	/* GPU acceleration */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
/*
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	will-change: opacity, transform;
*/
}

/* 電話番号リンクの無効化 */

a[href^="tel:"] {
	pointer-events: none;
}

/* ウェブフォント読み込み中の挙動（Chromeのみ） */

@font-face {
	font-display:swap;
}

/* 表示の切り替え */

.disp_pc {
	display: inline !important;
}

.disp_sp {
	display: none !important;
}


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {
	
	body {
		-webkit-text-size-adjust: 100%;
		-webkit-tap-highlight-color:rgba(0,156,255,0.4);
	}
	
	/* 電話番号リンクの無効化解除 */
	
	a[href^="tel:"] {
		pointer-events: auto;
	}
	
	/* 表示の切り替え */
	
	.disp_pc {
		display: none !important;
	}
	
	.disp_sp {
		display: inline !important;
	}

}


/* ------------------------------------------------------------ LINK ------------------------------------------------------------ */

/* リンク基本スタイル */

a,
a img,
a svg {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

a:link,
a:visited { color:#000; text-decoration:none; }
a:hover,
a:active { color:#007a59; text-decoration:none; }


/* 矢印付きリンクテキスト */

.link_txt {
}

.link_txt a {
}

.link_txt a svg {
	width:18px;
	height:18px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-2px;
	fill:#000;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
	margin: 0 5px 0 0;
}

.link_txt a:hover svg {
	fill:#007a59;
	-webkit-transform:translate3d(3px, 0, 0);
	transform:translate3d(3px, 0, 0);
}

/* リンクボタン */

/*
.link_btn {
	margin: 30px auto 0;
	width:25%;
	min-width: 300px;
	height:70px;
	line-height: 70px;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.link_btn a {
	display: block;
	width: 100%;
	height: 100%;
}

.link_btn a:link,
.link_btn a:visited { color:#007a59; background-color: #fff; }
.link_btn a:hover,
.link_btn a:active { color:#fff; background-color:#007a59; }

.link_btn a svg {
	width:18px;
	height:18px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-2px;
	margin: 0 5px 0 0;
	fill:#fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
}

.link_btn a:hover svg {
	fill:#007a59;
	transform:translate3d(3px, 0, 0);
}
*/

/* リンクボタン */

a.link_btn {
	display: block;
	margin: 50px auto;
	width: 200px;
	padding: 10px;
	border: 2px solid #007a59;
	text-align: center;
}

a.link_btn:link,
a.link_btn:visited { color:#007a59; background-color: #fff; }
a.link_btn:hover,
a.link_btn:active { color:#fff; background-color:#007a59; }


/* PDFボタン */

a.link_pdf {
	display: block;
	margin: 50px auto;
	width: 200px;
	padding: 10px;
	border: 2px solid #007a59;
	text-align: center;
}

a.link_pdf:link,
a.link_pdf:visited { color:#007a59; background-color: #fff; }
a.link_pdf:hover,
a.link_pdf:active { color:#fff; background-color:#007a59; }


/* トグルボタン */

.toggle_btn {
	display: block;
	background-color: #007a59;
	cursor: pointer;
	width:36px;
	height:36px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: 0.4s;
	transition: 0.4s;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.toggle_btn:hover {
	background-color: #ccc;
}

.toggle_btn svg {
	display: block;
	margin: 0 auto;
	width: 18px;
	height: 18px;
	fill:#fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
	max-width:100%;
}

.toggle_btn:hover svg {
	fill:#007a59;
}

.toggle_btn.open svg {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/* リンク */

	a:link,
	a:visited { color:#007a59; text-decoration:none; }
	a:hover,
	a:active { color:#007a59; text-decoration:none; }

	/* 矢印付きリンクテキスト */
	
	.link_txt {
	}
	
	.link_txt a {
	}
	
	.link_txt a svg {
		width:16px;
		height:16px;
		fill:#007a59;
		margin: 0 5px 0 0;
	}
	
	.link_txt a:hover svg {
		fill:#025894;
		-webkit-transform:translate3d(0, 0, 0);
		transform:translate3d(0, 0, 0);
	}
	
	/* リンクボタン */
	
/*
	.link_btn {
		margin: 20px auto 0;
		width:80%;
		min-width: 300px;
		height:60px;
		line-height: 60px;
		font-size: 1.6rem;
		letter-spacing: 0.04em;
	}
	
	.link_btn a:link,
	.link_btn a:visited { color:#fff; text-decoration:none; background-color: #007a59; }
	.link_btn a:hover,
	.link_btn a:active { color:#fff; text-decoration:none; background-color: #007a59; }
	
	
	.link_btn a svg {
		width:16px;
		height:16px;
		top:-2px;
		margin: 0 5px 0 0;
		fill:#fff;
	}
	
	.link_btn a:hover svg {
		fill:#fff;
	}
*/
	
	/* PDFボタン */

	a.link_pdf {
		margin: 30px auto 0;
	}

	a.link_pdf:link,
	a.link_pdf:visited { color:#007a59; background-color: #fff; }
	a.link_pdf:hover,
	a.link_pdf:active { color:#007a59; background-color:#fff; }

	/* トグルボタン */
	
	.toggle_btn {
		width:32px;
		height:32px;
	}
	
	.toggle_btn:hover {
		background-color: #007a59;
	}
	
	.toggle_btn svg {
		width: 16px;
		height: 16px;
	}
	
	.toggle_btn:hover svg {
		fill:#fff;
	}

}


/* ------------------------------------------------------------ HEADER + NAVI ------------------------------------------------------------ */

/*--------------------------------
	ヘッダー
--------------------------------*/

header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: block;
	width:100%;
	padding: 35px 0;
	background-color: rgba(255, 255, 255, 0.9);
	min-height:1px;
	zoom:1;
	clear:both;
}

header:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

header h1 {
	position: absolute;
	left: 20px;
	top: 0;
	width: 260px;
	margin: 25px 0 0;
    z-index: 2;
}

header h1 img {
	width: 100%;
	height: auto;
}


/*--------------------------------
	ナビゲーション
--------------------------------*/

/* ハンバーガーメニュー */

#nav_btnwrapper {
	display: none;
}

/* ナビ */

nav {
	position: relative;
	margin: 0 auto;
}

nav ul {
	width:100%;
	margin: 0 auto;
	padding: 0 120px 0 290px;
	text-align: center;
	font-size: 0;
}

nav ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px;
}

nav ul li a img {
	vertical-align: middle;
}

nav ul li a img:hover {
	opacity: 0.7;
}

/* 草ストロー */

/*
nav ul li.nav_straw {
    border: 2px solid #007a59;
    background-color: #fff;
    padding: 5px 8px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

nav ul li.nav_straw img {
    width: 113px;
    height: 30px;
}
*/

/* SNS */

nav ol {
	position: absolute;
	right: 30px;
	top: 0;
	font-size: 0;
}

nav ol li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 20px;
}

nav ol li svg {
	width: 20px;
	height: 20px;
	vertical-align: top;
}

nav ol li svg.icon_sns_fb { fill: #1877f2; }
nav ol li svg.icon_sns_tw { fill: #1da1f2; }
nav ol li svg.icon_sns_insta { fill: #000; }

nav ol li svg:hover {
	fill: #ccc;
}


@media only screen and (max-width: 1300px) {
    header {
        padding-bottom: 20px;
    }
    
	header h1 {
		width: 230px;
		margin: 20px 0 0;
	}
    
	nav ul {
		padding: 0 120px 0 260px;
	}
    
	nav ul li {
		display: inline-block;
		vertical-align: middle;
		margin: 3px 10px 15px;
	}
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {


	/*--------------------------------
		ヘッダー
	--------------------------------*/

	header {
		margin: 0 auto;
		padding: 0;
		background: none;
	}

	header h1 {
		position: relative;
		left: auto;
		top: auto;
		width: calc(80vw - 80px);
		max-width: 300px;
		margin: 15px auto 0;
	}


	/*--------------------------------
		ナビゲーション
	--------------------------------*/
	
	/* ハンバーガーメニュー */
	
	#nav_btnwrapper {
		display: block;
		position: fixed;
		top:0;
		right:0;
		background-color: #007a59;
		z-index: 10001;
	}
	
	#nav_btnwrapper #nav_btn {
		display: block;
		position: relative;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 50%;
		height: 2px;
		
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
		background-color: #fff;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon:before,
	#nav_btnwrapper #nav_btn #nav_btn_icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon:before {
		-webkit-transform:translate(0, -400%);
		transform:translate(0, -400%);
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon:after {
		-webkit-transform:translate(0, 400%);
		transform:translate(0, 400%);
	}
	
	#nav_btnwrapper.close #nav_btn #nav_btn_icon {
		background: transparent;
	}
	
	#nav_btnwrapper.close #nav_btn #nav_btn_icon:before {
	    -webkit-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	
	#nav_btnwrapper.close #nav_btn #nav_btn_icon:after {
	    -webkit-transform: rotate(45deg);
	    transform: rotate(45deg);
	}


	/* ナビ */

	nav {
		opacity: 0;
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		pointer-events: none;
		position: fixed;
		top:0;
		left:0;
		z-index: 10000;
		background-color: rgba(255, 255, 255, 0.95);
		width:100%;
		height:100%;
		-webkit-transition: 0.6s;
		-moz-transition: 0.6s;
		-ms-transition: 0.6s;
		transition: 0.6s;
	
		/* GPU acceleration */
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		will-change: opacity, transform;
	}
	
	
	nav.show {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		pointer-events: auto;
	}
	
	nav.evacuation { /* for IE10 */
		z-index: -1;
	}
	
	nav ul {
		position: absolute;
		top:50%;
		left:50%;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
		width: auto;
		padding: 0;
	}

	nav ul li {
		display: block;
		vertical-align: middle;
		margin: 25px auto;
	}
	
	nav ul li a img {
		height: 15px;
		width: auto;
	}
	
	nav ul li a img:hover {
		opacity: 1;
	}
	
	nav ol {
		position: absolute;
		top:auto;
		bottom: 30px;
		right: auto;
		width: 100%;
		text-align: center;
	}
	
	nav ol li {
		display: inline-block;
		vertical-align: middle;
		margin: 0 15px;
	}
	
	nav ol li svg:hover {
		fill: #007a59;
	}

	
	/* PCで使用する場合の配慮（IE10以上ハックしてIE11を再度上書き）*/
	
	nav {
		transform: scale(0)\9;
	}
	_:-ms-lang(x)::-ms-backdrop, nav {
		transform: scale(0.95);
	}
	
	/* ナビ出現時に背景でスクロールを止める処理 */
	
	body.noscroll {
		overflow: hidden;
		height: 100%;
	}


}


/* ------------------------------------------------------------ FOOTER ------------------------------------------------------------ */

/*--------------------------------
	フッター
--------------------------------*/

footer {
	display: block;
	width:100%;
	margin: 0 auto;
	padding: 10px 0;
	text-align: center;
	background-color: #007a59;
	color: #fff;
}

footer .footer_copyright {
	font-size: 1.0rem;
}


/* PAGETOPボタン */

.pagetop {
	opacity: 0;
	pointer-events: none;
	position: fixed;
	bottom:40px;
	right:30px;
	z-index: 5000;
	zoom:1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.pagetop.exist {
	opacity: 1;
	pointer-events: auto;
}

.pagetop a img {
	width:50px;
}

.pagetop:hover a img {
	-webkit-transform:translate(0 -5px);
	transform:translate(0, -5px);
}


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {
	
	/*--------------------------------
		フッター
	--------------------------------*/
	
	footer {
		width:100%;
		margin: 0 auto;
	}
	
	footer .footer_nav .footer_sns {
		float: none;
		text-align: center;
		margin: 0 auto 30px;
	}
	
	footer .footer_nav .footer_sns li {
		margin: 0 10px;
	}
	
	footer .footer_nav .footer_sns li svg {
		width: 24px;
		height: 24px;
	}
	
	footer .footer_nav .footer_link {
		float: none;
		text-align: center;
		font-size: 1.4rem;
	}
	
	.pagetop {
		display: none;
	}

}


/* ------------------------------------------------------------ CONTENTS ------------------------------------------------------------ */

/*--------------------------------
	共通レイアウト
--------------------------------*/

/* メイン */

main {
	display: block;
	width:100%;
	margin: 0 auto;
	overflow: hidden;
	min-height:1px;
	zoom:1;
	clear:both;
}

main:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

/* インナー */

.inner {
	width:100%;
	max-width:1280px;
	min-width: 990px;
	padding:0 3%;
	margin:0 auto;
	min-height:1px;
	zoom:1;
}

.inner:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/*--------------------------------
		共通レイアウト
	--------------------------------*/

	/* メイン */
	
	main {
	}

	/* インナー */
	
	.inner {
		max-width:none;
		min-width: auto;
	}

}


/* ------------------------------------------------------------ jQuery ------------------------------------------------------------ */

/*--------------------------------
	slick
--------------------------------*/

.slide {
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: relative;
}

.slide.slick-initialized { /* slick動作開始時に表示 */
	opacity: 1;
}

.slide img {
	width: 100%;
	height: auto;
}

.slide .slidePrev,
.slide .slideNext {
	display: block;
	background-color: #fff;
	cursor: pointer;
	width:36px;
	height:36px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: 0.4s;
	transition: 0.4s;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.slide .slidePrev {
	position: absolute;
	z-index: 1001;
	top:calc(50% - 18px);
	left:-18px;
}

.slide .slideNext {
	position: absolute;
	z-index: 1001;
	top:calc(50% - 18px);
	right:-18px;
}

.slide .slidePrev:hover,
.slide .slideNext:hover {
	background-color: #333;
}

.slide .slidePrev svg,
.slide .slideNext svg {
	display: block;
	margin: 0 auto;
	width: 18px;
	height: 18px;
	fill:#333;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: fill;
	max-width:100%;
}

.slide .slidePrev:hover svg,
.slide .slideNext:hover svg {
	fill:#fff;
}

.slide .slick-dots {
	bottom:-40px;
}

.slide .slick-dots li {
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
}

.slide .slick-dots li button {
    width: 30px;
    height: 30px;
}

.slide .slick-dots li button:before {
	color: #fff;
	font-size: 11px;
    width: 30px;
    height: 30px;
	line-height: 30px;
	opacity: 0.9;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: color;
}

.slide .slick-dots li:hover button:before,
.slide .slick-dots li.slick-active button:before {
	color: #ccc;
	opacity: 0.9;
}


/*--------------------------------
	fancybox
--------------------------------*/

a.fancybox {
	display: block;
	margin: 50px auto;
	width: 200px;
	padding: 10px;
	border: 2px solid #007a59;
	text-align: center;
}

a.fancybox:link,
a.fancybox:visited { color:#007a59; background-color: #fff; }
a.fancybox:hover,
a.fancybox:active { color:#fff; background-color: #007a59; }


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/*--------------------------------
		slick
	--------------------------------*/

	.slide .slidePrev,
	.slide .slideNext {
		width:32px;
		height:32px;
	}
	
	.slide .slidePrev {
		top:calc(50% - 16px);
		left:-16px;
	}
	
	.slide .slideNext {
		top:calc(50% - 16px);
		right:-16px;
	}
	
	.slide .slidePrev:hover,
	.slide .slideNext:hover {
		background-color: #fff;
	}
	
	.slide .slidePrev svg,
	.slide .slideNext svg {
		width: 16px;
		height: 16px;
	}
	
	.slide .slidePrev:hover svg,
	.slide .slideNext:hover svg {
		fill:#333;
	}
	
	.slide .slick-dots {
		bottom:-40px;
	}
	
	.slide .slick-dots li {
	    width: 28px !important;
	    height: 28px !important;
	    margin: 0 !important;
	}
	
	.slide .slick-dots li button {
	    width: 28px;
	    height: 28px;
	}
	
	.slide .slick-dots li button:before {
		color: #fff;
		font-size: 11px;
	    width: 28px;
	    height: 28px;
		line-height: 28px;
	}
	
	.slide .slick-dots li:hover button:before {
		color: #fff;
	}

	.slide .slick-dots li.slick-active button:before {
		color: #333;
		opacity: 0.9;
	}


	/*--------------------------------
		fancybox
	--------------------------------*/

	a.fancybox {
		margin: 30px auto 0;
	}

	a.fancybox:link,
	a.fancybox:visited { color:#007a59; background-color: #fff; }
	a.fancybox:hover,
	a.fancybox:active { color:#007a59; background-color: #fff; }


	.fancybox-slide {
		padding: 6% !important;
	}

}



/* ------------------------------------------------------------ スクロールアニメーション ------------------------------------------------------------ */

/*--------------------------------
	基本
--------------------------------*/

.io {
	-webkit-transition: opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
	transition: opacity 1.0s ease 0s, transform 1.0s ease 0s;

	/* GPU acceleration */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/* -webkit-transform: translate3d(0, 0, 0); */
	/* transform: translate3d(0, 0, 0); */
	will-change: opacity, transform;
}

.io.move {
	opacity: 1 !important;
	-webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}


/*--------------------------------
	汎用
--------------------------------*/

.io.fade {
	opacity: 0;
}

.io.lr {
	-webkit-transform: translate3d(-80px, 0, 0);
	transform: translate3d(-80px, 0, 0);
}

.io.rl {
	-webkit-transform: translate3d(80px, 0, 0);
	transform: translate3d(80px, 0, 0); 
}

.io.upL {
	-webkit-transform: translate3d(0, 80px, 0);
	transform: translate3d(0, 80px, 0);
}

.io.upS {
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

.io.downL {
	-webkit-transform: translate3d(0, -80px, 0);
	transform: translate3d(0, -80px, 0);
}

.io.downS {
	-webkit-transform: translate3d(0, -20px, 0);
	transform: translate3d(0, -20px, 0);
}

.io.scaleUp {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.io.scaleDown {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.io.rotateL {
 	-webkit-transform: rotate(30deg);
 	transform: rotate(30deg);
}

.io.rotateR {
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}


/* ------------------------------------------------------------ sunippet ------------------------------------------------------------ */

/*--------------------------------
	トグルのスタイル
--------------------------------*/

.toggle {
	text-align: left;
	margin: 0 0 30px;
	padding: 5px 10px 5px 55px;
	font-size: 24px;
	color: #333;
	background-color: #ccc;
	border: 2px solid #333;
	/* -webkit-font-smoothing: antialiased; */
	position: relative;
	cursor: pointer;
}

.toggle:before {
	content:'\f054';
	font-family: FontAwesome;
	color: #333;
	font-weight: normal;
	position: absolute;
	top: 6px;
	left: 15px;
	-webkit-transition: all .15s linear;
    transition: all .15s linear;
}

.toggle.open:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.toggle:hover {
	color: #fff;
	background-color: #333;
	border: 2px solid #333;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.toggle:hover:before {
	color: #fff;
}

/*--------------------------------
	センター揃え
--------------------------------*/

.center_container {
	position: relative;
}

.center_inner_transform {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}

.center_item_position {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.flex_container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex_container .flex_item {
	/* flex: flex-grow flex-shrink flex-basis; */
	-webkit-flex:0 1 auto; /* old safari default => 0 0 auto */
	-ms-flex:0 1 auto; /* ie default => 0 0 auto */
	flex:0 1 auto;
	max-width:100%;
}

/*--------------------------------
	onject-fit
--------------------------------*/

.onject-fit-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/*--------------------------------
	CSS3
--------------------------------*/

.round {
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.shadow {
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0, 0.2);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0, 0.2);
}


/*--------------------------------
	animation
--------------------------------*/

.animation {
	animation: animation-name 0.5s linear 0s infinite forwards;
}

@-webkit-keyframes animation-name {
	0%		{ background-color: #fff; }
	100%	{ background-color: #000; }
}
@keyframes animation-name {
	0%		{ background-color: #fff; }
	100%	{ background-color: #000; }
}


