
body {
	font-family: "vdl-v7gothic", sans-serif;
	font-weight: 500;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	line-height: 1.8;
}

:root {
    --navy: #004980;
    --blue: #189ac9;
    --red: #d81e42;
    --yellow: #eeb616;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	padding: 20px 40px!important;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
}
header .logo {
	display: block;
	width: 240px;
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
.container {
	width: calc(100% - 80px);
	max-width: 1200px;
	padding: 0 40px;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.max540 {
	max-width: 540px;
	margin: auto;
}
.max460 {
	max-width: 460px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.align_start {
	align-items: flex-start;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}
.col2 {
	width: 47%;
}
.col2.pd_less {
	width: calc(50% - 10px);
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_40 {
	margin-bottom: 40px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mr_20 {
	margin-right: 20px;
}

.wrap {
	display: inline-block;
}
.boad {
	padding: 80px 60px 60px;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0 0 20px rgba(0,73,128,0.20);
}
.z2 {
	position: relative;
	z-index: 2;
}

/* フォント */
h2.flag {
	display: inline-block;
	padding: 20px 30px;
	background: var(--yellow);
	color: #fff;
	position: relative;
}
.boad h2.flag {
	position: absolute;
	top: -40px;
	left: 60px;
	z-index: 2;
}
h2.flag::before {
	content: "";
	display: block;
	width: 8px;
	height: 20px;
	background: var(--yellow);
	position: absolute;
	left: 0;
	bottom: -20px;
}
h2.flag::after {
	content: "";
	display: block;
	width: 30px;
	height: 100%;
	background: url("../img/h2_flag.png") left center / contain no-repeat;
	position: absolute;
	top: 0;
	right: -30px;
}
.font_14 {
	font-size: 14px;
}
.font_20 {
	font-size: 20px;
}
.font_24 {
	font-size: 24px;
}
.font_30 {
	font-size: 30px;
}
.font_34 {
	font-size: 34px;
}
.font_40 {
	font-size: 40px;
}
.font_46 {
	font-size: 46px;
}
.font_54 {
	font-size: 54px;
}
.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.bold {
	font-weight: 700;
}
.ex_bold {
	font-weight: 800;
}
.u_bold {
	font-weight: 900;
}
.navy {
	color: var(--navy);
}
.blue {
	color: var(--blue);
}
.yellow {
	color: var(--yellow);
}
.red {
	color: var(--red);
}
.gray {
	color: #999999;
}
.green {
	color: #00a0a0;
}
.white {
	color: #fff;
}
.line1 {
	line-height: 1;
}
.line1_4 {
	line-height: 1.4;
}
.line1_6 {
	line-height: 1.6;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* ボタン */
.btn {
	display: block;
	box-sizing: border-box;
	padding: 25px 20px;
	border: 6px var(--navy) solid;
	border-radius: 50px;
	background: linear-gradient(to right, #1eaddd 0%, #0f78b9 100%);
	color: #fff;
	text-align: center;
	position: relative;
	box-shadow: 5px 5px 0 rgba(0,73,128,0.30);
}
.btn::after {
	content: "";
	display: block;
	border: 6px transparent solid;
	border-right: none;
	border-left: 10px #fff solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.btn.icon_pdf {
	padding: 20px 35px 20px 30px;
	border: 4px var(--yellow) solid;
	background: #fff;
	color: #000;
	text-align: left;
	box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
}
.btn.icon_pdf::after {
	border-left-color: var(--yellow);
}
.btn.icon_pdf span {
	display: inline-block;
	padding-left: 35px;
	position: relative;
}
.btn.icon_pdf span::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("../img/icon_pdf.png") center center / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.btn.comming {
	border-color: #bfbfbf;
	background: #dddddd;
	color: #999;
	text-align: center;
	pointer-events: none;
	box-shadow: none;
}
.btn.comming::after {
	display: none;
}
.btn.icon_pdf.comming span {
	padding-left: 0;
}
.btn.icon_pdf.comming span::before {
	display: none;
}
.btn:hover {
	transform: translateY(3px);
	box-shadow: none;
}

/* アニメーション -----------*/
.yay {
    opacity: 0;
    transform: translateY(2px);
    transition: all 1s;
}
.yay.fadeinup {
    transform: translateY(20px);
}
.yay.on {
    transform: translateY(0);
    opacity: 1;
}


/*==================================================================================
メイン
==================================================================================*/
section#main {
	padding: 160px 0 200px!important;
	background: url("../img/main_bg.gif") center center/ cover no-repeat;
	overflow: hidden;
	position: relative;
}
section#main .boad {
	padding: 80px 40px 40px;
}
section#main .boad h2.flag {
	left: 40px;
}
section#main .boad .ttl span {
	display: inline-block;
	padding-bottom: 25px;
	background: url("../img/wave.png") left bottom / 50px repeat-x;
}

/*==================================================================================
プロフィール
==================================================================================*/
section#profile {
	padding: 100px 0 260px!important;
	background: url("../img/profile_bg.png") center top / contain repeat-y #fffbeb;
	position: relative;
}
section#profile::before {
	content: "";
	display: block;
	width: 100%;
	height: 80px;
	background: url("../img/profile_wave.png") center top / cover no-repeat;
	position: absolute;
	top: -80px;
	left: 0;
	z-index: 2;
}
section#profile h2 img {
	width: 260px;
	margin: auto;
}
section#profile .col2 {
	box-sizing: border-box;
	padding: 60px 60px 100px;
	position: relative;
}
section#profile .col2::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50% 50% 0 0;
	background: #fcf5de;
	position: absolute;
	top: 0;
	left: 0;
}
section#profile .col2::after {
	content: "";
	display: block;
	width: 40%;
	height: 160px;
	background: url("../img/bo01.png") center bottom / contain no-repeat;
	position: absolute;
	right: 60px;
	bottom: -10%;
}
section#profile .col2:nth-child(2)::after {
	background-image: url("../img/rei01.png");
}
section#profile .col2 .ttl {
	display: inline-block;
	padding: 20px 40px;
	border-radius: 5px;
	background: #fff;
	position: relative;
	left: -60px;
	filter: drop-shadow(5px 5px 0 rgba(0,0,0,0.1));
}
section#profile .col2 .ttl::after {
	content: "";
	display: block;
	border: 6px transparent solid;
	border-bottom: none;
	border-top: 8px #fff solid;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
}

