@charset "utf-8";
/* CSS Document */
/*-----------------
  base
-------------------*/
html {
    scroll-behavior: smooth;
}
body, h1, h2, h3, h4, h5, h6, p, span, form, ol { border:0 none; margin:0px; padding:0px; }

h1 {
}

h2 {

}

h3 {
	padding-bottom: 15px;
}

h4 {
	padding-top: 30px;
	padding-bottom: 20px;
	padding-right: 0px;
	padding-left: 0px;
}
h5 {
	font-size: 11px;
	font-weight: normal;
	line-height: 1.7;
}
#main-button_in h5 {
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
section {
    margin-top: 3rem;
}

p {
	padding-right: 0em;
	padding-left: 0.2em;
	line-height: 1.9;
	padding-top: 0.7em;
	padding-bottom: 0.7em;
}

a { color: #666666; }
a:hover { text-decoration: none; color: #A51449; }


.contact-button a:hover {
    color: #fff;
    background-color: #9966ff;
}
ul {
	list-style-type: none;
}
ol {
	margin: 0px;
}
ol li {
	line-height: 1.7;
	margin-left: 25px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
}
img {
	max-width: 100%;
	height: auto;
}
.red {
	color: #FF3333;
}
.red_big,.red_big a {
	color: #FF3333;
	font-size: 1.1rem;
	font-weight: bold;
}
.text-center {
	text-align: center;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*-----------------------------------------------------------*/
body {
	/*background-image: url("../img/bg.gif");*/
	background-image: url("../img/bg-snow.png");
	background-repeat: repeat;
	margin: 0;
	padding: 0;
	font-size: .9rem;
	font-family: "メイリオ", sans-serif, "ヒラギノ角ゴ Pro W3", Arial, sans-serif;
}
header {
	position: relative;
/*	background-image: url("../img/header-bg.png");*/
/*	background-image: url("../img/header-bg-snow.png");*/
	background-image: url("../img/header-bg-newyear.png");
/*	background-image: url("../img/header-bg-hw.png");*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 70px;
	/*height: 200px;*/
}

.logo {
	position: absolute;
	top: -15px;
    left: 0;
	height: auto;
    width: 60%;
	max-width: 250px;
	z-index: 5;
}
.contents-wrap#home {
	background-image: url(https://www.pop-j.net/img/bg-photo.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.contents-wrap#info {
	background-image: url(https://www.pop-j.net/img/bg-photo2.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.contents-wrap#class {
	background-image: url(https://www.pop-j.net/img/bg-photo3.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.contents {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.85);
	padding-top: 50px;
    padding-bottom: 50px;
}
footer {
	background-image: url(../img/footer-bg.png);
    background-position: bottom;
    background-repeat: repeat-x;
	background-size: contain;
	z-index: 4;
	position: relative;
}
.footer-wrap {
	text-align: center;
	color: white;
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.copy {
    font-size: .7rem;
}
.address {
    font-size: .8rem;
}
.footer-nav {
    /* display: none; */
    font-size: .8rem;
}
.footer-nav a {
    color: white;
}
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 0;
}

.footer-menu li {
  list-style: none;
}

.footer-menu li + li::before {
  content: " | ";
  margin: 0 8px;
}

.footer-menu a {
  text-decoration: none;
}

/* ハンバーガーメニュー（スマホ用） */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    top: 25px;
    right: 10px;
    position: absolute; /* これはそのままでOK */
    z-index: 99999 !important; 
    pointer-events: auto !important;
	position: fixed;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ハンバーガーの開閉アニメーション */
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active div:nth-child(2) {
    opacity: 0;
}
.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- スマホ用ナビゲーション --- */
ul.main-navigation {
    /*display: none;*/ /* デフォルト非表示 */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;


    padding: 50px 20px 20px;
    overflow-y: auto; /* スクロール対応（スマホのみ適用） */
    transition: right 0.3s ease;
/*	align-items: center;*/
	list-style: none;
	z-index: 999;
	white-space: nowrap;
	margin: 0;
	box-sizing: border-box;
}
ul.main-navigation.active {
    display: flex;
    right: 0;
	gap: 2rem;
}

ul.main-navigation li a {
    padding: 10px;
}

ul.main-navigation > li > a {
    text-decoration: none;
    color: #99ccff;
/*    font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1.1rem);*/
	font-size: clamp(0.813rem, 0.479rem + 0.69vw, 1rem);
}
ul.main-navigation li > ul.sub-menu > li >a {
    text-decoration: none;
	color: #99ccff;
	font-size: clamp(0.813rem, 0.479rem + 0.69vw, 1rem);
}
ul.main-navigation li > ul.sub-menu > li >a:before {
    content: "▶";
    padding-right: .5rem;
}
/* サブメニュー（スマホ用、デフォルトは非表示） */
/*ul.main-navigation ul {
    display: none;
    padding-left: 20px;
    list-style: none;
}*/



/*飾りつきボックス*/
.contents-inner {
    padding-top: 5rem;
}

.frame {
  position: relative;
  padding-top: min(44px, 4.87vw);
  padding-bottom: min(44px, 4.87vw);
  max-width: 750px;
  margin: auto;
}
.frame-new {
    position: relative;
    padding-top: min(150px, 10vw);
    padding-bottom: min(150px, 10vw);
    max-width: 750px;
    margin: auto;
}
.frame-img {
    width: 100%;
    height: auto;
    display: block;
}
.frame#p-404 {
    max-width: 90%;
    background-color: white;
	height: calc(100vh - 240px);
}
#p-sub.frame {
    max-width: 90%;
    background-color: white;
	min-height: calc(100vh - 240px);
}

/* --- 上部柄（画像をそのまま100%） --- */
.border-top,
.border-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;        /* ← 画像比率で自動調整 */
  pointer-events: none;
/*  z-index: 3;*/
}

/* 上部の位置 */
.border-top {
  top: 0;
}

/* 下部の位置 */
.border-bottom {
  bottom: 0;
}


/* --- 中央の縦リピート柄 --- */
.border-center {
  position: absolute;
  top: min(44px, 4.87vw);
  bottom: min(44px, 4.87vw);
  left: 0;
  width: 100%;
  background-size: 100% auto;
  z-index: 1;
  pointer-events: none;
}

.border-center.border-b {
  background: url("../img/02.png") repeat-y center top;
  background-size: 100%;
}

/* --- 中央の縦リピート柄 --- */
.border-center.border-new {
    position: absolute;
    top: min(160px, 19vw);
    bottom: min(150px, 16vw);
    left: 0;
    width: 100%;
    background: url(../img/whatsnew-border.png) repeat-y center;
    background-size: 100% auto;
    z-index: 1;
    pointer-events: none;
}
/* --- 中央の縦リピート柄 --- */
.border-center.border-y {
    background: url(../img/yellow-02.png) repeat-y center;
	background-size: 100%;
}
/* --- 内側コンテンツ --- */
.frame-inner {
  position: relative;
  z-index: 1;
  width: 85%;
  margin: auto;
}
.frame-new .frame-inner {
    width: 65%;
    min-height: 100px;
}

/*トップページ*/

.studio-concept {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
	width: 80%;
	margin: 3rem auto;

}
.character-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.character img {
    display: block;
    margin: auto;
}
.character p {
    font-size: .8rem;
}

.iframe {
	min-height: 30vh;
	width: 100%;
	max-width: 490px;
	padding: 0px;
	margin: -2% 0;
}


#price ul {
    padding-left: 0;
}
#price ul li {
    position: relative;
    padding-left: 1rem;
}
#price ul li::before {
    content: "*";
    position: absolute;
    left: 0;
}


