/*================================================================reset*/
html {
	font-size: 62.5%;
}

/*
ブラウザで表示されるフォントサイズを10px相当にする。
これをベースとしてそれ以降のセレクタのフォントサイズはpxではなくてremを使用する。
例えば14pxなら1.4rem、20pxなら2remと記述する。
*/

body {
	margin: 0;
	padding: 0;
	width: 100%; /* これはお好みで */
}

/* body * {
	box-sizing: border-box; 
  paddingをwidthやheightに含める。その方が計算が楽になる
	position: relative; position: absolureを指定したい時、親要素にわざわざposition: relativeを指定しなくても良いように
} */

/*
'*'は全称セレクタといい「すべての要素」という意味。
この場合「bodyの子要素全て」という意味。
*/

main {
	width: 100%;
	margin: 0 auto; /* これはお好みで */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

p,
ul,
dd,
dt,
dl
 {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

img {
	width: 100%; /* 画像の縦横比が崩れないように */
	height: auto; /* 画像の縦横比が崩れないように */
	vertical-align: bottom; /* 画像の下に隙間ができないように */
}

a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;

}

p {
  line-height: 150%;
  }

/*================================================================reset*/

.sp {
  display: none;
}


header {
  height: 80px;
  width: 100%;
  background-color: #d2cce6;
  border-bottom: #727171 0.5px solid;
  position: fixed;
  z-index: 100;
  
}

@media screen and (max-width:450px)  {
  header {
    height: 60px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}


header .container{
  display: flex;
  justify-content: space-between;

}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width:450px)  {
  .container {
    width: 90%;
  }
}

.header-logo {
  width: 120px;
  height: 60px;
  margin: 10px 0;
}

@media screen and (max-width:450px)  {
  .header-logo {
    width: 80px;
    height: 40px;
    margin: 10px 0;
  }
}

header li a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  margin: 0 30px;
  line-height: 80px;
  font-weight: bold;
}

header li {
  float: left;
}

@media screen and (max-width:450px)  {

  .menu-btn {
    display: block;
    position: fixed;
    right: 5%;
    top: 19px;
    padding: 0;
    width: 32px;
    height: 22px;
    background: none;
    border: none;
  }

  .menu-btn:focus {
    outline: none;
  }

  header .menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transition: all .3s; /* 0.3秒でなめらかに変化 */
  }

  header .menu-btn span:nth-of-type(1) { /* ハンバーガーメニュー1本目の線 */
    top: 0;
  }

  header .menu-btn span:nth-of-type(2) { /* ハンバーガーメニュー2本目の線 */
    top: 10px;
  }

  header .menu-btn span:nth-of-type(3) { /* ハンバーガーメニュー3本目の線 */
    top: 20px;
  }


  header .menu-btn.open span:nth-of-type(1) { /* タップ後のハンバーガーメニュー1本目の線 */
    top: 12px;
    transform: rotate(45deg); /* 45°回転 */
  }

  header .menu-btn.open span:nth-of-type(2) { /* タップ後のハンバーガーメニュー2本目の線 */
    display: none;
  }

  header .menu-btn.open span:nth-of-type(3) { /* タップ後のハンバーガーメニュー3本目の線 */
    top: 12px;
    transform: rotate(-45deg); /* -45°回転 */
  }

  .menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  flex-direction: column;
  top: 60px;
  right: -100%; /* メニューの幅の分、ウインドウの右外に配置 */
  z-index: 1000;
  background: #d2cce6;
  transition: all .2s; /* 0.2秒でなめらかに変化 */
  padding-top: 60px;
  }

  .menu p {
    font-size: 14px;
    border-bottom: 1px solid rgb(86, 86, 86);
    width: 80%;
    margin: 0 auto;
    margin-bottom: 60px;
    color: black;
    font-weight: bold;
  }

  .menu a {
    margin: 0 0 0 5px;
    color: black;
  }

  .menu a:visited {
    color: black;
  }

  .menu span{
    float: right;
  }

  .menu.open {
  right: 0; /* .menu-btnをクリックした時のメニューの位置 */
  }

}

