@charset "UTF-8";
/*
Theme Name: memore misato
Description: memore misato
*/

/* ===============================================
# 共通
=============================================== */

:root {
  --text-color: #333;
  
  /* 背景 */
  --bg-white: #fff;

  --pink1: #FFF7F8;
  --pink2: #EF99A2;

  --green1: #E6F2ED;
  --green2: #57A383;
  --green3: #15473E;

  --gray1: #808080;
  --gray2: #eee;
  --gray3:#D1D1D1;
  

  /* フォント */
  --font-en: "Montserrat", sans-serif;
  --font-main: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;

}


body,html {
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.6;
  box-sizing: border-box;
  font-weight: 400;
}

.inner {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

.contents {
  margin-bottom: 180px;
}

a {
  cursor: pointer;
}

/* タイトル */
.sec_ttl {
  text-align: center;
  margin-bottom: 60px;
}

.sec_ttl h2 {
  color: var(--pink2);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}

.sec_ttl span {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 420;
  color: var(--gray1);
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.bold {
  font-weight: 700;
}

.br {
  white-space: pre-wrap;
}

/* ボタン */
.btn {
  text-align: center;
}

.btn a {
  padding: 15px 25px;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
  /*アニメーションの指定*/
  transition: ease .2s;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.btn a:hover {
  opacity: 0.7;
}

.pink_btn a {
  background: var(--pink2);
}

.green_btn a {
  background: var(--green2);
}

.pink_btn a i,
.green_btn a i {
  padding-left: 10px;
}

/* hoverした時画像拡大 */
/* a:hover imgにtransform: scale(1.1)を個別で追加必要 */
.scale {
  display: inline-block;
  line-height: 0;
  overflow: hidden;/*拡大してはみ出る要素を隠す*/
  position: relative;
  z-index: 1;
}

.scale img {
  transform: scale(1);
	transition: .3s ease-in-out;
  overflow: hidden;
}

/* 左右の花の装飾 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
  content: "";
}

.absolute img {
  width: 100%;
}

.flower1_absolute {
  top: -350px;
  right: 0;
  width: 250px;
  height: 376px;
}

.flower2_absolute {
  top: -300px;
  left: 0;
  width: 220px;
  height: 486px;
}

.flower3_absolute {
  top: -220px;
  right: 0;
  width: 250px;
  height: 308px;
}

.flower4_absolute {
  top: -170px;
  left: 0;
  width: 250px;
  height: 262px;
}

.flower5_absolute {
  top: -230px;
  right: 0;
  width: 200px;
  height: 208px;
}

/* ===============================================
# header
=============================================== */
header {
  background: var(--pink1);
}

header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4%;
}

header h1 img {
  width: 250px;
}

header nav ul {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

header nav a {
  font-size: 18px;
  font-weight: 450;
  font-family: var(--font-en);
}

/* navの下線にアニメーション（footerも） */
header nav .header_link,
footer nav .footer_link {
  position: relative;
  padding: 5px;
  display: inline-block;
}

header nav .header_link::after,
footer nav .footer_link::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--pink2);
  bottom: 0;
  left: 0;
  /*横方向0で非表示にする*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*中央を基点にアニメーション*/
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header nav .header_link:hover::after,
footer nav .footer_link:hover::after {
  /*横方向等倍まで拡大*/
  transform: scale(1, 1);
}

header nav .header_link {
  padding: 5px;
}

header nav .header_btn {
  border-radius: 100px;
  /* border: 1px solid var(--text-color); */
  /* background: #FFF; */
  color: #fff;
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  transition: ease .2s;
}

header nav .header_btn a {
  padding: 7px 20px;
}

header nav .header_btn:hover {
  opacity: 0.8;
}

header nav .header_btn-p {
  background: var(--pink2);
}

header nav .header_btn-g {
  background: var(--green2);
}

/*ボタン内spanの形状*/
header nav .header_btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

/* header nav .header_btn:hover span {
	color:#fff;
} */

/*== 背景が流れる（斜め） */
.bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:var(--green1);
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}



/* ===============================================
# mv
=============================================== */
#mv .mv_inner {
  padding: 50px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mv .mv_ttl {
  width: 35%;
}

#mv .mv_ttl h1 {
  text-align: center;
  margin-bottom: 40px;
}

