@charset "UTF-8";
/*color
-----------------------*/
:root {
    --font-color:#555;
    --side-nav: #778899;
    --backcolor: #fef9f0;
    --navbtn: #444;
    --tag: #0bd;
    --wihte: #fff;
    --hover: rgba(85, 85, 85, .5);
    --footer: #abb8c3;

    --main-Sentence: 'Shippori Mincho B1', serif;
    --sub-Sentence: 'Shippori Mincho', serif;
    --catch: 'Hina Mincho', serif;
}
/*共通部分
------------------*/
html {
    font-size: 100%;
    background-color: var(--backcolor);
    scroll-behavior: smooth;
}
a {
    color: var(--font-color);
}
body {
    color: var(--font-color);
    font-family: sans-serif;
}
body-2 {
    width: 98%;
    margin: auto;
    display: inherit;
}

img {
    max-width: 100%
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
p {
    line-height: 1.7rem;
}
/*サイドナビ
------------------------------------*/
#g-nav{
    position:fixed;
    z-index: 4;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:var(--backcolor);
    /*動き*/
	transition: all 0.5s;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive .main-nav{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 0.2rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 0, 255, 0);
    border-radius: 5px;
}

	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
	background-color: var(--navbtn);
  	width: 45%;
    border-radius: 5px;
}

.openbtn span:nth-of-type(1) {
    top: 0.5rem;
    left: 0.7rem;
}

.openbtn span:nth-of-type(2) {
    top: 0.9rem;
    left: 0.7rem;
}

.openbtn span:nth-of-type(3) {
    top: 1.3rem;
    left: 0.7rem;
}