main {
  margin-bottom: 60px;
}

.mainimg {
  position: relative;
}


@media screen and (max-width:450px)  {
  main {
    padding-top: 60px;
  }

  .sp-menu {
    margin: 0 auto;
    width: 80%;
    height: 40px;
    text-align: center;
  }
}

.main-img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 60px;
}

.main-logo {
  width: 40%;
  position: absolute;
  bottom: 10%;
  left: 16%;
}

main p {
  color:#231815;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width:450px)  {
  .main-img {
    margin-bottom: 40px;
    height: 50vh;
    object-fit: cover;
    object-position: 60% 100%;
  }

  .main-logo {
    top: 70%;
    width: 45%;
    left: 12%;
  }

  main p {
    font-size: 14px;
    text-align: left;
  }
}

.start {
  position: absolute;
  top: 20%;
  left: 17%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 20px;
}

.start h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.start p {
  text-align: left;
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width:1200px)  {
  .start {
    top: 120px;
    left: 10%;
    padding: 20px 10px;
  }

  .start h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .start p {
    font-size: 14px;
    margin: 0;
  }

}


@media screen and (max-width:450px)  {
  .start {
    top: 100px;
    left: 5%;
    padding: 20px 10px;
  }

  .start h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .start p {
    font-size: 11px;
    margin: 0;
  }

}


.section-title {
  padding-top: 60px;
}

.section-title2 {
  padding-top: 60px;
}

.imp h2{
  color: #ffffff;
  background-color: rgba(173, 0, 226, 0.8);
  width: 240px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin: 40px auto 10px auto;
  top: -40px;
}

.imp p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
  }


.imp .old {
  width: 100%;
}

@media screen and (max-width:450px)  {
  .imp h2 {
    font-size: 17px; 
    height: 25px;
    line-height: 25px;
    width: 200px;
    margin-bottom: 10px;
  }

  .imp p {
    font-size: 14px;
    text-align: left;
}

}

.section-title h1{
  color: #fff673;
  background-color: #727171;
  width: 240px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin: 0 auto 60px auto;
  top: -40px;
}

.section-title2 h1{
  color: #fff673;
  background-color: #727171;
  width: 300px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin: 0 auto 60px auto;
  top: -40px;
}

@media screen and (max-width:450px)  {
  .section-title h1 {
    font-size: 17px; 
    height: 25px;
    line-height: 25px;
    width: 200px;
    margin-bottom: 40px;
  }

  .section-title2 h1 {
    font-size: 17px; 
    height: 25px;
    line-height: 25px;
    width: 250px;
    margin-bottom: 40px;
  }
}

#class {
  background-image: url(img/41D63C8C-A736-41C2-A772-1F498B80E707.jpeg);
  background-size: cover;
  background-position: 0% 100%;
}

#class .container {
  position: relative;
}

.class-container {
  background-color: rgba(210, 204, 230, 0.8);
}

h2 {
  font-size: 16px;
  margin-bottom: 20px;
}

.class-p {
  font-size: 16px;
}

.class-p2 {
  position: absolute;
  top: 157px;
  left: 220px;
  font-size: 12px;
}

.class-menu {
  margin-bottom: 15px;
}

.class-groop {
  background-color: rgba(250, 250, 250, 0.5);
  margin-bottom: 40px;
  border-radius: 5px;
  padding: 15px;
}

.class-groop h2 {
  border-bottom: 1px solid black;
}

.class-groop p{
  font-size: 16px;
}

.class-groop-p {
  margin-bottom: 20px;
}


@media screen and (max-width:450px)  {
  #class {
    background-position: 70% 100%;
  }

  h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .class-p {
    position: absolute;
    top: 127px;
    left: 80px;
    font-size: 14px;
  }

  .class-p2 {
    position: static;
    width: 100%;
    word-wrap: break-word;
    margin-left: auto;
    font-size: 14px;
  }

  .class-groop {
    margin-bottom: 20px;
  }

  .class-groop p {
    font-size: 14px;
  }

}