#mv .mv_ttl h1 img {
  width: 450px;
}

#mv .mv_ttl p {
  color: var(--pink2);
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

#mv .mv_slider {
  width: 65%;
  position: relative;
}

#mv .mv_slider::before {
  position: absolute;
  content: "";
  width: 209px;
  height: 193px;
  background: url(./image/mv-clover.png) no-repeat center center/cover;
  z-index: 50;
  top: -20px;
  left: -20px;
}

#mv .mv_slider::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 211px;
  background: url(./image/mv-leaf.png) no-repeat center center/cover;
  z-index: 2;
  bottom: -10px;
  right: -20px;
}

/* ===============================================
# コンセプト
=============================================== */
#concept p {
  text-align: center;
}

#concept p:first-child {
  margin-bottom: 20px;
}


/* ===============================================
# イベント情報 メンバー一覧
=============================================== */
#top_event, #top_member {
  position: relative;
  padding: 0 0 5px;
  margin-bottom: 100px;
}

#top_event::after, #top_member::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: -1;
  width: 100%;
}

#top_event::after {
  height: 415px;
  background: var(--green1);
}

#top_event .top_event-items,
#top_member .top_member-items {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  text-align: center;
  margin-bottom: 50px;
}

#top_event .top_event-items .top_event-list {
  text-align: center;
  width: 30%;
}

#top_event .top_event-items .top_event-list a,
#top_member .top_member-items .top_member-list a {
  transition: 0.2s;
}


#top_event .top_event-items .top_event-list a:hover {
  opacity: 0.8;
}

#top_event .top_event-items .top_event-list .scale {
  width: 100%;
  max-width: 280px;
  max-height: 280px;
  border-radius: 50%;
  margin-bottom: 20px;
}

#top_event .top_event-items .top_event-list img {
  width: 100%;
  max-width: 280px;
  max-height: 280px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}


#top_event .top_event-items .top_event-list a:hover img,
#top_member .top_member-items .top_member-list a:hover img {
  transform: scale(1.1)
}

#top_event .top_event-items .top_event-list .event_body,
#top_member .top_member-items .top_member-list .member_body {
  text-align: center;
}

#top_event .top_event-items .top_event-list time {
  text-align: center;
  color: var(--gray1);
  font-size: 16px;
  margin-bottom: 10px;
}

#top_event .top_event-items .top_event-list p {
  text-align: center;
  font-size: 16px;
}

/* メンバーのみ */
#top_member::after {
  height: 315px;
  background: var(--pink1);
}

#top_member .top_member-items .top_member-list {
  text-align: center;
  width: 25%;
}

#top_member .top_member-items .top_member-list .scale {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  margin-bottom: 15px;
}

#top_member .top_member-items .top_member-list img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}


/* ===============================================
# コミュニティー
=============================================== */
#community ul {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  counter-reset: num;

}

#community ul li {
  display: flex;
  align-items: center;
  column-gap: 3%;
}

#community ul li:nth-child(even) {
  flex-direction: row-reverse;
}

#community ul li img {
  width: 40%;
}

#community ul li .community_body {
  width: 60%;
}

#community ul li .community_body h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  margin-left: -85px;
}

#community ul li .community_body h3::before {
  position: relative;
  content: "";
  font-size: 100px;
  color: var(--green1);
  z-index: -1;
  top: 10px;
  left: 80px;
  counter-increment: num;
  content: "0"counter(num);

}

#community ul li .community_body span {
  color: var(--gray1);
  font-size: 14px;
}

#community ul li .community_body .btn {
  margin-top: 27px;
  text-align: right;
}


