@charset "UTF-8";
/* スマホでは非表示 */
.sp_no {
	display: none;
}
/* -------------------------- */
/* --------content----------- */
/* -------------------------- */
.content {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
.wrap {
	width: 92%;
	margin: 0 auto;
}
.wrap_sp {
	width: 100%;
	margin: 0 auto;
}
/* -------------------------- */
/* -----------main----------- */
/* -------------------------- */

#main {
	width: 100%;
	background-image: url(../img/bg_top_sp.png);
	background-position: top right;
	background-repeat: no-repeat;
	padding-bottom: 3rem;
}
#top_logo {
	margin: 0 auto;
	width: 80%;
	padding-top: 4rem;
	text-align: center;
}
#top_logo img {
	max-width: 300px;
	margin: 0 auto;
}
/* メイン画像 */
.slider ul li img {
	position: absolute;
	left: 0;
	right: 0;
	margin: 4rem auto 0 auto;
}
.slider ul li {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 6rem;
	animation-iteration-count: infinite;
	animation-duration: 10s;
}
/* アニメーション開始時間の設定 */
.slider ul li:nth-child(1) {
	animation-name: slider;
	animation-delay: -2s;
}
.slider ul li:nth-child(2) {
	animation-name: slider;
	animation-delay: 5s;
	opacity: 0;
	z-index: 5;
}
/* フェードイン・フェードアウトの設定 */
@keyframes slider {
 0% {
opacity:0;
}
 50% {
opacity:1;
}
 100% {
opacity:0;
}
}
/* --------- */

