@charset "UTF-8";
/*
Theme Name: Cellist Miho Ueki Web site
Theme URI: https://cello-mihoueki.com/
Description: Cellist Miho Ueki サイトテーマ
Version: 1.0
*/

/* css reset
---------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, 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,section {
	display:block;
}

/*
nav ul {
    list-style:none;
}
*/

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* end css reset
---------------------------------------------*/


/* グーテンベルクの設定
---------------------------------------------*/



/* end グーテンベルクの設定
---------------------------------------------*/



/* 基本設定
---------------------------------------------*/

html {
  /*font-size: 62.5%;*/ /* ≒10px */
  /*font-family: var(--fontgothic);*/
  /*font-family: "BIZ UDPGothic", sans-serif;*/
  /*font-weight: 400;*/
  font-style: normal;
}


body {
  line-height: 1.3;
}


/* コンテンツ量が少ない時だけフッターを下部に固定 */
.wrapper--all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}


p {
  color: #333;
  font-size: var(--f5);
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: var(--jp-lang);
}

a {
  color: #484848;
  text-decoration: underline;
  transition: .3s;
}

a:hover {
  opacity: .9;
  text-decoration: none;
}

.txt--center {
  text-align: center;
}

/*画像が縦長になるのを回避*/
img {
  height: auto;
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/* 変数 */
:root {
    /*フォントサイズに関する参考サイト：https://type-scale.com*/
  --f1: 2.8125em; /* 45px */
  --f2: 2.25em; /* 36px */
  --f3: 1.875em; /* 30px */
  /*--f4: 1.625em; /* 26px */
  --f4: 1.5em; /* 24px */
  --f5: 1em;    /* 16px */
  --f6: 0.875em;  /* 14px */

  --basecolor: #997DC2; /* 基本色 */
  --secondcolor: #FBF8FF;
  --thirdcolor: #351566;
  --forthcolor: #592F1D;
  --fifthcolor: #FCE9E1;
  --academycolor: #3C2E25;
  --gradient: linear-gradient( to right, ); /* 参考サイト：https://gradienthunt.com */

  /* フォントの指定 */
  --fontmincho: 'Hiragino Mincho', serif;
  --fontgothic: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --en-lang: "EB Garamond", sans-serif;
  --jp-lang: "Zen Kaku Gothic New", sans-serif;
  --academy-font: "Zen Old Mincho", serif;
}
/* スクリーンリーダー用のテキスト */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* アニメーション */
@keyframes anim-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fadeIn */
.show-fade-in {
  opacity: 0;
}

.fadeIn {
  animation-name: anim-fadein;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* fadeUp */
.fadeInUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.scroll-fade {
  opacity: 0;
}

.delay-fade {
  opacity: 0;
}

.p-l17 {
  line-height: 1.7;
}




/* end 基本設定
---------------------------------------------*/


/* レイアウト
---------------------------------------------*/


/* ヘッダー
--------------------------------------*/
.toggle-btn {
  display: none;
}

.header--wrap {
  width: 90vw;
  height: 100px;
  padding: 20px 5vw 0;
  /*background-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px);*/
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-ttl {
  width: 200px;
}

.academy__site-ttl {
  padding-top: 10px;
}

.site-ttl a,
.sp__site-ttl a {
  text-decoration: none;
}

.global-nav {
  min-width: 480px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 15px;
}

.global-nav li {
  font-weight: bold;
  padding: 0 10px;
  text-align: center;
}

.global-nav li:nth-child(3) {
  padding-bottom: 15px;
}

.global-nav li:last-child {
  border-right: none;
}

.global-nav li a {
  color: var(--thirdcolor);
  font-family: var(--en-lang);
  font-size: var(--f5);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.global-nav li a:hover {
  opacity: .8;
}

.global-nav a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  bottom: -1px;       /*アンダーラインが位置する、各リストの下端からの高さ*/
  visibility: hidden;
  background: var(--thirdcolor);
  opacity: 0;
  transition: .3s;
  }

.global-nav a:hover::after {
  visibility: visible; /*ホバー後、アンダーラインを可視化する*/
  opacity: 1;
  transition: .3s;
  }

  .has-sub {
    position: relative;
  }

  .sub-nav {
  background-color: #F3E8DE;
  display: none;
  position: absolute;
  overflow: hidden;
  font-family: var(--en-lang);
  left: 0;
  top: 2.1em;
  width: 6.5em;
  z-index: 10000;
}
.sub-nav > li > a {
  border-bottom: solid 1px #fff;
  display: block;
  line-height: 1.5;
  background-color: #F3E8DE;
  padding: .1em .2em;
  text-align: left;
  width: 100%;
}

.sub-nav > li > a:hover {
  opacity: .7;
}



/* end ヘッダー
--------------------------------------*/


/* ページ設定
--------------------------------------*/

/* サイトの幅指定 */
.main__container {
  width: 1000px;
  padding: 0;
  margin:  0 auto 50px;
}

.container__middle {
  width: 950px;
  margin:  40px auto 100px;
}

.container__small {
  width: 808px;
  margin:  40px auto 100px;
}

.container__blog {
  max-width: 1100px;
  padding: 0 2vw;
  margin:  50px auto 100px;
  display: flex;
  justify-content: space-between;
}

.blog__article {
  width: 67%;
  max-width: 820px;
}

.blog__sidebar {
  width: 25%;
  max-width: 320px;
}

/* / サイトの幅指定 */


/* ページタイトル */
.page__ttl--wrap {
  width: 100%;
  height: 100px;
  margin: 20px auto 50px;
  padding-top: 20px;
  text-align: center;
  position: relative;
}

.page__ttl {
  font-family: var(--en-lang);
  font-size: var(--f1);
  color: var(--thirdcolor);
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.page__ttl::after {
  font-family: var(--en-lang);
  font-weight: 400;
  font-style: italic;
  font-size: 120px;
  color: #f7f7f7;
  position: absolute;
  top: -75px;
  text-align: center;
  z-index: -1;
}

.page-id-3433 .page__ttl::after {
  content: "Profile";
  left: calc(50% - 150px);
  z-index: -1;
}

.page-id-3231 .page__ttl::after {
  content: "Concert";
  left: calc(50% - 180px);
  z-index: -1;
}

.page-id-3475 .page__ttl::after {
  content: "Discography";
  left: calc(50% - 280px);
  z-index: -1;
}

.page-id-2761 .page__ttl::after {
  content: "Works";
  left: calc(50% - 150px);
  z-index: -1;
}

.page-id-3485 .page__ttl::after {
  content: "Academy";
  left: calc(50% - 220px);
  z-index: -1;
}

.page-id-19 .page__ttl::after {
  content: "Contact";
  left: calc(50% - 180px);
  z-index: -1;
}

.page-id-3491 .page__ttl::after,
.single .page__ttl::after {
  content: "Information";
  left: calc(50% - 300px);
  z-index: -1;
}

.page-id-3582 .page__ttl::after {
  content: "Schedule";
  left: calc(50% - 220px);
  z-index: -1;
}

.page-id-2879 .page__ttl::after {
  content: "Privacy Policy";
  left: calc(50% - 300px);
  z-index: -1;
}

/* / ページタイトル */


/* ボタンのホバーアニメーション */
.btn01 {
    position: relative;
    display: block;
    width: 240px;
    height: 50px;
    line-height: 50px;
    /*margin: 40px auto;*/
    margin-top: 20px;
    margin-bottom: 20px;
    text-align:  center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border: 1px solid var(--basecolor);
    border-radius: 50px;
    overflow: hidden;
    transition: .3s;
    /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
    background-color: var(--basecolor);
    z-index: 1;
}

.btn01:hover {
    color: var(--basecolor);
    background: #fff;
}

.btn01 a {
  font-family: var(--jp-lang);
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn01 a:hover {
  color: var(--basecolor);
  background: #fff;
}

.btn02 {
    position: relative;
    display: block;
    width: 240px;
    height: 50px;
    line-height: 47px;
    /*margin: 40px auto;*/
    margin-top: 20px;
    margin-bottom: 20px;
    text-align:  center;
    text-decoration: none;
    color: var(--basecolor);
    font-weight: bold;
    border: 1px solid var(--basecolor);
    border-radius: 50px;
    overflow: hidden;
    transition: .3s;
    /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
    background-color: #fff;
    z-index: 1;
}

.btn02:hover {
    color: #fff;
    background: var(--basecolor);
}

.btn02 a {
  font-family: var(--jp-lang);
  color: var(--basecolor);
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn02 a:hover {
  color: #fff;
  background: var(--basecolor);
}

.btn03 {
  position: relative;
  display: block;
  width: 315px;
  height: 45px;
  line-height: 45px !important;
  /*margin: 40px auto;*/
  margin-top: 20px;
  margin-bottom: 20px;
  text-align:  center;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #6E7658;
  border-radius: 50px;
  overflow: hidden;
  transition: .3s;
  /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
  background-color: #6E7658;
  z-index: 1;
}

.btn03:hover {
    color: #6E7658;
    background: #fff;
}

.btn03 a {
  font-family: var(--jp-lang);
  font-size: 16px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn03 a:hover {
  color: #6E7658;
  background: #fff;
}

.btn04 {
  position: relative;
  display: block;
  width: 400px;
  height: 60px;
  line-height: 60px !important;
  /*margin: 40px auto;*/
  margin-top: 20px;
  margin-bottom: 20px;
  text-align:  center;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #6E7658;
  overflow: hidden;
  transition: .3s;
  /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
  background: #6E7658;
  background: linear-gradient(108deg,rgba(110, 118, 88, 1) 17%, rgba(158, 172, 123, 1) 68%, rgba(110, 118, 88, 1) 100%);
  z-index: 1;
}

.btn04:hover {
    color: #6E7658;
    background: #fff;
}

.btn04 a {
  font-family: var(--jp-lang);
  font-size: 16px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn04 a:hover {
  color: #6E7658;
  background: #fff;
}

/*ボタンのホバーアニメーション*/

.btn--center {
  margin: 40px auto;
}

.btn--right {
  margin: 20px 0 20px auto;
}

.btn-wide {
  width: 350px;
}


.btn001--small {
  font-size: var(--f4);
  width: 396px;
  margin-top: 10px;
}

.btn001--small a {
  width: 190px;
  font-size: .93em;
  margin: 30px auto;
  width: 11em;
  padding: 0;
  border-radius: 10px;
  padding: 1em 0;
}

.btn001--big {
}

.btn001--big a {
  margin: 30px auto;
  width: 20em;
  padding: 1.5em 0;
  border-radius: 15px;
  font-size: var(--f4);
}

.post p.btn__reservation--big {
  font-size: var(--f3) !important;
  margin: 10px auto !important;
}

/* / ボタンの設定 */

/* 文字の設定 */
.main__container p {
  font-family: var(--jp-lang);
}

.main__container strong {
  font-family: var(--jp-lang);
  font-weight: 700;
}

/* / 文字の設定 */

.w50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.w60 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.w70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.table-style01,
.table-style02,
.table-style03 {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  margin-top: 30px;
  margin-bottom: 30px;
}

.table-style01 table,
.table-style02 table,
.table-style03 table {
  width: 100%;
  border-top: none;
  border-left: none;
}

.table-style01 th,
.table-style01 td,
.table-style03 th,
.table-style03 td {
  font-family: var(--jp-lang);
  border: solid 1px #000 !important;
  padding: 1em 0;
}

.table-style01 th {
  background-color: #FBF8F7;
}

.table-style01 tr td:first-child {
  width: 20%;
  /*font-weight: bold;*/
  background-color: #FBF8F7;
}

.table-style03 tr td:first-child {
  font-weight: bold;
}

.table-style01 th,
.table-style03 th {
  font-weight: normal;
  text-align: left;
}

.table-style02 table {
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: 100%;
}

.table-style02 th,
.table-style02 td {
  font-family: var(--m-plus-1);
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  padding: 1em;
  /*text-align: center;*/
}

.table-style02 th {
  background-color: #ECECEC;
}

.has-text-align-right {
  text-align: right;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.is-style-stripes tr:nth-child(odd) {
  background-color: #f4f4f4;
}

/* / ページ設定
--------------------------------------*/


/* トップページ
--------------------------------------*/

/* メインビジュアル */
.main-img--wrap {
  width: 90vw;
  height: 80vh;
  margin: 0 auto 50px;
  position: relative;
  /*border-radius: 5px;
  overflow: hidden;*/
}

.main-img--wrap .flex-viewport {
  height: 80vh;
  border-radius: 5px;
}

.main-img--wrap .flex-viewport img {
  width: 100%;
  object-fit: cover;
  object-position: 50% top;
  height: 80vh !important;
}

/* / メインビジュアル */

.top__heading {
  text-align: center;
  font-size: var(--f1);
  font-family: var(--en-lang);
  font-weight: normal;
  margin: 50px auto;
}

/* インフォメーション */

.info--day {
  width: 170px;
  text-align: center;
  background-color: #FCF3F5;
  line-height: 1;
  padding: 5px auto;
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
}

.info--heading {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  font-weight: 500;
}

.info--update {
  font-size: var(--f4);
  font-family: var(--jp-lang);
  color: #888;
}

/* / インフォメーション */


/* Videos */
.top__movie--wrap {
  width: 1100px;
  margin: 30px auto 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top__movie--wrap li {
  width: 30%;
}

/* / Videos */


/* プロフィール */
.top__profile--wrap {
  width: 100%;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 15%, rgba(245, 245, 245, 1) 15%, rgba(245, 245, 245, 1) 85%, rgba(255, 255, 255, 1) 85%);
  margin: 100px auto 120px;
}

.top__profile {
  /*min-width: 1000px;
  max-width: 1200px;*/
  width: 900px;
  margin: 30px auto 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*flex-direction: row-reverse;*/
  margin: 35px auto;
}

.top__profile--img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
}

.top__profile--info {
  padding-top: 40px;
  width: 400px;
}

.top__profile--ttl {
  text-align: center;
  margin: 85px auto 35px;
}

.top__profile--ttl p {
  font-size: 2.1875em;
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.top__profile--ttl h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0;
}

/* / プロフィール */


/* コンサート〜ディスコグラフィー〜実績 */
.top__sticky--wrap {
  background-color: #FBF8FF;
  background: linear-gradient(160deg,rgba(251, 248, 255, 1) 7%, rgba(229, 210, 250, 1) 39%, rgba(251, 248, 255, 1) 66%, rgba(229, 210, 250, 1) 90%);
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
  position: relative;
}

.top__sticky--img {
  width: 50vw;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.top__sticky--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top__sticky--box {
  width: 50vw;
  height: 100vh;
  text-align: center;
  display: grid;
  place-items: center;
}

.top__sticky--cont {
  height: 250px;
}

.top__sticky--ttl {

}

.top__sticky--ttl h2 {
  font-size: var(--f1);
  font-family: var(--en-lang);
  color: var(--thirdcolor);
  font-weight: 400;
  line-height: 1.4;
}

.top__sticky--ttl p {
  font-size: 1.125em;
  font-family: var(--jp-lang);
  color: #787878;
  line-height: 1;
  margin-bottom: 20px;
}

/* / コンサート〜ディスコグラフィー〜実績 */


/* アカデミー */
.top__academy--wrap {
  width: 1100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin: 50px auto;
  padding: 100px 0;
}

.top__academy--ttl {
  font-size: var(--f1);
  font-family: var(--en-lang);
  font-weight: 400;
  margin: 10px auto;
}

.top__academy--ttl--jp {
  font-size: 1.125em;
  font-family: var(--jp-lang);
  font-weight: 400;
  color: #787878;
  margin: 20px auto 50px;
}

.top__academy--info p {
  margin-bottom: 50px;
}

.top__academy--img {
  width: 464px;
  height: 582px;
  margin: 0 90px 0 0;
}

.top__academy--img img {
  width: 100%;
  object-fit: cover;
  box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, .15);
}

.top__academy--info {
  width: 380px;
  margin: 65px 0 0 90px;
}

/* / アカデミー */


/* / トップページ
--------------------------------------*/


/* インフォメーション
--------------------------------------*/
.info--list {
  width: 1000px;
  margin: 40px auto 30px;
}

.info--list li {
  border-bottom: solid 1px #939393;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.info--list--day {
  width: 160px;
  margin: 10px 0;
}

.info--list--day span {
  width: 100%;
  display: inline-block;
  /*background-color: #F7F7F7;*/
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.3em;
  text-align: center;
  padding: 5px 0;
  text-align: left;
}

.info--list p {
  font-family: var(--jp-lang);
  font-size: 1.125em;
}

.info--list li a {
  text-decoration: none;
}

.info--list li a:hover {
  opacity: .6;
}


/* / インフォメーション
--------------------------------------*/


/* プロフィール
--------------------------------------*/
.page__profile--wrap {
  width: 580px;
  margin: 40px auto 200px;
}

.photo--ueki {
  width: 90%;
  margin: 0 auto 50px;
}


/* / プロフィール
--------------------------------------*/




/* コンサート
--------------------------------------*/
.concert--gallery {
  width: 1000px;
  height: 850px;
  margin: 40px auto 50px;
}

.concert--year,
.concert--year02 {
  color: var(--thirdcolor);
  font-size: 2.8125em;
  font-family: var(--en-lang);
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
}

.concert--year::after {
  content: "";
  width: 90%;
  height: 1px;
  background-color: var(--thirdcolor);
  position: absolute;
  right: 0;
  top: 50%;
}

.concert--year02::after {
  content: "";
  width: 78%;
  height: 1px;
  background-color: var(--thirdcolor);
  position: absolute;
  right: 0;
  top: 50%;
}

.list-style01 {
    margin: 0 0 80px 0;
  }

.list-style01 li {
  font-family: var(--jp-lang);
  /*list-style-position: inside;
  list-style-type: circle;*/
  list-style-type: none;
  line-height: 1.7;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 20px;
}

.list-style01 li::before {
  content: "◯";
  padding-right: .5em;
}

/* / コンサート
--------------------------------------*/



/* ディスコグラフィー
--------------------------------------*/
.disco--wrap {
  width: 90%;
  margin: 50px auto 60px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.disco--img {
  width: 45%;
  margin-right: 5%;
}

.disco--info {
  width: 100%;
}

.disco--ttl {
  font-size: var(--f3);
  font-family: var(--jp-lang);
  margin: 0 0 25px;
}

.set--list {
  font-size: var(--f5);
  font-family: var(--jp-lang);
}

.set--list li {
  list-style-position: outside;
  margin: 0 0 7px 1em;
}


/* / ディスコグラフィー
--------------------------------------*/


/* ワークス
--------------------------------------*/
.works__heading {
  font-size: var(--f2);
  font-family: var(--en-lang);
  font-weight: 400;
  color: #262626;
  border-bottom: solid 1px #000;
  margin-bottom: 10px;
  margin-top: 70px;
}

.works__heading:first-child {
  margin-top: 0;
}

.works__heading span {
  font-size: .5em;
  font-family: var(--jp-lang);
  font-weight: 400;
  color: #262626;
  padding-left: 10px;
}

.works__heading--small {
  font-size: var(--f4);
  font-family: var(--en-lang);
  font-weight: 400;
  color: #262626;
}

.works__heading--small span {
  font-size: .58em;
  font-family: var(--jp-lang);
  color: #262626;
  padding-left: 10px;
}

.list-style02 {
  margin: 20px 0 30px 0;
}

.list-style02 li {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  line-height: 1.7;
  list-style-position: inside;
  list-style-type: none;
  border-radius: 50px;
  margin-bottom: 8px;
  padding: 0;
}

.list-style02 li::before {
  content: "● ";
}

/* / ワークス
--------------------------------------*/


/* アカデミー
--------------------------------------*/
/*.header__academy--bg {
  background: #FFF9F3;
}*/

.academy__main--wrap {
  min-width: 1100px;
  width: 100vw;
  height: 37vw;
  min-height: 450px;
}

.academy__philosophy--wrap {
  position: relative;
  background-color: #FAF2EB;
  min-height: 17vw;
  max-height: 320px;
  width: 55vw;
  display: grid;
  text-align: center;
  align-items: center;
  margin-top: 10vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.academy__philosophy {
  width: 43vw;
  height: 70%;
  background: url(./img/academy_philosophy_sp03.svg) no-repeat;
  background-size: contain;
  text-indent: -9999px;
  margin-left: 5%;
  margin-top: 2%;
}

.academy__philosophy--photo01 {
  position: absolute;
  width: 45vw;
  right: 4vw;
  top: 10vw;
  z-index: 5;
}

.academy__philosophy--photo02 {
  position: relative;
  width: 33vw;
  right: 24vw;
  margin: -1vw 0 0 56vw;
  z-index: 10;
}

.academy__intro--wrap {
  width: 1000px;
  margin: 100px auto 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.academy__intro--info {
  width: 46%;
}

.academy__intro--info p {
  font-family: var(--academy-font);
  font-size: 1.25em;
  color: var(--academycolor);
  line-height: 2;
}

.academy__intro--info strong {
  font-weight: 700;
  background-color: #F3E8DE;
}

.academy__intro--photo {
  width: 50%;
}

.rootone__intro {
  color: var(--academycolor);
  font-size: var(--f3);
  font-family: var(--academy-font);
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 50px 0;
  margin-top: 100px;
  z-index: 10;
}

.rootone__intro::before {
  content: "";
  background: url(./img/tree-top.svg) no-repeat;
  background-size: contain;
  width: 200px;
  height: 104px;
  position: absolute;
  left: calc(50% - 100px);
  top: -55px;
  opacity: .3;
  z-index: -1;
}

.rootone__intro::after {
  content: "";
  background: url(./img/tree-bottom.svg) no-repeat;
  background-size: contain;
  width: 170px;
  height: 58px;
  position: absolute;
  left: calc(50% - 90px);
  bottom: -10px;
  opacity: .3;
  z-index: -1;
}

.rootone__intro--wrap {
  width: 1120px;
  margin: 80px auto 100px;
}

.rootone__intro--box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.rootone__intro--box--reverse {
  flex-direction: row-reverse;
}

.rootone__intro--txt {
  width: 46%;
  box-shadow: -7px -7px 10px 0px rgba(119, 119, 119, .15);
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.1em;
  margin-bottom: 0;
  padding: 1em 0 0 1.5em;
}

.rootone__intro--box--reverse .rootone__intro--txt {
  box-shadow: 7px -7px 10px 0px rgba(119, 119, 119, .15);
  padding: 1em 1.5em 0 0;
}

.rootone__intro--txt h6 {
  background-color: #FAF2EB;
  color: var(--academycolor);
  font-family: var(--academy-font);
  line-height: 2;
  padding: 2px 0 2px 8px;
  margin-bottom: 10px;
}

.rootone__intro--txt p {
  font-family: var(--academy-font);
  line-height: 2;
  margin-bottom: 20px;
}

.rootone__intro--photo {
  width: 42%;
}

.rootone__intro--txt--h {
  font-size: var(--f4);
  font-weight: 700;
}

.rootone__txt001 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.25em;
  width: 820px;
  margin: 100px auto;
  line-height: 2;
  text-align: center;
}

.rootone__core--h {
  color: var(--academycolor);
  font-size: var(--f3);
  font-family: var(--academy-font);
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 50px 0;
  margin-top: 100px;
  z-index: 10;
}

.rootone__core--h::before {
  content: "";
  background: url(./img/tree-top.svg) no-repeat;
  background-size: contain;
  width: 200px;
  height: 104px;
  position: absolute;
  left: calc(50% - 100px);
  top: -50px;
  opacity: .3;
  z-index: -1;
}

.rootone__core--h::after {
  content: "";
  background: url(./img/tree-bottom.svg) no-repeat;
  background-size: contain;
  width: 170px;
  height: 58px;
  position: absolute;
  left: calc(50% - 90px);
  bottom: -10px;
  opacity: .3;
  z-index: -1;
}

.rootone__core--h--txt1 {
  font-size: 3.5em;
  font-weight: 400;
}

.rootone__core--h--txt2 {
  font-size: 1.25em;
}

.rootone__core--h--txt3 {
  font-size: 1.5em;
  font-weight: 500;
}

.rootone__core--wrap {
  width: 1240px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rootone__core--txt--box {
  position: relative;
  width: 51%;
  /*background: url(./img/triangle002.svg) no-repeat;*/
  background-size: 30%;
  background-position: 10% 15%;
}

.rootone__core--photo {
  width: 43%;
}

.rootone__core--num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 400;
  font-size: 5.5em;
  line-height: 0.7;
}

.rootone__core--txt--box h4 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 700;
  font-size: 2.3em;
  /*margin: 0 0 15px 120px;*/
  margin: 0 0 15px 0;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.rootone__core--txt--box h4 span {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 400;
  font-size: .65em;
  display: block;
}

.rootone__core--txt--box h5 {
  font-family: var(--academy-font);
  background-color: var(--academycolor);
  color: #fff;
  font-weight: 500;
  font-size: var(--f4);
  padding: .5em;
  margin: 0 0 15px 80px;
}

.rootone__core--txt {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.25em;
  /*margin: 0 0 0 118px;*/
  margin: 0 0 0 40px;
}

.neo-musica01__wrap {
  width: 100vw;
  background-color: #FEF7F1;
  box-shadow: 0px -6px 6px 0px rgba(119, 119, 119, .1);
  margin-top: 100px;
  padding: 25px 0 20px 0;
}

.neo-musica__h3 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 400;
  font-size: 4.375em;
  text-align: center;
  margin: 0 0 40px;
}

.neo-musica__h3 span {
  display: block;
  font-size: 24px;
}

.neo-musica__anchor {
  width: 380px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0 60px;
}

.neo-musica__anchor li {
  background-color: #6c5f57;
  border-radius: 3px;
  padding-right: 10px;
}

.neo-musica__anchor a {
  font-family: var(--jp-lang);
  /*color: var(--academycolor);*/
  color: #fff;
  font-weight: 400;
  font-size: var(--f5);
  position: relative;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 30px 10px 10px;
}

.neo-musica__anchor a::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  /*left: calc(50% - 19px);*/
  right: 40px;
  top: 8px;
}

.neo-musica__lesson--h {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 400;
  font-size: var(--f1);
  text-align: center;
  width: 763px;
  background: url(./img/bar001.svg) no-repeat;
  background-size: cover;
  margin: 40px auto;
}

.neo-musica__box01 {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.25em;
}

.neo-musica__box01--txt {
  width: 49%;
}

.neo-musica__box01--photo {
  width: 46%;
}

.academy__table-style--bg table tr:first-child td {
  background-color: #FBF8F7;
}

.neo-musica__h5 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 400;
  font-size: var(--f3);
  border-bottom: solid 1px var(--academycolor);
  margin: 0 0 10px 0;
  padding: 0 0 5px 0;
}

.neo-musica__h6 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-weight: 500;
  font-size: 1.25em;
  margin: 10px 0 10px;
}

.neo-musica__box01--txt p {
  font-family: var(--academy-font);
  color: var(--academycolor);
}

.neo-musica__box02--photo {
  width: 40%;
  margin: 30px auto;
}

.neo-musica__box02 {
  width: 1000px;
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.25em;
  margin-bottom: 50px;
}

.neo-musica__h5--02 {
  font-family: var(--en-lang);
  color: var(--academycolor);
  font-weight: 400;
  font-size: 2em;
  margin: 0 0 10px 0;
  padding: 0 0 5px 0;
}

.neo-musica__box02--txt {
  font-family: var(--academy-font);
  color: var(--academycolor);
}

.neo-musica__lesson--wrap {
  width: 1000px;
  margin: 50px auto;
}

.neo-musica__lesson--wrap h6 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: var(--f4);
}

.neo-musica__lesson--wrap p {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: var(--f5);
}

.academy__list-style01 {
  margin: 30px 0;
}

.academy__list-style01 div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.academy__list-style01 dt {
  width: 200px;
  background-color: #FBF8F7;
  border: solid 1px #787878;
  border-radius: 10px;
  font-family: var(--jp-lang);
  font-weight: 700;
  display: grid;
  text-align: center;
  align-items: center;
  margin: 0 30px 10px 0;
  padding: 1em 0;
}

.academy__list-style01 dd {
  font-family: var(--jp-lang);
  padding: .5em 0;
  line-height: 1.7;
  width: calc(100% - 235px);
}

.academy__list-style02 {
  font-family: var(--academy-font);
  /*font-size: 1.125em;*/
  margin-bottom: 30px;
}

.academy__list-style02 li {
  list-style: disc;
  list-style-position: inside;
  line-height: 2;
  margin: 10px 0;
}

.neo-musica__qa--wrap {
  width: 100%;
}

.neo-musica__qa--wrap div {
  border-bottom: dotted 1px #000;
  padding-bottom: 20px;
  margin: 10px 0;
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: var(--f5);
}

.neo-musica__qa--wrap dt {
  padding: 25px 0 0 45px;
  position: relative;
  line-height: 1.7;
}

.neo-musica__qa--wrap dt::before {
  content: "Q";
  font-size: 3.125em;
  position: absolute;
  left: 0;
  top: -10px;
}

.neo-musica__qa--wrap dd {
  padding: 25px 0 0 45px;
  margin: 0 0 0 50px;
  position: relative;
  line-height: 1.7;
}

.neo-musica__qa--wrap dd::before {
  content: "A";
  font-size: 3.125em;
  position: absolute;
  left: 0;
  top: -10px;
}

.neo-musica__join--wrap {
  width: 915px;
  margin: 80px auto 200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.neo-musica__join--txt {
  width: 44%;
  padding-top: 50px;
}

.neo-musica__join--txt p {
  font-family: var(--academy-font);
  color: var(--academycolor);
  /*font-size: var(--f4);*/
  font-size: var(--f5);
}

.neo-musica__join--photo {
  width: 47%;
}

.neo-musica02__wrap {
  width: 100vw;
  margin: 10px auto 230px;
  position: relative;
  z-index: 10;
}

.neo-musica02__wrap::after {
  content: "";
  width: 100%;
  height: 106%;
  background-color: #F6F7EE;
  transform: skewY(5deg);
  position: absolute;
  top: -120px;
  left: 0;
  z-index: -1;
}

.txt--strong {
  font-family: var(--jp-lang);
  color: #000;
  font-size: 1.125;
  margin: 15px 0 10px 0;
}

/* / アカデミー
--------------------------------------*/


/* インフォメーション
--------------------------------------*/
.page__news-list .news-list li {
  background-color: rgba(255, 255, 255, .6);
  border: solid 1px #e6e6e6;
}

/* / インフォメーション
--------------------------------------*/


/* カレンダー
--------------------------------------*/
.single-event header {
  font-family: var(--jp-lang);
  font-weight: var(--f4);
}

.single-event .time-block {
  font-family: var(--jp-lang);
  font-weight: 700;
}

.single-event .time-wrapper::before {
  content: "時間　：";
}

.single-event .date-wrapper::before {
  content: "開催日：";
}


.mc_head_mc_mini_widget-2 {
  font-family: var(--jp-lang);
  text-align: center;
}

.mc-content td {
  font-family: var(--jp-lang);
  font-weight: 400;
}

/* / カレンダー
--------------------------------------*/



/* お問い合わせ
--------------------------------------*/
.contact-form {
  width: 90%;
  margin: -150px auto 20px;
  padding: 0;
}

.contact-form table {
  width: 100%;
}

.contact-form th {
  text-align: left;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  font-weight: normal;
  vertical-align: middle;
  padding-right: 2em;
  width: 30%;
}

.contact-form th,
.contact-form td {
  padding-bottom: 20px;
}


input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  background: #fff;
  border: solid 2px #9F9F9F;
  border-radius: 5px;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  padding: 17px 1.5%;
  width: 97%;
}

.text-danger {
  color: red;
}

select {
  width: 104%;
}

input[type=date] {
  background: #fff;
  border: solid 2px #9F9F9F;
  border-radius: 5px;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  padding: 17px 1.5%;
  width: 50%;
}

.btn--contact-form {
  background: var(--basecolor);
  color: #fff;
  border-radius: 5px;
  height: 50px;
  margin: 0 0 0 32%;
  width: 130px;
  box-shadow: 3px 3px 0px 0px rgb(233, 223, 223);
  transition: .2s;
  overflow: hidden;
}

.btn--contact-form > p {
  margin: 0 !important;
}

.btn--contact-form:hover {
  background: #6DCE6B;
  box-shadow: 0px 0px 0px 0px rgba(233, 223, 223, 1);
  transform: translate(1px, 2px);
}

.btn--contact-form .wpcf7-submit,
.btn--contact-form .wpcf7-confirm {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: normal;
  font-family: var(--jp-lang);
  font-size: var(--f5);
  line-height: 50px;
  width: 130px;
}

.btn--contact-form .confirm {
  margin: 20px 0 0 0;
  text-align: center;
}

/* ラジオボタンカスタマイズ */
input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 .5em 0;
}

.wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
  margin-bottom: 7px;
}

.wpcf7-radio span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #606060;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.wpcf7-radio span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #606060;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
/* / ラジオボタンカスタマイズ */

/* チェックボックスカスタマイズ */
input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0 0 .5em 0;
}

.wpcf7-checkbox .wpcf7-list-item.first {
  margin-left: 0;
  margin-bottom: 7px;
}

.wpcf7-checkbox span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-checkbox span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 2px;
  border: 1px solid #606060;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.wpcf7-checkbox span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #606060;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  /*border-bottom: solid 3px #606060;
  border-left: solid 3px #606060;
  transform: rotate(-45deg);*/
  display: none;
}

input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
/* / チェックボックスカスタマイズ */


/* / お問い合わせ
--------------------------------------*/



/* ブログ一覧 ------------*/
.blog-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3em 0;
}

