@charset "UTF-8";

body {
    font-family: sans-serif;
    text-align: center;
    padding: 30px 5px 30px;
}

a {
    text-decoration: none;
}

.free__link {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.free__link:hover {
    font-weight: 900;
    color: #000;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.main__title {
    margin: 0 auto 10px;
}



.main__contents {
    padding: 20px 0px 20px;
}

/* ボックス単位でも最大幅設定 */
.box {
    max-width: 100%;
    box-sizing: border-box;
}


select,
button {
    padding: 4px 6px;
    cursor: pointer;
    box-shadow: 1px 1px 1px 0px #181717;
}

select:hover,
button:hover,
input[type="number"]:hover {
    box-shadow: none;
}

select,
input[type="number"],
button {
    border: 1px solid #888;
    border-radius: 4px;
    padding: 4px 6px;
    background-color: #fff;
    /*box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);*/
    box-shadow: 1px 1px 1px 0px #181717;
}


.lesson {
    padding: 10px 0 17px;
    border: solid 2px #f0f0f0;
    border-radius: 10px;
    max-width: 360px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.lesson__title {
    margin: 0 auto 20px;

}

.lesson__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    gap: 10px;
    background-color: #fdfdfd;
}

.level__title {
    color: #000;
    margin-bottom: 10px;
}

.level__li {
    width: calc((350px / 2) - 10px);
    border: 1px solid #888;
    border-radius: 4px;
    padding: 4px 6px;
    background-color: #fff;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    /* box-shadow: 1px 1px 1px 0px #181717; */
}

.level__li:hover {
    box-shadow: none;
}

.square {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: solid 2px #000;
    position: relative;
}

.square::before {
    content: "";
    height: 2px;
    width: 5px;
    background-color: #000;
    position: absolute;
    top: -2px;
    left: 78px;
}

.circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: solid 2px #000;
    border-radius: 50%;
    position: relative;
}

.circle::before {
    content: "";
    height: 1.5px;
    width: 5px;
    background-color: #000;
    position: absolute;
    top: 35px;
    left: 78px;
}

.round__corner {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: solid 2px #000;
    border-radius: 10%;
    position: relative;
}

.round__corner::before {
    content: "";
    height: 1.5px;
    width: 5px;
    background-color: #000;
    position: absolute;
    top: 35px;
    left: 78px;
}

.circle__square {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: solid 2px #000;
    position: relative;
}

.circle__square::before {
    content: "";
    height: 2px;
    width: 5px;
    background-color: #000;
    position: absolute;
    top: -2px;
    left: 78px;
}

.circle__square__circle {
    content: "";
    height: 10px;
    width: 10px;
    border: solid 2px #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.circle__square__circle::before {
    content: "";
    height: 2px;
    width: 5px;
    background-color: #000;
    position: absolute;
    top: 2.6px;
    left: -1px;
}






.level2 {
    position: relative;
    /* 疑似要素の基準位置 */
    display: inline-block;
    /* サイズを持たせるため */
    overflow: hidden;
    /* カバーがはみ出さないように */
}

.level2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* 薄い黒 */
    pointer-events: none;
    /* カバーがクリックを妨げない */
    z-index: 1;
    /* カバーがテキストより上に */
}

.level2::before {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4rem;
    /* 調整可能 */
    font-weight: bold;
    z-index: 2;
    /* ::after（カバー）より上に表示 */
    pointer-events: none;
    /* クリックを妨げない */
}

.level3 {
    position: relative;
    /* 疑似要素の基準位置 */
    display: inline-block;
    /* サイズを持たせるため */
    overflow: hidden;
    /* カバーがはみ出さないように */
}

.level3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* 薄い黒 */
    pointer-events: none;
    /* カバーがクリックを妨げない */
    z-index: 1;
    /* カバーがテキストより上に */

}

.level3::before {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4rem;
    /* 調整可能 */
    font-weight: bold;
    z-index: 2;
    /* ::after（カバー）より上に表示 */
    pointer-events: none;
    /* クリックを妨げない */
}

.level4 {
    position: relative;
    /* 疑似要素の基準位置 */
    display: inline-block;
    /* サイズを持たせるため */
    overflow: hidden;
    /* カバーがはみ出さないように */
}

.level4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* 薄い黒 */
    pointer-events: none;
    /* カバーがクリックを妨げない */
    z-index: 1;
    /* カバーがテキストより上に */

}

.level4::before {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4rem;
    /* 調整可能 */
    font-weight: bold;
    z-index: 2;
    /* ::after（カバー）より上に表示 */
    pointer-events: none;
    /* クリックを妨げない */
}

.sub__title {
    font-size: 18px;
    font-weight: 500;
    z-index: 3;
    margin: auto 0;
}

.main__img {
    background-image: url("/images/レーザー２.jpg");
    background-size: cover;
    /* 画像を要素いっぱいに */
    background-position: center;
    /* 中央に配置 */
    background-repeat: no-repeat;
    /* 繰り返さない */
    width: 360px;
    /* 必要に応じてサイズ指定 */
    height: 250px;
    z-index: -1;
    /* 高さは好みで調整 */
    border-radius: 20px;
    margin: 0 auto;
}

.sub__title__container {
    background-color: rgba(255, 255, 255, 0.3);
    /* 白の70%透明 */
    display: flex;
    justify-content: center;
    width: 100%;
    height:100%;
}