*{padding: 0; margin: 0; list-style: none; line-height: 1.5em;}
a{text-decoration: none;}
img,table,iframe{border: none; font-size: 7.5px;}
html{font-size: 20px; scroll-behavior: smooth;}
body{
    background-color:#e1e3e5;
    font-family: 'Courier New', 'monospace', Arial, "游ゴシック Medium", "Yu Gothic Medium", "YuGothicM", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 100%;
    color:#111;
    padding-top: 0;
}
#splash_logo img{width: 320px;}
header{
    box-sizing: border-box;
    width: 100%;
    height: 65px;
    background-color: #022b22;
    padding: 10px 5%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
}
#hd_logo{
    width: 12%;
    aspect-ratio: 11 / 3;
    background-image: url(../images/title_logo.png);
    background-size: cover;
}
#hd_logo a{
    display: block;
    width: 100%;
    aspect-ratio: 11 / 3;
    font-size: 10px;
    color: transparent;
}
nav{width: 80%;}
#hd_menu{
    display: flex;
    flex-flow: row wrap;
    justify-content: right;
    column-gap: 2em;
}
#hd_menu li a{
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    color: #569578;
    letter-spacing: 0.5px;
    padding: 5px 2px;
    position: relative;
    transition: 0.3s;
}
#hd_menu li a.active{
    color: #fff;
    text-shadow: 0 0 10px #fff;
    pointer-events: none;
}
#hd_menu li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1.5px;
    background: #eee;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
}
@media (hover: hover) {
    #hd_menu li a:hover{
        transform: translateY(-1px);
        color: #eee;
        text-shadow: 0 0 10px #eee;
    }
    #hd_menu li a:hover::after {
        transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
        transform-origin: left top; /*左から右に向かう*/
    }
}

#cont_wrap{
    padding-top: 65px;
    min-height: 100vh;
}
section{border-bottom: solid 1px #66666666;}
.sec15{
    width: 70%;
    padding: 50px 15%;
}
.sec100{
    width: 100%;
    padding: 50px 0;
}
.list10{
    width: 80%;
    margin: 30px 10% 50px;
}
.list15{
    width: 70%;
    margin: 30px 15% 50px;
}
.tab_nav{box-shadow: 0 -5px 5px #222;}
.tab_btn{
    font-size: 24px;
    letter-spacing: 1px;
}
.imgLoad{
    background-image: url(../images/loading.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.noDis{display: none;}
.pc_noDis{display: none;}
.noVis{visibility: hidden;}
.noAct{pointer-events: none;}
.sort-icon{margin-left: 2px;}

footer{
    width: 100%;
    padding-top: 2em;
    padding-bottom: 4em;
    background-color: #004a49;
}
#ft_logo{text-align: center;}
#ft_logo img{height: 60px;}
#ft_sns{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    column-gap: 1.5em;
    margin: 1em 0;
}
#ft_sns li a{    
    font-size: 16px;
    color: #022b22;
    background-color: #f3f3f3;
    width: 32px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
@media (hover: hover) {
    #ft_sns li a:hover{
        background-color: #569578;
        color: #fff;
        transform: translateY(1px);
    }
}
#ft_copy{
    font-family: "Klee One", 'cursive';
    font-size: 11px;
    color: #f3f3f3;
    font-style: italic;
    font-weight: normal;
    text-align: center;
}
#ft_copy i{
    font-size: 10px;
    margin-right: 0.5em;
}
#ft_copy br{display: none;}