/* 一覧 */

.instructor_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.instructor_name {
	font-weight: bold;
    font-size: 1.1rem;
	display: block;
}
.instructor_class {
	font-size: 12px;
	display: block;
}

.instructor_prof {
    background-color: #242424;
    display: inline-block;
    padding: 5px 10px;
    margin-top: .5rem;
    color: white;
    font-size: 12px;
}
a:hover .instructor_prof {
    background-color: #A51449;
}
.instructor_list {
    display: flex;
    justify-content: center;
}
.instructor_list:nth-of-type(3) {
    grid-column: 1 / -1;
}
.instructor_card {
  text-align: center;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.instructor_card img {
  width: 200px;
  transition: transform 0.3s;
}

.instructor_card:hover img {
  transform: scale(1.05);
}

/*.instructor_card .name {
  margin-top: 10px;
  font-weight: bold;
}*/

/* モーダル全体 */
.instructor-modal {
display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

/* モーダル本体 */

body.modal-open {
  overflow: hidden;
}


.instructor-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 3px;
  background: #99ccff;
  scrollbar-width: thin;
}

/* 閉じるボタン */
.instructor-modal .modal-close {
      background-color: inherit;
    color: #000;
    display: flex;
    justify-content: right;
    position: absolute;
    right: 10px;
    top: 10px;
}



/* 背景（下） */
#instructor .modal-overlay {
display: none;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* 閉じるボタン */
#instructor .modal-content img {
  width: 150px;
  display: block;
  margin: 0 auto;
}