.old{
  border-collapse:collapse;
  background-color: rgba(250, 250, 250, 0.5);
  margin-bottom: 10px;
}

.old th {
  border:1px solid #600098;
  width: 200px;
  font-size: 14px;
  height: 30px;
}

.old td {
  border:1px solid #600098;
  font-size: 14px;
  text-align: center;
  height: 30px;
}

@media screen and (max-width:450px)  {
  .old {
    margin-left: 0px;
    width: 100%;
    margin-bottom: 20px;
  }

  .old th {
    font-size: 14px;
    width: 50%;
  }

  .old td {
    font-size: 14px;
    width: 50%;
  }
}

.course h2 {
  margin-bottom: 10px;
}


.coment th {
  text-align: left;
  width: 180px;
  height: 22px;
  font-size: 14px;
}

.coment td {
  font-size: 14px;
}

.class-menu-table {
  font-size: 16px;
  font-weight: bold;
}

.class-menu-table th{
  text-align: left;
  width: 125px;
  height: 45px;
  vertical-align: top;
}

.class-menu-table td {
  vertical-align: top;
}

@media screen and (max-width:450px)  {

  .coment- {
    margin-bottom: 30px;
  }

  .coment- h3 {
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
  }

  .coment- p {
    font-size: 14px;

  }
    

  
}

.tax {
  text-align: right;
  font-size: 12px;
  margin-bottom: 20px;
}

.schedule {
  text-align: center;
  margin-bottom: 10px;
}

.lesson {
  padding-bottom: 60px;
}

.schedule-table {
  margin: 0 auto;
  max-width: 800px;
  font-size: 10px;
  border-collapse: collapse;
}

.day-of-week {
  width: 13%;
  height: 30px;
  border:1px solid #600098;
}


.time {
  text-align: right;
  height: 17.5px;
  width: 100px;
  border-right:1px solid #600098;
  border-left:1px solid #600098;
}

.schedule-table td {
  border-right:1px solid #600098;
  border-left:1px solid #600098;
  text-align: center;
}

.brank {
  border:1px solid #600098;
  text-align: right;
}

.not-brank {
  border:1px solid #600098;
}

.not-brank-top {
  border-top:1px solid #600098;
}

.not-brank-top2 {
  border-top:1px dotted #600098;
}

.not-brank-bottom {
  border-bottom:1px solid #600098;
}

.bg-white {
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:450px)  {
  .table-scroll{
    overflow-x: scroll;
  }

  .schedule-table {
    width: 600px;
  }
  
}


#information {
  background-color: white;
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
}


#information h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

#information h3 {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.name-a {
  font-size: 14px;
}

.profile p {
  font-size: 14px;
  text-align: center;
}

.profile-1,
.profile-2 {
  margin-bottom: 30px;
}

.profile {
  margin-bottom: 80px;
}

.name-pro {
  position: relative;
}

.name-a {
  position: absolute;
  top: 25px;
  left: 50%;
  font-size: 10px !important;
}

.profile-img {
  background-image: url(img/2428.JPG);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  background-position: 80% 30%;
  background-size: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
  

}

@media screen and (max-width:450px)  {
  .profile-img {
    width: 220px;
    height: 220px;
  }

  .name-a {
    font-size: 10px !important;
    position: absolute;
    top: 20px;
    left: 50%;
  }
}

.profile-table {
  text-align: left;
  margin: 0 auto;
  font-size: 14px;
  margin-bottom: 20px;
}

.profile-table th {
  font-weight: normal;
  width: 85px;
}


@media screen and (max-width:450px)  {
  #information h2 {
    font-size: 16px;
  }

  #information h3 {
    font-size: 16px;
  }

  .profile p {
    font-size: 14px;
    text-align: left;
  }

  .profile-table {
    margin: 0 0 20px 0;
  }
}