/* ----hamburger-menu--- */
.menu-btn {
	position: fixed;
	top: 0.8rem;
	right: 0.8rem;
	display: flex;
	height: 50px;
	width: 50px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background: -moz-radial-gradient(#34302E, #534741);
	background: -webkit-radial-gradient(#34302E, #534741);
	background: radial-gradient(#34302E, #534741);
	border-radius: 25px;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	border-radius: 3px;
	background-color: #fff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
	display: none;
}
.menu-content {
	width: 100%;
	height: 95%;
	position: fixed;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: #fff;
	transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
	padding: 6rem 0 0 0;
	margin: 0;
}
.menu-content ul li {
	list-style: none;
	text-align: center;
	border-bottom: 1.5px #534741 dashed;
	margin: 0 5rem;
	line-height: 3.5rem;
}
.sen {
	border-top: 1.5px #534741 dashed;
}
.menu-content ul li a {
	font-size: 1.5rem;
	font-weight: 300;
	position: relative;
}
#menu-btn-check:checked ~ .menu-content {
	left: 0;/*メニューを画面内へ*/
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .5);
}
/* sns */
.sns ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
}
.sns ul li {
	margin: 2rem 1.5rem;
	padding: 0;
	border: none;
}
.sns ul li a {
	display: inline-block;
	width: 60px;
}
/* 問い合わせ */
.inquiry {
	color: #fff;
	position: fixed;
	top: 0;
	font-weight: 300;
	background: -moz-linear-gradient(top, #534741, #34302E);
	background: -webkit-linear-gradient(top, #534741, #34302E);
	background: linear-gradient(to bottom, #534741, #34302E);
	display: inline;
	padding: 0.5rem;
	z-index: 10;
}
.inquiry:hover {
	background: #C69C6D;
}
/* アイコン */
.icon {
	width: 25px;
	padding: 0.1rem 0.5rem 0 0;
}
/* main見出し */
#main h2 {
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
	margin-top: 17rem;
	letter-spacing: 0.01rem;
	z-index: 6;
}
/* フォントサイズ */
.font_sm {
	font-size: 0.8rem;
}
/* フォントカラー */
.font_white {
	color: #fff;
}
.font_brown {
	color: #998675;
}
/* マージン　パティング */
.m_l_m {
	margin-left: 2rem;
}
.m_top_m {
	margin-top: 1rem;
}
.m_tb_m {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.sp_m_t_m {
	margin-top: 2rem;
}
/* 画像調整 */
.f_r {
	width: 100%;
	margin: 0 auto;
}
/* 文字間調整 */
.sp_s {
	letter-spacing: -0.02rem;
}
/* 見出し */
h2 {
	font-size: 0.8rem;
	font-weight: 800;
}
/* -------------------------- */
/* --------message----------- */
/* -------------------------- */
.box_message {
	background-image: url(../img/bg_message_sp.png);
	background-repeat: no-repeat;
}
/* message見出し */
#message h2 {
	padding: 2.5rem 0 1.5rem 0;
}
#message h2 img, #instructor h2 img, #access h2 img, #news h2 img {
	height: 50px;
}
#message h2 img {
	margin-left: -2rem;
}
#message h4 {
	font-size: 1.35rem;
	margin: 0 0 3rem -1rem;
}
/* ----------------------------- */
/* -----------pottery----------- */
/* ---------------------------- */
.bg_brown {
	background-color: #534741;
	padding: 0 2rem 1rem 2rem;
	margin-top: 3rem;
	margin-bottom: -1rem;
}
/* pottery見出し */
#pottery h2, #art h2 {
	background-image: url(../img/bg_pottery.png);
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
}
#pottery h2 {
	padding: 3rem 0 2.5rem 0;
}
#pottery h2 img {
	height: 50px;
}
/* -----------trial----------- */
.box_trial {
	background-image: url(../img/bg_trial_sp.png);
	background-repeat: no-repeat;
}
#trial h3, #member h3, #workshop h3 {
	font-size: 2.3rem;
	font-weight: 200;
	line-height: 2rem;
}
#trial h3 {
	margin: 3rem auto 1rem auto;
}
.small {
	display: block;
	font-size: 0.9rem;
}
#pottery h5 {
	background-color: #F8F4EB;
	padding: 0.5rem 1rem;
	font-size: 1.2rem;
}
#pottery table, #art table, #access table {
	width: 100%;
	border-top: dotted 1px #C7B299;
}
#pottery table th, #membe table th, #access table th, #art table th, #access table th {
	color: #998675;
	font-weight: 200;
	text-align: left;
	width: 75px;
	border-bottom: dotted 1px #C7B299;
}
#pottery table td, #membe table td, #art table td, #access table td {
	border-bottom: dotted 1px #C7B299;
	letter-spacing: 0.1rem;
	padding: 0.25rem 0;
}
/* course */
#pottery h6 {
	text-align: center;
	background-color: #C7B299;
	font-size: 1rem;
}
.box_c {
	border: solid 1px #C7B299;
	margin: 1rem auto;
}
.box_c p {
	text-align: center;
	line-height: 1.3rem;
	margin-bottom: 0.5rem;
	padding: 0;
}
.caution li {
	list-style: none;
	font-size: 0.95rem;
	line-height: 1.5rem;
}
.caution li:before {
	content: "※"
}
/* -----------member----------- */
#member {
	border: double #534741;
	margin: 3rem 0;
}
.box_m {
	padding: 1.5rem;
}
#member h3 {
	margin-bottom: 1rem;
}
.often {
	font-size: 1.2rem;
	background-color: #F8F4EB;
	vertical-align: middle;
	padding: 0 0.5rem;
	margin-left: 0.5rem;
}
/* -----------workshop----------- */