#instructor .modal-content h2 {
  text-align: center;
  margin-bottom: 10px;
}


/* アニメーション */
@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}


/*-----------------
  table
-------------------*/
.tbl_price1 table {
	font-size: 15px;
	border-collapse: separate;
    border-spacing: 1px;
	margin: 0;
}
.tbl_price1 td, .tbl_price1 th {
	padding: 8px;
	text-align: center;
	border: none;
}
.tbl_price1 th {
	background-color: #DFD0FF;
}
.tbl_price1 td {
	background-color: #FFFFFF;
}
.tbl_price1 tr .other {
	font-size: 13px;
}
.tbl_price1.price {
	background-color: #96F;
}
.tbl_price1.little {
	background-color: #FF3A3A;
}

.tbl_price1.little th {
	background-color: #FFDFDF;
	width: 30%;
}

.tbl_price1.little td {
	background-color: #FFFFFF;
}

.tbl_price1.kids {
	background-color: #FF9900;
}
.tbl_price1.kids th {
	background-color: #FFE0B3;
	width: 30%;
}
.tbl_price1.kids td {
	background-color: #FFFFFF;
}


.tbl_price1.adult {
	background-color: #0059B2;
}

.tbl_price1.adult th {
	background-color: #E6F2FF;
}

.tbl_price1.adult td {
	background-color: #FFF;
}


.tbl_price1.pilates {
	background-color: #B789B9;
}
.tbl_price1.pilates th {
	background-color: #EEE3EE;
}
.tbl_price1.pilates td {
	background-color: #FFFFFF;
}

div.ticket {
	margin: 0 auto;
	width: 98%;
	background-color: #FFC1A4;
	padding: 15px;
	margin-bottom: 2rem;
	box-sizing: border-box;
}
div.ticket h4 {
	font-size: 15px;
	text-align: center;
	font-weight: bold;
	color: #F00;
	padding-bottom: 10px;
	padding-top: 10px;
}
div.ticket h5 {
	text-align: left;
	padding-left: 45px;
}
div.ticket p {
	line-height: 1.5;
}

.tbl_ticket {
    width: 90%;
    margin: auto;
}
.tbl_ticket table {
	font-size: 15px;
	width: 90%;
	margin: 10px auto;

}
.tbl_ticket td, .tbl_ticket th {
	padding: 8px;
	text-align: center;
	border: none;
}
.tbl_ticket th {
	background-color: #FFF3EE;
}
.tbl_ticket td {
	background-color: #FFFFFF;
}
.tbl_ticket th.other {
	font-size: 12px;
}