.access-table {
  font-size: 14px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.access-table th {
  width: 70px;
  text-align: left;
  vertical-align: top;
  height: 35px;
}

.access-table td {
  vertical-align: top;
}

.material-icons-two-tone {
  vertical-align: -8px;
}

.access {
  max-width: 600px;
  margin: 0 auto;
}

.studio-img {
  display: block;
  width: 600px;
  margin:0 auto;
  margin-bottom: 10px;
}

.studio-img-p {
  margin-bottom: 40px;
}

.studio {
  margin-top: 40px;
}


@media screen and (max-width:450px)  {
  .studio {
    width: 100%;
    height: 250px;
    
  }

  .studio-img {
    margin-bottom: 10px;
    width: 100%;
  }
}


.background-img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.2;
  z-index: -1;
}

.background {
  opacity: 0.1;
}

#notice {
  background-color: white;
  padding-bottom: 60px;
  max-height: 10000px!important;
}

#notice h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width:450px)  {
  #notice h2 {
    font-size: 16px;
  }
}

.notice-page a{
  font-size: 14px;
  text-decoration: none;
  color: black;
}

.notice-page a:visited {
  color: black;
}

.notice-page {
  text-align: right;
  margin-top: 20px;
}

#contents-maker-news {
  border-top:  1px solid #000000;
}

.cm-box {
	padding: 10px 0px;
  margin: 0 0px 10px 0px;
	border-bottom: 1px dotted #000000;
  font-size: 14px;
}

.cm-box dt,dd {
	margin: 20px 5px;
  max-width: 948px;
  flex-wrap: wrap;
  word-wrap: break-word;
}

.cm-box dt {
  font-weight: bold;
}

#contact {
  background-color: #d2cce6;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
  padding-bottom: 60px;
}

#contact p {
  font-size: 14px;
  /* text-align: center; */
}

.contact-p {
  margin-bottom: 30px;
  
}

.contact-p p {
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
}

.contact-form {
  margin: 0 auto;
  width: 400px;
  height: 50px;
  background-color: #fff673;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.contact-form p {
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  color: black;
}

.under-contact-form {
  text-align: center;
}

@media screen and (max-width:450px)  {
  
  #contact-p p {
    text-align: left;
  }

  .contact-form {
    width: 80%;
  }

  .contact-form p {
    text-align: center;
  }
}

a {
  text-decoration: none;
}

.tel {
  color: black;
}

footer {
  text-align: center;
  font-size: 16px;
  margin: 60px auto 0 auto;
}

.footer-table {
  margin: 0 auto 20px auto;
}

.footer-table th{
  text-align: left;
  width: 60px;
  height: 30px;
}


.insta {
  width: 100px;
  margin-bottom: 60px;
}

.footer-logo {
  width: 400px;
  display: block;
  margin: 100px auto 40px auto;
}

@media screen and (max-width:450px)  {
  .footer-logo {
    width: 80%;
  }

  footer {
    font-size: 14px;
  }

  .contact-p p {
    text-align: left;
  }

  .footer-table td {
    text-align: left;
  }
}

.under-footer {
  background-color: #727171;
  height: 80px;
}

.under-footer p {
  font-size: 14px;
  color: white;
  line-height: 80px;
}




.notice {
  padding-top: 140px;
}

@media screen and (max-width:450px)  {
  .notice {
    padding-top: 60px;
  }
}



#contact-page {
  padding-top: 100px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

@media screen and (max-width:450px)  {
  #contact-page {
    padding-top: 60px;
    width: 90%;
    margin: 0 auto 60px auto;
  }


}



.form {
  width: 400px;
  margin: 0 auto;
}

/* #contact-page input {
  width: 400px;
  height: 30px;
} */

.input {
  width: 400px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid #d2cce6;
}

input {
  text-align: left;
}

.select {
  border-radius: 5px;
}

.post-code {
  width: 150px;
  border-radius: 5px;
  border: 2px solid #d2cce6;
}

.height {
  height: 40px;
}

.content-input {
  width: 400px;
  height: 200px;
  border: 2px solid #d2cce6;
  border-radius: 5px;
}

label {
  font-size: 16px;

  text-align: left;
  font-weight: bold;
  display: block;
}

.form-div {
  margin-bottom: 30px;
}

.con {
  color: red;
}

.post- {
  font-size: 18px;
  color: black;
} 

