@charset "utf-8";

/*全称セレクタ*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


/*
フォントメモ
font-family: 'M PLUS Rounded 1c',
sans-serif;
font-family: 'Lato',
sans-serif;
font-family: 'Raleway',
sans-serif;
font-family: 'Indie Flower',
cursive;
font-family: 'Pangolin',
cursive;
font-family: 'Cabin Sketch',
cursive;
font-family: 'Allerta Stencil',
sans-serif;
font-family: 'Kosugi Maru',
sans-serif;
font-family: 'M PLUS Rounded 1c',
sans-serif;
font-family: 'Indie Flower',
cursive;*/


/*フォント記述全ページ共通・グーグルフォント*/
body {
	font-family: 'M PLUS Rounded 1c',
		sans-serif;
	font-size: 11pt;
}

nav {
	margin: auto;
	padding: 0;
	text-align: center;
	background-color: rgba(214, 139, 139, 1);
	font-size: 130%;
	font-family: 'Sofia', cursive;
	//font-family: 'Gochi Hand', cursive;
	max-width: 1400px;
	cursor: pointer;
}

nav a:hover {
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

nav .logo {
	font-size: 150%;
	padding-right: 5px;
	vertical-align: bottom;
	font-family: 'Sofia', cursive;
	//font-family: 'Gochi Hand', cursive;
	color: white;
}

.logoimg {
	width: 50px;
	height: 50px;
}

.displaynone{
	display: none;
}

h2,
h3 {
	text-align: center;
}

/*全ページ共通フッター*/
footer {
	//background-color: rgba(214, 139, 139, 1);
	width: 100%;
	background-image: url(../image/footimg4.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

footer .foot-prof i,
footer .foot-prof a {
	width: 1rem;
	height: 1rem;
	font-size: 100%;
	margin: 0;
	padding: 0;
	background-color: transparent;
	color: #333333;
}

.access {
	color: #333333;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 2% 2% 0;
	text-align: left;
	border-radius: 30px;
}

.copy {
	margin-top: -20px;
	padding: 0 0 5%;
	color: white;
}

footer .footi{
	background-color: transparent;
	padding: 0;
	margin: 0;
	vertical-align: bottom;
}

/*ここまで全ページ共通*/


/*indexここから*/
/*トップページカルーセルサイズ指定*/
#top .topimg {
	margin-top: 74px;
	width: 100%;
	max-height: 550px;
	overflow: hidden;
}

/*カルーセル内文字スタイル*/
#top .topimg #c1 {
	text-shadow: 7px 7px 7px black;
	font-family: 'Sofia', cursive;
}

/*カルーセル内文字背景スタイル*/
#top .carousel-caption {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 30px;
	margin: 250px 100px 100px;
}

.maintitle {
	font-family: 'M PLUS Rounded 1c',
		sans-serif;
}

/*カルーセルサイズ・キャプション表示*/
@media(min-width:768px) {
	#top .carousel-caption {
		margin: 300px 0;
	}
}

@media(min-width:1100px) {
	#top .topimg {
		height: 500px;
		max-width: 1400px;
		margin: auto;
	}

	#top .carousel-caption {
		margin: 0 0 450px;
	}
}


/*英語タイトル*/
h2 {
	font-size: 200%;
	margin: 0;
	font-family: 'Sofia', cursive;
}

/*日本語タイトル*/
h3 {
	font-size: 120%;
	width: 13em;
	margin: 0 auto 3%;
	font-weight: bold;
	border-top: 7px solid rgba(214, 139, 139, 0.3);
	font-family: 'M PLUS Rounded 1c',
		sans-serif;
}

/*news*/

.news {
	font-family: 'M PLUS Rounded 1c',
		sans-serif;
}

/*movie*/
video{
	max-width: 600px;
	margin: auto;
	text-align: center;
}

/*各記事表示枠*/
article {
	margin: 2% auto;
	padding: 2% 30%;
	font-family: 'M PLUS Rounded 1c',
		sans-serif;
}

@media(max-width:768px) {

	#top article {
		padding: 10% 10% 5%;
	}

	article {
		padding: 10% 10% 5%;
	}
}

/*記事背景*/
#top article:nth-child(even) {
	background-color: rgba(214, 139, 139, 0.1);
}