.access-wrap {
    display: grid;
/* 	text-align: center;
   grid-template-columns: 1fr 1fr;*/
}
.access-img {
    justify-self: center;
}
.tbl_schedule {
	font-weight: bold;
	color: #333;
	background-color: #FFE;
	width: 100%;
	border: 1px solid #00004F;
	border-collapse:collapse;
	font-size: 13px;
}
.tbl_schedule td, .tbl_schedule th {
	text-align: left;

	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	line-height: 15px;
	background-color: white;
}
.tbl_schedule th {
	/*vertical-align: top;*/
	background-color: #EBEBEB;
}
.tbl_schedule td.time {
	padding-right: 0px;
	padding-left: 0px;
}
.tbl_schedule th.week_mon.week {
    background-color: #fff000;
}
.tbl_schedule th.week_tue.week {
    background-color: #006834;
}
.tbl_schedule th.week_wed.week {
    background-color: #036eb8;
}
.tbl_schedule th.week_thu.week {
    background-color: #e73828;
}
.tbl_schedule th.week_fri.week {
    background-color: #f8b62c;
}
.tbl_schedule th.week_sat.week {
    background-color: #5f1885;
}
.tbl_schedule th.week_sun.week {
    background-color: #c20d22;
}
.tbl_schedule th.week:not(.week_mon){
    color: white;
}

@media (min-width: 768px){
.tbl_schedule th.week_mon {
    background-color: #fff000;
}
.tbl_schedule th.week_tue {
    background-color: #006834;
}
.tbl_schedule th.week_wed {
    background-color: #036eb8;
}
.tbl_schedule th.week_thu {
    background-color: #e73828;
}
.tbl_schedule th.week_fri {
    background-color: #f8b62c;
}
.tbl_schedule th.week_sat {
    background-color: #5f1885;
}
.tbl_schedule th.week_sun {
    background-color: #c20d22;
}
.tbl_schedule th:not(.week_mon) {
    color: white;
}
}

/*
.tbl_schedule th.week_mon {
	background-color: #CBFFB3;
}
.tbl_schedule th.week_tue {
	background-color: #FFD2D2;
}
.tbl_schedule th.week_wed {
	background-color: #FFEAAA;
}
.tbl_schedule th.week_thu {
	background-color: #FF97FF;
}
.tbl_schedule th.week_fri {
	background-color: #D2E4FF;
}
.tbl_schedule th.week_sat {
	background-color: #DCB9FF;
}
.tbl_schedule th.week_sun {
	background-color: #FFB786;
}*/
.tbl_schedule td img {
	vertical-align: middle;
	display: inline-block;
	margin-left: 5px;


}
.tbl_schedule td.kids_time {
	background-color: #FF4293;
}
.tbl_schedule td.kids_time2 {
	background-color: #F58DB7;
}
.tbl_schedule td.student_time {
	background-color: #66C7EA;
}
.tbl_schedule td.mama_time {
	background-color: #FC0;
}
.tbl_schedule td.gold_time {
	background-color: #FC0;
}
.tbl_schedule td.pilates_time {
	background-color: #7EC684;
}
.tbl_schedule td.other_time {
	background-color: #EBEBEB;
}
.tbl_schedule th.thin {
	vertical-align: top;
	/* [disabled]font-weight: normal; */
	color: #FFF;
	background-color: #00004F;
}
.tbl_schedule td.num {
    text-align: center;
}
.tbl-wrap {
	display: grid;
	margin-bottom: 2rem;
}
.tbl_age {
	margin-right: 15px;
	color: #333;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 1rem;
}
.tbl_age td {
	padding-right: 15px;
}
.tbl_division {
	margin-right: 15px;
	color: #333;
	font-weight: bold;
	font-size: 12px;
}

.btn-wrap {
    text-align: center;
    margin: 2rem auto;
}


.class_info {
	display: grid;
	gap: 30px;
}
.class-h5 {
	display: block;
	min-height: 30px;
	font-family: 'M PLUS 1p', sans-serif;
	text-align: center;
	color: #fff;
	margin: 1rem 0;
}
.h5bg-lp {
	background-image: url("../img/h5_lp.jpg")
}
.h5bg-pb {
	background-image: url("../img/h5_pb.jpg")
}
.h5bg-bp {
	background-image: url("../img/h5_bp.jpg")
}
.h5bg-s {
	background-image: url("../img/h5_s.jpg")
}
.h5bg-b {
	background-image: url("../img/h5_b.jpg")
}
.h5bg-gy {
	background-image: url("../img/h5_gy.jpg")
}
.h5bg-p {
	background-image: url("../img/h5_p.jpg")
}
.h5bg-y {
	background-image: url("../img/h5_y.jpg")
}
.h5bg-r {
	background-image: url("../img/h5_r.jpg")
}
.font-l,.font-r {
	text-shadow: 2px 2px 3px #1c1c1b;
	font-size: 1.3rem;
	font-weight: 800;
}

