<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------------------------------------------------

    グローバルナビ

---------------------------------------------------------------------- */

#global_nav {
    position: fixed;
    top: 54px;
    width: 100%;
    height: calc(100% - 54px);
    background-color: rgba(0,0,0,0.3);
    z-index: 995;
    display: none;
}

#global_nav.on {
    display: block;
    animation: obj_fade_in 0.3s ease-in-out;
}

#global_nav &gt; .inner {
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,1);
    /*border-radius: 5px;
    box-shadow: 0 1px 4px 2px rgba(0,0,0,0.2);*/
    
    overflow: auto;
    padding: 10px;
    position: relative;
    
    padding-bottom: 30px;
}

#global_nav.on &gt; .inner {
    /*animation: obj_scale_in 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275);*/
    animation: obj_scale_in 0.2s ease-in-out;
}


/* ----- お問い合わせ・サイト内検索 ----- */
#help_area {  }

#help_area &gt; .inner {
    display: table;
    widgth: 100%;
}

#help_area &gt; .inner &gt; .cell {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

#help_area &gt; .inner &gt; .cell.faq { padding-right: 5px; }

#help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a {
    text-decoration: none;
    width: auto;
    position: relative;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    padding: 3px 6px;
    transition: all 140ms ease-in-out;
    text-align: center;
    vertical-align: middle;
    border-radius: 3px;
    display: flex;
    align-items: center;
    height: 36px;
    
    padding: 2px 5px;
    height: 32px;
}

#help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a &gt; .wrap {
    display: table;
    margin: 0 auto;
}

#help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a &gt; .wrap &gt; span {
    display: table-cell;
    vertical-align: middle;
}

#help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a &gt; .wrap &gt; span.txt {
    line-height: 1.2;
    font-size: 1.2rem;
    padding-left: 4px;
}

#help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a &gt; .wrap &gt; span.txt &gt; span {  }

#help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a i {
    color: #268300;
    line-height: 1;
    display: block;
    font-size: 1.6rem;
}

/* --- サイト内検索 --- */
#help_area &gt; .inner &gt; .cell.search { padding-left: 5px; }

#help_area &gt; .inner &gt; .cell.search .search_box {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    vertical-align: middle;
}

#help_area &gt; .inner &gt; .cell.search .search_btn &gt; a {
    text-decoration: none;
    width: auto;
    position: relative;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    transition: all 140ms ease-in-out;
    text-align: center;
    vertical-align: middle;
    border-radius: 3px;
    display: flex;
    align-items: center;
    height: 26px;
    padding: 4px 5px;
}

#help_area &gt; .inner &gt; .cell.search .search_btn &gt; a img {
    vertical-align: top;
    max-width: 16px;
}

#help_area &gt; .inner &gt; .cell.search .search_box input[type="text"] {
    font-size: 1.2rem;
    border: 1px solid #ddd;
    float: none;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    padding: 4px 20px 4px 4px;
    line-height: 1.5;
    font-size: 1.3rem;
    width: 100%;
    height: 32px;
}

#help_area &gt; .inner &gt; .cell.search .search_box input[type="image"] {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 4px;
    top: 6px;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}



/* ----- グローバルナビ ----- */
#nav_block { margin-top: 15px; }

#nav_block &gt; .unit {  }
#nav_block &gt; .unit + .unit { border-top: 1px solid #222; }

#nav_block &gt; .unit &gt; .head {
    background-color: #1b521f;
    color: #fff;
}

/*
#nav_block &gt; .unit &gt; .head &gt; .inner {
    width: 100%;
    display: flex;
    align-content: stretch;
    align-items: center;
}

#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div { flex-grow: 0; }

#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.main {
    font-size: 1.5rem;
    flex-grow: 1;
}
*/

#nav_block &gt; .unit &gt; .head &gt; a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    font-size: 1.5rem;
}

#nav_block &gt; .unit &gt; .head &gt; a i { margin-right: 8px; }

#nav_block &gt; .unit &gt; .head &gt; a span { display: inline; }

#nav_block &gt; .unit &gt; .head &gt; a span.plus {
    display: inline;
    animation: obj_fade_in 0.3s ease-in-out;
}

#nav_block &gt; .unit.on &gt; .head &gt; a span.plus { display: none; }

#nav_block &gt; .unit &gt; .head &gt; a span.minus {
    display: none;
    color: #ddd;
}
#nav_block &gt; .unit.on &gt; .head &gt; a span.minus {
    display: inline;
    animation: obj_fade_in 0.3s ease-in-out;
}


