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

/*
==================================================

   Emoji Tools 共通スタイル

==================================================
*/



/*
==================================================
  基本設定
==================================================
*/

/* ----- 基本 ----- */
html {
font-size: 100%;
}

/* ----- 背景・テキスト ----- */
body {
min-width: 1000px;
background: #ffffff;
font-size: 1rem;
font-family: sans-serif;
color: #2a2a2a;
}


/* ----- リンクテキスト ----- */
a:link { color: #3366ff; }
a:visited { color: #336699; }
a:hover { color: #cc0000; }
a:active { color: #cc0000; }

/* ----- 全要素 ----- */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 1;
word-break: break-all;
}

/* ----- 文字スタイル ----- */
em,
dfn {
font-weight: bold;
font-style: normal;
}

pre {
font-family: sans-serif;
white-space: pre-wrap;
}

mark {
background: transparent;
color: #cc0000;
}

/* ----- 画像の伸縮 ----- */
img {
max-width: 100%;
height: auto;
}

/* ----- Twemoji ----- */
img.emoji {
width: 1em;
height: 1em;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

body {
min-width: 0;
}
body.active {
position: fixed;
width: 100%;
height: 100vh;
}

}
/* ----- /899 ----- */



/*
==================================================
  レイアウト
==================================================
*/

div.limit {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

div.limit {
padding: 0 10px;
}

}
/* ----- /899 ----- */



/*
==================================================
  ヘッダ
==================================================
*/

#header {
margin: 0 0 20px;
padding: 15px 0 0;
background: #ffd67b;
text-align: center;
}

/* ----- タイトル・ロゴ ----- */
#header hgroup {
margin: 0 0 15px;
}
#header hgroup h1 {
margin: 0 0 7px;
font-size: 15px;
line-height: 1.4;
}
#header hgroup img {
width: 290px;
vertical-align: bottom;
}
#header hgroup span {
font-size: 30px;
}

/* ----- ヘッダナビ ----- */
#toggle {
display: none;
}

#nav nav {
background: #f5f5f5;
border-top: 1px #ffffff solid;
}

#nav nav ul {
display: flex;
justify-content: center;
list-style-type: none;
}
#nav nav ul li a {
display: block;
padding: 16px 10px 12px;
border-bottom: 3px transparent solid;
font-size: 0.96rem;
color: #3f3f3f;
text-decoration: none;
}
#nav nav ul li a:hover {
background: #eaeaea;
color: #2a2a2a;
}
#nav nav.search ul li.search a,
#nav nav.name ul li.name a,
#nav nav.skin ul li.skin a,
#nav nav.edit ul li.edit a,
#nav nav.convert ul li.convert a,
#nav nav.twemoji ul li.twemoji a {
border-bottom: 3px #c6c6c6 solid;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

#header {
position: relative;
margin: 0 0 30px;
padding: 25px 0;
}

/* ----- タイトル・ロゴ ----- */
#header hgroup {
margin: 0;
}
#header hgroup h1 {
margin: 0 0 7px;
}
#header hgroup img {
width: 190px;
}
#header hgroup span {
font-size: 20px;
}

/* ----- ヘッダナビ ----- */
#toggle {
display: block;
position: absolute;
right: 15px;
bottom: -16px;
width: 90px;
padding: 9px 16px 9px 0;
background: #262626;
border: 1px #262626 solid;;
border-radius: 18px;
font-size: 15px;
font-weight: bold;
color: #ffffff;
text-align: right;
transition: 0.2s;
z-index: 12;
}
#toggle.active {
background: #ffffff;
color: #2a2a2a;
}
#toggle span {
display: inline-block;
position: absolute;
left: 13px;
width: 20px;
height: 3px;
background: #ffffff;
border-radius: 2px;
transition: 0.2s;
}
#toggle.active span {
background: #2a2a2a;
}
#toggle span:nth-of-type(1) {
top: 8px;
}
#toggle span:nth-of-type(2) {
top: 15px;
}
#toggle span:nth-of-type(3) {
top: 22px;
}
#toggle.active span:nth-of-type(1) {
width: 22px;
transform: translateY(7px) rotate(-45deg);
}
#toggle.active span:nth-of-type(2) {
opacity: 0;
}
#toggle.active span:nth-of-type(3){
width: 22px;
transform: translateY(-7px) rotate(45deg);
}

body.active #nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
transition: 0.3s;
background-color: rgba(0, 0, 0, 0.4);
z-index: 10;
}
#nav nav {
visibility: hidden;
position: fixed;
top: 130px;
left: -110%;
width: 240px;
padding: 20px 0;
background: #262626;
border-top: none;
border-radius: 10px;
overflow: auto;
transition: 0.1s;
z-index: 11;
}
body.active #nav nav {
visibility: visible;
left: 5px;
}
#nav nav ul {
display: block;
border-top: 1px #c6c6c6 solid;
text-align: left;
}
#nav nav ul li {
border-bottom: 1px #c6c6c6 solid;
}
#nav nav ul li a {
display: block;
position: relative;
padding: 16px 30px 15px 15px;
border-bottom: none;
font-size: 15px;
color: #ffffff;
}
#nav nav ul li a:hover {
background: #262626;
color: #ffffff;
}
#nav nav.search ul li.search a,
#nav nav.name ul li.name a,
#nav nav.skin ul li.skin a,
#nav nav.edit ul li.edit a,
#nav nav.convert ul li.convert a,
#nav nav.twemoji ul li.twemoji a {
background: #565656;
border-bottom: none;
}
#nav nav ul li a::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 20px;
margin: auto;
width: 9px;
height: 9px;
border-top: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
}
#nav nav.search ul li.search a::after,
#nav nav.name ul li.name a::after,
#nav nav.skin ul li.skin a::after,
#nav nav.edit ul li.edit a::after,
#nav nav.convert ul li.convert a::after,
#nav nav.twemoji ul li.twemoji a::after {
display: none;
}

}
/* ----- /899 ----- */