.font-s {
	text-shadow: 2px 2px 3px #1c1c1b;
	font-size: .9rem;
	font-weight: bold;
}

/*ピラティス*/
#pilates .contents {
    background-color: rgb(255,255,255,0.85);
}

#pilates h1,#movie h1 {
	font-family: 'Mystery Quest', cursive;
	font-weight: normal;
	margin-bottom: 5rem;
}
#movie h1 span {
	display: block;
}
#pilates h2 {
    margin-bottom: 2rem;
    margin-top: 2rem;
}
#pilates h2:has(img) {
    margin-top: 0;
}
#pilates .frame {
	max-width: 1000px;
}
#pilates .frame-inner {
  width: 96%;
  margin: auto;
}

#pilates h5 {
    font-size: 15px;
    margin-top: 1rem;
	margin-bottom: 1rem;
}
#pilates h5.modal-title {
	margin-top: 0;
}
.lesson_container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.lesson_wrap {
	position: relative;
}

#p-pilates .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 999;
}

#pilates .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
    margin: .25rem;
    background-color: #868686;
    padding: .75rem;
    border-radius: 5px;
    color: white;
}
.card-img-overlay{
	font-size: .9rem;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.1;
	display: block;
	border-bottom: none;
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
	color: white;
	text-align: center;
}
#pilates .modal-header{
	font-size: .9rem;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.1;
	display: block;
	border-bottom: none;
    padding: 1rem;
	color: #000;
	text-align: center;
}
@media (max-width: 767px){
.card-img-overlay,
#pilates .modal-header{
    padding: .5rem 1rem;
	font-size: .6rem;
}
}

#pilates .modal-header div {
	text-align: right;
}
.card-img-overlay span,
#pilates modal-title span{
	font-family: 'Mystery Quest', cursive;
}
/*.card-img-overlay span:first-of-type {
    font-size: calc(1.1rem + .6vw) !important;
}*/
h5.modal-title {
    font-size: 1.25rem;
}
#pilates .modal-body {
	font-size: .9rem;
}
.more {
	position: absolute;
    right: 0;
    bottom: 0;
    padding: 1rem;
	font-family: 'Mystery Quest', cursive;
}
.more img {
	vertical-align: text-bottom;
}
.modal-box {
    background-image: url("../img/pilates/butterfly.png");
    background-repeat: no-repeat;
    background-position: top;
    z-index: 99;
}

@media (max-width: 767px){
#pilates .modal-box {
	background-size: 80%;
}
}
#pilates .modal-content {
    background-image: url(../img/pilates/bg-card.png);
    background-position: bottom left;
    background-size: 40%;
    background-repeat: no-repeat;
    background-color: #fff3e5;
	border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
	padding: .75rem;
}
@media (max-width: 767px){
#pilates .modal-content {
    background-size: 70%;
}
}
.modal-footer {
	border-top: none;
	display: flex;
	justify-content: flex-end;
	padding: .75rem;
}



.box_pilates {
	margin-top: 3rem;
/*    background-color: #f9def9;*/
	background-color: #5f7dc54f; /*snow*/
    padding: 18px 20px 60px;
	border-radius: 15px;
}
.concept {
  max-width: 400px;
  margin: 0 auto;
}

.concept strong {
  display: block;
}

.concept strong:first-child {
  text-align: left;
}

.concept strong:last-child {
  text-align: right;
}