/* ===============================================
# メンバー紹介
=============================================== */

/* instructor共通 */
.instructor h4 {
  text-align: center;
  color: var(--green3);
}

#top_instructor ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 59px 30px;
  margin-bottom: 60px;
}

#top_instructor ul li{
  transition: 0.6s;
}

#top_instructor ul li:hover{
  transform: scale(1.1);
}

#top_instructor ul li img {
  width: 320px;
  height: 220px;
  margin-bottom: 15px;
  border-radius: 5px;
  object-fit: cover;
}

#top_instructor ul li p {
  text-align: center;
}

.instructor_btn i {
  margin-left: 5px;
}

/* モーダル */
.remodal {
  border-radius: 5px;
}

.remodal img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ===============================================
# 代表のコメント
=============================================== */
#comment .comment_container {
  display: flex;
  align-items: flex-start;
  column-gap: 5%;
}

#comment .comment_container img {
  width: 40%;
}

#comment .comment_body {
  width: 55%;
}

#comment .comment_body p:nth-child(2) {
  text-align: right;
  margin-top: 31px;
}

/* ===============================================
# インスタ
=============================================== */
.insta .btn {
  margin-top: 40px;
}

/* ===============================================
# お知らせ
=============================================== */
/* お知らせ共通 */
.m_news-link {
  display: flex;
  align-items: center;
  column-gap: 20px;
  transition: 0.2s;
}

.m_news-link:hover {
  opacity: 0.8;
}

.m_news-list {
  display: flex;
  align-items: center;
}

.m_news-list:first-child {
  width: 18%;
  column-gap: 15px;
}

.m_news-list:last-child {
  width: 80%;
}

.m_news-list .news_cat-name,
.post .post_list .news_cat-name,
aside .aside_list .news_cat-name {
  width: 60px;
  border-radius: 5px;
  text-align: center;
  padding: 5px 0;
}

.m_news-list .info,
.post .info,
.aside_list .info {
  background: yellow;
}

.m_news-list .blog,
.post .blog,
.aside_list .blog {
  background: skyblue;
}

.news_date {
  width: 55%;
}

.news_ttl {
  width: 95%;
}

.news_cat-name {
  font-size: 10px;
}

.news ul li {
  padding: 30px 0;
}

.news ul li:not(:last-child) {
  background-image: linear-gradient(to right, #808080, #808080 6px, transparent 6px);
  background-size: 14px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

#top_news .btn {
  margin-top: 60px;
}

/* ===============================================
# CTA
=============================================== */
.cta .inner {
  padding: 50px 56px;
  background: var(--gray2);
  box-sizing: border-box;
}

.cta h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.cta .cta_container {
  display: flex;
  justify-content: space-between;
}

.cta .cta_container .cta_mail,
.cta .cta_container .cta_line {
  width: 40%;
  background: var(--bg-white);
  padding: 37px;
}

.cta .cta_container .cta_mail p,
.cta .cta_container .cta_line p {
  text-align: center;
}

.cta .cta_container .cta_mail .btn {
  margin-bottom: 32px;
}

.cta .cta_container .cta_mail .cta_ttl {
  margin-bottom: 30px;
}

.cta .cta_container .cta_line .cta_ttl {
  margin-bottom: 16px;
}

.cta .cta_container .cta_line .cta_line-item {
  display: flex;
  column-gap: 5%;
  justify-content: center;
}

.cta .cta_container .cta_line .cta_line-item .line_body {
  width: 45%;
}

.cta .cta_container .cta_line .cta_line-item .line_body p {
  margin-bottom: 18px;
  text-align: center;
}

.cta .cta_container .cta_line .cta_line-item .line_body img:hover {
  opacity: 0.7;
}

.cta .cta_container .cta_line .cta_line-item .line_qr {
  width: 119px;
  height: 119px;
  aspect-ratio: 1/1;
}

/* ===============================================
# page-top
=============================================== */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 50px;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-align: center;
  background: var(--green2);
  color: #fff;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-sizing: border-box;
}