/*
==================================================
  広告ラベル
==================================================
*/

div.ad-label {
text-align: right;
}
div.ad-label span {
display: inline-block;
padding: 3px 6px 2px;
background: #f5f5f5;
font-size: 11px;
color: #7f7f7f;
}



/*
==================================================
  上部広告
==================================================
*/

/* ※幅いっぱいにする場合の設定
#ads_top {
height: 110px;
margin: 0 0 30px;
}
#ads_top .ads_page_top {
width: calc(100% - 2px);
height: 90px;
margin: 0 auto;
}
*/

#ads_top {
height: 110px;
margin: 0 0 30px;
}
#ads_top div.ad-label {
width: 728px;
margin: 0 auto;
}
#ads_top .ads_page_top {
width: 728px;
height: 90px;
margin: 0 auto;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

#ads_top {
display: none;
}

}
/* ----- /899 ----- */



/*
==================================================
  下部広告
==================================================
*/

/* ----- 下部 ----- */
/* ダブル用 */
#content aside.ads_main_btm {
max-width: 760px;
margin: 0 auto 60px;
}
#content aside.ads_main_btm div.plate {
display: flex;
justify-content: space-around;
}
#content aside.ads_main_btm div.ads {
width: 336px;
}
#content aside.ads_main_btm div.ads ins.main_btm {
width: 336px;
height: 280px;
}
/* シングル用 */
/*
#content aside.ads_main_btm {
margin: 0 0 60px;
}
#content aside.ads_main_btm div.ads {
width: 336px;
margin: 0 auto;
}
#content aside.ads_main_btm div.ads ins.main_btm {
width: 336px;
height: 280px;
}
*/



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

/* ダブル用 */
#content aside.ads_main_btm {
margin: 0 auto 60px;
}
#content aside.ads_main_btm div.plate {
display: block;
}
#content aside.ads_main_btm div.ads {
width: 300px;
margin: 0 auto;
}
#content aside.ads_main_btm div.ads2 {
display: none;
}
#content aside.ads_main_btm div.ads ins.main_btm {
width: 300px;
height: 250px;
}
/* シングル用 */
/*
#content aside.ads_main_btm div.ads {
width: 300px;
}
#content aside.ads_main_btm div.ads ins.main_btm {
width: 300px;
height: 250px;
}
*/

}
/* ----- /899 ----- */



/*
==================================================
  コンテンツフッタ
==================================================
*/

#content footer.foot {
margin: 50px 0 40px;
font-size: 0.96rem;
text-align: center;
}

/* ----- コピーボタン ----- */
#content footer.foot div.url-copy {

}
#content footer.foot div.url-copy button {
display: inline-block;
width: 100%;
max-width: 23em;
padding: 11px 5px 10px;
background: #ffffff;
border: 1px #c0c0c0 solid;
font-size: 0.96rem;
line-height: 1.4;
}
#content footer.foot div.url-copy button:hover {
background: #f5f5f5;
}
#content footer.foot div.url-copy button.copied {
font-weight: bold;
color: #3366ff;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

#content footer.foot {
margin: 50px 0 30px;
font-size: 16px;
}

#content footer.foot div.url-copy button:hover {
background: #ffffff;
}

}
/* ----- /899 ----- */



/*
==================================================
  フッタ
==================================================
*/

#footer {
padding: 30px 0 50px;
border-top: 1px #aaaaaa dotted;
font-size: 0.96rem;
text-align: center;
}

#footer a {
color: #2a2a2a;
text-decoration: none;
}
#footer a:hover {
text-decoration: underline;
}

#footer nav.fnav ul {
margin: 0 0 40px;
}
#footer nav.fnav ul li {
display: inline;
margin: 0 7px;
}

#footer div.site {
margin: 0 0 20px;
}

#footer ul.link {
margin: 0 0 30px;
}
#footer ul.link li {
display: inline;
margin: 0 10px;
}

#footer div.copy small {
font-size: 100%;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

#footer {
padding: 30px 0 40px;
font-size: 14px;
}

#footer a:hover {
text-decoration: none;
}

#footer nav.fnav ul,
#footer ul.link {
display: flex;
flex-wrap: wrap;
row-gap: 18px;
width: 90%;
max-width: 400px;
margin: 0 auto 40px;
}
#footer nav.fnav ul li,
#footer ul.link li {
display: block;
width: 50%;
margin: 0;
}

#footer div.copy small {
font-size: 100%;
}

}
/* ----- /899 ----- */



/*
==================================================
  その他
==================================================
*/

/* ----- PCでは非表示 ----- */
.pc-none {
display: none;
}



/* ----- ★899 ----- */
@media screen and (max-width: 899px) {

/* ----- スマホでは非表示 ----- */
.sp-none {
display: none;
}

/* ----- スマホでは表示 ----- */
.pc-none {
display: inline;
}

}
/* ----- /899 ----- */


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