/*
#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.opt {
    width: 50px;
    text-align: center;
    border-left: 1px dashed #222;
    height: 100%;
}

#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.opt a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    height: 100%;
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.opt a span { display: block; }

#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.opt a span.plus {
    display: block;
    animation: obj_fade_in 0.3s ease-in-out;
}
#nav_block &gt; .unit.on &gt; .head &gt; .inner &gt; div.opt a span.plus { display: none; }

#nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.opt a span.minus {
    display: none;
    color: #ddd;
}
#nav_block &gt; .unit.on &gt; .head &gt; .inner &gt; div.opt a span.minus {
    display: block;
    animation: obj_fade_in 0.3s ease-in-out;
}
*/

#nav_block &gt; .unit &gt; .content {
    background-color: #eee;
    background-color: #f5f5f5;
    
    
    max-height: 0;
    overflow-y: hidden;
    
    /*transition: max-height 0.3s ease-in-out;*/
    /*transition: all 0.35s ease-in-out;*/
    /*display: none;*/
    visibility: hidden;
}

#nav_block &gt; .unit.on &gt; .content {
    /*display: block;*/
    visibility: visible;
    /*max-height: 200vh;*/
    animation: obj_menu_slide 0.4s ease-in-out;
    max-height: 500vh;
}

#nav_block &gt; .unit &gt; .content &gt; .inner  {
    padding: 10px;
    font-size: 0;
}