#page_top:hover {
  opacity: 0.7;
}

/* ===============================================
# footer
=============================================== */
#footer {
  background: url(./image/footer_bg.png) no-repeat center center/cover;
}

#footer .footer_inner {
  text-align: center;
  padding: 48px 60px
}

#footer h1 {
  text-align: center;
  margin-bottom: 15px;
}

#footer h1 img {
  width: 300px;
}

#footer .footer_logo {
  width: 200px;
  margin-bottom: 20px;
}

#footer .footer_nav .footer_nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-en);
  font-weight: 450;
  margin-bottom: 60px;
}

#footer small {
  color: var(--gray1);
  font-size: 14px;
}

/* ===============================================
# 下層ページ
=============================================== */
/* ===============================================
# 共通
=============================================== */
.bg-w {
  background: var(--bg-white);
}

.sub_mv .sub_mv-inner {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.sub_mv .sub_mv-contents {
  margin-bottom: 60px;
}

.sub_mv h2 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  padding: 0 40px;
}

.sub_mv h2::before,
.sub_mv h2::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
}

.sub_mv h2::before {
  left: -20px;
}

.sub_mv h2::after {
  right: -20px;
}

/* パンくず */
.breadcrumb {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 20px 5% 40px;
  flex-wrap: wrap;
}

.breadcrumb span {
  padding: 5px;
  font-size: 14px;
}

/* ===============================================
# イベント お知らせ共通
=============================================== */

aside .aside_list-date,
aside .aside_list-head {
  font-size: 16px;
}

aside .aside_body ul li a {
  transition: 0.2s;
}

.post .post_list a:hover,
aside .aside_body ul li a:hover {
  opacity: 0.8;
}

aside .aside_cat-list a:hover {
  opacity: 0.85;
}

/* ===============================================
# イベント
=============================================== */
#event ul {
  margin: 0 5%;
}

#event ul li a {
  display: flex;
  column-gap: 5%;
  justify-content: center;
  align-items: center;
  padding: 56px 0;
  transition: 0.4s;
}

#event ul li a:hover {
  background: var(--green1);
}


#event ul li:first-child {
  padding-top: 0;
}

#event ul li:last-child {
  padding-bottom: 0;
}

#event ul li:not(:last-child) {
  background-image: linear-gradient(to right, #808080, #808080 6px, transparent 6px);
  background-size: 14px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

#event ul li img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

#event ul li .scale {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
}

#event ul li a:hover img {
  transform: scale(1.1);
}

#event .event_body {
  width: 55%;
}

#event .event_box {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
}

#event time {
  font-size: 16px;
  color: var(--gray1);
}

#event .event_body .event_cat-name,
.post .post_list .event_cat-name,
aside .aside_list .event_cat-name {
  width: 90px;
  border-radius: 5px;
  text-align: center;
  padding: 3px 0;
  font-size: 12px;
  color: #fff;
}

.mama-salon {
  background: #b152ff;
}

.mama-marche {
  background: orange;
}

.other {
  background: var(--gray1);
}

#event p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

#event .event_body-txt {
  font-size: 18px;
  font-weight: 400;
}

/* ===============================================
# ミーモアプラス
=============================================== */
#about p,
#support p {
  text-align: center;
  margin-bottom: 40px;
}

.instructor ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 80px 20px;
}

.instructor ul li img,
.remodal img {
  border-radius: 5px;
  margin-bottom: 15px;
}

.instructor ul li h4,
.instructor ul li p,
.remodal h4,
.remodal p {
  color: var(--green3);
}

.instructor ul li h4,
.remodal h4 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 5px;

}

.instructor ul li .instructor_name,
.remodal .instructor_name {
  text-align: center;
}

.instructor ul li .instructor_txt,
.remodal .instructor_txt {
  margin: 15px 0;
}

.instructor ul li .instructor_btn,
.remodal .instructor_btn {
  text-align: center;
}