.openbtn span:nth-of-type(3)::after {
    position: absolute;
    top: 0.4rem;
    left: -0.3rem;
    color: var(--navbtn);
    font-size: 0.6rem;
    text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 0.5rem;
    left: 0.6rem;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 1.25rem;
    left: 0.6rem;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(3)::after {
    transform: translateY(0) rotate(-45deg);
    top: 0.5rem;
    left: 0.3rem;
}

/*header
-----------------------*/
.top-image-pc {
    display: none;
}
.top-image-sp {
    display: inline;
}

.top-image-sp h1 {
    position: absolute;
    top: 2rem;
    width: 4rem;
    left: 1rem;
    z-index: 2;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem 1rem;
    margin-bottom: 1rem;
}
.top-image h1 {
    position: absolute;
    left: 1rem;
    top: 0;
    z-index: 2;
}
.nav-position {
    margin: 1rem 2rem 0 1rem;
    z-index: 2;
}
.main-nav .logo {
    padding: 0.5rem 0.5rem 0.5rem 0rem;
    height: 2rem;
}
.main-nav li {
    border-top: 2px solid var(--font-color);
    padding: 1rem 0 1rem 0.5rem;
    font-family: var(--sub-Sentence);
}
.main-nav a {
    color: var(--font-color);
}
.side-logo {
    display: flex;
    border-bottom: 2px solid var(--font-color);
}

.side-logo h2 {
    color: var(--font-color);
    margin: auto 0;
    font-size: 1.2rem;
} 
.main-nav .links {
    display: flex;
    justify-content: center;
    border-top: 4px solid var(--font-color);
}
.main-nav .links li {
    width: 1.7rem;
    height: 1.5rem;
    text-align: center;
    background-color: var(--font-color);
    border-radius: 50%;
    border-top: none;
    padding: 0.2rem 0 0 0;
    margin: 1rem 0.4rem 0;
}
.main-nav .links a {
    font-size: 1.2rem;
    color: #fff;
}
.sabu-menu {
    margin: 1rem 0 0 0;
}
.sabu-menu a {
    display: block;
    padding: 1rem 0 0 0;
}
/*アニメーション
------------------------------*/
.nav-position {
    width: 300px;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 3s;
}
.side-logo {
    transform: translateX(100%);
    transition: transform 3s;
}
  
.visible {
transform: translateX(0);}
.side-logo {
  transform: translateX(0);
}
p.pc {
    display: none;
}
/*desktop-header
--------------------------------*/
.desktop-header {
    display: none;
}
/*---------------------------*/
/*==================================================
スライダーのためのcss
===================================*/
.slider-text {
    position: absolute;
    right: 0;
    z-index: 3;
    padding: 2rem 0;
    width: 20%;
}
.catch-copy {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: var(--backcolor);
    font-family: var(--catch);
    text-shadow: 2px 2px #555;
}
.slider {
    position:relative;
      z-index: 2;
      /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
      /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
.top-image h1 {
    position: absolute;
}
.top-image .logo {
        max-width: 100%;
        height: 23vh;
        margin: 1rem 0 0 0;
}
  /*　背景画像設定　*/
/*--スマホ
-------------------*/
.slider-item01 {
  background:url(../images/main17_sp.jpg);
}
.slider-item02 {
  background:url(../images/main257_sp.jpg);
} 
.slider-item03 {
  background:url(../images/main258_sp.jpg);
}
.slider-item04 {
  background:url(../images/main259_sp.jpg);
}
.slider-item05 {
  background:url(../images/main260_sp.jpg);
}
/*------PC
-----------------------*/
.slider-item06 {
    background:url(../images/main17.jpg);
}
.slider-item07 {
    background:url(../images/main257.jpg);
}
.slider-item08 {
    background:url(../images/main258.jpg);
}
.slider-item09 {
    background:url(../images/main259.jpg);
}
.slider-item10 {
    background:url(../images/main260.jpg);
}

  
  .slider-item {
      width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
      height:60vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
      background-repeat: no-repeat;/*背景画像をリピートしない*/
      background-position: center;/*背景画像の位置を中央に*/
      background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
  }
  
  /*矢印の設定*/
  
  .slick-prev, 
  .slick-next {
      position: absolute;
      z-index: 3;
      top: 42%;
      cursor: pointer;/*マウスカーソルを指マークに*/
      outline: none;/*クリックをしたら出てくる枠線を消す*/
      border-top: 2px solid rgba(255, 255, 255, .5);/*矢印の色*/
      border-right: 2px solid rgba(255, 255, 255, .5);/*矢印の色*/
      height: 1rem;
      width: 1rem;
  }
  
.slick-prev {
    margin: 5.4rem 0 0 0;
    left: 5%;
    transform: rotate(225deg);
    display: none;
}
  
.slick-next {
    right: 5%;
    transform: rotate(45deg);
    margin-top: 5.4rem;
    display: none;
}
  
  /*ドットナビゲーションの設定*/
  
.slick-dots {
    margin: 1.5rem 0rem 0 0;
    text-align: center;
    padding: 0;
}
  
  .slick-dots li {
      display:inline-block;
      margin:0 5px;
  }
  
.slick-dots button {
    color: transparent;
    outline: none;
    width:0.5rem;/*ドットボタンのサイズ*/
    height:0.9rem;/*ドットボタンのサイズ*/
    display:block;
    background:rgba(0, 0, 255, 0);/*ドットボタンの色*/
    border: 1px solid var(--font-color);
    border-radius: 50%;
}
  
  .slick-dots .slick-active button{
      background:var(--font-color);/*ドットボタンの現在地表示の色*/
  }
ul.slider.slick-initialized.slick-slider.slick-dotted {
    padding: 0.5rem 0 0 0;
}
/*desktopのみ表示
-------------*/
.desk-side-menu {
    display: none;
}
/*what
------------------------*/
#whats {
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    margin: 1rem;
}
.what h1 {
    text-align: center;
    font-size: 2rem;
    font-family: var(--main-Sentence);
    padding: 2rem 0 1rem 0;
}
.what h2 {
    font-size: 1rem;
    padding: 1rem 0;
    line-height: 1.5rem;
    font-family: var(--main-Sentence);
    font-weight: lighter;
}

i.fa-solid.fa-angle-right {
    padding: 0 0 0 1rem;
}
/*hello
-------------------*/
#hello {
    margin: 1rem 1rem 0;
    border-bottom: 1px solid;
    padding-bottom: 1rem;
}
#hello h1 {
    text-align: center;
    font-size: 2rem;
    padding: 0rem 0 1rem 0;
    font-family: var(--main-Sentence);
}
#hello h2 {
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.1rem;
    font-family: var(--main-Sentence);
    padding: 2rem 0 1rem 0;
}
.btn {
    font-size: 0.8rem;
    padding: 0.8rem 0rem 0rem 0rem;
    margin: 2rem auto;
    text-align: center;
    border-bottom: 1px solid var(--font-color);
    font-family: var(--main-Sentence);
    width: 40%;
}