.blog-list::after {
  display: block;
  content: "";
  width: 30%;
}

.blog-list__item {
  width: 30%;
  border-bottom: dotted 1px #A77249;
  padding-bottom: .7em;
  margin-bottom: 2em;
}

.blog-list__item--img {
  width: 100%;
  height: 160px;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

.blog-list__item--img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  object-position: center center;
}

.blog-list__item--day {
  font-size: var(--f6);
  line-height: 1;
  margin: .5em 0 0;
}

.blog-list__item--category {
  font-size: var(--f6);
  font-family: var(--honbun);
  display: inline-block;
  line-height: 1;
  margin: .5em 0;
  padding: .2em 0;
  color: #58380C;
  border: solid 1px #58380C;
  border-radius: 3px;
}

.blog-list__item--category a {
  /*display: block;*/
  width: 100%;
  padding: .1em .5em;
  text-decoration: none;
}

.blog-list__item--title {
  font-size: 1.15em;
  font-family: var(--honbun);
}

.blog-list__item--title a {
  text-decoration: none;
}

/* 一覧では最新の情報を非表示 */
.page-id-4635 #block-4, /* ←テストサイト */
.page-id-4635 #block-2, /* ←テストサイト */
.page-id-4782 #block-2,
.page-id-4782 #block-3 {
  display: none;
}
/* / 一覧では最新の情報を非表示 */