/*==================================================================================
開催スケジュール
==================================================================================*/
.bg_grad {
	padding: 0 0 120px!important;
	background: url("../img/grad_bg_dot.png") left 2% top 2% / 160px repeat, linear-gradient(to right, #ccf4ff 0%, #9cd5ff 100%);
	position: relative;
}
.bg_grad::before {
	content: "";
	display: block;
	width: 100%;
	height: 80px;
	background: url("../img/schedule_wave.png") center bottom / cover no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
section#schedule .schedule {
	border-bottom: 1px var(--navy) dashed;
}
section#schedule .schedule.close {
	filter: grayscale(1);
	opacity: .3;
}
section#schedule .ttl {
	width: 360px;
	box-sizing: border-box;
	padding-left: 1.2em;
	position: relative;
}
section#schedule .ttl::before {
	content: "\025cf";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
section#schedule .cont p {
	width: 360px;
}
section#schedule .cont .btn {
	width: 280px;
}

/*==================================================================================
イベント
==================================================================================*/
section#event {
	padding: 100px 0 0!important;
}
section#event h2 img.pc {
    display: block;
	max-width: 960px;
	margin: auto;
}
section#event .grad_boad {
	margin-top: -30px;
	background: linear-gradient(to right, #54bbeb 0%, #3c89c7 100%);
}
.boad_frame {
	box-sizing: border-box;
	padding: 30px;
	border: 10px #fff solid;
	border-radius: 20px;
	background: rgba(255,255,255,0.8);
}
.boad_frame .border {
	border-bottom: 5px #fff dashed;
}
.time {
	padding: 10px 20px;
	background: rgba(238,182,22,0.10);
}
/* ワークショップ --------------------------- */
section#workshop {
	padding: 100px 0 0!important;
}
section#workshop h2 img {
	width: 480px;
	margin: auto;
}
section#workshop .grad_boad {
	margin-top: -60px;
	background: linear-gradient(to right, #96e7e0 0%, #6cc6c6 100%);
}
section#workshop .ws02 .txt {
	width: 60%;
}
section#workshop .ws02 .img {
	width: 30%;
	max-width: 300px;
	position: absolute;
	right: 30px;
	bottom: 30px;
}
section#workshop .ws02 .img::after {
	content: "\0203b\030a4\030e1\030fc\030b8\05199\0771f";
	display: block;
	font-size: .875rem;
	font-weight: 700;
	position: absolute;
	bottom: 0;
	left: 0;
}