.home-sentence p.btn {
    font-size: 1.3rem;
    padding: 0.8rem 1rem 0.8rem 1rem;
    margin: 2rem 5rem 4rem 5rem;
    text-align: center;
    border: 2px solid;
    border-radius: 50px;
}
.image h3 {
    text-align: center;
    font-size: 1.3rem;
    padding: 1rem;
    font-family: var(--main-Sentence);
}
.image h4 {
    text-align: center;
    font-size: 1.5rem;
    padding: 0 0 2rem 0;
    font-family: var(--main-Sentence);
}
.home-sentence h3 {
    font-size: 0.7rem;
    padding: 1rem 0;
    line-height: 1.8rem;
    font-family: var(--sub-Sentence);
    font-weight: lighter;
    margin-bottom: 1rem;
    text-align: center;
}
/*start
----------------*/
#start {
    margin: 1rem;
    border-bottom: 1px solid;
    padding-bottom: 1rem;
}
#start h1 {
    text-align: center;
    font-size: 2rem;
    padding: 2rem 0 1rem 0;
    font-family: var(--main-Sentence);
}
#start h2 {
    font-size: 1rem;
    padding: 1rem 0;
    line-height: 1.5rem;
    font-family: var(--main-Sentence);
    font-weight: lighter;
}
#start h2 a{
    font-weight: bold;
}

#start.btn {
    font-size: 1rem;
    padding: 0.8rem 0rem 0rem 0rem;
    margin: 2rem 7rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--font-color);
    font-family: var(--main-Sentence);
}
/*----------------*/
.button {
    align-items: center;
    color: var(--font-color);
    display: flex;
    font-size: 1.6rem;
    height: 50px;
    justify-content: center;
    max-width: 50px;
    min-width: 50px;
    position: relative;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    margin-top: 1rem;
    font-weight: 900;
}
.button:hover {
    transition: .4s;
    color: var(--backcolor);
}
.button:after {
    background-color: var(--backcolor);
    border: 1px solid var(--font-color);
    content: "";
    display: block;
    height: 60%;
    position: absolute;
    -webkit-transform: rotate(45deg); 
    transform: rotate(45deg); 
    width: 60%;
    z-index: -1;
}
.button:hover::after{
    background-color: var(--hover);
    border: 1px solid var(--hover);
    transition: .4s;
}
/*blog
----------------------*/
#blog,#member,#schedule {
    margin: 1rem;
    border-bottom: 1px solid;
    padding-bottom: 1rem;
}
#blog img {
    width: 100%;
}
#blog h1 {
    text-align: center;
    font-size: 2rem;
    padding: 2rem 0 1rem 0;
    font-family: var(--main-Sentence);
}
#blog h2 {
    font-size: 1rem;
    padding: 1rem 0;
    line-height: 1.5rem;
    font-family: var(--main-Sentence);
    font-weight: lighter;
}
#blog.btn {
    font-size: 1rem;
    padding: 0.8rem 0rem 0rem 0rem;
    margin: 2rem 7rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--font-color);
    font-family: var(--main-Sentence);
}
/*会員ページ
------------------------*/
#member {
    margin: 1rem;
    padding-bottom: 1rem;
}
#memberimg {
    width: 100%;
}
#member h1,#schedule h1,#news h1 {
    text-align: center;
    font-size: 2rem;
    padding: 2rem 0 1rem 0;
    font-family: var(--main-Sentence);
}
#member h2,#schedule h2 {
    font-size: 1rem;
    padding: 1rem 0;
    line-height: 1.5rem;
    font-family: var(--main-Sentence);
    font-weight: lighter;
}
#member.btn {
    font-size: 1rem;
    padding: 0.8rem 0rem 0rem 0rem;
    margin: 2rem 7rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--font-color);
    font-family: var(--main-Sentence);
}
/*news
-------------------------*/
#news li {
    font-size: 1.1rem;
    padding: 0.3rem 0rem;
    font-family: var(--sub-Sentence);
    color: var(--font-color);
    line-height: 1.2rem;
}
#news span.bold {
    font-weight: 800;
}
#news {
    margin: 1rem;
}
/*foote
--------------------------*/
footer {
    text-align: center;
    background-color: var(--footer);
}
.footer h1 {
    padding: 1rem 0 1rem;
    font-size: 1rem;
    font-family: var(--main-Sentence);
}
.footer-nav {
    margin: 1rem 0;
}
.footer-nav a {
    font-family: var(--main-Sentence);
}
.nav2 {
    display: flex;
    justify-content: center;
}
.nav2 a {
    font-family: var(--main-Sentence);
}
.nav2 li {
    padding: 0 0.5rem 0;
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
}
.side-bar {
    border-right: 1px solid;
}
small {
    font-size: 0.8rem;
}
/*footer-links
------------------*/
.footer-links {
    display: flex;
    justify-content: center;
    border-top: none;
}
.footer-links li {
    width: 1.7rem;
    height: 1.5rem;
    text-align: center;
    background-color: var(--side-nav);
    border-radius: 50%;
    border-top: none;
    padding: 0.2rem 0 0 0;
    margin: 0.5rem 0.4rem 0.5rem;
}
.footer-links a {
    font-size: 1.2rem;
    color: #fff;
}


