.base{
    position: relative;
    height: 100%;
}
.Select {
    /* background-color: #ccf5ffdc; */
    position: absolute;
    top: 2%;
    left: 850px;
    width: 390px;
    z-index: 9;
}
.tab1 {                   /* ▼タブ(共通装飾＋非選択状態の装飾) */
 display: inline-block;          /* インラインブロック化 */
 left: 1000px;
 border-width: 1px 1px 0px 1px;  /* 上側と左右に枠線を引く */
 border-style: solid;            /* 枠線の種類は「実線」 */
 border-color: black;            /* 枠線の色は「黒」 */
 border-radius: 0.75em 0.75em 0px 0px;  /* 左上と右上の角だけを丸くする */
 padding: 0.75em 1em;            /* 内側の余白量 */
 font-weight: bold;              /* タブの文字を太字にする */
 color: black;                   /* タブの文字色：黒色 */
 background-color: #ffffff;      /* タブの(非選択状態の)背景色：灰色 */
}
.tab1:hover {             /* ▼タブにマウスポインタが載った際の装飾 */
   color: green;                /* タブの文字色：緑色 */
   background-color: #ccffcc;   /* タブの背景色：淡い緑色 */
   cursor: pointer;             /* マウスポインタの形状を「指(指し示す形)」にする */
}
.selectTitle {
    position: relative;
    left: 5px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(66, 94, 250);
}
input:checked + .tab1 {   /* ▼選択状態のタブ(＝チェックが入っているラジオボタンの隣にあるタブの装飾) */
 color: red;                  /* タブの文字色：赤色 */
 z-index: 10;         /* ※2A */
 position: relative;  /* ※3 */
}
.Evbt {
    position: absolute;
    z-index: 9;
}
.Evbt:hover {
    background-color: #ccffcc;
    color: red;
    cursor: pointer;
 }
#BtEld_2 {
     right: 50px;
     top: 10px;
 }
#BtEload {
    right: 50px;
    top: 60px;
}
#BtEsave {
    /* position: absolute;
    z-index: 9; */
    right: 50px;
    top: 90px;
}
#BtBeepS {
    right: 50px;
    top: 120px;
    color: red;
}
#BtHint2:hover {
    background-color: #ccffcc;
    color: red;
    cursor: pointer;
 }
/* ▼チェックが入っているラジオボタンに対応するタブの中身を表示する */
/* #s1:checked ~ .evaluation  { display: block; }
#s1:checked ~ .evaluation2 { display: block; }
#s2:checked ~ .evaluation  { display: block; }
#s2:checked ~ .evaluation2 { display: block; }
#s3:checked ~ .evaluation  { display: block; }
#s3:checked ~ .evaluation2 { display: block; } */

#l0 {
    position: relative;
    background-color: #ffffff;      /* タブの(非選択状態の)背景色：灰色 */
}
#l1 {
    position: relative;
    background-color: #00fe00;
}
#l2 {
    position: relative;
    background-color: #00fe00;
}
#l3 {
    position: relative;
    background-color: #00fe00;
}
.SelectT {
    font-size: 20px;
    font-weight: bold;
}
.SelectT:hover {
    background-color: #ccffcc;
    color: red;
    cursor: pointer;
 }
input:checked + .SelectT {
color: red;
z-index: 10;
}
.evaluation {
    /* display: none;             標準では非表示にする */
    position: absolute;
    top: 12%;
    left: 150px;
    z-index: 9;
}
.EVword:hover {
    background-color: #ccffcc;
    color: red;
    cursor: pointer;
}
.check0 {
    position: relative;
    left: 100px;
}
.check0:hover {
    background-color: #ccffcc;
    color: red;
    cursor: pointer;
 }
input:checked + .check0 {
   color: red;
   /* position: relative; */
   z-index: 10;
}
.check1 {
    position: relative;
    left: 120px;
}
.check1:hover {
    background-color: #ccffcc;
    color: red;
    cursor: pointer;
 }