/*アイコンサイズ・背景*/
i {
	background-color: rgba(214, 139, 139, 1);
	font-size: 3rem;
	color: white;
	border-radius: 50%;
	padding: 1rem;
	cursor: pointer;
	text-align: center;
	line-height: 5rem;
	width: 5rem;
}

/*index lesoon*/
.effect img {
	//border-radius: 50%;
	margin: 0;
	padding: 0;
	max-width: 200px;
}

.effect p {
	margin: 0;
	padding: 0;
}

/*矢印*/
.ya {
	width: 4rem;
	vertical-align: top;
}

/*矢印の上余白*/
.lesson-mt {
	margin-top: -20px;
	padding: 0;
}

.cake-box {
	margin-top: 15%;
}

/*topアイコン・concept me-img表示*/
.me-img,
.center {
	margin: auto;
	text-align: center;
}

/*animation指定箇所*/
#about .anime:hover,
.icon3:hover,
.effect .ya,
.effect .instagram img:hover {
	animation: elasticity 1.5s ease infinite alternate;
}

/*animation記述*/
@keyframes elasticity {
	20% {
		transform: scale3d(1.3, 0.7, 1);
	}

	40% {
		transform: scale3d(0.7, 1.3, 1);
	}

	60% {
		transform: scale3d(1.1, 0.8, 1);
	}

	80% {
		transform: scale3d(0.8, 1.1, 1);
	}

	100% {
		transform: scale3d(1, 1, 1);
	}
}


/*アイコンテキスト*/
.icon-text {
	margin: auto;
	text-align: center;
	color: rgba(214, 139, 139, 1);
	font-weight: 600;
	//flex: 0 0 100%;
}


/*可視範囲javascript記述*/
.effect i,
.effect img {
	transition: .8s;
}

.effect p,
.effect h2,
.effect h3 {
	transition: .8s;
	transition-delay: .8s;
}

/*モーダル内記述*/
#want-1 .modal-body i {
	color: rgba(34, 181, 115, 1);
	background-color: transparent;
	margin: 0;
	padding: 0;
	border-radius: 0;
	animation: elasticity 1.5s ease infinite alternate;
}

.want-1-box {
	background-color: rgba(34, 181, 115, 0.1);
	padding: 1%;
	width: 14rem;
	margin: 5% auto;
}

.w-f img {
	background-color: transparent;
}

/*トップ以外共通メインビジュアル記述*/
.topimg .title {
	//font-weight: bold;
	text-shadow: 7px 7px 10px black;
	color: white;
	//background-color: rgba(34, 181, 115, 0.5);
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 30px;
	font-family: 'Sofia', cursive;
	margin-top: 10%;
}

#concept .topimg,
#bread .topimg,
#cake .topimg,
#school .topimg,
#qanda .topimg {
	padding: 10%;
	height: 350px;
	opacity: 0.8;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	margin-top: 75px;
	//background-attachment: fixed;

}

/*トップ以外共通アイコン*/
#concept .col-2 i,
#about .col-2 i,
#bread .col-2 i,
#cake .col-2 i,
#school .col-2 i,
#qanda .col-2 i{
	font-size: 2rem;
	padding: 0.5rem;
	width: 3rem;
}

/*ここからconcept*/
/*メインビジュアルimg*/
#concept .topimg {
	background-image: url(../image/top.jpg);
}

/*youtube埋め込みスタイル*/
#about iframe .movie {
	margin: auto;
	text-align: center;
}

/*教室の写真*/
.uruimg {
	text-align: center;
	margin: auto;
}

.uruimg img {
	max-width: 200px;
}

/*about me 写真*/
#concept .me-img {
	max-width: 400px;
	padding: 5%;
}

/*ウルウールが始まるまで*/
#concept .box {
	position: relative;
	padding: 5% 15%;
	margin: 0 10%;
}

.box01 {
	border: 4px double rgba(214, 139, 139, 0.5);
	border-radius: 50px;
	//background: #ffffff;
	//box-shadow: inset 0 0 30px rgba(227, 227, 227, 1);
}

.box:before {
	border-width: 0 28px 28px 0;
	border-style: solid;
	content: " ";
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.box01:before {
	background: #e3e3e3;
	border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.5);
}



/*ここからbread*/
/*メインビジュアルimg*/
#bread .topimg {
	background-image: url(../image/bread.jpg);
}

.bread .ya {
	width: 40px;
	margin: auto;
	display: block;
	margin-top: -15px;
}