/*desk-top
---------------------------*/
@media  (min-width: 400px) {
.btn {
    width: 30%;
}
}
@media  (min-width: 600px) {
    .top-image-sp {
        display: none;
    }
    .top-image-pc {
        display: inline;
    }
    .top-image-pc h1 {
        position: absolute;
        top: 3rem;
        width: 8rem;
        left: 4rem;
        z-index: 2;
    }

    header {
        position: sticky;
        top: 0px;
        background: var(--backcolor);
        z-index: 2;
    }
    h5 {
        max-width: 1400px;
        text-align: end;
        padding: 1rem 1rem 0;
        font-size: 0.5rem;
        color: var(--font-color);
        font-family: var(--main-Sentence);
    
    }
    .desktop-header ul li a:hover {
        color: var(--hover);
    }
    #news li a:hover{
        color: var(--hover);
    }
    .slider-text {
        position: absolute;
        z-index: 3;
        width: 25%;
    }
    .site-header {
        display: none;
    }
    .desktop-header {
        display: inline;
    }
    ul.right-part, ul.left-part {
        display: flex;
        justify-content: center;
    }
    .top-menu {
        display: block;
    }
    .right-part li, .left-part li {
        font-family: var(--main-Sentence);
        margin: 0 1rem 1rem 1rem;
    }
    .left-part li {
        margin: 0 1rem 1rem 2rem;
    }
    .top-menu a:hover{
        color: var(--hover);
    }

    .top-image .logo {
        height: 45vh;
        margin: 4rem 0px 0 3rem;
        z-index: 3;
    }
    .top-image h1 {
        position: absolute;
        text-align: center;
        width: 25%;
    }
    .top-image {
        margin: 0 auto;
        width: 90%;
        max-width: 14000px;
    }
    .slider-item {
        height: 83vh;
        max-width: 1400px;
        text-align: center;
        margin: 0 auto;
    }
    .catch-copy {
        font-size: 3rem;
        line-height: 4rem;
        text-shadow: 3px 3px #555;
    }
    .slick-prev {
        margin: 10rem 0 0 0;
        left: 2%;
    }
    .slick-next {
        right: 2%;
        margin-top: 10rem;
    }
    /*main
    ---------------*/
    main {
        display: inline;
    }
    .left-side {
        width: 70%;
    }
    #hello,#whats,#start,#blog,#member,#schedule,#news {
        margin: 2rem 5rem 0;
    }
    /*what
    ------------*/
    .what h1 {
        font-size: 2.5rem;
        padding: 3rem 0 3rem 0;
    }
    .what h2 {
        font-size: 1.3rem;
        padding: 1rem 0;
        line-height: 2rem;
    }
    .btn {
        font-size: 1rem;
        padding: 1rem;
        margin: 2rem 1rem 2rem 5rem;
        text-align: end;
        border: none;
        width: 83%;
    }
    .btn a {
        position: relative;
        padding: 0.5rem;
    }
    .btn a:hover {
        color: var(--hover);
    }
    .btn a::before {
        background: var(--hover);
        content: '';
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    .btn a:hover:before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
    /*hello
    ---------------------*/
    .photo {
        width: 100%;
    }
    #hello h1 {
        font-size: 2.5rem;
        padding: 0rem 0 3rem 0;
    }
    #hello h2 {
        font-size: 1.1rem;
        line-height: 1.5rem;
        padding: 2rem 0 1rem 0;
    }
    .home-sentence h3 {
        font-size: 1.3rem;
        line-height: 3rem;
        text-align: center;
    }
    /*start
    -----------------*/
    #start h1 {
        font-size: 2.5rem;
        padding: 3rem 0;
    }
    #start h2 {
        font-size: 1.3rem;
        padding: 1rem 0;
        line-height: 2rem;
    }
    /*blog
    ------------------------------*/
    #blog h1 {
        font-size: 2.5rem;
        padding: 3rem 0;
    }
    #blog h2 {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    /*member
    ---------------------*/
    #member h1,#schedule h1,#news h1 {
        font-size: 2.5rem;
        padding: 3rem 0 3rem 0;
    }
    #member h2,#schedule h2,#news {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    /*news
    --------------------------*/
    #news span.bold:hover { 
        color: var(--hover); 
    }
    #news li {
        padding: 0.5rem 0rem;
    }
    #news span.bold {
        font-weight: 800;
    }
    /*footer
    --------------------------*/
    .footer a:hover {
        color: var(--hover);
    }
    .footer-links li:hover{
        background-color: var(--hover);
    }
    .footer-links a:hover{
        color: var(--wihte);
    }
}
@media  (min-width: 800px) {
    #hello,#whats,#start,#blog,#member,#schedule,#news {
        margin: 2rem 8rem 0;
    }
}
@media  (min-width: 1050px) {
    .top-menu {
        justify-content: center;
        display: flex;
        text-align: center;
        margin: 1rem;
    }
    .top-image .logo {
        height: 45vh;
        margin: 3rem 0px 0 3rem;
        z-index: 3;
    }
    .left-part li {
        margin: 0 1rem 1rem 1rem;
    }
}
@media  (min-width: 1100px) {
    .right-part li, .left-part li {
        font-family: var(--main-Sentence);
        margin: 0 1rem 1rem 1rem;
    }
    .top-image .logo {
        height: 45vh;
        margin: 3rem 0 0 4rem;
    }
    #hello,#whats,#start,#blog,#member,#schedule,#news {
        margin: 2rem 11rem 0;
    }
}
@media  (min-width: 1400px) {
    .top-image-pc h1 {
        left: 15%;
    }
    .slider-item {
        max-width: 1500px;
        margin: 0 2%;
        
    }
    .top-image .logo {
        height: 45vh;
        margin: 3rem 0 0 14rem;
    }
    p.sp {
        width: 100%;
        margin-left: -10rem;
    }
    .slick-prev {
        margin: 10rem 0 0 0;
        left: 5%;
    }
    .slick-next {
        right: 5%;
        margin-top: 10rem;
    }
    #hello,#whats,#start,#blog,#member,#schedule,#news {
        margin: 2rem 20rem 0;
    }
    ul.left-part,ul.right-part {
        display: flex;
    }
    .top-menu {
        justify-content: center;
        display: flex;
        text-align: center;
        margin: 1rem;
    }
    
}