#nav_block &gt; .unit.on &gt; .content &gt; .inner  {
    /*padding: 10px 10px 15px 10px;*/
    padding-bottom: 10px;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .btn_back {
    margin-top: 20px;
    font-size: 1.3rem;
    display: none;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .btn_back.on {
    display: block;
    animation: obj_fade_in 0.3s ease-in-out;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .btn_back &gt; a {
    display: block;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .btn_back &gt; a i { margin-right: 0.4em; }


/* --- dento ログイン --- */
#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit {
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;

    display: block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list {
    display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
    width: 100%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit {
    width: 20%;
    width: 33.333%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit &gt; a {
    text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit &gt; a &gt; .logo {
    height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit &gt; a &gt; .logo img {
    max-width: 100%;
	width: auto;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit.direct &gt; a &gt; .logo img {
    max-height: max-content;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit.nar &gt; a &gt; .logo img {
    max-height: 14px;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit &gt; a &gt; .btn {
    width: 76px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background-color: #333;
	color: #fff;
	border-radius: 12px;
	font-size: 1.1rem;
	line-height: 1.1;
	margin-top: 2px;
    width: 100%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit.soku &gt; a &gt; .btn {
	background-color: #1D2186;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit.direct &gt; a &gt; .btn {
	background-color: #163C2B;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .btn_list &gt; .unit.nar &gt; a &gt; .btn {
	background-color: #581800;
}


#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .related_links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .related_links &gt; .btn {
    width: 50%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .related_links &gt; .btn &gt; a {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 -2px rgba(0,0,0,0.1) inset;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    display: block;
    text-align: center;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .login_unit .related_links &gt; .btn &gt; a img {
    vertical-align: top;
}

/* --- dento ログイン（ここまで） --- */


#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit {
    margin-top: 0;
    font-size: 1.3rem;
    /*display: inline-block;
    width: 50%;
    vertical-align: top;*/
    /*padding: 10px 5px;*/
    /*min-height: 116px;*/
    visibility: hidden;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit + .group_unit {
    margin-top: 10px;
}

#nav_block &gt; .unit.on &gt; .content &gt; .inner &gt; .group_unit {
    visibility: visible;
    /*animation: obj_fade_in 0.4s ease-in-out, obj_scale_in 0.3s ease-in-out;*/
    animation: obj_fade_in 0.4s ease-in-out;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit.line { width: 100%; }


#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit.current {
    display: block;
    width: 100%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit.off {
    display: none;
}



/*
#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit.current &gt; .category {
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    color: #333;
}


#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .link {
    display: block;
    animation: obj_fade_in 0.4s ease-in-out, obj_scale_in 0.3s ease-in-out;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit.current &gt; .category &gt; .link { display: none; }

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title { display: none; }

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit.current &gt; .category &gt; .title {
    display: block;
}


#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .link &gt; a {
    display: block;
    text-decoration: none;
    color: #333;
    text-align: center;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .link &gt; a &gt; span {
    display: block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .link &gt; a &gt; span.icon img {
    vertical-align: top;
    max-width: 60px;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .link &gt; a &gt; span.txt {
    margin-top: 10px;
    font-weight: bold;
    line-height: 1.3;
}


#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title &gt; span {
    display: inline-block;
    vertical-align: middle;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title &gt; span.icon img {
    vertical-align: top;
    max-width: 40px;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title &gt; span.txt {
    margin-top: 0;
    padding-left: 10px;
    font-size: 1.5rem;
}
*/



/*
#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; p.category &gt; a &gt; span.txt a {
    text-decoration: none;
    color: #333;
    display: block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; p.category &gt; a &gt; span.txt a i {
    margin-right: 0.4em;
}
*/



#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .top_link {
    font-size: 1.3rem;
    /*padding: 5px 10px 10px;*/

    /*border-bottom: 1px dotted #999;*/
    padding-bottom: 10px;
    margin-bottom: 10px;

    border-bottom: 1px dotted #ccc;
    
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .top_link &gt; a {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    color: #444;

    text-decoration: none;
    width: auto;
    position: relative;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: bold;
    color: #555;
    padding: 3px 6px;
    /*text-align: center;*/
    vertical-align: middle;
    border-radius: 4px;
    /*display: flex;
    align-items: center;
    padding: 2px 5px;
    height: 32px;*/
    padding: 10px;
    color: #444;

}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .top_link &gt; a i {
    margin-right: 0.4em;
    color: #268300;
}



#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category {
    /*border-bottom: 2px solid #ccc;
    padding-bottom: 5px;*/
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit.current &gt; .category {
    padding-bottom: 6px;
    border-bottom: 2px solid #ccc;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.4rem;
    
    /*color: #444;*/
    color: #444;
    font-weight: 700;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span {
    vertical-align: middle;
    display: inline-block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.icon img {
    max-width: 36px;
    max-width: 30px;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt {
    margin-left: 0.5em;
    
    font-size: 1.5rem;
    margin-left: 10px;
    
    font-size: 1.4rem;
}


#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt span {
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
    font-size: 1.5rem;
    position: relative;
    top: -1px;
    color: #666;
    
    line-height: 1.3;
    font-size: 1.4rem;
    
    color: #999;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt span i {
    display: block;
    font-size: 1.6rem;
    line-height: 1.2;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt span.plus {
    display: inline-block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit.current &gt; .category &gt; a span.txt span.plus {
    display: none;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt span.minus {
    display: none;
}

#nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit.current &gt; .category &gt; a span.txt span.minus {
    display: inline-block;
}


#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit.current &gt; .content { padding: 10px 0; }

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul {
    font-size: 0;
    /*margin-top: 10px;*/
    display: none;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul &gt; li {
    font-size: 1.3rem;
    width: 50%;
    display: inline-block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul &gt; li.line {
    width: 100%;
    display: block;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul &gt; li &gt; a {
    display: block;
    text-decoration: none;
    font-size: 1.3rem;
    color: #333;
    padding: 10px;
    
    font-size: 1.4rem;
    font-size: 1.5rem;
    
    /*color: #000;*/
    color: #444;
    /*font-weight: 600;*/
    font-weight: 500;
    color: #000;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul &gt; li &gt; a i {
    margin-right: 0.4em;
    color: #268300;
}





#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul {
    font-size: 0;
    /*margin-top: 10px;*/
    display: none;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit.current &gt; .content &gt; ul {
    display: block;
    animation: obj_fade_in 0.3s ease-in-out;
}




/*
#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul {
    font-size: 0;
    margin-top: 10px;
    
    display: none;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit.current &gt; ul {
    display: block;
    animation: obj_fade_in 0.3s ease-in-out;
}
*/



#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li {
    font-size: 1.4rem;
    display: inline-block;
    width: 50%;
    
    font-size: 1.5rem;
    vertical-align: top;
    
    width: 100%;
}


#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul.div2 &gt; li {
    width: 50%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li.line {
    width: 100%;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li &gt; a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 8px 5px;
    
    padding: 10px 5px;
    
    font-size: 1.5rem;
    line-height: 1.3;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li &gt; a &gt; span {
    font-size: 1.1rem;
}

#nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li &gt; a i {
    margin-right: 0.4em;
    color: #14783a;
}



/* ----- ログインエリア ----- */
#global_nav .login_area {
    margin-top: 10px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

#global_nav .login_area &gt; .line &gt; ul {
    display: flex;
    margin: 0;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li { width: 33.333%; }

#global_nav .login_area &gt; .line &gt; ul &gt; li + li {
    margin-left: 5px;
    margin-right: 0;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a {
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px 2px rgba(0,0,0,0.1);
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 66px;
    padding: 0;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li.pat &gt; a {
    background-color: #3d6fb2;
    border: 1px solid #35629e;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li.nar &gt; a {
    background-color: #a2593f;
    border: 1px solid #884a34;
}


#global_nav .login_area &gt; .line &gt; ul &gt; li.direct &gt; a {
    background-color: #0a824c;
    border: 1px solid #097343;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a img { max-width: 100px; }

#global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a p.cap {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a p.img { margin: 2px 0 5px 0; }

#global_nav .login_area &gt; .line &gt; ul &gt; li.pat &gt; a p.img img {
    max-width: 130px;
    vertical-align: top;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li.nar &gt; a p.img img {
    max-width: 125px;
    vertical-align: top;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a p.login {
    margin-top: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

#global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a p.login i { margin-left: 0.3em; }

/* --- Club JRA-Net --- */
#global_nav .login_area .btn_club_jra { /*margin-top: 10px;*/ }
#global_nav .login_area .btn_club_jra a img { max-width: 204px; vertical-align: top; }

#global_nav .login_area .btn_club_jra .btn-def {
    display: inline-block;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid #d3d3d3;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    line-height: 1.4;
    color: #555;
	background-color: #fff;
	vertical-align: middle;
    box-sizing: border-box;
    padding: 10px;
    font-size: 1.4rem;
}

#global_nav .login_area .btn_club_jra .btn-def.btn-block { display: block; }

/* --- JRAアプリ バナー --- */
#global_nav .login_area .btn_jra_app {
    margin-top: 10px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

#global_nav .login_area .btn_jra_app &gt; a { 
    text-decoration: none;
    background: linear-gradient(340deg, #006355 10%, #007564 25%, #007564 75%, #00A38B);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 80px;

    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border: 3px solid #fff;
}

#global_nav .login_area .btn_jra_app &gt; a &gt; div {
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

#global_nav .login_area .btn_jra_app &gt; a &gt; div.txt {
    display: flex;
    align-items: center;
    gap: 10px;
}

#global_nav .login_area .btn_jra_app &gt; a &gt; div.txt span.main {
    font-size: 2rem;
    line-height: 1;
}

#global_nav .login_area .btn_jra_app &gt; a &gt; div.txt span.download {
    font-size: 1.1rem;
    display: flex;
    align-items: center;

    background-color: #f5f5f5;
    color: #444;
    border: 2px solid #444;
    height: 24px;
    padding: 2px 12px;
    border-radius: 24px;
    line-height: 1;
    text-shadow: none;
}

#global_nav .login_area .btn_jra_app &gt; a &gt; div.txt span.download i {
    margin-right: 0.3em;
    font-size: 1rem;
}

#global_nav .login_area .btn_jra_app &gt; a img {
    max-height: 34px;
    vertical-align: top;
    filter: drop-shadow(1px 4px 4px rgba(0,0,0,0.2));
}




/* --- 競馬場指定席 ネット予約 --- */
#global_nav .login_area .btn_member_entry {
    margin-top: 10px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

#global_nav .login_area .btn_member_login {
    margin-top: 5px;
}

#global_nav .login_area .btn_member_login &gt; a,
#global_nav .login_area .btn_member_entry &gt; a {
    padding: 18px 10px;
    font-size: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    
    border-radius: 5px;
    box-shadow: 0 2px 4px 2px rgba(0,0,0,0.1);
    
    border: 3px solid #fff;
    
    background: linear-gradient(170deg, #268300, #1d4f0d);
    transition: all 0.3s ease-in-out;
    
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    
    text-align: center;
    padding: 12px 10px;
}

#global_nav .login_area .btn_member_login &gt; a &gt; div &gt; span.copy {
    display: block;
    font-size: 1.5rem;
}

#global_nav .login_area .btn_member_login &gt; a &gt; div &gt; span.login {
    margin-top: 5px;
    display: inline-block;
    background-color: #f9f5df;
    color: #444;
    border-radius: 1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border: 1px solid #1d4f0d;
    background-color: rgba(255,255,255,0.8);
    font-size: 1.4rem;
    padding: 6px 20px;
    margin-top: 8px;
}

#global_nav .login_area .btn_member_login &gt; a &gt; div &gt; span.login i { margin-right: 0.5em; }


#global_nav .login_area .btn_member_entry &gt; a {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

#global_nav .login_area .btn_member_entry &gt; a .cap { font-size: 1.4rem; }

#global_nav .login_area .btn_member_entry &gt; a .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
}

#global_nav .login_area .btn_member_entry &gt; a .inner .cell img {
    max-width: 30px;
    vertical-align: top;
}


/* --- 競馬場入場券 ネット予約 --- */
#global_nav .login_area .btn_ticket_login { margin-top: 10px; }

#global_nav .login_area .btn_ticket_login &gt; a {
    display: block;
    text-decoration: none;
    text-align: center;
    background-color: #bad723;
}

#global_nav .login_area .btn_ticket_login &gt; a &gt; img {
    vertical-align: top;
    max-width: 355px;
}



/* --- 下部「閉じる」ボタン --- */
#global_nav &gt; .inner &gt; .btn_close {
    margin-top: 15px;
    text-align: center;
    font-size: 0;
}

#global_nav &gt; .inner &gt; .btn_close &gt; a {
    text-decoration: none;
    width: auto;
    position: relative;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    transition: all 140ms ease-in-out;
    text-align: center;
    vertical-align: middle;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 2px 5px;
    
    /*height: 32px;*/
    
    display: inline-block;
    font-size: 1.3rem;
    
    padding: 5px 8px;
}

#global_nav &gt; .inner &gt; .btn_close &gt; a &gt; .wrap {
    display: flex;
    align-items: center;
}

#global_nav &gt; .inner &gt; .btn_close &gt; a &gt; .wrap &gt; span {
    
}

#global_nav &gt; .inner &gt; .btn_close &gt; a i {
    color: #268300;
    line-height: 1.2;
    display: block;
    font-size: 1.3rem;
}

#global_nav &gt; .inner &gt; .btn_close &gt; a &gt; .wrap &gt; span.txt {
    line-height: 1.2;
    font-size: 1.2rem;
    padding-left: 5px;
}



/* ------------------------------------------------------------
	アニメーション
------------------------------------------------------------ */

@keyframes obj_fade_in {
    from{ opacity: 0; }
    to{ opacity: 1; }
}

@keyframes obj_scale_in {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/*
@keyframes obj_scale_in {
    from { transform: scale(0.5); }
    to { transform: scale(1); }
}
*/

@keyframes obj_slide_in {
    from { transform: translateY(-5px); }
    to { transform: translateY(0); }
}

@keyframes obj_menu_in {
    from{ opacity: 0; }
    to{ opacity: 1; }
}

@keyframes obj_menu_slide {
    from{ max-height: 0; }
    to{ max-height: 200vh; }
}



@media only screen and (max-width: 374px) {
    
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li &gt; a { font-size: 1.4rem; }
    
    
    #nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt { font-size: 1.4rem; }
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .content &gt; ul &gt; li &gt; a { font-size: 1.3rem; }


    /* --- 競馬場入場券 ネット予約 --- */
    #global_nav .login_area .btn_ticket_login &gt; a &gt; img { max-width: 100%; }
    
}


@media only screen and (max-width: 359px) {
    
    #help_area &gt; .inner &gt; .cell.faq &gt; .btn &gt; a &gt; .wrap &gt; span.txt { font-size: 1rem; }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner { padding: 5px; }
    
    #nav_block &gt; .unit &gt; .head &gt; .inner &gt; div.main { font-size: 1.3rem; }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .link &gt; a &gt; span.txt { font-size: 1.2rem; }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title &gt; span.txt {
        font-size: 1.3rem;
        padding-left: 8px;
    }

    #nav_block &gt; .unit &gt; .content &gt; .inner &gt; .group_unit &gt; .category &gt; a span.txt { font-size: 1.3rem; }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title &gt; span.icon img { width: 30px; }
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; .category &gt; .title &gt; span.icon img { max-width: 30px; }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li &gt; a {
        font-size: 1.3rem;
        padding: 10px 2px;
    }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner .group_unit &gt; ul &gt; li &gt; a &gt; span {
        display: block;
        line-height: 1.4;
    }
    
    #nav_block &gt; .unit &gt; .content &gt; .inner &gt; .btn_back { margin: 5px; }

    #nav_block &gt; .unit &gt; .content &gt; .inner &gt; .top_link &gt; a {
        font-size: 1.3rem;
    }
    
    #global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a p.img {
        padding: 0 5px;
        min-height: 24px;
    }
    
    #global_nav .login_area &gt; .line &gt; ul &gt; li &gt; a img { max-width: 100%; }
    #global_nav .login_area &gt; .line &gt; ul &gt; li.pat &gt; a p.img img { max-width: 100%; }
    #global_nav .login_area &gt; .line &gt; ul &gt; li.nar &gt; a p.img img { max-width: 100%; }

    
    
}

</pre></body></html>