.icon_wrap {
    display: flex;
    gap: 3px;
}
.icon{
  height:20px;
  width:20px;
  border-radius:50%;
  line-height:20px;
  text-align:center;
  color: #fff;
  font-size: 12px;
  margin: .1rem;
}
.icon01 {
	background-color: #239105;
}
.icon02 {
	background-color: #ff0404;
}
.icon03 {
	background-color: #ff9f0e;
}
.icon01-text {
	color: #239105;
}
.icon02-text {
	color: #ff0404;
}
.icon03-text {
	color: #ff9f0e;
}
.mini-calendar table{
	background-color: white;
	width: 100%;
}

.mini-calendar .calendar-head{
	text-align: center;
}

.mini-calendar .calendar-year-month{
	font-size: 1.2rem;
}

.mini-calendar .calendar-labels {
	padding: 5px;
}
.mini-calendar th {
	text-align: center;
	background-color: #eee;
}
	.mini-calendar td {
	height: auto;
	vertical-align: top;
	font-size: .8rem;
}
/* 日付 */

.mini-calendar td .calendar-day-number {
	font-weight: normal;
	padding: 7px;
	font-size: 18px;

}

.mini-calendar .calender-label-green {
	background-color: #C0EACC; 
	border-radius: 5px; 
	border:1px solid #5dbf76; 
	padding: 2px;
}
.mini-calendar .calender-label-pink {
	background-color: #FDCEE4;
	border-radius: 5px;
	border: 1px solid #F74096;
	padding: 2px;
}
.mini-calendar .calendar-labels {
	padding: 5px;
}
.mini-calendar .label {
	margin: 2px;
	display: block;
}
.d-inline-flex {
	display: inline-flex;
}


.instructor_wrap {
    display: grid;
    /* grid-template-columns: 1fr 2fr; */
    gap: 30px;
}
.circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}	
.instructor_img {
    text-align: center;
}



#movie .movie_wrap {
    display: grid;
    gap: 30px;
	/*grid-template-columns: repeat(3, 1fr);*/
}
#movie iframe.movie-item {
    max-width: 100%;
    aspect-ratio: 16 / 9;
}
/*CONTACT*/


table.mailform th,
table.mailform td {
	padding-: 15px 10px;
}
.wpcf7-spinner {
	display: none;
}
textarea {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
input[type="text"],input[type="tel"],input[type="email"],select  {
    width: 100%;
    padding: 10px;
	box-sizing: border-box;
}
input[type="radio"],input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.wpcf7 .wpcf7-submit:disabled {
    background-color: #aaa;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #dc3232;
    background-color: #ffffffa6;
}
input[type="submit"] {
    background-color: #9966ff;
    padding: 8px 100px;
    border-radius: 30px;
    color: white;
    border: none;
    font-size: 1rem;
	cursor: pointer;
}
.contact_footer {
	margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
}
.contact_footer .grid-full {
    grid-column: 1 / -1;
}


/* トップへ戻るボタン */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #333;
  color: #fff;
  padding: 13px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
	border-radius: 50%;
	text-align: center;
	line-height: 1;
}

/* 表示状態 */
.pagetop.show {
  opacity: 1;
  visibility: visible;
}

/* ホバー（任意） */
.pagetop a:hover {
  color: #fff;
}

/*MEMBER ページ*/
h1.password-title {
	text-align: center;
}
form.post-password-form {
    justify-items: center;
}
form.post-password-form input[type="password"] {
    display: block;
    margin-bottom: 1rem;
    width: 210px;
    line-height: 2;
}
.wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
    width: 80%;
    max-width: 400px;
}
@media only screen and (max-width : 767px) {
.sp-block {
	display: block;
}
.sign-wrap {
	display: none;
}
.studio-concept .grid-full {
    grid-column: 1 / -1;
}
.pctab {
	display: none;
}
.sp {
	display: block;
}
ul.main-navigation {
	    background: #333;
}
ul.main-navigation > li > ul.sub-menu {
	margin-top: 1rem;
}
ul.main-navigation li.open > ul.sub-menu {
	/*display: block;*/ /* `open` クラスが付いたら表示 */
}
ul.main-navigation > li > ul.sub-menu > li {
    padding: 12px 0;
}
.footer-nav,footer .address {
	display: none;
}

.tbl_schedule td, .tbl_schedule th {
    display: block;
}
.tbl_schedule td.num {
    display: none;
}
.tbl_schedule th.week {
    background-color: #f3f3f3;
    text-align: center;
    border-top: 1px solid;
	color: #000;
}
.tbl_schedule th.week_mon.week {
    border-top: none;
}
table.mailform th,
table.mailform td {
	display: block;
	box-sizing: border-box;
}

.tbl_price1 table,
  .tbl_price1 tbody,
  .tbl_price1 tr {
    display: block;
    width: 100%;
  }

  /* th行はスマホでは非表示 */
  .tbl_price1 th {
    display: none;
  }

  .tbl_price1 td {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    margin-bottom: 2px;
    font-size: 1.05em;
    text-align: right;
    position: relative;
	box-sizing: border-box;
  }

  /* data-label を表示 */
  .tbl_price1 td::before {
      content: attr(data-label);
  position: static;   /* ← absoluteをやめる */
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  text-align: left;
  }


.modal-dialog.modal-dialog-centered {
	background-size: 80%;
}


.modal-content {
    background-size: 70%;
}
}

