<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*------------------------------------------------------------------------------------------
*
*
    common.css
*
*
------------------------------------------------------------------------------------------ */
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}/*HTML5display-roleresetforolderbrowsers*/article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}

body{
    font-family: "こぶりなゴシック W3 JIS2004", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    color: #534741;
    font-size : 16px;
    background-color:#ededef;
    background-position: center;
    -webkit-text-size-adjust: 100%;
    word-break: normal;
    position: relative;
    z-index: 1;
}

body, html{
    width: 100%;
    height: 100%;
}

a, li, p, div, button, img{ outline: none !important; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
a{ color: #4068cd; text-decoration: none;}
a:visited{ color: #1f40a6; text-decoration: none;}

.indent_half_top{ position: relative; margin-left: -.5em !important;}
.indent_half{ position: relative; margin-left: -.5em;}

img{ height: auto; backface-visibility: hidden; -webkit-backface-visibility: hidden;}
a img{ transition: opacity .15s ease 0s;}
.is_pc a img:hover,
.is_sp a img.touch{ transition: opacity .15s ease .05s; opacity: .7;}


a[target="_blank"]::after{
    margin: 0 3px 0 1px;
    font-family:'Hobonichi-Icons'!important;
    content: "\e914";
    font-size: 85%;
    position: relative;
    top: -3px;
}

a.ico_none[target="_blank"]::after{
    display: none;
}

.profile_detail{ display: none;}

.comments{ 
	width: 350px;
	margin: auto;
}

.comments p{ 
	text-align: left;
	color: #787575;
    font-size : 14px;
	line-height: 1.5;
}







/* -------------------- font-face  --------------------*/
.ff_r-min{ font-family: 'リュウミン M-KL' !important;}


@media screen and (min-width : 641px){ 
/*------------------------------------------------------------------------------------------
*
*
    min-width : 641px
*
*
------------------------------------------------------------------------------------------ */

/* --------------------------------------------------
*
    common settings
*
-------------------------------------------------- */
body{
    overflow: auto !important;
}

br.sp{ display: none;}
img.sp{ display: none;}
.switch_sp{ display: none;}



    
} /* ----- min-width : 641px ----- */




/* --------------------------------------------------------------------------------------------------------------
*
    max-width: 640px
*
-------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
/* --------------------------------------------------
*
    common settings
*
-------------------------------------------------- */
body{
    z-index: 10;
    overflow-x: hidden;
    font-size: 15px;
}

body, html{
    width: 100%;
    min-width: 100%;
}

#wrap{ overflow: hidden;}

br{ display: none !important;}
br.sp{ display: inherit !important;}
br.sp + br{ display: table-row !important;}

img.pc{ display: none;}
.switch_pc{ display: none;}


} 

.comments{ 
	width: 85%;
	margin: auto;
}

.comments p{ 
	text-align: left;
	color: #787575;
    font-size : 15px;
	line-height: 1.7;
}





/* ----- max-width: 640px ----- */



/* ------------------------------------------------------------
*
*
    modal window
*
*
------------------------------------------------------------ */
@media screen and (min-width : 641px){ 
body.modal{
    overflow: hidden !important;
}

/* --------------------------------------------------
*
    #modal
*
-------------------------------------------------- */
#modal{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: none;
    visibility: hidden;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 65535;
}

#modal_wrap{
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 50;
    cursor: pointer;
}

#modal_inner{
    width: 100%;
    height: 100%;
    display: table;
    opacity: 0;
    text-align: center;
    position: relative;
    z-index: 40;
}

#modal_data{
    width: 100%;
    display: table-cell;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 auto;
    box-sizing: border-box;
    cursor: default;
}

#modal .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

#modal .btn_close{
    width: 62px;
    height: 62px;
    background-color: #fff;
    background-image:url(../images/parts_close.png);
    background-repeat: no-repeat;
    background-size: 38px;
    background-position: center;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    cursor: pointer;
    transform: scale(1);
    transition: transform .1s ease .0s;
    -webkit-transform: scale(1);
    -webkit-transition: transform .1s ease .0s;
}

.is_pc #modal .btn_close:hover,
.is_sp #modal .btn_close.touch{
    transform: scale(.9);
    transition: transform .15s ease .05s;
    -webkit-transform: scale(.9);
    -webkit-transition: transform .15s ease .05s;
}


} /* ----- min-width : 641px ----- */




@media screen and (max-width : 640px){
body.modal{
    overflow: hidden;
}

body.modal.only_sp{
    position: fixed;
    height: 100%;
}

/* --------------------------------------------------
*
    #modal
*
-------------------------------------------------- */
#modal{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: none;
    visibility: hidden;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 65535;
}

#modal_wrap{
    width: 100%;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 50;
    cursor: pointer;
}

.is_sp #modal_wrap{
    padding-bottom: 16vh;
}

#modal_inner{
    width: 100%;
    height: 100vh !important;
    display: table;
    opacity: 0;
    text-align: center;
    position: relative;
    z-index: 40;
}

#modal_data{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
    padding: 4vw 0;
    box-sizing: border-box;
    cursor: default;
}

#modal .overlay{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(255, 255, 255, .95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
}

#modal .btn_close{
    width: 42px;
    height: 42px;
    background-color: #fff;
    background-image:url(../images/parts_close.png);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    cursor: pointer;
    transform: scale(1);
    transition: transform .1s ease .0s;
    -webkit-transform: scale(1);
    -webkit-transition: transform .1s ease .0s;
}

#modal .btn_close.on:after{
    opacity: 1;
    transition: opacity .25s ease;
}


.is_sp #modal .btn_close{ right: 1.6vw;}

.is_pc #modal .btn_close:hover,
.is_sp #modal .btn_close.touch{
    transform: scale(.9);
    transition: transform .15s ease .05s;
    -webkit-transform: scale(.9);
    -webkit-transition: transform .15s ease .05s;
}


} /* ----- max-width : 640px ----- */</pre></body></html>