@charset "utf-8";
/* CSS Document スマートフォン版 全共通css*/
@media screen and (max-width: 768px) {
	/*SP非表示*/
	.sp {
		display: block !important;
	}
	/*/PC非表示*/
	.pc {
		display: none !important;
	}
	/* リセット */
	html {
		scroll-padding-top: 50px; /* ヘッダー固定アンカー調整 */
	}
	body {
		-webkit-text-size-adjust: 100%; /* フォントサイズ自動調整 */
		width: 100vw;
		min-width: auto;
		font-size: 1.2rem;
	}
	.photo_right {
		float: right;
		margin-left: 15px;
	}
	.photo_left {
		float: left;
		margin-right: 15px;
	}
	/* 画像リンク */ /*スマホ動作なし*/
	a:hover img {
		opacity: 1.0;
		filter: alpha(opacity=100);
	}
	* img {
		max-width: 100%;
		height: auto;
	}
	/* 基本レイアウト */
	#wrapper {
		width: 100vw;
		margin: 50px auto 0 auto;
	}
	#contents {
		width: 95vw;
		margin: 0 auto;
	}
	header {
		display: none;
	}
	header.sp {
		height: 50px;
		font-size: 1.2rem;
	}
	footer {
		margin-bottom: 50px;
	}
	/* 以上基本レイアウト */
	/*ヘッダー*/
	header .inside {
		max-width: 100%;
		height: 50px;
		padding: 0 50px 0 10px;
	}
	header .inside .logo {
		width: 120px;
	}
	/*/ヘッダー*/
	/*グローバルナビ*/
	#menubtn {
		position: fixed;
		right: 5px;
		top: 5px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 1000;
	}
	#menubtn span {
		position: absolute;
		left: calc(50% - 13px);
		width: 26px;
		height: 2px;
		background-color: #333333;
		display: inline-block;
		transition: all .4s;
	}
	#menubtn span:nth-of-type(1) {
		top: calc(50% - 10px);
	}
	#menubtn span:nth-of-type(2) {
		top: calc(50% + 8px);
	}
	#menubtn span:nth-of-type(3) {
		top: calc(50% - 1px);
	}
	#menubtn.active span:nth-of-type(1) {
		-webkit-transform: translateY(9px) rotate(-315deg);
		transform: translateY(9px) rotate(-315deg);
	}
	#menubtn.active span:nth-of-type(2) {
		-webkit-transform: translateY(-9px) rotate(315deg);
		transform: translateY(-9px) rotate(315deg);
	}
	#menubtn.active span:nth-of-type(3) {
		display: none;
	}
	#menubtn.active {
		background-color: transparent;
	}
	#menubtn.active span {
		background-color: #fff;
	}
	#gnav {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		padding: 30px 0 20px 0;
		background-color: #00A1E9;
		z-index: 999;
		overflow: auto;
	}
	#gnav ul {
		display: block;
		width: 80vw;
		height: auto;
		margin: 20px auto 0 auto;
		border-top: solid 1px #fff;
	}
	#gnav ul li {
		list-style: none;
		height: 50px;
		margin: 0;
		border-bottom: solid 1px #fff;
	}
	#gnav ul li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		text-decoration: none;
		color: #fff;
	}
	#gnav .tit {
		width: 110px;
		margin: 0 auto;
	}
	#gnav .tit img {}
	/*/グローバルナビ*/
	/* pagetop */
	#gototop {
		display: none !important;
	}
	/*フッター*/
	body > footer .info {
		padding: 25px 20px;
		text-align: center;
	}
	body > footer .info .logo {
		margin-bottom: 10px;
	}
	body > footer .info .logo img {
		width: 100px;
	}
	body > footer .info .txt {
		font-size: 1.0rem;
	}
	body > footer .copy {
		padding: 10px 0;
		font-size: 1.0rem;
	}
	/*/フッター*/
	/* サイドボタン */
	.pc_btn_area {
		display: none !important;
	}
	.sp_btn_area {
		position: fixed;
		left: 0;
		right: auto;
		bottom: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100vw;
		padding: 0 2vw;
		z-index: 101;
	}
	.sp_btn_area img {
		width: 47vw;
	}
}