section#workshop .ws03 .img {
	max-width: 300px;
margin-top: 20px;
}
section#workshop .ws03 .img::after {
	content: "\0203b\030a4\030e1\030fc\030b8\05199\0771f";
	display: block;
	font-size: .875rem;
	font-weight: 700;

	bottom: 20px;
	left: 30px;
}

section#workshop02 {
	padding: 100px 0 0!important;
}
section#workshop02 .boad_frame {
	padding: 50px 20px 30px;
	border: 6px var(--yellow) solid;
	background: #fff;
	position: relative;
}
section#workshop02 .boad_frame.rei::after {
	content: "";
	display: block;
	width: 30%;
	height: 120px;
	background: url("../img/rei01.png") center bottom / contain no-repeat;
	position: absolute;
	top: 60%;
	left: -40px;
}
section#workshop02 .boad_frame.bo::after {
	content: "";
	display: block;
	width: 100%;
	height: 120px;
	background: url("../img/bo01.png") right bottom / 30% no-repeat ,url("../img/workshop04.png") left bottom / 20% no-repeat;
	position: absolute;
	top: 50%;
	left: 40px;
}
section#workshop02 .boad_frame.goods::after {
	content: "";
	display: block;
	width: calc(100% - 80px);
	height: 140px;
	background: url("../img/workshop05.png") left bottom / 11% no-repeat ,url("../img/workshop06.png") right bottom / 11% no-repeat;
	position: absolute;
	top: 55%;
	left: 40px;
}
section#workshop02 .boad_frame .ttl {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 30px;
	background: var(--yellow);
	color: #fff;
	white-space: nowrap;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}
/* バナー */
section#workshop02 .bana01 {
	display: block;
	width: calc(60% - 30px);
}
section#workshop02 .bana02 {
	display: block;
	width: calc(40% - 10px);
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 40px 20px!important;
}
footer .logo img {
	max-width: 460px;
	margin: auto;
}
footer ul li:nth-child(1) {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px #000 solid;
}
footer ul li a  {
	text-decoration: underline;
}

/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--yellow);
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 6px;
	height: 6px;
	border-top: 4px #fff solid;
	border-right: 4px #fff solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}