input:checked + .check1 {
   color: red;
   /* position: relative; */
   z-index: 10;
}
.word1{
    position: relative;
    top: -15px;
}
.word2{
    position: relative;
    top: -30px;
}
.word3{
    position: relative;
    top: -45px;
}
.word4{
    position: relative;
    top: -60px;
}
.evaluation2 {
    position: absolute;
    /* display: none;             標準では非表示にする */
    top: 12%;
    left: 900px;
    z-index: 99;
}
#PhonicChar {
    position: absolute;
    left:10%;
    top: 7%;
    width: 60px;
    text-align: center;
    font-size: 40px;
    color: #ea00ff;
    background-color: #d0ff00;
}
#ChekList {
    position: absolute;
    left: 55%;
}
#LmitList {
    position: absolute;
    left: 60%;
}
#Label {
    position: absolute;
    left:10%;
    font-size: 15px;
    color: #ea00ff;
}
.title-pos {            /*タイトル位置*/    
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    background-color: rgb(255, 255, 255);
    width: 30%;
    height: 75px;
    left: 15%;
    top: -20px;
}

.light-green {      /* 単語用表示タイトル左部 */
    color: rgb(51, 204, 51);
}
.light-purple {     /* 単語用表示タイトル右部 */
    color: rgb(204, 102, 255);
}
.color-gold {       /* 単語用表示タイトル日本語部 */
position: relative;
color: rgb(204, 204, 0);
font-size: 17px;
text-align: center;
width: 40%;
height: 20px;
left: 55%;
top: -20%;
}
.lectButton{       /* アルファベット選択 */
    position: absolute;
}
#image01{
    width: 100px;
}
.alphabetImage{     /* 単語イメージイラスト */
    position: absolute;
    top: 20%;
    left: 45%;
}
#wrightingIMG{      /* 書き方エリア */
    position: absolute;
    top: 30%;
    z-index: 99;
}
.box_L{             /* 大文字の書き方 */
    position: absolute;
    width: 110;
    left: 30;
    z-index: 99;
    }
.box_s{             /* 小文字の書き方 */
    position: absolute;
    width: 110;
    margin-left: 130;
    z-index: 99;
    }
@keyframes line{
    0%{stroke-dashoffset: 1800px;}
    100%{stroke-dashoffset: 0;}
    }
#layer_L1 path{
    stroke:#ff0000;
    stroke-width:2;
}
#layer_L1 path.point1{
    stroke:#00fe00;
    stroke-width:2;
}
#layer_L1 path.point2{
    stroke:#0003ff;
    stroke-width:2;
}
#layer_L1 path.point3{
    stroke:#010001;
    stroke-width:2;
}
#layer_L1{
    mask: url(#Lout);
    stroke: #000;
    }
#layer_L2 path{
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke:#ffffff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-dasharray: 1800px;   /* 破線の間隔をつけるプロパティ */
    stroke-dashoffset: 1800px;  /* SVG pathが始まる場所 */
    animation: line 10s 0.5s forwards;
    /* アニメーションの定義名:line */ 
    }
#layer_L2 path.point1{
    animation: line 10s 2s forwards;
    }
#layer_L2 path.point2{
    animation: line 10s 3.5s forwards;
    }
/* @keyframes line{
    0%{stroke-dashoffset: 1800px;}
    100%{stroke-dashoffset: 0;}
    } */
#layer_s1 path{
    stroke:#ff0000;
    stroke-width:2;
}
#layer_s1 path.point1{
    stroke:#00fe00;
    stroke-width:2;
}
#layer_s1 path.point2{
    stroke:#0003ff;
    stroke-width:2;
}
#layer_s1 path.point3{
    stroke:#010001;
    stroke-width:2;
}
#layer_s1{
    mask: url(#sout);
    stroke: #000;
    }
#layer_s2 path{
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke:#ffffff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-dasharray: 1800px;   /* 破線の間隔をつけるプロパティ */
    stroke-dashoffset: 1800px;  /* SVG pathが始まる場所 */
    animation: line 10s 0.5s forwards;
    /* アニメーションの定義名:line */ 
    }
#layer_s2 path.point1{
    animation: line 10s 2s forwards;
    }
#layer_s2 path.point2{
    animation: line 10s 3.5s forwards;
    }