.instructor ul li a,
.remodal a {
  color: var(--pink2);
  text-align: center;
  padding: 5px;
}

/* 料金 */
#price tbody {
  font-size: 12px;
  border: 1px solid var(--text-color);
  font-weight: 700;
}

#price tbody span {
  font-size: 10px;
}

#price th, #price td {
  text-align: center;
  padding: 5px 10px;
  box-sizing: border-box;
}

#price .price_course {
  background: #fdf2cd;
  border-bottom: 1px solid var(--text-color);
}

#price .price_ttl {
  border-right: 1px solid var(--text-color);
}

#price tr:not(:first-child):not(:last-child) {
  border-bottom: 1px solid var(--gray3);
}

#price th {
  height: 70px;
}

#price th:not(:first-child):not(:last-child) {
  border-right: 1px solid var(--gray3);
}

#price td:not(:last-child) {
  border-right: 1px solid var(--gray3);
}

#price .bg_gray {
  background: var(--gray2);
}






/* ===============================================
# お知らせ
=============================================== */

.post .post_list {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 10px;
}

.post .post_content h5 {
  margin-bottom: 20px;
  font-size: 20px;
}

.post .post_wrapper {
  display: flex;
  column-gap: 5%;
}

.post .post_item {
  width: calc(100% - 250px);
  text-align: center;
}

.post .post_item_img {
  margin-bottom: 60px;
}

.post .post_item_img img {
  width: 100%;
  object-fit: cover;
}

.post .post_body p {
  margin-bottom: 20px;
}

.post .post_body img {
  width: 80%;
}


.post_arrow {
  margin: 50px 0 30px;
  display: flex;
  justify-content: space-between;
}

.post_prev,
.post_next {
  display: inline-block;
  padding: 10px;
}

.post_prev a:hover,
.post_next a:hover {
  opacity: 0.85;
}

.post aside {
  width: 250px;
}

.post .aside_img {
  margin-bottom: 10px;
}

.post .aside_ttl {
  padding: 15px;
  background: var(--green1);
  margin-bottom: 20px;
  text-align: center;
}

.post .aside_list {
  display: flex;
  column-gap: 10px;
  margin-bottom: 10px;
}

.post .aside_body ul {
  margin-bottom: 60px;
}

.post .aside_body ul li:not(:last-child) {
  margin-bottom: 30px;
}

.post .aside_cat-list li {
  margin-bottom: 10px;
  padding: 5px;
}


/* ===============================================
# お問い合わせ
=============================================== */
#contact .contact_txt {
  text-align: center;
  margin-bottom: 100px;
}

#contact table {
  width: 70%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 50px;
}

#contact tbody {
  border: 1px solid var(--gray3);
} 

#contact tr:not(:last-child) {
  border-bottom: 1px solid var(--gray3);
}

#contact td {
  padding: 10px;
  vertical-align: top;
}

#contact td:first-child {
  background: var(--gray2);
  border-right: 1px solid var(--gray3);
  width: 40%;
  padding: 20px 10px;
  vertical-align: middle;
  text-align: center;
}

#contact td:first-child span {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 5px;
  background: #FF1D35;
  color: #fff;
  margin-left: 10px;
  vertical-align: text-top;
}

#contact td:last-child {
  padding: 20px 10px;
}

#contact input, #contact select, #contact textarea {
  border-radius: 5px;
  border: 2px solid #C4C4C4;
  background: #FFF;
}

#contact input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

#contact .block{
  display: block;
}

#contact textarea {
  height: 200px;
}

#contact .form_btn p {
  text-align: center;
}

#contact .btn {
  padding: 16px 90px;
  background-color: var(--green2);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.2s;
}

#contact .btn:hover {
  opacity: 0.7;
}

.wpcf7-spinner {
  display: none !important;
}

/* ===============================================
# メンバー
=============================================== */
.member ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 50px 20px;
}

.member ul li {
  text-align: center;
}