/* / ブログ一覧 ------------*/



/* 検索結果 */
.search__title {
  width: auto;
  color: var(--basecolor);
  font-size: var(--f2);
  margin-bottom: 30px;
}

.search__list {
  margin: 30px 0;
}

.search__list li {
  border-bottom: solid 1px #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.search__list--heading {
  font-size: var(--f4);
}

.search-no-results p.title {
  text-align: left;
  margin-bottom: 50px;
}

.search__list--txt {

}

.search-no-results #content {
  text-align: center;
  line-height: 2;
  border: solid 1px #333333;
  padding-bottom: 40px;
}

/* / 検索結果 */



/* プライバシーポリシー -------*/

  .privacy-policy {

  }

  .privacy-policy h2 {
    font-family: var(--fontmincho);
    font-size: var(--f4);
    color: var(--thirdcolor);
    margin: 40px 0 10px;
  }

  .privacy-policy p {
    font-family: var(--jp-lang);
    font-size: var(--f5);
    line-height: 2;
    margin: 10px 0;;
  }

  .privacy-policy ul,
  .privacy-policy ol {
    font-family: var(--jp-lang);
    margin: 10px 0;
    line-height: 2;
  }

  .privacy-policy ol {
    padding-left: 1em;
  }

  .privacy-policy ol li {
    list-style-position: outside;
  }

  .nallow-box {
    margin: 60px auto 0;
    width: 80%;
  }

  .nallow-box h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .nallow-box h3 {
    margin: 30px 0 5px;
  }


