@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lora:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 15px;
	font-family: "Zen Kaku Gothic New",游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	letter-spacing: .05em;
  color: #0f1a33;
	background-color: #ffffff; /* ベースの背景色 */
	background-image: radial-gradient(#bcbcbc 1px, transparent 1px);
	background-size: 20px 20px; /* 点の間隔を調整 */
}
#content_a,#content_b,#content_c {
	max-width: 1020px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}
a{
	color: #0f1a33;
	text-decoration: none;
}
a:hover{
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
li {
	margin-left: 0;
}
h2.main_ttl {
	text-align: center;
	line-height: 1.2;
	margin-bottom: 40px;
	color: #0f1a33;
	position: relative;
  padding-top: 38px; 
}
h2.main_ttl span {
	font-family: 'Lora', serif;
	font-size: 70px;
	text-transform: capitalize;
	font-style: italic;    
}
h2.main_ttl::before {
	content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; 
  height: 24px;
  background-image: url('../img/flower_green.webp'); 
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width:768px) {
  body {
    font-size: 14px;
			background-image: radial-gradient(#cbcbcb 1px, transparent 1px);
  }
	#content_a,#content_b,#content_c {
		padding-left: 20px;
    padding-right: 20px;
  }
  h2 span {
	  font-size: 50px;
  }
}
/* ==================================================
  preloader
====================================================*/
.preloader-area {
	background-color: #f0f0f0;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
  }
  .preloader-area .loader-box {
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
	  -moz-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
	  -o-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%); 
	}
  .preloader-area .loader {
	  background-image: url(../img/loader.webp);
	  width: 100px;
	  height: 100px;
	  -webkit-animation: loader 1s linear infinite;
	  -moz-animation: loader 1s linear infinite;
	  -o-animation: loader 1s linear infinite;
	  animation: loader 1s linear infinite; 
	}
@media screen and (max-width: 768px) {
	.preloader-area .loader {
	  background-image: url(../img/loader-sp.webp);
	  width: 39px;
	  height: 60px;
	}
}
  @-webkit-keyframes loader {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg); }
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg); } }
  @-moz-keyframes loader {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg); }
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg); } }
  @-o-keyframes loader {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg); }
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg); } }
  @keyframes loader {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg); }
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg); } 
  }