#workshop h3 {
	padding: 2rem 0 1.5rem;
}
#workshop ul, #art ul {
	margin-top: 2rem;
}
#workshop ul li, #art ul li {
	background-color: #F8F4EB;
	margin: 1rem 0;
	padding: 0.25rem 1rem;
}
.po_paint {
	position: absolute;
	z-index: -2;
}
/* -------------------------- */
/* -----------art----------- */
/* -------------------------- */
.box_art {
	background-image: url(../img/bg_art_sp.png);
	background-repeat: no-repeat;
}
/* art見出し */
#art h2 {
	padding: 2rem 0 2.5rem 0;
}
#art h3 {
	font-size: 2rem;
	font-weight: 200;
	margin-top: 5rem;
	margin-bottom: 1rem;
}
#art table {
	margin: 2rem 0 1rem 0;
}
.text_r {
	text-align: right;
	margin-bottom: 1rem;
}
/* -----------others----------- */
#others {
	border: solid 1px #534741;
	margin: 2rem auto;
}
#others h4 {
	font-size: 2rem;
	font-weight: 200;
	margin-bottom: 1rem;
}
.box_others {
	padding: 1.5rem;
}
/* -------------------------- */
/* --------instructor-------- */
/* -------------------------- */
.bg_inst_sp {
	background-image: url(../img/bg_instructor_sp.png);
	background-repeat: no-repeat;
}
.box_instructor {
}
#instructor h2 {
	padding: 1.5rem 0 1.5rem 0;
}
#instructor h2 img {
	margin-left: -0.5rem;
}
#instructor h3 {
	margin-top: 1rem;
}
#instructor h4 {
	width: 11%;
	background-color: #F8F4EB;
	padding-left: 5%;
	margin-bottom: 1%;
	font-size: 0.8rem;
}
#instructor p {
	margin-bottom: 2%;
	font-size: 0.9rem;
}
#instructor ul {
	padding-bottom: 3%;
	font-size: 0.9rem;
}
#instructor ul li {
	margin-top: 0.5rem;
}
/* -------------------------- */
/* -----------news----------- */
/* -------------------------- */
#news {
	margin: 0 auto 2rem auto;
}
/* news見出し */
#news h2 {
	padding: 3rem 0 2.5rem 0;
}
#news h2 {
	background-image: url(../img/bg_news.png);
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
}
.box_news {
	border-top: solid 1px #534741;
	border-bottom: solid 1px #534741;
}
#news ul {
	padding: 1rem 0;
}
#news ul li {
	line-height: 2.2rem;
}
.date {
	display: block;
	color: #998675;
	font-size: 0.8rem;
	margin-right: 1.5rem;
}
/* -------------------------- */
/* ---------access----------- */
/* -------------------------- */

.box_access {
	background-image: url(../img/bg_access_sp.png);
	background-repeat: no-repeat;
}
#access h2 img {
	margin-left: -3rem;
	margin-top: 3rem;
}
#access iframe {
	margin-top: 2rem;
	width: 100%;
}
#access table {
	margin-top: 2rem;
}
/* -------------------------- */
/* ---------footer----------- */
/* -------------------------- */
footer {
	height: 100px;
	color: #fff;
	background: -moz-linear-gradient(top, #34302E, #534741);
	background: -webkit-linear-gradient(top, #34302E, #534741);
	background: linear-gradient(to bottom, #34302E, #534741);
	margin-top: 3rem;
}
#copyright {
	text-align: center;
	font-size: 0.65rem;
	letter-spacing: 0.1rem;
	padding-top: 1.5rem;
}
/* ---------page_top----------- */
#page_top {
	display: block;
	width: 100%;
	height: 40px;
	background-color: #998675;
}
#page_top a {
	display: block;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	width: 24px;
	height: 24px;
	transform: rotate(45deg);
	position: absolute;
	left: 50%;
	margin-top: 0.9rem;
}
#page_top:hover {
	background-color: #C7B299;
}
#requestf a {
	background-color: #FFFFFF;
	color: #FFFFFF;
	display: inline-block;
	writing-mode: vertical-rl;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .3);
	padding: 0.7rem;
	position: fixed;
	top: 200px;
	right: 1rem;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	letter-spacing: 0.08rem;
	z-index: 10;
	transition: .3s;
}
#requesti a {
	background-color: #FFFFFF;
	color: #FFFFFF;
	display: inline-block;
	writing-mode: vertical-rl;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .3);
	padding: 0.7rem;
	position: fixed;
	top: 280px;
	right: 1rem;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	letter-spacing: 0.08rem;
	z-index: 10;
	transition: .3s;
}
.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
}
.modal__bg {
	background: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal__content {
	background: #fff;
	left: 50%;
	padding: 40px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
}