/*beginnerサイト-----------------------------
*/
img.sublogo {
    width: 5rem;
    margin-top: -0.6rem;
}
.subpage-header {
    display: none;
}
.subwrapper {
    background-color:var(--backcolor);
    padding: 1.5rem 0 0rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 3;
}
/*beginner start
----------------------------------*/
img.beginner-image {
    margin: 3rem 0 0 0;
    height: 56vw;
}
.beginner-start {
    padding: 2rem 0 0 0;
    position: relative;
}
#beginner-start h3 {
    padding: 1rem 1rem 0.7rem;
    font-size: 1.5rem;
    font-family: var(--main-Sentence);
    background: var(--wihte);
    position: relative;
    margin: -3rem 1rem 0 1rem;
}
#beginner-start h1 {
    padding: 0rem 1rem 3rem;
    margin: 0 1rem;
    font-size: 2.1rem;
    line-height: 3rem;
    font-family: var(--main-Sentence);
    background: var(--wihte);
}
.text {
    width: 90%;
    margin: 0 auto;
    box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 45%);
    background: var(--wihte);
    position: relative;
}
.text p {
    padding: 0 1rem 1rem;
    margin: 0 1rem;
    background: var(--wihte);
    font-family: var(--sub-Sentence);
}
/*section choices
--------------------*/
section.choices {
    margin: 4rem 1rem 1rem;
}
.header-nav a::before {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--backcolor);
    font-size: 1.5rem;
    text-align: center;
}
.header-nav .home::before {
    content: '\f015';
}
.header-nav .flow::before {
    content: '\f2f6';
}
.header-nav .rehearsal::before {
    content: '\f3c5';
}
.header-nav .voice::before {
    content: '\f075';
}
.header-nav .question::before {
    content: '\f305';
}
.header-nav .inquiry::before {
    content: '\f0e0';
}
ul.header-nav {
    display: flex;
    padding: 1rem 1rem 0rem 1rem;
    justify-content: center;
}
.header-nav li {
    padding: 1rem 1rem;
    margin: 0 0.5rem 0 0rem;
    background: var(--font-color);
    width: 4rem;
    height: 4rem;
    text-align: center;
    font-family: var(--sub-Sentence);
}
a.current.home,
a.flow,
a.rehearsal,
a.voice,
a.question,
a.inquiry{
    font-size: 0.8rem;
    color: var(--backcolor);
}
section.choicesdesk {
    display: none;
}