.lesson-box {
	background-color: rgba(214, 139, 139, 0.3);
	padding: 5%;
	border-radius: 30px;
	margin: 3%;
}


/*breadimg3枚*/
#bread .me-img {
	max-width: 250px;
}

/*過去のレッスンの様子*/
#bread .size-bg {
	border-top: 3px solid rgba(0, 0, 0, 0.3);
}


/*モーダル内表記*/
.yen {
	background: linear-gradient(transparent 60%, rgba(214, 139, 139, 1) 100%);
	border-radius: 30px;
	font-weight: bold;
	//border-bottom: 10px solid rgba(214, 139, 139, 0.3);
}

.modal-body{
	text-align: center;
}

.modal-body img{
	border-radius: 30px;
	border-bottom: 5px double gray;
	border-right: 5px double gray;
}

/*ここからcake*/
/*メインビジュアルimg*/
#cake .topimg {
	background-image: url(../image/caketop.jpg);
}

.cake .ya {
	width: 40px;
	margin: auto;
	display: block;
	margin-top: -15px;
}

/*cakeimg3枚*/
#cake .me-img {
	max-width: 250px;
}

/*詳しく見てみる*/
#cake .size-bg {
	border-top: 3px solid rgba(0, 0, 0, 0.3);
}

/*ここからSHOP*/
/*メインビジュアルimg*/
#school .topimg {
	background-image: url(../image/footimg.jpg);
}

/*お店の写真*/
#school .shopimg {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#school .shopimg figure img {
	flex: 0 1 48%;
	max-width: 200px;
	margin: 5px;
	border-radius: 30px;
}

/*店舗情報テーブル*/
#school table {
	border-collapse: collapse;
	width: 100%;
	margin: 0 auto 1rem;
	//border: 2px solid rgba(214, 139, 139, 0.3);
}

#school table i {
	font-size: 1.5rem;
	color: rgba(214, 139, 139, 1);
	background-color: transparent;
	padding: 0;
}

table a {
	color: black;
	//border-bottom: 1px solid black;
}

#school table th {
	padding: 0.5rem;
}

tr:nth-child(even) {
	background-color: rgba(214, 139, 139, 0.1);
}

/*ウルウールにくるには*/
#school .way-title {
	text-align: center;
	font-weight: bold;
	margin: 5% auto 1px;
	background-color: rgba(214, 139, 139, 1);
	color: white;
	width: 17rem;
	border-radius: 30px;
}

#school .box2 {
	border: 1px solid lightgray;
	background-color: lightgray;
	width: 12rem;
	margin: 0.2rem auto;
	text-align: center;
	padding: 5px;
}

#school .minutes {
	border-left: 5px dotted rgba(214, 139, 139, 1);
	width: 9rem;
	margin: auto;
	text-align: center;
	padding: 10px;
}


/*ここからQandA*/
/*メインビジュアルimg*/
#qanda .topimg {
	background-image: url(../image/aboutme.jpg);
	opacity: 0.9;
}

/*アコーディオン記述*/
/*ボックス全体*/
.accbox {
	margin: auto;
	padding: 0;
	max-width: 80%;
	/*最大幅*/
}

/*ラベル*/
.accbox label {
	display: block;
	margin: 1.5px 0;
	padding: 11px 12px;
	font-weight: bold;
	background-color: rgba(214, 139, 139, 0.5);
	cursor: pointer;
	transition: all 0.5s;
	border-radius: 10px;
}

/*ラベルホバー時*/
.accbox label:hover {
	background: white;
	color: rgba(214, 139, 139, 1);
}

/*チェックは隠す*/
.accbox input {
	display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
	height: auto;
	padding: 5px;
	background: #eaeaea;
	opacity: 1;
}

/*フォームJSの記述*/
#t-box1,
#t-box2,
#t-box3 {
	display: none;
}

/*送信ボタン*/
#qanda .mybtn {
	background-color: rgba(214, 139, 139, 1);
	color: white;
	text-align: center;
}

.submit {
	text-align: right;
	margin: 0 10%;
}

.form-contact,.button a,.infobutton{
	padding: 1%;
	margin: 0 20%;
	background-color: rgba(214, 139, 139, 1);
	border-radius:10px;
	color:white;
	
}

.infobutton{
	margin: 0;
}

.infobutton:hover{
	opacity: 0.5;
	color: white;
	text-decoration: none;
}

.index strang{
	font-weight: normal;
}