.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; }
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 20px!important;
	}
	header .logo {
		width: 200px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	.container {
		width: calc(100% - 40px);
		max-width: 680px;
		padding: 0 20px;
	}
	.col2,
	.col2.pd_less {
		width: calc(50% - 10px);
	}
	.tb100 {
		width: 100%!important;
		margin-bottom: 20px;
	}
	.tb100:last-child {
		margin-bottom: 0;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_40 {
		margin-bottom: 30px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	.mr_20 {
		margin-right: 15px;
	}
	.boad {
		padding: 60px 30px 30px;
		border-radius: 20px;
		box-shadow: 0 0 10px rgba(0,73,128,0.20);
	}
	/* フォント */
	h2.flag {
		padding: 15px 20px;
	}
	.boad h2.flag {
		top: -30px;
		left: 30px;
	}
	h2.flag::before {
		width: 6px;
		height: 15px;
		bottom: -15px;
	}
	h2.flag::after {
		width: 20px;
		right: -20px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_20 {
		font-size: 18px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 24px;
	}
	.font_34 {
		font-size: 24px;
	}
	.font_40 {
		font-size: 30px;
	}
	.font_46 {
		font-size: 34px;
	}
	.font_54 {
		font-size: 40px;
	}
	/* ボタン */
	.btn {
		padding: 15px 20px;
		border: 4px var(--navy) solid;
		box-shadow: 3px 3px 0 rgba(0,73,128,0.30);
	}
	.btn::after {
		border: 4px transparent solid;
		border-left: 7px #fff solid;
		right: 15px;
	}
	.btn.icon_pdf {
		padding: 15px 30px 15px 20px;
		border: 3px var(--yellow) solid;
		box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
	}
	.btn.icon_pdf span {
		padding-left: 30px;
	}
	.btn.icon_pdf span::before {
		width: 25px;
		height: 25px;
	}
	.btn.comming {
		border-color: #bfbfbf;
		background: #dddddd;
		color: #999;
		text-align: center;
		pointer-events: none;
		box-shadow: none;
	}
	/*==================================================================================
	メイン
	==================================================================================*/
	section#main {
		padding: 100px 0 140px!important;
	}
	section#main .container {
		max-width: 100%;
	}
	section#main .boad {
		max-width: 460px;
		margin: auto;
		padding: 60px 30px 30px;
	}
	section#main .boad h2.flag {
		left: 30px;
	}
	section#main .boad .ttl span {
		padding-bottom: 20px;
		background-size: 40px;
	}
	/*==================================================================================
	プロフィール
	==================================================================================*/
	section#profile {
		padding: 40px 0 120px!important;
	}
	section#profile::before {
		height: 40px;
		top: -40px;
	}
	section#profile h2 img {
		width: 200px;
	}
	section#profile .col2 {
		max-width: 460px;
		margin: 0 auto 60px;
		padding: 40px 40px 80px;
	}
	section#profile .col2::before {
		border-radius: 300px 300px 0 0;
	}
	section#profile .col2::after {
		width: 30%;
		height: 100px;
		right: 40px;
		bottom: -5%;
	}
	section#profile .col2 .ttl {
		padding: 15px 30px;
		left: -40px;
		filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.1));
	}
	/*==================================================================================
	開催スケジュール
	==================================================================================*/
	.bg_grad {
		padding: 0 0 80px!important;
		background: url("../img/grad_bg_dot.png") left 2% top 2% / 80px repeat, linear-gradient(to right, #ccf4ff 0%, #9cd5ff 100%);
	}
	.bg_grad::before {
		height: 40px;
	}
	section#schedule .ttl {
		width: 100%;
	}
	section#schedule .cont {
		width: 100%;
		justify-content: space-between;
	}
	section#schedule .cont p {
		width: 320px;
	}
	section#schedule .cont .btn {
		width: 240px;
	}
	/*==================================================================================
	イベント
	==================================================================================*/
	section#event {
		padding: 60px 0 0!important;
	}
	section#event h2 img.pc {
		display: none;
	}
	section#event h2 img.sp {
		display: block;
        max-width: 460px;
        margin: auto;
	}
	section#event .grad_boad {
		max-width: 540px;
		margin: -20px auto 0;
	}
	.boad_frame {
		padding: 20px;
		border: 6px #fff solid;
	}
	.boad_frame .border {
		border-bottom: 3px #fff dashed;
	}
	.time {
		padding: 6px 10px;
	}
	/* ワークショップ --------------------------- */
	section#workshop {
		padding: 60px 0 0!important;
	}
	section#workshop h2 img {
		width: 300px;
	}
	section#workshop .grad_boad {
		max-width: 540px;
		margin: -40px auto 0;
	}
	section#workshop .grad_boad .col2 {
		max-width: 460px;
		margin: 0 auto 30px;
	}
	section#workshop .grad_boad .col2:last-child {
		margin: 0 auto;
	}
	section#workshop .ws02 .txt {
		width: 100%;
		margin-bottom: 30px;
	}
	section#workshop .ws02 .img {
		width: 50%;
		margin: 0 auto;
		position: relative;
		right: auto;
		bottom: 0;
	}
	section#workshop02 {
		padding: 60px 0 0!important;
	}
	section#workshop02 .boad_frame {
		padding: 35px 20px 20px;
		border: 4px var(--yellow) solid;
	}
	section#workshop02 .boad_frame.rei {
		margin-bottom: 60px;
	}
	section#workshop02 .boad_frame.rei::after {
		width: 100px;
		height: 80px;
		left: -20px;
	}
	section#workshop02 .boad_frame.bo {
		margin-bottom: 60px;
	}
	section#workshop02 .boad_frame.bo::after {
		height: 80px;
		background-size: 100px, 90px;
		top: 60%;
		left: 20px;
	}
    section#workshop02 .boad_frame.goods {
    	margin-bottom: 100px;
    }
    section#workshop02 .boad_frame.goods::after {
    	width: calc(100% - 30px);
    	height: 110px;
        background-size: 80px;
    	top: 75%;
    	left: 15px;
    }
	section#workshop02 .boad_frame .ttl {
		padding: 8px 20px;
		top: -18px;
	}
	/* バナー */
	section#workshop02 .bana01 {
		width: calc(60% - 10px);
	}
	section#workshop02 .bana02 {
		width: 40%;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 20px!important;
	}
	footer .logo img {
		max-width: 300px;
	}
	footer ul li a  {
		font-size: 14px;
	}

	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: 40px;
		height: 40px;
		right: 20px;
		bottom: 20px;
	}
	.btn_pagetop span {
		width: 6px;
		height: 6px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .logo {
		width: 160px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	.sp100 {
		width: 100%!important;
		margin-bottom: 20px;
	}
	.sp100:last-child {
		margin-bottom: 0;
	}
	.boad {
		padding: 50px 20px 20px;
	}
	/* フォント */
	h2.flag {
		padding: 10px 20px;
	}
	.boad h2.flag {
		top: -20px;
		left: 20px;
	}
	.font_14 {
		font-size: 10px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 18px;
	}
	.font_30 {
		font-size: 20px;
	}
	.font_34 {
		font-size: 20px;
	}
	.font_40 {
		font-size: 26px;
	}
	.font_46 {
		font-size: 30px;
	}
	.font_54 {
		font-size: 30px;
	}
	/*==================================================================================
	メイン
	==================================================================================*/
	section#main {
		padding: 90px 0!important;
		background: url("../img/main_bg_sp.gif") center center/ cover no-repeat;
	}
	section#main .boad {
		padding: 50px 20px 20px;
	}
	section#main .boad h2.flag {
		left: 20px;
	}
	section#main .boad .ttl span {
		padding-bottom: 15px;
	}
	section#main .boad .col2:first-child {
		margin-bottom: 10px;
	}
	/*==================================================================================
	プロフィール
	==================================================================================*/
	section#profile {
		padding: 30px 0 60px!important;
	}
	section#profile::before {
		height: 20px;
		top: -20px;
	}
	section#profile h2 img {
		width: 180px;
	}
	section#profile .col2 {
		margin: 0 auto 40px;
		padding: 20px 20px 60px;
	}
	section#profile .col2::after {
		width: 35%;
		right: 20px;
	}
	section#profile .col2 .ttl {
		left: -20px;
	}
	section#profile .col2 .font_20 {
		font-size: 14px;
	}
	/*==================================================================================
	開催スケジュール
	==================================================================================*/
	.bg_grad::before {
		height: 20px;
	}
	.boad.grad_boad {
		padding: 50px 10px 10px;
		border-radius: 10px;
	}
	/*==================================================================================
	開催スケジュール
	==================================================================================*/
	section#schedule .cont .btn {
		width: 100%;
	}
	/*==================================================================================
	イベント
	==================================================================================*/
	section#event {
		padding: 40px 0 0!important;
	}
	.boad_frame {
		padding: 15px;
		border-radius: 10px;
		border: 4px #fff solid;
	}
	/* ワークショップ --------------------------- */
	section#workshop {
		padding: 40px 0 0!important;
	}
	section#workshop h2 img {
		width: 240px;
	}
	section#workshop .grad_boad .col2 {
		margin: 0 auto 20px;
	}
	section#workshop02 {
		padding: 40px 0 0!important;
	}
	section#workshop02 .boad_frame {
		padding: 30px 20px 20px;
	}
	section#workshop02 .boad_frame.bo {
		margin-bottom: 80px;
	}
	section#workshop02 .boad_frame.bo::after {
		top: 65%;
	}
	section#workshop02 .boad_frame.goods {
		padding: 45px 20px 20px;
	}
    section#workshop02 .boad_frame.goods::after {
        background-size: 70px;
    }
	section#workshop02 .boad_frame.goods .ttl {
		text-align: center;
		line-height: 1.2;
	}
	/* バナー */
	section#workshop02 .bana01 {
		width: 100%;
		margin-bottom: 8px;
	}
	section#workshop02 .bana02 {
		width: 100%;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer .logo img {
		max-width: 240px;
	}
	footer ul li,
	footer ul li:nth-child(1) {
		width: 100%;
		margin: 0 0 5px;
		padding-right: 0;
		border-right: none;
		text-align: center;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
	}
}