.member ul li .scale {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
}

.member ul li img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px dashed var(--green2);
  box-sizing: border-box;
}

.member ul li a:hover img {
  transform: scale(1.1);
}

.member ul li p {
  text-align: center;
}

/* メンバー詳細 */
.member_post .post_item img {
  width: 100%;
  margin-bottom: 40px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.member_post h3 {
  font-size: 24px;
}

.member_post .post_body-ttl {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.member_post .post_body-ttl i {
  padding: 5px 7px;
  background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
  border-radius: 50%;
  text-align: center;
  color: #fff;
}

.member_post .post_box {
  margin-top: 40px;
}

.member_post .post_box h4 {
  padding: 5px 15px;
  border-left: 4px dotted var(--green2);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}


/* パスワード保護 */
.post-password-form {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 0;
}

.post-password-form p {
  font-size: 20px;
}

.post-password-form p:first-child {
  margin-bottom: 10px;
}

.post-password-form input[type="password"] {
  border: 2px solid var(--green2);
  padding: 5px;
  box-sizing: border-box;
} 

.post-password-form label {
  margin-right: 10px;
}

.post-password-form input[type="submit"] {
  background: var(--pink2);
  border: none;
  padding: 7px 30px;
  color: #fff;
  letter-spacing: 0.05em;
}



















/* ===============================================
# スマホ
=============================================== */
@media screen and (max-width: 767px) {
  /* ===============================================
  # 共通
  =============================================== */
  /* 共通 */
  body {
    font-size: 16px;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .inner {
    width: 95%;
  }

  .contents {
    margin-bottom: 120px;
  }

  .sec_ttl {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .sec_ttl h2 {
    font-size: 22px;
  }
  
  .sec_ttl span {
    font-size: 14px;
  }

  /* 花の装飾 */
  .flower1_absolute {
    top: -100px;
    width: 119px;
    height: 465px;
  }

  .flower2_absolute {
    top: -200px;
    width: 100px;
    height: 221px;
  } 

  .flower3_absolute {
    top: -120px;
    width: 150px;
    height: 185px;
  }

  .flower4_absolute {
    top: -130px;
    width: 150px;
    height: 157px;
  }

  .flower5_absolute {
    top: -130px;
    width: 120px;
    height: 125px;
  }

  /* ===============================================
  # header
  =============================================== */
  header h1 img {
    width: 200px;
  }

  header nav ul {
    flex-direction: column;
  }

  /*アクティブになったエリア*/
  #g-nav.panelactive{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width:100%;
  height: 100vh;
  }

  /*丸の拡大*/
  .circle-bg{
    position: fixed;
    z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--green1);
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
  }
  
  .circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
  }
  
  /*ナビゲーションの縦スクロール*/
  #g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #g-nav.panelactive #g-nav-list{
    display: block; /*クラスが付与されたら出現*/
  }
  
  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:45%;
    left:50%;
    transform: translate(-50%,-50%);
  }
  
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity:1;
  }
  
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li{
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
  }
  
  
  /*リストのレイアウト設定*/
  #g-nav li{
    text-align: center; 
    list-style: none;
  }

  #g-nav li a {
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
  }
  
  #g-nav li .header_link {
    
    padding:10px;
    
  }

  #g-nav li .header_btn {
    padding: 10px 20px;
    box-sizing: border-box;
  }
  
  
  /*========= ボタンのためのCSS ===============*/
  .openbtn{
    position:absolute;
    top:10px;
    right: 10px;
    z-index: 9999;/*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height:50px;
  }
  
  /*×に変化*/	
  .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
    background-color: var(--text-color);
    width: 60%;
  }
  
  .openbtn span:nth-of-type(1) {
    top:15px;	
  }
  
  .openbtn span:nth-of-type(2) {
    top:23px;
  }
  
  .openbtn span:nth-of-type(3) {
    top:31px;
  }
  
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  /*== 背景が流れる（斜め） */
  .bgskew::before {
    background:var(--pink1);
  }
  
  /* ===============================================
  # mv
  =============================================== */
  #mv .mv_inner {
    flex-direction: column-reverse;
    row-gap: 20px;
  }

  #mv .mv_ttl {
    width: 100%;
  }

  #mv .mv_ttl p {
    font-size: 22px;
    margin-bottom: 20px;
  }

  #mv .mv_slider {
    width: 100%;
  }

  #mv .mv_slider::before {
    width: 119px;
    height: 110px;
    top: -10px;
    left: -10px;
  }

  #mv .mv_slider::after {
    width: 160px;
    height: 140px;
    bottom: 0;
    right: -10px;
  }

  /* ===============================================
  # イベント メンバー
  =============================================== */
  #top_event::after {
    bottom: 63px;
    height: 370px;
  }

  #top_event .top_event-items {
    margin-bottom: 30px;
  }

  #top_event .top_event-items .top_event-list a {
    transition: 0.2s;
  }

  #top_event .top_event-items .top_event-list a:hover {
    opacity: 0.8;
  }

  #top_event .event_slider .top_event-img {
    text-align: center;
    margin-bottom: 20px;
  }

  #top_event .top_event-items .top_event-list .scale {
    max-width: 230px;
    max-height: 230px;
  }

  #top_event .top_event-items .top_event-list img {
    max-width: 230px;
    max-height: 230px;
  }

  #top_event .event_slider .event_body {
    text-align: center;
  }

  #top_event .event_slider .event_body p {
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
  }

  /* 矢印 */
  .swiper-button-next {
    height: 37px;
    width: 37px;
    top: 126px;
    right: 7px;
  }

  #top_event .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 37px;
    margin: auto;
    width: 37px;
    position: relative;
    right: 0;
    top: 0;
  }

  /* #top_event .swiper-button-next::after {
    top: -62px;
  } */

  #top_member .swiper-button-next::after {
    top: -22px;
  }

  .swiper-button-next::after {
    background-image: url(./image/next-arrow.png);
  }


  /* ===============================================
  # コミュニティー内容
  =============================================== */
  #community ul li {
    flex-direction: column;
    row-gap: 20px;
  }

  #community ul li:nth-child(even) {
    flex-direction: column;
  }

  #community ul li img {
    width: 100%;
  }

  #community ul li .community_body {
    width: 100%;
    display: contents;
  }

  #community ul li .community_body h3 {
    order: -1;
    margin-bottom: 0;
    margin-left: -138px;
  }
  
  #community ul li .community_body h3::before {
    left: 50%;
  }

  /* ===============================================
  # 講師紹介
  =============================================== */
  #top_instructor ul {
    gap: 20px;
    margin-bottom: 40px;
  }

  #top_instructor ul li {
    text-align: center;
  }

  /* ===============================================
  # メンバー一覧
  =============================================== */
  #top_member::after {
    bottom: 62px;
  }

  /* ===============================================
  # 代表コメント
  =============================================== */
  #comment .comment_container {
    flex-direction: column;
    row-gap: 42px;
  }

  #comment .comment_container img {
    width: 100%;
  }

  #comment .comment_body {
    width: 100%;
  }

  /* ===============================================
  # お知らせ
  =============================================== */
  .m_news-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .m_news-list:first-child {
    width: 100%;
    margin-bottom: 10px;
  }

  .news_date {
    width: 20%;
  }

  .m_news-list:last-child {
    width: 100%;
  }

  /* ===============================================
  # cta
  =============================================== */
  .cta .inner {
    padding: 30px 20px;
  }

  .cta h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cta .cta_container {
    flex-direction: column;
    row-gap: 30px;
  }

  .cta .cta_container .cta_mail,
  .cta .cta_container .cta_line {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
  }

  /* ===============================================
  # page-top
  =============================================== */
  #page_top {
    width: 50px;
    height: 50px;
    font-size: 12px;
    bottom: 20px;
    right: 20px;
  }

  /* ===============================================
  # footer
  =============================================== */
  #footer .footer_inner {
    padding: 30px 5% 80px;
  }
  #footer h1 img {
    width: 150px;
  }

  #footer .footer_logo {
    width: 100px;
    margin-bottom: 15px;
  }

  #footer .footer_nav .footer_nav-items {
    font-size: 14px;
    gap: 5px 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  #footer small {
    font-size: 10px;
  }

  /* ===============================================
  # 下層ページ
  =============================================== */
  /* ===============================================
  # 共通
  =============================================== */
  /* パンくず */
  .breadcrumb {
    margin: 20px 2% 40px;
  }

  .sub_mv .sub_mv-contents {
    margin-bottom: 40px;
  }

  .sub_mv h2 {
    font-size: 24px;
  }

  .sub_mv h2::before, .sub_mv h2::after {
    width: 20px;
  }

  .sub_mv h2::before {
    left: 5px;
  }

  .sub_mv h2::after {
    right: 5px;
  }

  .breadcrumb_item a {
    font-size: 12px;
  }

  /* ===============================================
  # イベント
  =============================================== */
  #event ul li a {
    flex-direction: column;
    row-gap: 20px;
    padding: 40px 0;
  }

  #event .event_body {
    width: 100%;
  }

  #event p {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #event .event_body-txt {
    font-size: inherit;
  }

  /* ===============================================
  # お知らせ
  =============================================== */
  .post .post_wrapper {
    flex-direction: column;
    row-gap: 90px;
  }

  .post .post_item {
    width: 100%;
  }

  .post aside {
    width: 100%;
  }

  aside .aside_img img {
    width: 100%;
  }


  /* ===============================================
  # ミーモアプラス
  =============================================== */
  #instructor ul li img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    width: 80%;
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
  }

  #instructor ul li h4 {
    font-size: 18px;
  }

  /* 料金 */
  /*アコーディオン全体*/