#layer_s2 path.point3{
    animation: line 10s 5s forwards;
    }
.fulBack {          /* 英語罫線総背景 */
    position: absolute;
    margin: 0px auto;
    top: 32%;
    width: 98%;
    height: 150px;
    /* background-image: linear-gradient(0deg,
            rgb(153, 255, 204) 88%,
            rgb(255, 255, 255, 0) 88%, rgb(255, 255, 255, 0) 100%); */
    /* background-color: rgb(153, 255, 204); */
}
    .wordbox{
        position: absolute;
        top: 30px;
        left: 0;
        width:100%;
        height:100%;
        z-index: -2;
        background-color: rgb(153, 255, 204);
    }
    .linebox{
        position: absolute;
        top: 30%;
        left: 0px;
        width:100%;
        height:79%;
        z-index: -1;
        background-color: rgb(255, 255, 255);
    }
    .boxBack {          /* 英語罫線　背景 */
        position: relative;
        margin: 0%;
        top: -70%;
        left: 2%;
        width: 95%;
        height: 98%;
        /* background-image: linear-gradient(0deg,
                rgb(255, 255, 255) -20px, rgb(255, 255, 255)73%,
                rgb(255, 255, 255, 0) 73%,rgb(255, 255, 255, 0)100%); */
    }
        .boxFront {         /* 英語罫線 */
            position: relative;
            top: 1.5%;
            font-size: 700%;
            font-family: "Comic Sans MS","Chalkboard SE",
                monospace;/*"Futura","Chalkduster","Bradley Hand", "UD デジタル 教科書体 NP-R",
                "Futura"*/
            text-align: center;
            width: 100%;
            height: 110%;
            /* line-height: 110%; */
            /* transform: translateY(-15px); */
            /* 方眼紙模様に必須のスタイル */
            background-image: linear-gradient(0deg,
                rgba(0, 0, 255) 0%,
                rgba(0, 0, 255) 2%,
                rgba(255, 255, 255, 0) 2%,
                rgb(255, 255, 255, 0) 20%,
                rgb(255, 0, 0) 20%,
                rgb(255, 0, 0) 22%,
                rgba(255, 255, 255, 0) 22%,
                rgba(255, 255, 255, 0) 55%,
                rgb(130, 198, 251) 55%,
                rgb(130, 198, 251) 57%,
                rgb(255, 255, 255, 0) 57%,
                rgb(255, 255, 255, 0) 75%,
                rgb(0, 0, 255) 75%,
                rgb(0, 0, 255) 77%,
                rgb(255, 255, 255, 0) 77%,
                rgb(255, 255, 255, 0) 100%);
        }
.WordCounter{
    position: absolute;
    left: 95%;
    top: 33%;
}
#point {
    position: absolute;
    background-color:#ccffcc;
    color:#fe0000;
    font-size: 18px;
    top: 80px;
    left: 1020px;
    width: 300px;
}
#Pmean {
    position: relative;
    left: 40px;
}
#Ppron {
    position: relative;
    left: 70px;
}
#Pspel {
    position: relative;
    left: 100px;
}
#TestTitle {
    position: absolute;
    /* color:#00fe00; */
    font-size: 20px;
    top: 0px;
    left: 930px;
    width: 100px;
}
#WLoadSaveButton {
    position: absolute;
}
.mean-pos2{
    position: relative;
    text-align: center;
    background-color: rgba(255, 0, 221, 0.159);
    width: 70%;
    top: 360px;
    height: 55px;
    left: 15%;
}
#wordsound2{
    position: relative;
    top: 250px;
}
.CONTRL2{
    position: relative;
    top: 50px;
}
.button-pos2 {       /* 単語操作ボタン位置（単語共通）*/
    position: relative;
    background-color: rgba(242, 255, 0, 0.159);
    width: 70%;
    top: 235pt;
    height:50px;
    left: 15%;
    margin: 0%;
}
.soundAlphabet2{
    position: relative;
    width: 20%;
    top: 370px;
    left: 3%;
}
.soundPhonics2{
    position: relative;
    width: 20%;
    top: 350px;
    left: 25%;
}
/* .LinkImage{
    position: absolute;
    left: 80%;
    top: 10%;
    width: 15%;
}
#LinkImage{
    width: 150px;
}
    #LinkImage:hover{
        cursor: pointer;
    } */