@media only screen and (min-width : 768px) {


.pctab {
	display: block;
}
.sp {
	display: none;
}
header {
	height: 10vh;
}
.logo {
	left: 0;
	z-index: 3;
	max-width: 280px;
    height: auto;
}
.sign-wrap {
    position: relative;
    height: 100%;
    width: 90%;
	max-width: 1200px;
	margin: auto;
}

img.sign-img {
    width: auto;
    max-height: 10vh;
    position: absolute;
    right: 0;
    top: 0;
}
.link01 {
    width: 13%;
    height: 15%;
    right: 5%;
    top: 40%;
}
.link02 {
    width: 13%;
    height: 21%;
    right: 5%;
    top: 62%;
}
a.sign-link {
    position: absolute;
    display: block;
}
@media (hover: hover) and (pointer: fine) {
  .sign-wrap:hover .sign-img {
    content: url("../img/sign02.png");
  }

}


/* ハンバーガーメニューは非表示 */
.hamburger {
	display: none;
}
.g-nav_wrap {
	background-image: url("../img/nav-bg.png");
	background-repeat: repeat-x;
	background-size: contain;
	height: 65px;
	z-index: 2;
	position: relative;
}
.g-nav_wrap,
.main-navigation {
    z-index: 2;
}
/* PC用ナビゲーション */
ul.main-navigation {
	display: flex;
	flex-direction: row;
	justify-content: right;
/*	gap: 10px;*/
	height: 50px;
	list-style: none;
	padding: 25px 3% 0 25px;
	position: static;
	overflow-y: visible; /* スクロールバーを無効化 */
	width: 100%;
}

ul.main-navigation.active {
	right: auto; /* スマホ用の `active` を無効化 */
}

ul.main-navigation li {
	position: relative;
}
ul.main-navigation > li > a {
	font-family: "Arial Black", Meiryo, sans-serif;
}
/* サブメニュー */
ul.main-navigation > li > ul.sub-menu {
	display: none;
	position: absolute;
	top: 28px;
	left: 0;
	background: #dcf3ffe8;
	list-style: none;
	padding: 10px 0;
	z-index: 1000;
	min-width: 150px;
}

/* ホバーでサブメニュー表示 */
ul.main-navigation li:hover > ul.sub-menu {
	display: block;
	z-index: 9999;
}
@media (hover: hover) and (pointer: fine) {
  ul.main-navigation li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
  }

}
ul.main-navigation li > ul.sub-menu > li {
	padding: 5px 20px;
}
ul.main-navigation li > ul.sub-menu > li >a {
    color: #000;
}
ul.main-navigation li > ul.sub-menu > li >a:hover {
	color: #D7083F;
}
.contents {
    margin-top: -10px;
	    padding-bottom: 150px;
}
footer {
	margin-top: -180px;
	height: 180px;
}




.studio-concept {
    margin-top: 3rem;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 3fr 1fr;
    width: 80%;
    max-width: 780px;
    margin: auto;
}
.studio-concept > :nth-child(1) { order: 2; }
.studio-concept > :nth-child(2) { order: 1; }
.studio-concept > :nth-child(3) { order: 3; }
.instructor_container {
    gap: 50px 30px;
}