/*beginner explain
---------------------------*/
.beginner-explain h2 {
    text-align: center;
    margin: 4rem 1rem 1rem;
    font-size: 2rem;
    line-height: 3rem;
    font-family: var(--main-Sentence);
}
.beginnerp {
    margin-top: 1rem;
}
.slider2 p {
    font-size: 1rem;
    font-family: var(--sub-Sentence);
}
.beginner-deskexplain,
.topdesk {
    display: none;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider2 {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider2 img {
    width:75vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider2 .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider2 .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}
/*beginner reception
--------------------------------*/
.paragraphpoint2 img {
    display: none;
}
.beginner-reception {
    margin: 1rem;
}
.beginner-reception h4 {
    margin-top: 3rem;
    font-size: 1rem;
    font-family: var(--main-Sentence);
}
.beginner-reception h2 {
    margin: 0rem 0 1rem;
    font-size: 2rem;
    line-height: 3rem;
    font-family: var(--main-Sentence);
}
.beginner-reception p {
    margin: 1rem 0;
    font-family: var(--sub-Sentence);
}
.beginner-reception p a {
    font-weight: 800;
}
/*sub headings
--------------------------------*/
section.sub-headings {
    display: flex;
    margin: 0rem 1rem 0;
    justify-content: center;
}

.sub-headings p {
    background: var(--font-color);
    display: flex;
    border-radius: 50%;
    margin: 1rem 1rem 0 1rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    font-size: 1rem;
    font-family: var(--sub-Sentence);
    color: var(--backcolor);
}

/*section experience
------------------------------*/
section.experience {
    margin: 1rem;
}
.experience h4 {
    font-size: 1rem;
    margin-top: 7rem;
    padding: 0 0 0rem 0;
    font-family: var(--main-Sentence);
}
.experience h2 {
    font-size: 2rem;
    padding: 0 0 1rem 0;
    font-family: var(--main-Sentence);
    line-height: 3rem;
}
.experience p {
    padding: 0.5rem;
    font-family: var(--sub-Sentence);
}
/*email
---------------------------*/
.emailup a{color: #3366ff;}
.emailup a:hover {color: #cc3434;}

/*desk-top
---------------------------*/
@media  (min-width: 600px) {
    .headerout {
        margin: 0 1rem;
    }
    header {
        position: initial;
    }
    .top-part a:hover {
        color: var(--hover);
    }
    .subwrapper {
        display: none;
    }
    .subpage-header {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        border-bottom: 1px solid;
        width: 90%;
    }
    ul.top-part {
        margin: 1rem auto 0;
        padding: 0 0 0rem 0;
        display: flex;
        justify-content: center;
    }
    .left-top-part {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    .top-part li {
        padding: 0rem 1rem;
        border-left: 1px solid;
        margin: 1rem 0;
        font-family: var(--sub-Sentence);
    }
    .right-top li {
        border-right: 1px solid;
        font-family: var(--sub-Sentence);
    }
    img.sublogo {
        width: 8rem;
        margin: 1rem 2rem 0rem 0%;
    }
    /*beginner-start
    ---------------------------*/
    .beginner-start {
        padding: 0rem 0 0 0;
    }
    .headtext h4 {
        margin: 5rem 0 1rem;
        font-family: var(--main-Sentence);
        font-size: 1.25rem;
    }
    .headtext {
        max-width: 1200px;
        width: 85%;
        margin: 2rem auto 1rem;
    }
    .headtext h3 {
        font-size: 2.5rem;
        font-family: var(--main-Sentence);
    }
    .headtext h1 {
        font-size: 2.5rem;
        padding: 1rem 0 0;
        font-family: var(--main-Sentence);
        margin: 0 0 3rem 0;
    }
    .beginner-start {
        max-width: 1200px;

    }
    section.startbeginner {
        text-align: center;
        max-width: 1400px;
        margin: 0 auto;
    }
    .beginner-start {
        max-width: 1200px;
        width: 85%;
    }
    .text {
        max-width: 1400px;
        width: 75%;
        margin: -2rem auto 0;
        box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 45%);
        background: var(--wihte);
        position: relative;
        padding: 2rem 0 0 0;
    }
    #beginner-start h3 {
        display: none;
    }
    #beginner-start h1 {
        display: none;
    }
    .text p {
        padding: 0 1rem 1.5rem 2rem;
        margin: 0 1rem;
        background: var(--wihte);
        font-family: var(--sub-Sentence);
        text-align: initial;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .stepup p {
        padding: 0 1rem 3rem 2rem;
        margin: 0 1rem;
        background: var(--wihte);
        font-family: var(--sub-Sentence);
        text-align: initial;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    /*section choices
    -----------------------------*/
    .choices {
        display: none;
    }
    .nav1 {
        margin: 0 1.5rem;
    }
    section.choicesdesk {
        max-width: 1200px;
        display: inline;
    }
    ul.header-nav-desk {
        display: flex;
        max-width: 1200px;
        margin: 2rem auto;
        justify-content: center;
        background: var(--footer);
        width: 90%;
    }
    .header-nav-desk li {
        padding: 1rem 1rem;
        font-family: var(--sub-Sentence);
        margin: 0 auto;
    }
    .header-nav-desk a::before {
        display: initial;
        margin-bottom: 1rem;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 1.5rem;
        text-align: center;
        color: var(--font-color);
        padding: 0 1rem 0 0;
    }
    .header-nav-desk .home-desk::before {
        content: '\f015';
    }
    .header-nav-desk .flow-desk::before {
        content: '\f2f6';
    }
    .header-nav-desk .rehearsal-desk::before {
        content: '\f3c5';
    }
    .header-nav-desk .voice-desk::before {
        content: '\f075';
    }
    .header-nav-desk .question-desk::before {
        content: '\f305';
    }
    .header-nav-desk .inquiry-desk::before {
        content: '\f0e0';
    }
    .header-nav-desk a:hover {
        color: var(--hover);
    }
    .choicesdesk nav {
        margin: 0 1rem;
    }a.rehearsal-desk {
        padding: 0 1.5rem 0 0;
    }
    /*beginner-explain
    ---------------------------------*/
    .beginner-explain {
        display: none;
    }
    .topdesk {
        display: inline;
    }
    .topdesk h2 {
        text-align: center;
        font-size: 1.8rem;
        font-family: var(--main-Sentence);
        margin: 5rem 0 2rem 0;
    }
    .beginner-deskexplain {
        max-width: 1200px;
        display: flex;
        margin: 0rem 4rem 0;
        justify-content: center;
    }
    img.grid-item {
        width: 30vw;
    }
    .part-1 {
        margin: 0rem auto;
    }
    .part-2 {
        margin: 7rem auto;
    }
    .part-3 {
        margin: -10rem auto;
    }
    .part-4 {
        margin: 0rem auto;
    }
    .beginner-deskexplain p {
        font-size: 1.2rem;
        line-height: 2.5rem;
        width: 30vw;
        font-family:var(--sub-Sentence);
    }
    ul.header-nav-desk {
        display: block;
        max-width: 1200px;
        margin: 5rem auto 2rem;
        justify-content: center;
        background: var(--footer);
        width: 90%;
    }
    .topbottomdesk {
        display: flex;
        justify-content: center;
    }    
    .bottomdesk {
        display: flex;
        justify-content: center;
    }
    .bottomdesk li {
        padding: 1rem 1rem;
        font-family: var(--sub-Sentence);
    }

    /*.beginner reception
    ---------------------------------*/
    .beginner-reception {
    max-width: 1200px;
    }
    .beginner-reception h4 {
        margin-top: 5rem;
        font-size: 1.5rem;
        font-family: var(--main-Sentence);
    }
    .beginner-reception h2 {
        margin: 1rem 0 1rem;
        font-size: 2.5rem;
        line-height: 3rem;
        font-family: var(--main-Sentence);
    }
    .beginner-reception p {
        margin: 1rem 0 1rem 0;
        font-family: var(--sub-Sentence);
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .beginner-reception p a:hover {
        color: var(--hover);

    }
    img.foreigner {
        width: 50vw;
    }
    .paragraphpoint1 img {
        display: none;
    } 
    .paragraphpoint2 img {
        display: inline;
        width: 50%;
        height: auto;
        object-fit: cover;
    }
    .paragraphpoint2 {
        display: flex;
        margin: 1.5rem 0 0;
    }
    .paragraph a:hover {
        color: var(--hover);
    }
    .article a {
        font-weight: 600;
    }
    .article p {
        margin: -0.5rem 0 2rem 0;
        font-family: var(--sub-Sentence);
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    /*sub-headings
    ----------------------*/
    .headings-poit {
        max-width: 1200px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    section.sub-headings {
        margin: 0rem 0rem ;
    }
    /*experience
    ------------------------*/
    .experience {
        max-width: 1200px;
    }
    .experience h4 {
        font-size: 1.5rem;
    }
    .experience h2 {
        font-size: 2.5rem;
        margin: 1rem 0 0 0;
    }
    img.experiential {
        width: 100%;
    }
    .experience p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

}

@media  (min-width: 800px) {
    .beginner-reception {
        margin: 1rem 6rem;
    }
    section.experience {
        margin: 1rem 6rem 5rem 6rem;
    }
    .sub-headings p {
        width: 10rem;
        height: 10rem;
        font-size: 1.5rem;
    }
}
    @media  (min-width: 900px) {
    img.sublogo {
        width: 8rem;
        margin: 1rem 2rem 0rem 1rem;
    }
}
@media  (min-width: 1100px) {
    .beginner-reception {
        margin: 5rem 12rem 1rem;
    }
    section.experience {
        margin: 1rem 12rem 5rem 12rem;
    }
    img.foreigner {
        width: 35vw;
        height: 35vw;
        margin-top: 3rem;
    }
    .beginner-deskexplain {
        margin: 3rem 7rem 0;
    }
}
@media (min-width: 1350px){
    ul.header-nav-desk {
        display: flex;
    }
}
@media (min-width: 1210px){
    ul.header-nav-desk {
        display: flex;
    }
    .topbottomdesk {
        display: flex;
        justify-content: center;
    }
    .bottomdesk li {
        padding: 1rem 1rem;
        font-family: var(--sub-Sentence);
    }
    a.rehearsal-desk {
        padding: 0 0rem 0 0;
    }
}
  
@media  (min-width: 1100px) {
    img.foreigner {
        width: 35vw;
        height: 30vw;
        margin-top: 0rem;
    }
}
@media (min-width: 1300px){
    img.foreigner {
        width: 25vw;
        height: 20vw;
        margin-top: 0rem;
    }
}