#LoadSaveButton{
    position: absolute;
    top: 50px;
}
    #BTWGet{
        position: absolute;
        top: 50px;
        font-size: 10pt;
        width: 100px;
    }
    #BTWSave{
        position: absolute;
        font-size: 10pt;
        width: 100px;
    }
    #BTGet{
        position: relative;
        left: 30px;
    }
    .SetBT:hover{
        background-color: #ccffcc;
        box-shadow: none;       /* カーソル時の影消去 */ 
        cursor: pointer;        /* マウスポインタの形状を「指(指し示す形)」にする */
    }
.phonicVideo{
    position: absolute;
    top: -10px;
    left: 60%;
    z-index: 999;
}
.CONTRL{
    position: relative;
    top: 55%;
}
    .mean-pos3{
        position: absolute;
        text-align: center;
        background-color: rgba(255, 0, 221, 0.159);
        width: 70%;
        top: 5px;
        height: 55px;
        left: 15%;
    }
        .rubi{              /* 単語訳語ルビ */
            position: absolute;
            font-size: 13px;
            top: -1px;
            left: 45%;
        }
        .mean{              /* 単語訳語 */
            position: relative;
            font-size: 30px;
            /* top:8pt; */
        }
    #wordsound{
        position: relative;
    }
        .sound-pos {/* 単語音声位置 */    
            position: absolute;
            top: 65px;
            width: 40%;
            left: 30%;
        }
    .button-pos {       /* 単語操作ボタン位置（単語共通）*/
        position: absolute;
        background-color: rgba(242, 255, 0, 0.159);
        width: 70%;
        top: 95pt;
        height:50px;
        left: 15%;
        margin: 0%;
    }
        .Bt{            /* 単語操作ボタン表示（単語共通）*/
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: #6fa1ff;
            border-color: #6fa1ff;
            color: #FFF;
            line-height: 1px;
            letter-spacing: -5px;
            text-align:left;
            font-size: 20px;
            /* cursor: hand; */
            cursor:pointer;
        }
        .Bt:hover{
            box-shadow: none;         /* カーソル時の影消去 */    
            color: #000066;         /* 文字色     */    
            background: #ffffff;    /* 背景色     */  
        }
        .BtTop {    
            position: absolute;
            text-align:center;
            top: 5px;
            left: 12%;
        }
        .BtBackP {
            position: absolute;
            letter-spacing: -10px;
            text-indent: -2pt;
            top: 5px;
            left: 25%;
        }
        .BtBack {
            position: absolute;
            text-align:center;
            text-indent: -3pt;
            top: 5px;
            left: 40%;
        }
        .BtFoward{   
            position: absolute;
            text-align:center;
            text-indent: -2pt;
            top: 5px;
            left: 55%;
        }
        .BtNextP {
            position: absolute;
            text-indent: -2pt;
            letter-spacing: -10px;
            top: 5px;
            left: 70%;
        }
        .BtLast {
            position: absolute;
            text-indent: 1pt;
            top: 5px;
            left: 85%;
        }
        #BtHint{
            position: absolute;
            top: 5px;
            left: 2%;box-shadow: none;
            /* カーソル時の影消去 */
            color: #ff0000;
            /* 背景色     */
            background: #f661ec98;
            border-color: #f661ec98;
            /* 文字色     */
            cursor: hand;
            cursor: pointer;
        }
        #BtHint:hover {
            box-shadow: none;
            /* カーソル時の影消去 */
            color: #000066;
            /* 背景色     */
            background: #ffffff;
            /* 文字色     */
        }
    .soundAlphabet{
        position: absolute;
        width: 20%;
        top: 180px;
        left: 3%;
    }
        .abc{
            position: absolute;
            width: 100%;
            background-color: #ff0000;
        }
    .soundPhonics{
        position: absolute;
        width: 20%;
        top: 180px;
        left: 25%;
    }
        .phonics{
            position: absolute;
            width: 100%;
            background-color: #0000ff;
        }