.accordion {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin:0 auto;
}

.accordion table {
  width: 100%;
}

.accordion li{
  margin: 10px 0;
}

.accordion .title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 4% 50px 4% 3%;
  transition: all .5s ease;
  border: 1px solid var(--green2);
  border-radius: 5px;
}

/*アイコンの＋と×*/
.accordion .title::before,
.accordion .title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;
  
}
.accordion .title::before{
  top:48%;
  right: 15px;
  transform: rotate(0deg);
  
}
.accordion .title::after{    
  top:48%;
  right: 15px;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.accordion .title.close::before{
transform: rotate(45deg);
}

.accordion .title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion .box {
  display: none;/*はじめは非表示*/
  padding: 3% 0;
}

.accordion .price_ttl {
  width: 40%;
}

.accordion .price_course th,
.accordion .price_course td {
  height: 40px !important;
}

  /* ===============================================
  # お問い合わせ
  =============================================== */
  #contact .contact_txt {
    margin-bottom: 70px;
  }

  #contact table {
    width: 100%;
  }

  #contact table td {
    width: 100%;
    display: block;
  }

  #contact td:first-child,
  #contact td:last-child {
    width: 100%;
    box-sizing: border-box;
  }

  /* ===============================================
  # メンバー一覧
  =============================================== */
  .member ul {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 50px 5px;
  }

  .member ul li .scale {
    max-width: 150px;
    max-height: 150px;
  }

  .member ul li img {
    max-width: 150px;
    max-height: 150px;
  }

  /* パスワード保護 */
.post-password-form p {
  font-size: 18px;
}

.post-password-form p:first-child {
  margin-bottom: 10px;
}

.post-password-form input[type="password"] {
  border: 2px solid var(--green2);
} 

.post-password-form label {
  margin-right: 0;
}

.post-password-form p:last-child {
  text-align: center;
}

.post-password-form input[type="submit"] {
  padding: 6px 40px;
  margin-top: 30px;
}

}
/* @media screen and (max-width: 767px) */