/*================================================
 *  ヘッダー
 ================================================*/
 header{
	position: fixed;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
  padding: 10px 0;
	background-color: rgb(255, 255, 255);
  transition: .5s;
  background-size: cover;
  background-repeat: repeat-x;
  background-position: top;
  height: 150px;
	background-image: url(../img/header.webp)
}
header .inner {
  max-width: 220px;
  margin: 0 auto;
	display: flex;
}
header .inner_top {
  position: relative;
	padding: 15px;
	margin-bottom: 30px;
}
nav.gnav ul li {
  padding: 8px 0;
  text-align: left;
}
nav.gnav ul li span {
	font-family: 'Quicksand', sans-serif;
	text-transform: uppercase;
}
nav.gnav ul li a {
	color: #21396f;
}
/* changeNav */
header.changeNav {
	transition: .5s;
	background: initial;
	background-color: rgba(255, 255, 255, 0.5);
	height: 90px;
}
header.changeNav img {
	width: 180px;
	transition: .5s;
}
header.changeNav .inner {
	margin: 10px auto 0;
}
nav.gnav.global-nav {
	margin: 0 15px;
}
.top_logo {
	width: 150px;
}
/* =======================================================
* section
* ======================================================= */
section  {
	padding-bottom: 5rem;
	position: relative;
}
.section {
	padding-top: 5rem;
}
@media screen and (max-width:768px) {
	section {
		padding-bottom: 3rem;
	}
	.section {
		padding-top: 3rem;
  }
}
/* =======================================================
*main
* ======================================================= */
.swiper-slide.slide01 {
	background-image: url(../img/image_a.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
}
.swiper-slide.slide02 {
	background-image: url(../img/image_b.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
}
/* タイトル */
.swiper_ttl {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	width: 100%;
	color: #fff;
}
.swiper_ttl .en {
	font-family: 'Lora', serif;
	font-size: 140px;
	margin-bottom: 0;
	font-style: italic;
}
.swiper_ttl .ja {
	font-family: 'Lora', serif;
	font-size: 23px;
}
.swiper_ttl .ja.txt {
	font-size: 40px;
}
.courseArea li {
	text-align: center;
	width: 29%;
	margin-bottom: 20px;
}
.courseArea li img {
	border-radius: 5px;
	object-fit: cover;
	width: 100%;
}
.courseArea .course_ttl {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
.courseArea .course_txt {
	font-size: 15px;
	margin-bottom: 8px;
	text-align: left;
	padding: 0 5px;
}
.courseArea .menu-price {
	font-size: 28px;
}
.courseArea .menu-price span {
	background: linear-gradient(transparent 70%, rgb(219,187,255) 0%);
}
@media screen and (max-width: 768px) {
  .courseArea li {
    width: 100%;
		margin-bottom: 25px;
  }
  .courseArea .menu-price {
    font-size: 22px;
  }
}
#lecturer ul li {
	width: 32%;
	margin-bottom: 5px;
}
#lecturer img.lect_img {
	border-radius: 10px;
	/* height: 290px; */
	object-fit: cover;
	width: 100%;
}
.lect_name {
	font-size: 27px;
	font-weight: 500;
}
.lect_status {
	font-size: 15px;
	font-weight: 500;
}
.lect_name span.en {
	font-size: 17px;
	color: #858585;
	margin-left: 10px;
}
.lect_txt {
	font-size: 16px;
	line-height: 32px;
	font-weight: 500;
}
.news {
	margin: 0 auto;
	max-width: 500px;
	padding: 20px;
}
.news dl {
  padding-left: 15px;
}
.news dt {
  font-weight: bold;
}
.news dd {
  margin-left: 0;
  margin-bottom: 10px;
	font-weight: 500;
}
.news dd a {
  text-decoration: none;
}
.news dd a:hover {
  text-decoration: underline;
}
.newslist {
	display: flex;
}
.live {
	margin: 0 auto 20px;
	max-width: 800px;
	padding: 20px;
	border-radius: 10px;
	background-color: #f0f0f0;
}
.liveslist {
	display: flex;
	align-items: center;
	justify-content: space-between; /* ←右寄せに必要 */
}
.live_info {
  display: flex;
  align-items: center; 
}
.live dl {
  padding-left: 15px;
}
.live dt {
  font-weight: bold;
}
.live dd {
  margin-left: 0;
	font-weight: 500;
}
.live dd a {
  text-decoration: none;
}
.live_icon {
	width: 25px;
}
.live_arrow {
	font-size: 19px;
	margin-left: 10px;
}
.delimiter  {
	margin: 0 10px;
}
/*スクロールバー（縦）*/
/*スクロールバー全体の背景*/
.scroll-box_y::-webkit-scrollbar {
  width: 5px;
}
.scroll-box_y::-webkit-scrollbar-track {
  background: #eee;
}
/*スクロールバーの動く部分*/
.scroll-box_y::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
/*スクロールバーの動く部分のホバー（マウスオーバー）*/
.scroll-box_y::-webkit-scrollbar-thumb:hover {
  background: #999;
}
  .scroll-box_y {
    overflow-y: scroll;
  }
  .scroll-box_y.a {
    height: 27rem;
  }
#salon iframe {
	width: 100%;
	height: 400px;
}
#background {
	background: url(../img/news_bk.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 300px;
	position: relative;
}
form {
    max-width: 700px;
    margin: 40px auto 50px;
}
label {
  display: block;
  width: 100%;
  margin: 25px 0 8px;
}
input[type="email"], input[type="number"],input[type="text"], input[type="tel"],input[type="date"],input[type="time"],select {
  width: 100%;
  display: block;
  border: 1px solid #cecece;
  outline: none;
  height: 3.5rem;
  line-height: 1.4rem;
  background:#fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}
textarea {
	width: 100%;
  display: block;
  border: 1px solid #cecece;
  outline: none;
  background:#fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #333;
  line-height: 1.7;
  letter-spacing: .05em;
}
sup {
  color:#d65956;
  font-size: 11px;
  padding-left: 5px;
}
button {
  font-size: 14px;
  padding: 10px 70px;
  border-radius: 5px;
  border: 1px solid#dbccfb;
  background-color:#dbccfb;
  color: #fff;
  letter-spacing: .2em;
}
button:hover {
  background-color: #fff;
  color:#dbccfb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
	form {
		margin: 20px 15px 30px;
	}
}
/* =======================================================
*footer
* ======================================================= */
footer {
	max-width: 1100px;
	padding: 60px 0;
	margin: 0 auto;
}
footer .warp {
	display: grid;
  gap: 15px;
	grid-template-columns: 1fr 4fr;
	margin-bottom: 20px;
}
.footer_logo {
	width: 145px;
	margin: 0 auto;
}
.footer_menu {
	display: flex;
	justify-content: flex-start;
	margin: 5px 0 30px;
	flex-wrap: wrap;
}
.footer_menu li {
	font-size: 15px;
	padding: 0 13px 10px 13px;
	text-align: left;
	font-weight: 500;
}
.footer_contact {
	display: flex;
	justify-content: flex-start;
}
.footer_contact a {
	display: block;
	margin: 0 10px;
}	
.fot_btn {
	border: 1px solid #555;
	padding: 15px;
	text-align: center;
	margin-bottom: 15px;
	width: 300px;
}
.footer_contact a.fot_btn:hover {
	background-color: #fff;
}
.copyright {
  font-size: 11px;
	text-align: center;
	padding-top: 40px;
}
.fot_btn .ja {
	display: block;
	font-size: 12px;
	padding-bottom: 5px;
	font-weight: 500;
}
.fot_btn .en {
	font-size: 23px;
	margin: 0;
	font-weight: 500;
}
.insta_link {
	text-align: center;
	padding-top: 13px;
	display: block;
	font-weight: 500;
}
.footer_contact a i {
	margin-right: 8px;
}
.insta_link i {
	margin-right: 5px;
}
header {
	position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
  padding: 10px 0;
}
header .inner {
  max-width: 1400px;
  margin: 0 auto;
	/* margin: 8px auto; */
	margin: 70px auto 0;
}
header h1 {
	z-index: 100;
}
/* inner-right */
header .inner-right {
  width: 100%;
}
nav.gnav ul li {
  display: inline-block;
  padding: 0 15px;
  text-align: center;
	font-weight: 500;
	font-size: 14px;
}
nav.gnav ul li span {
	font-family: 'Quicksand', sans-serif;
	text-transform: uppercase;
	font-size: 13px;
}
nav.gnav ul li a {
	color: #262626;
}
.page_head {
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
	margin-top: 146px;
	background: #fff;
}
.page_head.a {
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_head.b {
	background-position: 0 73%;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_head.c {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_head.d {
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_head.e {
	background-position: 0 94%;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_head.f {
	background-position: 0 91%;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_head.g {
	background-position: 0 97%;
	background-repeat: no-repeat;
	background-size: cover;
}
.page_ttl {
	text-align: center;
}
.page_head {
  position: relative;
}
.page_ttl .en {
  font-family: 'Lora', serif;
	font-size: 80px;
	font-weight: bold;
	text-transform: capitalize;
	font-style: italic;    
}
.merit_ul {
  padding: 20px;
  position: relative;
	padding: 0px 20px 5px 50px;
}
.merit_ul li {
	padding: 10px;
	font-size: 17px;
	text-indent: -50px;
	font-weight: 500;
}
.merit_ul li::before {
	content: "";
	display: inline-block;
	margin-right: 15px;
	background-image: url(../img/onp_b.webp);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	text-align: center;
	font-weight: bold;
	position: relative;
	top: 10px;
}
.price_box {
	border: 1px solid #0f1a33;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 15px;
	border-radius: 20px;
	max-width: 300px;
  margin: 30px auto 0;
}
.price_table {
	width: 100%;
	font-size: 16px;
}
.price_table th,.price_table td {
	padding: 6px 0;
	text-align: left;
	white-space: nowrap;
	font-weight: 500;
}
.price_table th {
	color: #f17897;
}
.sub_ttl {
	font-size: 30px;
	text-align: center;
	padding-bottom: 30px;
}
.sub_ttl img.icon {
	width: 30px;
	height: 30px;
	margin-right: 8px;
	position: relative;
	top: -7px;
}
.cs_box {
	position: relative;
	background: #fcfcfc;
	box-shadow: 0px 0px 0px 8px #fcfcfc;
	border: solid 2px #e1e0e0;
	padding: 8px;
	border-radius: 5px;
}
.page_cs {
	background: #f0f0f0;
	box-shadow: 0px 0px 0px 8px #f0f0f0;
	border: solid 2px #fff;
}
.pro_ul {
	margin-bottom: 30px;
}
.pro_ul li {
	padding-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
}
.pro_ul li::before,
.livepage_list::before {
	content: "";
	display: inline-block;
	margin-right: 11px;
	background-image: url(../img/flower_pink.webp);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
}
.fukidashi {
	display: flex;
	align-items: center;
	position: relative;
	margin-right: 15px;
	padding: .8em 1.2em;
	border: 2px solid #008f61;
	border-radius: 5px;
	background-color: #fff;
	font-size: 18px;
}
.fukidashi::before,
.fukidashi::after {
	position: absolute;
	right: -15px;
	width: 15px;
	height: 30px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: '';
}
.fukidashi::before {
	background-color: #008f61;
}
.fukidashi::after {
	right: -11px;
	background-color: #fff;
}
.st_box {
	position: relative;
	padding: 20px;    
	background: #fcfcfc;
	box-shadow: 0px 0px 0px 8px #fcfcfc;
	border: solid 2px #e1e0e0;
	border-radius: 5px;
	margin-bottom: 30px;
}
.st_box:after{
	position: absolute;
	content: '';
	right: -12px;
	top: -12px;
	border-width: 0 25px 25px 0;
	border-style: solid;
	border-color: #e1e0e0 #FFE2E9 #e1e0e0;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
.st_box p {
	margin: 0; 
}
.piano_icon {
	width: 30px;
	min-width: 30px;
	margin-right: 5px;
}
.name_ttl {
	padding-bottom: 20px;
	font-size: 18px;
	display: flex;
  align-items: center;
	font-weight: 500;
}
.q_font {
	color: #008f61;
}
.a_font {
	color: #f17897;
}
.q_font,.a_font {
	font-weight: bold;
	font-size: 20px;
	margin-right: 5px;
	font-family: 'Lora', serif;
}
.qa_txt {
	padding-bottom: 2px;
	text-indent: -25px;
	padding-left: 25px;
	font-weight: 500;
}
.an_txt {
	padding-bottom: 20px;
	text-indent: -25px;
	padding-left: 25px;
	font-weight: 500;
}
.top_txt {
	padding-bottom: 30px;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
}
.fixed_btn {
	position: fixed; 
	bottom: 20px; 
	right: 0px;
	z-index: 10; 
}
/* 画像のサイズ調整 */
.fixed_btn img {
	width: 190px; 
	height: auto; 
	border: none; 
}
/* ボタンにホバーした時のエフェクト（任意） */
.fixed_btn:hover {
	opacity: 1.0;
	transform: scale(1.1); /* ホバー時に少し拡大 */
}
.contact_btn {
	position: relative;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: 0;
	overflow: hidden;
	color: #fff;
	background: #06c755;
	border-radius: 8px;
	box-shadow: 0 0 0 5px #06c755, 0 2px 3px 5px rgba(0,0,0,0.5);
	border: 1px solid #fff;
	padding: .5em 1em;
	max-width: 265px;
	font-weight: bold;
	margin: 30px auto 0;
}
.contact_btn img.line_icon {
	width: 40px;
}
.access_btn {
	position: relative;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: 0;
	overflow: hidden;
	color: #fff;
	background: #f17897;
	border-radius: 8px;
	box-shadow: 0 0 0 5px #f17897, 0 2px 3px 5px rgba(0,0,0,0.5);
	border: 1px solid #fff;
	padding: 16px 22px;
	max-width: 265px;
	font-weight: bold;
	margin: 10px auto 0;
}
.access_btn i {
	margin-right: 6px;
}
.request_btn {
	position: relative;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: 0;
	overflow: hidden;
	color: #fff;
	background: #f17897;
	border-radius: 8px;
	box-shadow: 0 0 0 5px #f17897, 0 2px 3px 5px rgba(0,0,0,0.5);
	border: 1px solid #fff;
	padding: 16px 22px;
	max-width: 160px;
	font-weight: bold;
	margin: 10px auto 0;
}
.live_btn {
	position: relative;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: 0;
	overflow: hidden;
	color: #fff;
	background: #008f61;
	border-radius: 8px;
	box-shadow: 0 0 0 5px #008f61, 0 2px 3px 5px rgba(0,0,0,0.5);
	border: 1px solid #fff;
	padding: 16px 22px;
	max-width: 160px;
	font-weight: bold;
	margin: 10px auto 0;
}
.back_top {
	background-color: #f7f7f7;
}
.top_ttl {
	font-size: 18px;
	font-weight: 500;
}
span.pink_txt,p.pink_txt {
	color: #f17897;
}
span.green_txt {
	color: #008f61;
}
.table_box {
	position: relative;
	padding: 20px 25px 20px 25px;
	border-radius: 10px;
	box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
	background-color: #fcfcfc;
	color: #333333;
	width: 35%;
	height: fit-content;
}
.table_box::before,
.table_box::after {
	position: absolute;
	content: '';
}
.table_box::before {
	top: -15px;
	right: 10px;
	height: 50px;
	width: 15px;
	border: 3px solid #999;
	border-radius: 10px;
	box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
	transform: rotate(10deg);
}
.table_box::after {
	top: 0;
	width: 10px;
	right: 20px;
	border: solid 5px #f7f7f7;
}
.ls_txt {
	font-size: 17px;
	font-weight: 500;
}
.ls_cts {
	margin: 25px 0 0 0;
}
.main_txt {
	font-size: 18px;
	font-weight: 500;
}
.img_frame {
	background: #ffd4de;
	position: relative;
	box-shadow: 0px 0px 0px 8px #ffd4de;
	border: dashed 3px #fff;
	padding: 8px;
	border-radius: 5px;
}
.his_table {
	width: 100%;
}
.his_table th {
	width: 100px;
}
.his_table th,.his_table td {
	padding-bottom: 13px;
	font-size: 16px;
}
.his_cts {
	margin: 10px 0 0 0;
}
 .btm_animation {
	opacity: 0;
	transform: translateY(50px);  /* 50px下にずらす */
	transition: opacity 1s ease-out, transform 1s ease-out;
}
/* animateクラスを追加すると、元の位置に戻り不透明になる */
.btm_animation.animate {
	opacity: 1;
	transform: translateX(0);
}
.char {
	opacity: 0;
	display: inline-block;
	transform: translateX(-20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
/* visibleクラス追加で元の位置に戻り不透明に */
.char.visible {
	opacity: 1;
	transform: translateX(0);
}
.back_pink {
/* background-color: #FFE2E9; */
background-color: #f178972b; 
/* background-image: radial-gradient(#b3b3b3 1px, transparent 1px); */
/* background-size: 20px 20px;  */
}
.page_lect {
	border-radius: 10px;
	/* height: 315px; */
	object-fit: cover;    
	width: 100%;
	object-position: 0 10%;
}
.faq_box dt {
	margin-bottom: 1em;
	color: #333333;
	font-weight: 500;
}
.faq_box dt::before,
.faq_box dd::before {
	margin-right: .4em;
}
.faq_box dt::before {
	content: "Q.";
	color: #008f61;
}
.faq_box dd {
	margin: 0 0 2.5em;
	padding: 1em 1.5em;
	background-color: #fcfcfc;
	border-radius: 8px;
	font-weight: 500;
}
.faq_box dd::before {
	content: "A.";
	color: #f17897;
}
.onp {
	position: relative;
}
.onp_icon_a {
	animation: fuwafuwa 3s ease-in-out infinite alternate;
	background: url(../img/onp_b.webp) no-repeat center center / 78px auto;
	display: inline-block;
	transition: 1.5s ease-in-out;
	width: 100px;
	height: 100px;
	position: absolute;
	bottom: 98px;
	right: 100px;
}
.onp_icon_b {
	animation: fuwafuwa 3s ease-in-out infinite alternate;
	background: url(../img/onp_a.webp) no-repeat center center / 78px auto;
	display: inline-block;
	transition: 1.5s ease-in-out;
	width: 100px;
	height: 100px;
	position: absolute;
	bottom: 94px;
	left: 100px;
}
.onp_icon_c {
	animation: fuwafuwa 3s ease-in-out infinite alternate;
	background: url(../img/onp_b.webp) no-repeat center center / 78px auto;
	display: inline-block;
	transition: 1.5s ease-in-out;
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 98px;
	right: 15px;
}
.onp_icon_d {
	animation: fuwafuwa 3s ease-in-out infinite alternate;
	background: url(../img/onp_a.webp) no-repeat center center / 78px auto;
	display: inline-block;
	transition: 1.5s ease-in-out;
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 94px;
	left: 15px;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.hed_btn {
	border: 1px solid #555;
	padding: 10px;
	text-align: center;
	margin-bottom: 15px;
	width: 80%;
	display: block;
	margin: 25px auto 10px;
}
.hed_btn .ja {
	display: block;
	font-size: 12px;
	padding-bottom: 5px;
	font-weight: 500;
}
.hed_btn .en {
	font-size: 18px;
	margin: 0;
	font-weight: 500;
}
.hed_btn i {
	margin-right: 8px;
}
.insta_link.h {
	padding-bottom: 30px;
}
.black-bg {
  pointer-events: none;
}
/* nav.global-nav, */
.black-bg {
  pointer-events: none;
}
.nav-open nav.global-nav,
.nav-open .black-bg {
  pointer-events: auto;
}
.cast_box {
	width: 600px;
	margin: 20px auto 0;
}
.cast_box th, .cast_box td {
	padding: 9px 0;
}
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  width: calc(300px * 6); /* スライド6枚分の幅 */
  animation: scroll-left 20s linear infinite;
}
.slide {
  width: 300px;
  flex-shrink: 0;
  object-fit: cover;
	height: 230px;
  object-position: top;
}
/* 無限に左へ流れるアニメーション */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-900px); } /* 3枚分（300px×3）だけ左へ動かす */
}
.live:hover {
	background-color: #FFE2E9;
	transition : 1s;
}
.livepage {
	font-weight: bold;
	background-color: #fff;
	margin: 0 auto;
	max-width: 800px;
	padding: 20px;
	border-radius: 10px;
}
.livepage_ttl {
	font-size: 20px;
}
.livepage_list {
	margin-bottom: 10px;
	padding-top: 20px;
	font-size: 17px;
}
.global-nav li a ,.footer_menu li a {
  position: relative;
  display: block;
  transition: background 0.3s ease;
}
.global-nav li a::before,.footer_menu li a::before {
  content: "";
  position: absolute;
  top: 117%;
  left: 50%;
  width: 20px; 
  height: 20px;
  background-image: url("../img/onp_c.webp"); /* マーク画像のパス */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.footer_menu li a::before {
	  top: 140%;
}
.global-nav li a:hover::before,.footer_menu li a:hover::before {
  opacity: 1.0; 
}
.underline:hover {
	text-decoration: underline;
}
.newspage_txt {
	padding-top: 15px;
}
@media screen and (max-width:1175px) {
	nav.gnav.global-nav {
		white-space: nowrap;
	}
	nav.gnav ul li {
		padding: 0 10px;
	}
	nav.gnav ul li a {
		font-size: 13px;
	}
	header .inner {
		margin: 73px auto 0;
	}
	.footer_contact {
		align-items: center;
		flex-direction: column;
	}
	.footer_contact a {
		margin: 10px 0;
	}
	footer .warp {
		display: block;
	}
	.footer_menu {
    justify-content: center;
    margin: 50px 0 40px;
}
}
@media screen and (max-width:980px) {
	nav.gnav.global-nav {
    margin: 0 5px;
		padding-bottom: 20px;
		order: 2;
	}
	nav.gnav ul li a {
		color: #262626;
		font-size: 12px;
	}
	.top_logo {
		padding-bottom: 30px;
	}
	header .inner {
		margin: 50px auto 0;
		flex-direction: column;
	}
	header {
		background-size: cover;
	}
	.page_head {
    margin-top: 150px;;
	}
	header {
    height: 115px;
		position: static;
	}
		.pc_br {
		display: none;
	}
	.swiper-container {
    margin-top: 140px;
}
}

@media screen and (max-width:768px) {
	.top_logo {
        padding-bottom: 0;
    }
  header .inner-left {
    width: 70%;
  }
	header .inner-left h1 {
    font-size: 24px;
    padding-left: 10px;
  }
	.table_box {
    width: 84%;
	}
	.top_logo {
		width: 160px;
		margin-left: 15px;
	}
	header {
		height: 115px;
    padding: 0;
		position: fixed;
	}
	header .inner {
		margin: 56px auto 0;
		justify-content: flex-start;
	}
	.page_head {
		margin-top: 0;
		height: 350px;
	}
	.page_ttl .en {
    font-size: 50px;
	}
	.page_ttl {
		position: relative;
    top: 40px;
	}
	h2.main_ttl {
    font-size: 13px;
	}
	h2.main_ttl span {
    font-size: 42px;
	}
	.sub_ttl {
    font-size: 20px;
	}
	.sub_ttl img.icon {
    width: 24px;
    height: 24px;
    margin-right: 4px;
    top: -5px;
}
.ls_cts {
	margin: 5px 0 0 0;
}
	.main_txt {
    font-size: 15px;
}
	img.lect_img {
		width: 100%;
	}
	.lect_name {
    font-size: 22px;
}
	.lect_status {
    padding-top: 25px;
		font-size: 14px;
}
.lect_name span.en {
	font-size: 15px;
}
.lect_txt {
	font-size: 15px;
}
.courseArea .course_ttl {
	font-size: 18px;
}
.sp_txt_pd {
	padding-top: 15px;
}
.footer_menu {
	flex-direction: column;
  align-items: center;
	margin: 35px 0 20px;
}
.footer_menu li {
	padding: 10px 0;
	font-size: 14px;
}
.fot_btn {
	width: 80%;
}
.page_lect {
	width: 100%;
}
  header .inner_top {
    width: 70%;
  }
	header .inner_top h1 {
    font-size: 24px;
    padding-left: 10px;
  }
  /* ハンバーガーメニュー */
	nav.global-nav {
	    position: fixed;
	    right: -1520px;
	    top: 0;
	    width: 100%;
			max-height: 100vh;
	    padding-top: 40px;
	    transition: all .2s ease-out;
	    z-index: 200;
			overflow-y: auto;
			padding: 100px 0px 0px 0px;
			display: block;
			height: 83vh;
    }
    nav.gnav.global-nav ul li {
	    margin-bottom: 18px;
			display: block;
      padding: 5px;
			font-weight: bold;
    }
		nav.gnav ul li span {
			font-size: 13px;
		}
	  .hamburger {
			position: absolute;
			right: 15px;
			top: 53px;
			width: 55px;
			height: 55px;
			cursor: pointer;
			z-index: 300;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #fff;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
			left: -5px;
			width: 50px;
			height: 2px;
	    background-color: #0f1a33;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 18px;
	  }
	  .hamburger__line--2 {
	    top: 26px;
	  }
	  .hamburger__line--3 {
	    top: 33px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	  }
	  /* 表示された時用のCSS */
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    visibility: visible;
			/* background-color: #f7f7f7; */
			background-color: #ffffff;
			background-image: radial-gradient(#bcbcbc 1px, transparent 1px);
			background-size: 20px 20px;
	  }
		header.changeNav .hamburger {
			top: 10px;
		}
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
			top: 7px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
			top: 6px;
		}
		.nav-open header .inner {
			margin: 20px auto 0;
		}
		.nav-open .hamburger {
			right: 10px;
        top: 35px;
		}
		.nav-open header.changeNav .hamburger {
			top: 38px;
		}
		.fixed_btn img {
			width: 130px;
		}
		header.changeNav {
			height: 72px;
		}
		#background {
			background-attachment: unset;
			background-position: center right 20%;
			height: initial;
		}
		.copyright {
			padding-top: 70px;
		}
	.swiper-slide.slide03 {
		background-position: center left 18%;
		}
	.swiper_ttl .en {
		font-size: 68px;
		}
		.swiper_ttl .ja {
			font-size: 18px;
			font-weight: bold;
	  }
		.swiper_ttl .ja.txt {
			font-size: 22px;
		}
		.footer_logo {
			width: 105px;
		}
		.top_txt {
			font-size: 15px;
			line-height: 28px;
		}
		.top_ttl {
			font-size: 15px;
	}
	.piano_illust {
		width: 310px;
		margin: 0 auto;
		display: block;
	}
	.merit_ul {
    padding: 0px 0px 5px 30px;
}
	.merit_ul li {
		font-size: 15px;
		text-indent: -39px;
	}
	.merit_ul li::before {
		margin-right: 12px;
		width: 23px;
		height: 23px;
		min-width: 23px;
		min-height: 23px;
		top: 6px;
	}
	.st_box {
		padding: 10px 20px;
		box-shadow: 0px 0px 0px 6px #fcfcfc;
    border: solid 1px #e1e0e0;
	}
	.ls_txt {
    font-size: 15px;
	}
	.price_table {
		font-size: 14px;
	}
	.his_table {
		margin-top: 5px;
	}
	.his_table th, .his_table td {
    text-align: left;
		display: block;
		font-size: 15px;

	}
	.his_table th span.underline {
		border-bottom: 1px solid #008f61;
		padding-bottom: 0;
	}
		.his_table td {
		padding-bottom: 10px;
	}
	.his_table td {
    padding-bottom: 12px;
	}
	.q_font, .a_font {
		font-size: 15px;
	}
	.name_ttl {
    padding-bottom: 10px;
    font-size: 16px;
    padding-top: 5px;
	}
	.piano_icon {
    width: 25px;
    min-width: 25px;
	}
	nav.gnav ul li.sp_none {
		display: none;
	}
	.onp_icon_a {
		background: url(../img/onp_b.webp) no-repeat center center / 40px auto;
		right: 10px;
		width: 40px;
		height: 40px;
		bottom: -23px;
	}
	.onp_icon_b {
		background: url(../img/onp_a.webp) no-repeat center center / 40px auto;
		left: 10px;
		width: 40px;
		height: 40px;
	}
	.onp_icon_c {
		background: url(../img/onp_b.webp) no-repeat center center / 40px auto;
		right: 10px;
		width: 40px;
		height: 40px;
		bottom: -23px;
	}
	.onp_icon_d {
		display: none;
	}
	
	nav.gnav.global-nav {
		margin: 0 0px;
}
.cs_box {
	box-shadow: 0px 0px 0px 6px #fcfcfc;
	border: solid 1px #e1e0e0;
	padding: 6px;
}
.page_cs {
	box-shadow: 0px 0px 0px 6px #f0f0f0;
	border: solid 1px #fff;
	padding: 6px;
}
.page_head.g {
	background-position: right;
}
.img_frame {
	box-shadow: 0px 0px 0px 6px #ffd4de;
	border: solid 1px #fff;
	padding: 6px;
}
.livepage_ttl {
	font-size: 18px;
}
.livepage_list {
	font-size: 15px;
}
body { 
	background-size: 16px 16px;
}
	nav.gnav ul li a {
		font-size: 14px;
	}
	.footer_menu li a::before {
    top: 49%;
}
	.footer_menu li a::before {
			left: -15%;
	}
	.sp_txt_left {
		text-align: left !important;
	}
	.sp_txt_center {
	text-align: center !important;
	}
	.live_info dt {
    padding-bottom: 5px;
	}
	.live_info {
    flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
	}
	.live_piano {
		display: none;
		margin: 0 10px 10px 0;
	}
	.live dl {
    padding-left: 0;
	}
	header h1 {
			margin-right: auto;
	}
	.mb_br {
		display: none;
	}
	.his_table th {
    width: initial;
}
.global-nav li a:hover::before,.footer_menu li a:hover::before {
	opacity: 0;
}
.hed_btn .en {
	font-size: 19px;
}
.swiper-container {
        margin-top: 0;
    }
	}
@media screen and (min-width:769px) {
	nav.gnav ul li.pc_none {
		display: none;
	}
	.hed_btn {
		display: none;
	}
	.insta_link.h {
		display: none;
	}
	.qa_txt {
		padding-bottom: 5px;
	}
	.pc_txt_center {
		text-align: center;
	}
	.sp_br {
		display: none;
	}
}

@media screen and (min-width:387px) {
	.sptop_br {
		display: none;
	}
}
@media screen and (max-width:564px) {
	.onp_icon_b {
		bottom: -26px;
	}
	.delimiter {
    display: none;
}
.newslist {
	display: block;
}
.news dd {
	margin-top: 5px;
}
.cast_table {
	width: 100%;
}
.cast_box th, .cast_box td {
	padding: 6px 0;
	white-space: wrap;
	display: block;
}
.cast_box::before {
	right: 2px;
}
.table_box::after {
	right: 8px;
}
.top_txt {
	text-align: left;
}
}
@media screen and (max-width:327px) {
.access_btn i {
	margin-bottom: 6px;
}}
@media screen and (min-width:1300px) {
	header {
    background-size: contain;
}
}
