* {
    margin: 0;
    padding: 0;
}

.gra,.mp4,.obj{
    margin-top:10px;
}

* {
    margin: 0;
    padding: 0;
}

.pgpanel {
    display: inline-block;
    background-color: aqua;

}

.kiyaku{
    margin:auto;
    background-color: yellow;
    width:380px;
    border: 2px solid black;
    box-sizing:border-box;
}

.kiyaku h3{
    text-align: center;
    color:red;
}

/*ダウンロード用css*/
.dflex{
    display: flex;
    justify-content: center;
    background-color: #FFCC99;
    /*上｜右｜下｜左*/
    /*margin:10px 0 0 0;*/
    padding: 30px;
}

.dflex .dimg{
    padding: 0;
    overflow: hidden;
    position: relative;
}

.dimg{
    width:clamp(125px,10vw,10em);
}

.dflex .dright{
    /*上｜右｜下｜左*/
    padding: 0;
}

.dflex .dtitle{
    margin: 0;
    padding: 0;
}

.dflex .dtxt{
    margin: 0 0 0 0;
    padding: 0;   
    max-width:29em;   /*max-width(横幅の最大値)を定義することで、1行あたりの文字数を整える*/
}

.dflex .dimg::before{
    content: "";
    display: block;
    padding-top: 58%;
}

.dflex .dimg img{
    width: min(100%,50vw);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dtxt {
    position: relative;
    text-align:left;
}

.dtxtb a{
    line-height:0;
}

.dtitle{
    font-size:20px;
    font-weight: bold;
    text-align:center;
}

.dtxtb{
    margin: 0 8vw 0.5em 20px;
}

.rink{
    font-size:0.9em;
}

.cui,.gui,.web{
    margin-top:10px;
}

.mokuji{

    text-align:center
}



/*リンクのcss(ボタン風)*/
.mokuji .btn-square{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #668ad8;/*ボタン色*/
    color: #FFF;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
    transition: .3s;
    margin-top:10px;
}

.mokuji .btn-square:active {
    /*ボタンを押したとき*/
    transition: .0s;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

.mokuji .btn-square:hover{

    background-color:#FF6633;
    border-bottom: solid 4px #FB4E00;
}



/*PC向けCSS(ウィンドウサイズが481px以上だったら)*/
@media screen and (min-width:481px) {


}

/*スマホ向けCSS(ウィンドウサイズが480px以下だったら)*/
@media screen and (max-width:480px) {

}

/*windowssize>=681 then*/
@media screen and (min-width:681px){
    .dflex{
        margin:10px 20vw 0 20vw;
    }

    .dright{
        margin: 0 0 0 20px;
    }

    .brs{
        display: none;
    }
}

/*windowsize<=680 then*/
@media screen and (max-width:680px){
    .dflex{
        margin:10px 0 0 0;
    }
}

/* 追加CSS例: style.cssの雰囲気に合わせてapp_dist.cssに追記してください */
/* filepath: c:\Users\yuratexi\Documents\currently_work\庭の隠れ家\app_dist.css */

.app-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.app-panel {
    display: flex;
    background: rgba(44, 80, 28, 0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px #0006;
    border: 2px solid #7ecb8f;
    padding: 18px 16px;
    align-items: center;
    gap: 24px;
}

.app-thumb {
    width: 120px;
    min-width: 88px;
    aspect-ratio: 16/9;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px #0008;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-info {
    flex: 1 1 0;
    min-width: 0;
}

.app-info h3 {
    font-size: 1.2em;
    margin-bottom:8px;
    margin-left:0;
    padding-right:10px;
    color: #eaffee;
    border-left: 4px solid #7ecb8f;
    padding-left: 8px;
    background: rgba(164,224,139,0.08);
    border-radius: 8px;
    display: inline-block;
}

.app-info p {
    margin: 0 0 10px 0;
    color: #eaffee;
    font-size: 1em;
}

.app-link {
    display: inline-block;
    background: #7ecb8f;
    color: #234d2d;
    padding: 6px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px #0004;
}
.app-link:hover {
    background: #fff7b2;
    color: #234d2d;
}

/* レスポンシブ */
@media screen and (max-width: 680px) {
    .app-list {
        gap: 18px;
    }
    .app-panel {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 4px;
        gap: 10px;
    }
    .app-thumb {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
    }
}