@charset "UTF-8";
/*各ページ独自のcss設定*/


/*以下に指定を記述する*/

* {
  box-sizing: border-box;
}

header{
   height: 52px;
   background-color: var(--beige);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.background-bar{
   height: 52px;
   background-color: var(--skyblue);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.toppage{
   text-decoration: none;
   color: #3e3a39;
}

.logo{
   width: 74px;
   height: 74px;
  
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
}

.pc{
   display: none;
}

.text{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;

   font-size: 16px;
   font-weight: 700;

   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.text1{
   white-space:nowrap;
   color:var(--navy);
}

.text2{
   font-size: 10px;
   color:var(--navy);
}

/*メニュー土台*/
.menu-btn {
    position: fixed;
    z-index: 90;
    top: 0px;
    right: 10px;
    
    height: 50px;
    width: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: var(--navy);
    position: absolute;

    transition: all 0.3s;
}
.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

/*交差アニメーション*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/*メニュー本体*/
.menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 52px;
    left: 100%;
    z-index: 80;
    background-color: var(--beige);

    transition: all 0.3s;
    overflow-y: scroll;
}

.Mcontent0{
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 0px 30px 40px 30px;
   position: relative;
}

.Mcontent1{
   margin-top: 30px;
}

.Mcontent3{
   margin-bottom: 80px;
}

.Mcontent1::after{
   content: "";
   display: inline-block;
   width: 35px;
   height: 35px;
   position: absolute;
   right: 70px;
   top: 0px;
    background-image: url('https://ikkyosai.com/juken/57/img/header/study.svg');
    background-position: center;
    background-size: contain;
}

.Mcontent2::after{
   content: "";
   display: inline-block;
   width:35px;
   height: 35px;
   position: absolute;
   right: 70px;
   top: 0px;
    background-image: url('https://ikkyosai.com/juken/57/img/header/graph.svg');
    background-position: center;
    background-size: contain;
}

.Mcontent3::after{
   content: "";
   display: inline-block;
   width: 35px;
   height: 35px;
   position: absolute;
   right: 70px;
   top: 0px;
    background-image: url('https://ikkyosai.com/juken/57/img/header/megaphone.svg');
    background-position: center;
    background-size: contain;
}

.menu h2{
   align-self: flex-start;
   font-size: 18px;
   line-height: 20px;
   position: relative;
   margin-bottom: 10px;
}

.Mtitle1, .Mtitle2, .Mtitle3{
   position: relative;
   border-bottom: solid 3px var(--emeraldgreen);
   display:inline-block;
   font-size: 18px;
   font-weight: bold;
}

.Mcontent0::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: radial-gradient(var(--skyblue), transparent);
    left: 45px;
    top: -5px;
}



.Mtitle1-box, .Mtitle2-box, .Mtitle3-box{
   width: 95vw;
   height: 40px;
   padding-left: 50px;
   display: flex;
   align-items: center;
}

.menu span{
   font-size: 14px;
}

.menu a{
    border-bottom: solid 0.25px #3e3a39;
    list-style: none;

    display: inline-block;
    width: 80%;
    font-size: 15px;
    box-sizing: border-box;
    color:#3e3a39;
    text-decoration: none;
    padding: 4px;
    margin-top: 4px;
    position: relative;
    font-size: 15px;
}

.menu a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 1px #3e3a39;
    border-right: solid 1px #3e3a39;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 11px;
}

/*メニューを画面内へ*/
#menu-btn-check:checked ~ .menu {
    left: 0;
}

/*いったんの処理*/
.menu a.comingsoon {
    color: rgba(62, 58, 57, 0.6);
}

.disabled{
    pointer-events: none;
    opacity: 0.6;
}

.disabled span{
    font-size: 10px;
}

/*ここまで*/


/*レスポンシブ用*/
    