/* / プライバシーポリシー --------*/




/* 投稿ページ -------*/
.post--day {
  font-size: var(--f6);
  font-family: var(--jp-lang);
  margin: 3px 0;
  text-align: right;
}

h2.blog-ttl + .post--day {
  font-size: var(--f6);
  font-family: var(--jp-lang);
  margin: -2.3em 0 20px 0;
  text-align: right;
}

.event--day {
  font-size: 1.25em;
  font-family: var(--jp-lang);
  font-weight: bold;
  margin: 3px 0;
}

.post--category {
  display: inline-block;
  margin: 3px 0;
}

.post--category a {
  display: block;
  font-size: var(--f6);
  font-family: var(--jp-lang);
  color: #000;
  border: solid 1px #000;
  background-color: rgba(255, 255, 255, .5);
  padding: 0 .65em .2em;
  text-decoration: none;
}

.blog-ttl {
  font-family: var(--jp-lang);
  font-size: var(--f4) !important;
  font-weight: 700;
  /*border-bottom: solid 1px #474747;
  background-color: rgba(255, 255, 255, .6);*/
  padding: .5em .8em .5em 0;
  margin-bottom: .5em;
}

.blog__main--photo {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1em;
}

.blog__main--photo img {
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}

.widget_block h4 {
  background: #FDEAE5;
  font-family: var(--jp-lang);
  margin-top: 3em;
  border-radius: 5px;
  padding: 1em;
}

