@charset "en-US";

/* 共通設定 */
html {
    font-family: 'Tektur', cursive;
    background-color: rgb(0, 0, 0);
    color: rgb(138, 138, 138);
}

a {
    text-decoration: none;
}

h1 {
    font-size: 5rem;
    color: rgb(255, 240, 28);
    text-shadow: 0px 0px 20px rgba(255, 255, 0, 1);
    text-align: center;
}

h2 {
    font-size: 2rem;
    color: rgb(205, 241, 255);
    text-shadow: 0px 0px 20px rgb(2, 133, 255);
    text-align: center;
}
.txt_big{
    font-size: 3rem;
}
.txt_middle{
    font-size: 2rem;
}
.blue_neon{
    color: rgb(205, 241, 255);
    text-shadow: 0px 0px 20px rgb(2, 133, 255);
}
/* 共通設定ここまで */

/* index.html用 */
.whats_new {
    color: rgb(205, 241, 255);
    text-shadow: 0px 0px 20px rgb(2, 133, 255);
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.menu_wrap {
    display: flex;
    justify-content: space-around;
}

.crazy_dog {
    background-image: url(../images/crazy_dog_bright.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 30px;
    width: 450px;
    height: 520px;
}

.menu_grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}
.margin_date{
    margin-top: 1.5rem;
}
.indent{
    text-indent: 1.5rem;
}
.indent_2{
    margin-top: -0.5rem;
    text-indent: 3rem;
}
.btn_1{
    background-image: url(../images/btn1-0.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    height: 150px;
}
.btn_1:hover {
    background-image: url(../images/btn1-1.png);
}
.btn_2{
    background-image: url(../images/btn2-0.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    height: 150px;
}
.btn_2:hover {
    background-image: url(../images/btn2-1.png);
}
.btn_3{
    background-image: url(../images/btn3-0.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    height: 150px;
}
.btn_3:hover {
    background-image: url(../images/btn3-1.png);
}
.btn_4{
    background-image: url(../images/btn4-0.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    height: 150px;
}
.btn_4:hover {
    background-image: url(../images/btn4-1.png);
}


.to_contact {
    position: absolute;/*←絶対位置*/
    right: 5px;    /*右に固定*/
    bottom: 5px;
}


/* 404用 */
.title{
    position: absolute;
    left: 10px;    /*左に固定*/
    top: 5px;
    font-size: 1.5rem;
}
.himokouji {
/*     position: absolute; */
    background-image: url(../images/himokouji.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y:0;
    background-position-x:-20px;
    width: 700px;
    height: 400px;
}
.not_found_wrap{
    margin: -8rem 10rem 0 20rem;
    display: flex;
    justify-content: space-around;
}
.hiyokouji {
    background-image: url(../images/hiyokouji.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 80%;
    width: 500px;
    height: 100px;   
}
.to_index {
    background-image: url(../images/btn5-0.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 90%;
    width: 450px;
    height: 520px;
}
.to_index:hover{
    background-image: url(../images/btn5-1.png);
}


footer {
    position: absolute;/*←絶対位置*/
    bottom: 0;/*下に固定*/
    left: 50%;
    transform: translateX(-50%);
}