input::placeholder {
  text-align: left;
  color: #a8a8a8;
}

.submit {
  background-color: #727171;
  color: #fff673;
  width: 150px;
  height: 40px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  display: block;
  margin: 0 auto 10px auto;
}

@media screen and (max-width:450px)  {
  .form {
    width: 100%;
  }

  .input {
    width: 100%;
  }

  .content-input {
    width: 100%;
    height: 200px;
  }

  label {
    font-size: 14px;
  }

  .submit {
    font-size: 14px;
  }

}



.thanks {
  padding-top: 100px;
  margin: 0 auto;
  width: 80%;
}

.thanks h1 {
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.thanks div {
  margin: 80px 0;
}

.thanks p {
  text-align: center;
  font-size: 16px;
}

.thanks a {
  display: block;
  margin: 0 auto;
  width: 200px;
  background-color: #727171;
  color: #fff673;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
}

details h2 {
  margin: 15px 0;
}

details h3 {
  margin: 20px 0 10px 0;
}

.ag {
  margin: 10px 0;
}

.check {
  margin: 10px 0;
}







div#contents-maker-news div.cm-box:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

div#contents-maker-news div.cm-box p {
	width: 300px;
	float: left;
}

div#contents-maker-news div.cm-box p img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

div#contents-maker-news div.cm-box dl {
	width: calc( 100% - 300px - 40px );
	float: right;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 450px ) {


div#contents-maker-news div.cm-box p {
	width: 30%;
}

div#contents-maker-news div.cm-box dl {
	width: 65%;
}


}
/* 1000pixel end */

.carousel {
  margin-bottom: 40px;
}

.carouselImg {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width:450px)  {
  .carouselImg {
    max-width: 300px;
  }
}


.slide-arrow {
  background-color: rgba(255, 255, 255, 0);
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

.prev-arrow {
  border-bottom: 10px solid  rgba(255, 255, 255, 0);
  border-left: 0;
  border-right: 10px solid black;
  border-top: 10px solid  rgba(255, 255, 255, 0);
  left: -25px;
}
.next-arrow {
  border-bottom: 10px solid  rgba(255, 255, 255, 0);
  border-left: 10px solid black;
  border-right: 0;
  border-top: 10px solid  rgba(255, 255, 255, 0);
  right: -25px;
}

.carousel-div {
  position: relative;
}

.carousel-div p {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 10px;
}

.map-img {
  margin-top: 40px;
}

.contact-notice {
  margin-top: 50px;
}

 p {
  font-size: 14px;
  margin-top: 10px;
}

.contact-notice ul, ol {
  color: #1e366a;
  border-top: solid #1e366a 1px;/*上のボーダー*/
  border-bottom: solid #1e366a 1px;/*下のボーダー*/
  padding: 0.5em 0 0.5em 1.5em;
}

.contact-notice ul li, ol li {
  line-height: 1.5;
  padding: 0.5em 0;
  font-size: 14px;
}

.main-p {
  background-color: #727171;
  padding: 0px 5px;
  margin: 20px 0;
  
}

.main-p p {
  color: #FFF673;
  margin: 0;
}

.unoa p {
  margin: 0;
  font-size: 12px;
}

.unoa-image {
  width: 50%;
  display: flex;
  padding-bottom: 40px;
}

.unoa a{
  background-color: none;
  color: black;
  width: 100%;
}

.unoa {
  margin: 40px 0; 
}

@media screen and (max-width:450px)  {
  .unoa {
    height: 65px;
    margin: 20px 0;
  }
}

.unoa-p {
  width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
}

.unoa-p2 {
  width: 400px;
  margin: 0 auto;
}

@media screen and (max-width:450px)  {
.unoa-p {
  width: 100%;
  margin-bottom: 5px;
}
}

.unoa-p1, .unoa-p3 {
  font-size: 16px;

}

.unoa-p2 {
  font-size: 12px;
  padding-bottom: 40px;
}

.blank {
  border-top: dotted;
  margin-bottom: 40px;
}

.unoa-pp {
  font-size: 14px;
}