.wp-block-latest-posts__list li,
.wp-block-categories-list li,
.widget_recent_entries li {
  border-bottom: dotted 1px #bebebe;
}

.wp-block-latest-posts__list li a,
.wp-block-categories-list li a {
  display: block;
  font-size: var(--f5);
  font-family: var(--jp-lang);
  text-decoration: none;
  padding: 1em .5em;
  transition: .7s;
}

.widget_recent_entries li {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  text-decoration: none;
  padding: 1em .5em;
  transition: .7s;
}

.wp-block-latest-posts__list li a:hover,
.wp-block-categories-list li a:hover,
.widget_recent_entries li:hover {
  background-color: var(--secondcolor);
}

.wp-block-latest-posts__list li a::before,
.widget_recent_entries li a::before {
  content: "◯";
}

.widget_recent_entries .post-date {
  display: block;
  text-align: right;
  font-size: small;
  padding-top: 5px;
}

.widget_recent_entries .post-date::after {
  content: "update";
}

.widget_recent_entries .widgettitle{
  display: none;
}



/*ブロックエディタ設定*/
figcaption {
  margin-top: .5em;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--jp-lang);
}

.post h1 {
  font-size: 2em;
}

.post h2 {
  font-size: 1.75em;
}

.post h3 {
  font-size: 1.5em;
}