div.ticket p {
	text-align: center;
	line-height: 1.5;
}


.class_info {
	display: grid;
	grid-template-columns:  1fr 1fr;
}
.tbl-wrap {
	display: grid;
	grid-template-columns:  1fr 1fr;
}
.access-wrap {
    grid-template-columns: 1fr 1fr;
}

.mini-calendar table {
	table-layout: fixed;
	width: 100%;
}
.mini-calendar td {
	background-color: #fff;
}
.mini-calendar td.calendar-holiday,
.mini-calendar td.calendar-sun {
	background-color: #FBEAEA;
}
.mini-calendar td.calendar-sat {
	background-color: #E2F4FE;
}

.tbl_schedule td, .tbl_schedule th {
	border: 1px solid #00004F;
}


table.mailform th,
table.mailform td {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000066;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

#movie .movie_wrap {
    display: grid;
    gap: 30px;
	grid-template-columns: repeat(3,1fr);
}
}

@media only screen and (min-width : 820px) {
header {
	height: 130px;
}

img.sign-img {
    max-height: 130px;

}
}
@media only screen and (max-width : 1023px) {
    .mini-calendar thead {
        display: none;
    }
    .mini-calendar th,
    .mini-calendar td {
        display: block;
        width: 100%;
        padding: 0;
    }
    .mini-calendar td {
        height: auto;
        display: -webkit-flex;
        display: flex;
    }
    .mini-calendar .calendar-none {
        display: none
    }
 
    .mini-calendar .calendar-labels {
        padding: 5px;
    }
    .mini-calendar [class*=calender-label] {
        /*display: inline-block;*/
        padding: 5px;
        margin-top: 0;
        margin-right: 5px;
        font-size: 12px;
    }
 
    /* 日付 */
    .mini-calendar td .calendar-day-number {
        font-weight: normal;
        padding: 7px;
        font-size: 18px;
        display: block;
        background: #f2e6cd;
        margin-bottom: 0;
        height: auto;
		width: 70px;
    }
    .mini-calendar td.calendar-holiday .calendar-day-number,
    .mini-calendar td.calendar-sun .calendar-day-number {
        background: #f8c7c7;
    }
    .mini-calendar td.calendar-sat .calendar-day-number {
        background: #c8ebfe;
    }
    /* モバイル用曜日を追加 */
    .mini-calendar td i:after {
        font-size: 12px;
        position: relative;
        left: -5px;
    }
    .mini-calendar td:nth-child(1) i:after {
        content: "（日）";
    }
    .mini-calendar td:nth-child(2) i:after {
        content: "（月）";
    }
    .mini-calendar td:nth-child(3) i:after {
        content: "（火）";
    }
    .mini-calendar td:nth-child(4) i:after {
        content: "（水）";
    }
    .mini-calendar td:nth-child(5) i:after {
        content: "（木）";
    }
    .mini-calendar td:nth-child(6) i:after {
        content: "（金）";
    }
    .mini-calendar td:nth-child(7) i:after {
        content: "（土）";
    }
}	

@media only screen and (min-width : 1024px) {

.logo {
	width: 80%;
	max-width: 300px;
    height: auto;
}
.g-nav_wrap {
	height: 73px;
}
.main-navigation {
	/*gap: 20px;*/
}
ul.main-navigation {
	justify-content: center;
	padding: 25px 0 0 25px;
}

.iframe {
	margin: -6% 0;
}

.box_pilates p {
    /*text-align: center;*/
}
.instructor_wrap {
	grid-template-columns: 1fr 2fr; 
}

.lesson_container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
}


@media only screen and (min-width : 1224px) {
header {
	height: 200px;
}
.logo {
	left: 7%;
	width: 100%;
	max-width: 500px;
    height: auto;
	top: -25px;
}
img.sign-img {
    max-height: 200px;
}
.link01 {
    right: 7%;
}
.link02 {
    right: 7%;
}
}
