@charset "UTF-8";
/* CSS Document */

/*フォント*/
p, li, h2, h4, td ,th {
    font-family: "zen-maru-gothic", sans-serif;
font-weight: 400;
font-style: normal;
}

h3 {
    font-family: zen-maru-gothic, sans-serif;
    font-weight: normal;
    margin-bottom: 10px;
    font-size: 30px;
}

/*コンテナー*/
.container{
   margin-left: 10%;
  margin-right: 10%;
  width: calc(100% - 20%);
}

/*背景色指定*/
/*
.main_visual ,.sakusha ,.blog ,.instagram , .slider_navigation ,body {
    background-color: #F2E4EC;
}
*/

footer {
    background-color: #ef3f98;
}

footer ul li {
    color: #fff
}

/*ヘッダー*/
header {
    position: relative;
    margin-top: 100px;
}

.header__logo img {
	width:190px ;
	height: auto;
    margin: 0 0 -40px -30px;
    z-index: 9999;
    position: absolute;
    top: -100px;
}

@media (max-width: 700px) {
  .header__logo img {
      width: 100px;
      margin:0 0 -30px -30px;
    }
}

@media (min-width: 701px) and (max-width: 930px) {
    .header__logo img {
        width: 150px;
    }
}

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

.imgClip {
    clip-path: inset(20px 20px 20px 20px round 15px);
}

.main-visual__slider {
    position: relative;
}

.main-visual__slider h2 {
  position: absolute;
  bottom: 88px;
  left: -41px;
  font-size: 3rem;
　color: #fff;
  text-stroke: 1px #000;
  -webkit-text-stroke: 1px #000;
}

.sp-only {
    display: none;
}

@media (max-width: 380px) {
  .main-visual__slider h2 {
        font-size: 2rem;
        bottom: 30px;
        left: -10px;
    }
    .sp-only {
    display: block;
}
}

@media (min-width: 381px) and (max-width: 579px){
    .main-visual__slider h2{
        margin-left: 25px;
        font-size: 2em;
    }
}

@media (max-width: 580px) {
    .main-visual__slider h2 {
        bottom: 30px;
    }
     .sp-only {
    display: block;
}
}

.main-visual__navigation > ul {
    display: flex;
}

.main-visual__slider img {
    height: 50vw;
    margin: 0 calc(50% - 50vw);
	width: 100vw;
    object-fit: cover;
    
}

@media (max-width: 480px) {
    .main-visual__slider img {
    height: auto;
    margin: 0 calc(50% - 50vw);
	width: 100vw;
}
}

/*メインビジュアルのナビゲーション*/
.main-visual__navigation {
    margin: 56px 0;
    padding: 15px;
    border-top: solid 3px #72662B;
    border-bottom: solid 3px #72662B;
}

header .container {
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%); 
  background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}

/*ハンバーガーメニューを押す前は中身を表示させない*/
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100%;
  background-color: #FFF;
  transition: transform 0.4s ease;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
  margin: 0 -30px -10px 0;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
  margin-top: -100px;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #F523E2;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}


/*CSSでナビゲーションメニューのスタイルを整える*/
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}


/* SPビューに対するスタイル */
@media (max-width: 480px) {
    
    .main-visual__navigation ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
        justify-content: space-around;
  list-style: none;
}
    .main-visual__navigation li {
        line-height: 1.5em;
    }
}


/*    作者セクション　*/
.sakusha {
    margin: 30px 0;
}

    .sakusha .container img {
        text-align: center;
        width: 100%;
        height:50vw;
        object-fit: cover
    }

.sakusha p {
    padding-bottom: 20px;
    line-height: 1.4rem;
}

.section_image_p {
    color: #797777;
    font-size: 0.8em;
    padding-top: 10px;
}

.certification {
    font-weight: bold;
    margin-bottom: 3px;
}

/*レッスン*/

table{
  width: 100%;
  border-collapse: collapse;
}

table tr{
  border-bottom: solid 2px white;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #ef3f98;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #ef3f98;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
/*
table {
    border: solid 1px #797777;
    border-collapse: collapse;
}

td {
    padding:10px 20px;
    border: solid 1px #797777;
    text-align: center;
}
*/

.fee {
    vertical-align: middle;
}
    
/*    ブログセクション　*/
    .blog .container img {
        float: left;
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin-right: 10px;
    }
    
    .blog__article {
        margin-bottom: 30px;
    }
.date {
    font-size: 0.8em;
    color: #797777;
    margin-bottom: 5px;
}

h4 {
    margin-bottom: 10px;
}
    
    .blog__caption--right {
        flex-direction: column;
    }
.blog__article--title {
    font-size: 1.2em;
    margin-bottom: 5px;
}

    .blog__article--category {
    color: #797777;
}

.readmore{
    font-size: 0.8em;
    color: #797777;
}
    
/*    インスタグラムセクション*/
    
    .instagram {
        margin: 50px 0;
    }
    
    
    .instagram__wrapper {
        display: flex;
        flex-wrap:wrap;
    }
  
    .instagram__wrapper > img {
        width: 50%;
        object-fit: cover;
        height: 140px;
    }

@media (max-width:919px) {
        .instagram {
        margin: 30px 0 50px;
    }
}

    
/*フッター*/
footer ul {
    display: flex;
    justify-content: space-around;
    
}


    @media (max-width: 999px) {
        .footer__list {
            display: flex;
            flex-direction: column;
            margin-left: 16%;
        }
        
        .footer__list > li {
            margin-bottom: 10px
        }
        
    }

ul.footer__list {
    margin-top: 30px;
}

footer .footer_icon {
    display: flex;
    justify-content: flex-end;

}

.footer__copy {
    text-align: center;
    padding-bottom: 10px;
}

/*
.footer__icon--scroll img {
	width: 150px;
	height: auto;
}

.footer__icon--scroll {
  position: fixed;
  bottom: 0;
  right: 0;
}
*/

/*snsアイコン*/
.footer__sns-icons {
  list-style: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-around;
}

.footer__sns-icons li {
  margin-right: 10px;
}

.footer__sns-icons a {
  color: #fff;
  text-decoration: none;
}

.footer__sns-icons a:hover {
  color: #F523E2;
}

.size {
     font-size:3em;
}

/*ページトップまでいくスクロールアップボタン*/

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #ef3f98;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #FFFFFF;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*フッターコピー*/

.footer__copy {
    color: #fff;
    margin-top: 15px;
    font-size: small;
}
    

/*ロードでふわっと表示は使わないかも・・*/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/*スクロールでふわっと*/
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