.post h4 {
  font-size: 1.25em;
}

.post h5 {
  font-size: var(--f5);
}

.post h6 {
  font-size: var(--f6);
}

.post p {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  margin: 1em 0;
}

.post .aligncenter,
.post .aligncenter img,
.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}

.post .alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

.post .alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.post .has-text-align-center {
  text-align: center;
}

/* / ブロックエディタ設定*/




/* / アーカイブへのリンク */

/* 表の基本スタイル */
/*.wp-block-table {
  margin: 20px 0;
}

.wp-block-table table {
  border: solid 1px #A3A12F;
}

.wp-block-table table thead {
  border-bottom: solid 1px #A3A12F;
}

.wp-block-table table th,
.wp-block-table table td {
  border: solid 1px #A3A12F;
  padding: 1em;
}

.wp-block-table table th {
  background: #F0EE7E;
}

.table--middle {
  width: 845px;
  margin-left: auto;
  margin-right: auto;
}*/


/* / 表の基本スタイル */


/*ページネーション*/
p.pagenation {
  clear: both;
  font-size: 12px;
  font-size: 1.2rem;
  overflow: hidden;
}

span.oldpage {
  float: left;
}

span.newpage {
  float: right;
}

/* ページ番号リンク */
p.pagenum {
  text-align: center;
}

p.pagenum a {
  /*background-color: #e6e6e6;*/
  text-decoration: none;
  color: #8C78AA;
}

.page-numbers {
  background-color: #fff;
  border: solid 1px #8C78AA;
  border-radius: 50%;
  display: inline-block;
  font-size: var(--f6);
  line-height: 30px;
  margin: 5px;
  padding: 1em;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: .5s;
}

.page-numbers:hover {
  background-color: #8C78AA;
  color: #fff;
}

.current {
  background-color: #8C78AA;
  border: solid 1px #8C78AA;
  color: #fff;
}

/*p.pagenum span {
  background-color: #fff;
  border: solid 1px #999;
  color: #333;
}

p.pagenum a, p.pagenum span {
  padding: 3px 6px;
  color: #333;
}*/

/* end ページネーション*/




/* 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/



/* フッター
--------------------------------------*/

.footer--wrap {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer__ttl {
  width: 100%;
  line-height: 0;
  margin: 0 0 -5px 0;
  padding: 0;
}

.footer__ttl img {
  vertical-align: bottom;
  width: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

.footer__bottom {
  background-color: #FAF7FB;
  padding: 40px 0 10px;
  margin: 0;
}

.footer {
  text-align: center;
  background-color: #FAF7FB;
  padding-top: 30px;
}

.footer__academy {
  background-color: #FBF8F7;
}

.footer__logo {
  width: 380px;
  margin: 20px auto 30px;
}

.footer__nav {
  width: 730px;
  font-size: var(--f5);
  font-family: var(--jp-lang);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
}

.footer__nav li {
  margin-right: 20px;
  margin-bottom: .3em;
  position: relative;
}

.footer__nav li:last-child {
  margin-right: 0;
}

.footer__nav a {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  color: #5B5B5B;
  text-decoration: none;
}

.footer__sns {
  width: 160px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px auto;
}

.footer__sns li {
  width: 35px;
}

.footer__sns li img {
  width: 100%;
}

.footer__copyright {
  font-family: var(--jp-lang);
  font-size: var(--f6);
  color: #5B5B5B;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
}


/* トップに戻るボタン */
  .to-top {
    position: fixed;
    cursor: pointer;
    border: solid 1px #aaaaaa;
    border-radius: 5px;
    bottom: 50px;
    right: 80px;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, .5);
  }

  .to-top::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 1px #212121;
    border-right: solid 1px #212121;
    transform: rotate(-45deg);
    left: calc(50% - 6px);
    top: calc(50% - 3px);
  }

  .to-top:hover {
    opacity: .6;
  }

/* / トップに戻るボタン */

/* end フッター
--------------------------------------*/


/* end レイアウト
---------------------------------------------*/



/* レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/
@media screen and (max-width: 768px){

  /* iPhone safariの右側余白対策 */
  html, body {
    overflow-x: hidden;
  }


  /* ページ設定
--------------------------------------*/
.btn04 {
  width: 90%;
}

.btn01 {
  margin-left: auto;
  margin-right: auto;
}


/* ヘッダー
--------------------------------------*/

.header--wrap {
  width: 96vw;
  min-width: 97vw;
  height: 70px;
  margin: 0 auto 20px;
  padding: 10px 3vw;
  position: fixed;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, .7);
  z-index: 50;
}

.site-ttl {
  width: 45vw;
  position: fixed;
  z-index: 100;
  top: 10px;
  left: calc(50% - 22.5vw);
}

.academy__site-ttl {
  width: 55vw;
  padding-top: 20px;
  left: calc(50% - 27.5vw);
}

.upper-nav {
  min-width: 100%;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.upper-nav li {
  width: 93vw;
  font-weight: bold;
  padding: 0;
  text-align: left;
  border-right: none;
  border-bottom: dotted 1px #116572;
  
}

.upper-nav li a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 2vh 0;
}

.nav-icon {
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}

.nav--txt {
  padding-top: 5px;
}

.header__lower {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  display: block;
}

.lower-nav--wrap {
  width: 100%;
  display: block;
  padding: 0;
}

.lower-nav {
  background-color: #00C3E5;
  width: calc(100% - 30px);
  border-radius: 8px;
  padding: 0 15px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.lower-nav li:first-child {
  border-bottom: solid 1px #fff;
}

.btn-contact a {
  margin-left: 0;
  margin-bottom: 10px;
}




/* / メニュー */


/* ハンバーガーメニュー */
.toggle-btn {
  display: flex;
  position: fixed;
  z-index : 3;
  right: 2vw;
  top: 10px;
  width : 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
  z-index: 50;
}

.toggle-btn p {
  font-family: var(--jp-lang);
  font-size: .8em;
  margin-top: 7px;
}

.toggle-btn a {
  display: block;
  width: 28px;
  position: relative;
}

.toggle-btn span {
  display : block;
  position: absolute;
  width   : 23px;
  height  : 2px ;
  right    : 10px;
  background : var(--basecolor);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  z-index: 15;
}

.toggle-btn span:nth-child(1) {
  top: 16px;
}

.toggle-btn span:nth-child(2) {
  top: 24px;
}

.toggle-btn span:nth-child(3) {
  top: 32px;
}

/* スマホメニューを開いてる時のボタン */
.toggle-btn.active span:nth-child(1) {
  top: 23px;
  right: 10px;
  background: var(--basecolor);
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.toggle-btn.active span:nth-child(2),
.toggle-btn.active span:nth-child(3) {
  top: 23px;
  background: var(--basecolor);
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景 */
.global-nav-wrap {
  position: fixed;
  z-index : 25;
  top : 0;
  right : 0;
  color: #000;
  background: rgba(246, 240, 255, 1);
  text-align: center;
  width: 100vw;
  padding: 2vh 3vw 10vh;
  height: 88vh;
  overflow-y: auto;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease .7s;
}

.global-nav {
  min-width: 90%;
  width: 90%;
  margin: 60px auto 0;
  display: block;
  position: relative;
  z-index: 5;
  opacity: 1;
}

.global-nav li {
  margin: .5em 0;
  text-align: center;
  width: 100%;
  padding: 0;
}

.nav-txt--en {
  font-size: .73em;
  display: block;
}

.global-nav li a {
  color: var(--thirdcolor);
  font-size: var(--en-lang);
  font-size: 2.2em;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding: .5em 0;
  display: block;
}

.global-nav li.has-sub > a {
  padding: .5em 0;
}

.sub-nav {
  background-color: transparent;
  display: block;
  position: relative;
  width: 100%;
  display: none;
}

.sub-nav li {
  margin: 0 0 .5em;
}

.sub-nav > li > a {
  border-bottom: none;
  display: block;
  line-height: 1.5;
  background-color: transparent;
  padding: 0 0 .3em;
  text-align: center;
  width: 100%;
}

/* クリックでjQueryで追加・削除 */
.global-nav-wrap.panel-open {
  opacity: 1;
  visibility: visible;
}

/* end ヘッダー
--------------------------------------*/


/* ページ設定
--------------------------------------*/

/* サイトの幅指定 */
.main__container {
  max-width: 90vw;
  min-width: 90vw;
  padding: 20px 0 0;
  margin:  0 auto 70px;
}


.container__large,
.container__middle,
.container__small,
.container__blog,
.blog__article,
.blog__sidebar {
  width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
}

.container__blog {
  display: block;
}

.container__column {
  min-width: 96%;
  max-width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
  display: block;
  justify-content: space-between;
}

.container__mainContent {
  width: 100%;
}

.container__sidebar {
  width: 100%;
}

/* / サイトの幅指定 */


/* ページタイトル */
.page__ttl--wrap {
  width: 100%;
  height: 40px;
  margin: 90px auto 30px;
  text-align: center;
  padding-top: 50px;
}

.page__ttl {
  font-size: 2.5em;
}

.page__ttl::after {
  font-size: 80px;
  top: -40px;
}

.page-id-3433 .page__ttl::after { /*Profile*/
  left: calc(50% - 110px);
  z-index: -1;
}

.page-id-3231 .page__ttl::after { /*Concert*/
  left: calc(50% - 120px);
  z-index: -1;
}

.page-id-3475 .page__ttl::after { /*Discography*/
  left: calc(50% - 180px);
  z-index: -1;
}

.page-id-2761 .page__ttl::after { /*Works*/
  left: calc(50% - 110px);
  z-index: -1;
}

.page-id-3485 .page__ttl::after { /*Academy*/
  left: calc(50% - 140px);
  z-index: -1;
}

.page-id-19 .page__ttl::after { /*Contact*/
  left: calc(50% - 130px);
  z-index: -1;
}

.page-id-3491 .page__ttl::after,
.single .page__ttl::after { /*Information*/
  left: calc(50% - 190px);
  z-index: -1;
}

.page-id-3582 .page__ttl::after {
  left: calc(50% - 140px);
  z-index: -1;
}

/* / ページタイトル */


/* ボタンの設定 */
.btn-wide {
  width: 80%;
}

/* / ボタンの設定 */


/* 文字の設定 */
.main__container p {
  font-family: var(--jp-lang);
}

.page__heading {
  font-size: 1.25em;
  margin-bottom: 30px;
}

/* / 文字の設定 */


/* 見出し */
.heading {
  color: #fff;
  font-size: var(--f3);
  font-weight: normal;
}

#mc_head_my-calendar.heading {
  font-weight: bold;
}

.heading--large,
.heading--middle {
  width: 96%;
  padding: .5em 2%;
  margin: 40px auto 30px;
}

/* / 見出し */

.w50,
.w60,
.w70 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.table-style03 th,
.table-style03 td {
  display: block;
  width: 100%;
}

.table-style03 tr td:first-child {
  width: 100%;
  border-bottom: none !important;
}



/* / ページ設定
--------------------------------------*/


/* トップページ
--------------------------------------*/

/* メインビジュアル */
.main-img--wrap {
  width: 90vw;
  height: 65vh;
  margin: 100px auto 50px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.main-img--wrap img {
  height: 65vh !important;
  object-fit: cover;
  object-position: 40%;
}

.main-img--wrap .slides li.slide-3633 img {
  object-position: 35% !important;
}

.main-img--wrap .slides li.slide-3639 img {
  object-position: 52% !important;
}

/* / メインビジュアル */

.top__heading {
  font-size: var(--f2);
  font-weight: 400;
}

/* Videos */
.top__movie--wrap {
  width: 90%;
  margin: 30px auto 60px;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top__movie--wrap li {
  width: 100%;
}

/* / Videos */



/* プロフィール */
.top__profile--wrap {
  width: 100%;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 5%, rgba(245, 245, 245, 1) 5%, rgba(245, 245, 245, 1) 95%, rgba(252, 252, 252, 1) 95%);
  margin: 50px auto 70px;
}

.top__profile {
  width: 90%;
  margin: 30px auto 50px;
  display: block;
  margin: 35px auto;
}

.top__profile--img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.top__profile--info {
  padding-top: 40px;
  width: 100%;
  margin: auto;
}

.top__profile--ttl {
  width: 50%;
  text-align: center;
  margin: 20px auto 20px;
}

/* / プロフィール */



/* コンサート〜ディスコグラフィー〜実績 */
.top__sticky--wrap {
  background: transparent;
  width: 100vw;
  display: block;
  margin-bottom: 80px;
}

.top__sticky--img {
  width: 100vw;
  height: auto;
  margin-bottom: 30px;
}

.top__sticky--box {
  background-color: rgba(251, 248, 255, .85);
  background: linear-gradient(160deg,rgba(251, 248, 255, .85) 7%, rgba(229, 210, 250, .85) 39%, rgba(251, 248, 255, .85) 66%, rgba(229, 210, 250, .85) 90%);
  border-radius: 5px;
  width: 85vw;
  height: 250px;
  text-align: center;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  z-index: 10;
  position: relative;
}

.top__sticky--cont {
  height: auto;
  padding: 25px 0;
}

/* / コンサート〜ディスコグラフィー〜実績 */


/* アカデミー */
.top__academy--wrap {
  width: 90%;
  display: block;
  margin: 50px auto;
  padding: 60px 0;
}

.top__academy--img {
  width: 300px;
  height: 376px;
  margin: 0 auto 0;
}

.top__academy--info {
  width: 85%;
  margin: 65px auto 0;
}

.top__academy--ttl,
.top__academy--ttl--jp {
  text-align: center;
}


/* / アカデミー */




/* / トップページ
---------------------------------- */


/* インフォメーション
--------------------------------------*/
.info--list {
  width: 90%;
  margin: 40px auto 30px;
}


/* / インフォメーション
--------------------------------------*/


/* プロフィール
--------------------------------------*/
.page__profile--wrap {
  width: 90%;
  margin: 40px auto 100px;
}

/* / プロフィール
--------------------------------------*/


/* コンサート
--------------------------------------*/
.concert--gallery {
  width: 90%;
  height: auto;
  margin: 30px auto 30px;
}

.concert--year,
.concert--year02 {
  font-size: 2.5em;
}

.concert--year::after {
  width: 70%;
}

.concert--year02::after {
  width: 40%;
}

/* / コンサート
--------------------------------------*/


/* ディスコグラフィー
--------------------------------------*/
.disco--wrap {
  display: block;
}

.disco--img {
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}

.disco--ttl {
  font-size: var(--f4);
  margin: 20px 0 10px;
  padding-top: 20px;
}

/* / ディスコグラフィー
--------------------------------------*/


/* ワークス
--------------------------------------*/


/* / ワークス
--------------------------------------*/


/* アカデミー
--------------------------------------*/
.academy__main--wrap {
  min-width: 100vw;
  width: 100vw;
  min-height: auto;
  max-height: auto;
  height: auto;
  margin-top: 130px;
}

.academy__philosophy--wrap {
  position: relative;
  background-color: #FAF2EB;
  min-height: 115px;
  max-height: 130px;
  width: 80vw;
  display: grid;
  text-align: center;
  align-items: center;
  margin-top: 5vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.academy__philosophy {
  width: 65vw;
  height: 70%;
  background: url(./img/academy_philosophy_sp03.svg) no-repeat;
  background-size: contain;
  text-indent: -9999px;
  margin-left: 8%;
  margin-top: 2%;
}

.academy__philosophy--photo01 {
  position: relative;
  width: 80vw;
  margin-left: 20vw;
  margin-top: 20px;
  right: 0;
  top: 0;
  z-index: 5;
}

.academy__philosophy--photo02 {
  position: relative;
  width: 67vw;
  margin-left: 5vw;
  margin-top: -25px;
  right: 0;
  top: 0;
  z-index: 10;
}

.academy__intro--wrap {
  width: 90vw;
  margin: 15px auto 50px;
  display: block;
}

.academy__intro--info {
  width: 100%;
}

.academy__intro--info p {
  font-size: 1.1em;
}

.academy__intro--photo {
  width: 90%;
  margin: 15px auto;
}

.rootone__intro {
  /*font-size: var(--f4);*/
  font-size: 1.375em;
}

.rootone__intro--wrap {
  width: 95vw;
  margin: 40px auto 50px;
}

.rootone__intro--box {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.rootone__intro--txt,
.rootone__intro--photo {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1em;
}

.rootone__txt001 {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.125em;
  width: 90vw;
  margin: 50px auto;
  line-height: 2;
}

.rootone__core--h {
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.625em;
  font-weight: 700;
  text-align: center;
  width: 90vw;
  margin: 70px auto 50px;
  /*background: url(./img/triangle001.svg) no-repeat center center;
  background-size: 70%;*/
  position: relative;
  z-index: 5;
  line-height: 1;
}

.rootone__core--h::before {
  top: -55px;
  z-index: -1;
}

.rootone__core--h--txt3 {
    font-size: 1.25em;
    font-weight: 500;
    display: block;
    position: relative;
    z-index: 10;
}

.rootone__core--wrap {
  width: 95vw;
  margin: 40px auto;
  display: block;
}

.rootone__core--txt--box {
  position: relative;
  width: 100%;
  /*background: url(./img/triangle002.svg) no-repeat;*/
  background-size: 30%;
  background-position: 10% 15%;
  margin-bottom: 10px;
}

.rootone__core--photo {
  width: 100%;
  margin: 20px 0;
}

.rootone__core--num {
  position: relative;
  font-size: 2.5em;
}

.rootone__core--txt--box h4 {
  margin: 0 0 15px 0;
  font-size: 1.6em;
}

.rootone__core--txt--box h5 {
  margin: 0 0 15px 0;
}

.rootone__core--txt {
  font-family: var(--academy-font);
  margin: 0 0 20px 0;
  font-size: 1em;
  line-height: 2;
}

.neo-musica01__wrap {
  margin-top: 50px;
  padding: 40px 0 10px 0;
}

.neo-musica__h3 {
  font-size: 3.125em;
}

.neo-musica__h3 span {
  display: block;
  font-size: 20px;
}

.neo-musica__anchor {
  width: 90%;
  display: block;
  text-align: center;
  margin: 40px auto 60px;
}

.neo-musica__anchor li {
  padding-right: 0;
  margin-bottom: 15px;
}

.neo-musica__anchor a::after {
  right: 50px;
}

.neo-musica__lesson--h {
  font-size: var(--f3);
  width: 90%;
  background: url(./img/bar002.svg) no-repeat;
  margin: 40px auto 30px;
}

.neo-musica__box01 {
  width: 90%;
  display: block;
  flex-wrap: wrap;
  font-size: 1.25em;
}

.neo-musica__box01--txt,
.neo-musica__box01--photo {
  width: 100%;
  margin-bottom: 20px;
}

.neo-musica__h5 {
  font-size: var(--f4);
}

.neo-musica__box02--photo {
  width: 96%;
  margin: 15px auto 15px;
}

.neo-musica__box01--txt p {
  font-size: var(--f6);
  line-height: 2;
}

.neo-musica__box02 {
  width: 96%;
  font-family: var(--academy-font);
  color: var(--academycolor);
  font-size: 1.25em;
  margin: 15px auto;
}

.neo-musica__h5--02 {
  margin: 30px 0 5px 0;
}

.neo-musica__box02--txt {
  font-size: .8em;
  line-height: 2;
}

.neo-musica__lesson--wrap {
  width: 96%;
  margin: 30px auto 10px;
}

.neo-musica__lesson--wrap p {
  line-height: 2;
}

.academy__list-style01 div {
  display: block;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.academy__list-style01 dt {
  width: 100%;
  padding: .5em 0;
  margin: 0 0 5px 0;
}

.academy__list-style01 dd {
  width: 100%;
  margin-bottom: 15px;
}

.neo-musica__qa--wrap dd {
  padding: 25px 0 0 45px;
  margin: 0;
}

.neo-musica__join--wrap {
  width: 96%;
  margin: 10px auto 70px;
  display: block;
}

.neo-musica__join--txt {
  padding-top: 25px;
}

.neo-musica__join--txt,
.neo-musica__join--photo {
  width: 100%;
  margin-bottom: 20px;
}

.neo-musica02__wrap {
  margin: 30px auto 100px;
  position: relative;
  z-index: 10;
}

.neo-musica02__wrap::after {
  content: "";
  width: 100%;
  height: 102%;
  top: -50px;
}

.neo-musica__qa--wrap dt,
.neo-musica__qa--wrap dd {
    padding: 25px 0 0 35px;
}

.neo-musica__qa--wrap dt::before,
.neo-musica__qa--wrap dd::before {
  font-size: 2.5em;
  top: -5px;
}



/* / アカデミー
--------------------------------------*/


/* インフォメーション
--------------------------------------*/


/* / インフォメーション
--------------------------------------*/


/* お問い合わせ
--------------------------------------*/
.contact-form th,
.contact-form td {
  display: block;
  width: 100%;
}

.contact-form th, {
  padding-bottom: 5px;
}

.contact-form td {
  padding-bottom: 20px;
}

.contact-form > label,
.contact-form > label + br {
  display: none;
}


/* / お問い合わせ
--------------------------------------*/



/* ブログ一覧 ------------*/
.blog-list__item {
  width: 45%;
}

.blog-list__item--img {
  width: 100%;
  height: 26vw;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

/* / ブログ一覧 ------------*/


/* / 下層ページ全体-------*/




  /* プライバシーポリシー -------*/

  .nallow-box {
    margin: 40px auto 0;
    width: 92%;
  }
  
  .nallow-box h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .nallow-box h3 {
    margin: 30px 0 5px;
  }
  
  .liststyle01 {
    margin: -10px 0 20px 1rem;
  }
  
  .liststyle01 li {
    list-style-position: inside;
    list-style-type: disc;
  }


/* / プライバシーポリシー --------*/

/* 投稿ページ -------*/
.post figure img,
.post img {
  max-width: 100%;
}


/* / 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/
 
/* お問い合わせ
--------------------------------------*/
.contact-form {
  width: 90%;
  margin: 0 auto 20px;
}

.contact-form th,
.contact-form td {
  display: block;
  width: 100%;
}

.contact-form th {
  padding-bottom: 5px;
}

.contact-form td {
  padding-bottom: 30px;
}

/* end お問い合わせ
--------------------------------------*/

  

/* フッター
--------------------------------------*/

.footer {
  padding-top: 20px;
}

.footer__nav {
  width: 85%;
  justify-content: flex-start;
  text-align: left;
}

.footer__contact {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 1.5em;
  margin-left: 1.5em;
  margin-top: 10px;
}

.footer__sns {
  width: 160px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px auto;
}

.footer__logo {
  width: 320px;
  margin: 20px auto 30px;
}


  /* トップへ戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    right: 3%;
    height: 40px;
    width: 40px;
  }


/* end フッター
--------------------------------------*/






}
/* end レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/