Commit 0b28a4d5 by o.kimura

特設調整中

parent ffd38ba0
Showing with 8652 additions and 3 deletions
/**
* Lightcase - jQuery Plugin
* The smart and flexible Lightbox Plugin.
*
* @author Cornel Boppart <cornel@bopp-art.com>
* @copyright Author
*
* @version 2.5.0 (11/03/2018)
*/
/**
* Lightcase settings
*
* Note: Override default settings for your project without touching this source code by simply
* defining those variables within a SASS map called '$lightcase-custom'.
*
* // Example usage
* $lightcase-custom: (
* 'breakpoint': 768px
* );
*/
@font-face {
font-family: 'lightcase';
src: url("../fonts/lightcase.eot?55356177");
src: url("../fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("../fonts/lightcase.woff?55356177") format("woff"), url("../fonts/lightcase.ttf?55356177") format("truetype"), url("../fonts/lightcase.svg?55356177#lightcase") format("svg");
font-weight: normal;
font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
font-family: 'lightcase', sans-serif;
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
text-align: center;
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
content: '\e800';
}
/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
content: '\e801';
}
/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
content: '\e802';
}
/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
content: '\e803';
}
/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
content: '\e804';
}
/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
content: '\e805';
}
/**
* Mixin providing icon defaults to be used on top of font-lightcase.
*
* Example usage:
* @include icon(#e9e9e9)
*/
/**
* Mixin providing icon defaults including a hover status to be used
* on top of font-lightcase.
*
* Example usage:
* @include icon-hover(#e9e9e9, #fff)
*/
/**
* Provides natural content overflow behavior and scrolling support
* even so for touch devices.
*
* Example usage:
* @include overflow()
*/
/**
* Neutralizes/resets dimensions including width, height, position as well as margins,
* paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
*
* Example usage:
* @include clear(true)
*
* @param boolean $important
*/
@-webkit-keyframes lightcase-spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-moz-keyframes lightcase-spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes lightcase-spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes lightcase-spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes lightcase-spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg);
}
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
display: none;
position: fixed;
z-index: 2002;
top: 50%;
left: 50%;
font-family: arial, sans-serif;
font-size: 13px;
line-height: 1.5;
text-align: left;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
/* line 16, ../scss/components/modules/_case.scss */
html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
position: fixed !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
margin: 0 !important;
padding: 55px 0 70px 0;
width: 100% !important;
height: 100% !important;
overflow: auto !important;
}
}
@media screen and (min-width: 641px) {
/* line 4, ../scss/components/modules/_content.scss */
html:not([data-lc-type=error]) #lightcase-content {
position: relative;
z-index: 1;
text-shadow: none;
background-color: #fff;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
-o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
-webkit-backface-visibility: hidden;
}
}
@media screen and (min-width: 641px) {
/* line 23, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
background-color: #333;
}
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
@media screen and (max-width: 640px) {
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
position: relative !important;
top: auto !important;
left: auto !important;
width: auto !important;
height: auto !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
}
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
@media screen and (max-width: 640px) {
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
padding: 15px;
}
/* line 52, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
width: 100% !important;
max-width: none !important;
}
/* line 59, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
height: auto !important;
max-height: none !important;
}
}
@media screen and (max-width: 640px) {
/* line 70, ../scss/components/modules/_content.scss */
html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
}
@media screen and (max-width: 640px) and (min-width: 641px) {
/* line 74, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
line-height: 0.75;
}
}
/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
position: relative;
overflow: hidden !important;
}
@media screen and (max-width: 640px) {
/* line 91, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
position: relative !important;
top: auto !important;
left: auto !important;
width: auto !important;
height: auto !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
}
}
@media screen and (min-width: 641px) {
/* line 100, ../scss/components/modules/_content.scss */
html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
padding: 30px;
overflow: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
@media screen and (max-width: 640px) {
/* line 117, ../scss/components/modules/_content.scss */
#lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
color: #aaa;
}
}
@media screen and (min-width: 641px) {
/* line 117, ../scss/components/modules/_content.scss */
#lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
color: #333;
}
}
/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
margin: 0;
font-size: 17px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #aaa;
}
@media screen and (max-width: 640px) {
/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
padding: 30px 0;
}
}
@media screen and (min-width: 641px) {
/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
padding: 0;
}
}
/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
overflow: hidden;
}
/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
max-width: 100%;
max-height: 100%;
}
/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
position: absolute;
padding-top: 15px;
}
/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
margin: 0;
padding: 0;
line-height: 1.5;
font-weight: normal;
text-overflow: ellipsis;
}
/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
font-size: 17px;
color: #aaa;
}
@media screen and (max-width: 640px) {
/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
position: fixed;
top: 10px;
left: 0;
max-width: 87.5%;
padding: 5px 15px;
background: #333;
}
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
clear: both;
font-size: 13px;
color: #aaa;
}
/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
font-size: 11px;
color: #aaa;
}
@media screen and (max-width: 640px) {
/* line 45, ../scss/components/modules/_info.scss */
.lightcase-fullScreenMode #lightcase-info {
padding-left: 15px;
padding-right: 15px;
}
/* line 51, ../scss/components/modules/_info.scss */
html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
position: static;
}
}
/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
position: fixed;
z-index: 9999;
width: 1.123em;
height: auto;
font-size: 38px;
line-height: 1;
text-align: center;
text-shadow: none;
position: fixed;
z-index: 2001;
top: 50%;
left: 50%;
margin-top: -0.5em;
margin-left: -0.5em;
opacity: 1;
font-size: 32px;
text-shadow: 0 0 15px #fff;
-moz-transform-origin: 50% 53%;
-webkit-animation: lightcase-spin 0.5s infinite linear;
-moz-animation: lightcase-spin 0.5s infinite linear;
-o-animation: lightcase-spin 0.5s infinite linear;
animation: lightcase-spin 0.5s infinite linear;
}
/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
text-decoration: none;
color: #fff;
-webkit-tap-highlight-color: transparent;
-webkit-transition: color, opacity, ease-in-out 0.25s;
-moz-transition: color, opacity, ease-in-out 0.25s;
-o-transition: color, opacity, ease-in-out 0.25s;
transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
display: inline-block;
text-indent: -9999px;
}
/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
position: fixed;
z-index: 9999;
width: 1.123em;
height: auto;
font-size: 38px;
line-height: 1;
text-align: center;
text-shadow: none;
outline: none;
cursor: pointer;
}
/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
text-decoration: none;
color: rgba(255, 255, 255, 0.6);
-webkit-tap-highlight-color: transparent;
-webkit-transition: color, opacity, ease-in-out 0.25s;
-moz-transition: color, opacity, ease-in-out 0.25s;
-o-transition: color, opacity, ease-in-out 0.25s;
transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
display: inline-block;
text-indent: -9999px;
}
/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
color: white;
text-shadow: 0 0 15px white;
}
/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
color: #aaa;
text-shadow: none;
}
/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
position: fixed;
top: 15px;
right: 15px;
bottom: auto;
margin: 0;
opacity: 0;
outline: none;
}
/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
left: 15px;
}
/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
right: 15px;
}
/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
left: 50%;
margin-left: -0.5em;
}
@media screen and (min-width: 641px) {
/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
opacity: 0;
}
}
@media screen and (max-width: 640px) {
/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
bottom: 15px;
font-size: 24px;
}
}
@media screen and (min-width: 641px) {
/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
bottom: 50%;
margin-bottom: -0.5em;
}
/* line 57, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
opacity: 1;
}
}
/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
display: none;
width: 100%;
min-height: 100%;
position: fixed;
z-index: 2000;
top: -9999px;
bottom: -9999px;
left: 0;
background: #333;
}
@media screen and (max-width: 640px) {
/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
opacity: 1 !important;
}
}
\ No newline at end of file
@charset "UTF-8";a,address,article,aside,audio,b,body,canvas,caption,code,dd,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,label,legend,li,main,mark,menu,nav,object,ol,p,pre,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;box-sizing:border-box}article,aside,figcaption,figure,footer,header,main,menu,nav,section{display:block}ol,ul{list-style:none}a{text-decoration:none;color:#000}img{vertical-align:bottom;max-width:100%;height:auto;image-rendering:-webkit-optimize-contrast}table{border-collapse:collapse;border-spacing:0}button,input,select,textarea{vertical-align:middle;font-family:inherit;font-size:100%;background-color:#fff}button,input,select{border:0;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none}.clearfix:after{content:"";display:block;clear:both}
\ No newline at end of file
@charset "UTF-8";
:root {
font-size: 16px;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
color: #424252;
-webkit-text-size-adjust: 100%;
line-break: strict;
line-height: 1.8;
min-width: 320px;
}
body {
background: center / 29px 29px url(../img/bg-drop.png);
min-width: 320px;
}
@media (min-width: 980px) {
body {
width: 100%;
min-width: 1280px;
}
}
a {
transition: opacity .3s;
}
a:hover {
opacity: .6;
}
/***** HEADER *****/
.site-header {
position: fixed;
top: 0;
left: 0;
background-color: #2FC5D9;
width: 100%;
color: #fff;
z-index: 1000;
}
.site-header::before {
content: '';
position: absolute;
left: 0;
width: 100%;
background: center center / contain repeat-x url(../img/header-bg-wave.png);
}
.site-header-nav,
.site-header-logo {
position: absolute;
}
.site-header a {
color: #fff;
}
.site-header-logo {
display: flex;
align-items: center;
height: 100%;
}
.site-header-logo a {
display: flex;
}
.site-header-nav a {
font-weight: bold;
}
/*** HEADER - tab & sp ***/
@media only screen and (max-width: 979px) {
.pcOnly {
display: none;
}
body.nav-active {
overflow: hidden;
}
.nav-active .site-header {
opacity: 1;
}
.site-header {
height: 55px;
min-width: 400px;
font-size: 16px;
}
.site-header::before {
bottom: -8px;
height: 8px;
}
.site-header-logo {
left: 20px;
z-index: inherit;
}
.site-header-nav {
position: fixed;
top: 0;
right: -125vw;
right: min(-125vw, -500px);
left: auto !important;
padding: 20px 0 30px;
height: auto;
max-height: 100vh;
width: 100%;
background-color: #2FC5D9;
z-index: 1;
transition: right .5s;
}
.site-header-nav {
margin-top: 55px;
line-height: 1.7;
}
.site-header-nav-item {
display: flex;
align-items: center;
justify-content: space-around;
margin: 0 20px;
padding-left: 12px;
border-top: 1px solid #fff;
min-height: 52px;
}
.site-header-nav-item.twitter {
padding-top: 20px;
}
.site-header-nav-item.twitter a {
width: 30px;
}
.nav-active .site-header-nav {
right: 0;
}
.menu-trigger,
.menu-trigger span {
display: inline-block;
transition: all .4s;
box-sizing: border-box;
}
.menu-trigger {
position: fixed;
z-index: 10002;
top: 18px;
right: 20px;
width: 24px;
height: 23px;
visibility: visible;
opacity: 1;
transition: .5s;
cursor: pointer;
}
.menu-trigger span {
position: absolute;
left: 0;
width: 100%;
height: 2px;
background-color: #fff;
border-radius: 1px;
}
.menu-trigger span:nth-of-type(1) {
top: 0px;
}
.menu-trigger span:nth-of-type(2) {
top: 10px;
}
.menu-trigger span:nth-of-type(3) {
bottom: 1px;
}
.nav-active .menu-trigger span:nth-of-type(1) {
transform: translateY(11px) rotate(-220deg);
}
.nav-active .menu-trigger span:nth-of-type(2) {
opacity: 0;
}
.nav-active .menu-trigger span:nth-of-type(3) {
transform: translateY(-10px) rotate(220deg);
}
.nav-active .menu-trigger {
visibility: visible !important;
opacity: 1 !important;
}
.menu-trigger.hidden {
visibility: hidden;
opacity: 0;
transition: .5s;
}
.menu-bg,
.bg-trigger {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: calc(100vh - 55px);
visibility: hidden;
}
.menu-bg {
margin-top: 55px;
background: rgba(0, 0, 0, .5);
opacity: 0;
transition: .5s;
z-index: -1;
}
.nav-active .menu-bg {
opacity: 1;
visibility: visible;
}
.bg-trigger {
cursor: pointer;
}
.nav-active .bg-trigger {
visibility: visible;
}
}
/*** HEADER - sp ***/
@media only screen and (max-width: 599px) {
.spNone {
display: none!important;
}
.site-header-logo a {
flex-direction: column;
justify-content: center;
width: 160px;
height: 100%;
}
.header-syadan {
width: 57px;
}
.header-jprest {
margin-top: 6px;
width: 157px;
}
.site-header-nav a {
font-size: 15px;
}
}
/*** HEADER - tab & pc ***/
@media print,
(min-width: 600px) {
.spOnly {
display: none!important;
}
.site-header-logo {
display: flex;
align-items: center;
}
.site-header-logo a {
justify-content: space-between;
width: 339px;
}
.site-header-nav {
left: 251px;
}
}
/*** HEADER - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.site-header-nav {
width: 400px;
}
}
/*** HEADER - pc ***/
@media print,
(min-width: 980px) {
.pcNone {
display: none!important;
}
.menu-bg,
.bg-trigger {
display: none;
}
.site-header {
height: 70px;
}
.site-header::before {
bottom: -10px;
height: 10px;
}
.site-header-logo {
top: 0;
left: calc(43.75vw - 420px);
height: 100%;
font-size: 20px;
}
.site-header-nav {
right: 45px;
right: calc(43.75vw - 420px);
left: auto;
display: flex;
justify-content: center;
height: 100%;
}
.site-header-nav-item {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.site-header-nav-item+.site-header-nav-item {
margin-left: 20px;
}
.site-header-nav-item>a {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.site-header-nav-item.twitter {
width: 25px;
}
}
/***** TOP-VISUAL *****/
.pre-ttl {
margin: 0 auto;
padding: 20px 20px 0;
text-align: center;
width: calc(74.6875% + 40px);
max-width: 1450px;
}
.top-visual {
background-color: #fff;
}
.tv-box {
position: relative;
display: flex;
justify-content: center;
align-items: center;
transition: transform 1s ease-out;
transform: scale(0, 0);
z-index: 1;
}
.tv-box.loaded {
/* transform: scale(1,1); */
animation: tv-bound 1s ease-out forwards;
}
@keyframes tv-bound {
0% {
transform: scale(0);
}
70% {
transform: scale(1.1);
}
80% {
transform: scale(1);
}
90% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.tv-fukidashi,
.tv-wchance,
.tv-koma1,
.tv-koma2,
.tv-koma3 {
position: absolute;
}
.cp-period {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
background-color: #0050AA;
font-weight: bold;
color: #fff;
text-align: center;
line-height: 1.25;
}
.cp-period::before {
content: '';
position: absolute;
left: 0;
width: 100%;
background: center center / contain repeat-x url(../img/tv-bg-wave.png);
}
.cp-period-txt1 {
color: #fff100;
}
.cp-period-txt1+.cp-period-txt2 {
margin-top: 10px;
}
.cp-period-txt2 span {
display: inline-block;
}
/*** TOP-VISUAL - sp & tab ***/
@media screen and (max-width: 979px) {
.top-visual {
padding-top: 55px;
}
.cp-period {
align-items: center;
min-height: 25vw;
padding: 4vw 0;
}
.cp-period::before {
top: -5px;
height: 5px;
}
.cp-period-txt1 {
font-size: 4.75vw;
font-size: max(15px, 4.75vw);
}
.cp-period-txt2 {
font-size: 2.25vw;
font-size: max(11px, 2.25vw);
}
.cp-period-txt2 span {
font-size: 3.7vw;
font-size: max(11px, 3.7vw);
}
}
/*** TOP-VISUAL - sp ***/
@media screen and (max-width:599px) {
.tv-logo {
margin: 35px 0 30%;
width: 92.1875%;
}
.tv-fukidashi {
top: 16px;
width: 94.81828%;
}
.tv-koma1 {
bottom: 14%;
left: 5%;
width: 28.4759%;
transform: rotate(14.36deg);
box-shadow: 1px 3px 5px rgba(0, 0, 0, .2);
animation: koma1 2s infinite ease-in-out;
}
@keyframes koma1 {
0% {
bottom: 14.5%;
}
50% {
bottom: 13.5%;
}
100% {
bottom: 14.5%;
}
}
.tv-koma2 {
bottom: -1.5%;
left: 9.5%;
width: 29.3631%;
transform: rotate(-4.75deg);
box-shadow: -1px 3px 5px rgba(0, 0, 0, .2);
z-index: 1;
animation: koma2 2.1s infinite ease-in-out;
}
@keyframes koma2 {
0% {
bottom: -2%;
}
50% {
bottom: -1%;
}
100% {
bottom: -2%;
}
}
.tv-koma3 {
bottom: 10%;
left: 38%;
width: 23.4375%;
transform: rotate(-14.5deg);
box-shadow: -2px 3px 5px rgba(0, 0, 0, .2);
animation: koma3 2.5s infinite ease-in-out;
}
@keyframes koma3 {
0% {
bottom: 10.25%;
}
50% {
bottom: 7.75%;
}
100% {
bottom: 10.25%;
}
}
.tv-wchance {
bottom: 20px;
right: 4%;
width: 32%;
}
}
/*** TOP-VISUAL - tab & pc ***/
@media print,
(min-width: 600px) {
.tv-logo {
margin: 10px auto;
width: 54.6875%;
max-width: 700px;
max-width: 1050px;
}
.tv-logo img {
width: 100%;
}
.tv-fukidashi {
width: 90.625%;
max-width: 1160px;
max-width: 1740px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tv-koma1,
.tv-koma2,
.tv-koma3 {
width: 21.09375%;
max-width: 405px;
}
.tv-koma1 {
top: 20px;
left: 0px;
box-shadow: 2px 8px 8px rgba(0, 0, 0, .2);
transform: rotate(11deg);
transform-origin: left bottom;
animation: koma1 2s infinite ease-in-out;
}
@keyframes koma1 {
0% {
top: 15px;
}
50% {
top: 25px;
}
100% {
top: 15px;
}
}
.tv-koma2 {
top: 20px;
right: 4px;
box-shadow: -2px 8px 8px rgba(0, 0, 0, .2);
transform: rotate(-11deg);
transform-origin: right bottom;
animation: koma2 2s infinite ease-in-out;
}
@keyframes koma2 {
0% {
top: 25px;
}
50% {
top: 15px;
}
100% {
top: 25px;
}
}
.tv-koma3 {
bottom: -25px;
left: 22px;
box-shadow: -2px 8px 8px rgba(0, 0, 0, .2);
transform: rotate(-11deg);
transform-origin: left top;
z-index: 1;
animation: koma3 2.3s infinite ease-in-out;
}
@keyframes koma3 {
0% {
bottom: -35px;
}
50% {
bottom: -25px;
}
100% {
bottom: -35px;
}
}
.tv-wchance {
width: 16.875%;
max-width: 324px;
bottom: 55px;
right: 4.5%;
}
.cp-period::before {
top: -10px;
height: 10px;
}
}
/*** TOP-VISUAL - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.tv-wchance {
bottom: 6.1224vw;
}
}
/*** TOP-VISUAL - pc ***/
@media print,
(min-width: 980px) {
.top-visual {
padding-top: 80px;
}
.tv-box {
margin-top: -10px;
}
.cp-period {
align-items: center;
padding-top: 8px;
height: 260px;
}
.cp-period-txt1 {
font-size: 48px;
}
.cp-period-txt2 {
font-size: 28px;
}
.cp-period-txt2 span {
font-size: 37px;
}
}
@media screen and (min-width: 1920px) {
.tv-koma1 {
left: calc(50% - 960px);
}
.tv-koma2 {
right: calc(50% - 956px);
}
.tv-koma3 {
left: calc(50% - 938px);
}
.tv-wchance {
right: calc(50% - 873px);
}
}
/*** winner ***/
.winner-text {
font-feature-settings: "palt";
line-height: 1.875;
}
.winner-item {
text-align: center;
}
.winner-item>dl>dt {
line-break: anywhere;
background: center bottom / contain no-repeat url(../img/winner/winner-line.svg);
}
.winner-item .episode-button {
text-align: left;
}
.winner-item .episode-button::before {
content: '';
position: absolute;
border: 2px solid #fff;
border-radius: 50%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.item-kato .episode-button::before {
background-image: url(../img/manga-kato.jpg);
}
.item-sawaguchi .episode-button::before {
background-image: url(../img/manga-sawaguchi.jpg);
}
.item-sumire .episode-button::before {
background-image: url(../img/manga-sumire.jpg);
}
/*** winner - sp ***/
@media only screen and (max-width: 599px) {
.winner {
padding: 40px 20px 80px;
font-size: 15px;
}
.winner-list {
margin: 40px auto 0;
width: 270px;
}
.winner-item>dl>dt {
padding: 0 20px 50px;
font-size: 17px;
/* min-height: 188px; */
line-height: 1.6;
}
.winner-name {
margin-top: 12px;
font-size: 26px;
line-height: 1.16667;
}
.winner-name small {
font-size: 17px;
}
.winner-item .episode-button {
padding-left: 69px;
font-size: 16px;
}
.winner-item .episode-button::before {
top: 6px;
left: 10px;
width: 49px;
height: 49px;
}
}
/*** winner - tab & pc ***/
@media print,
(min-width: 600px) {
.winner {
padding: 90px 0 150px;
}
.winner-text {
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 790px;
}
.winner-list {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin: 100px auto 0;
padding: 0 20px;
width: 100%;
max-width: 1180px;
}
.winner-item {
width: 290px;
margin-bottom: 40px;
margin-right: 7%;
}
.winner-item>dl>dt {
padding: 0 40px;
font-size: 21px;
min-height: 211px;
}
.winner-name {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
align-content: center;
justify-content: center;
margin-top: 4px;
font-size: 30px;
line-height: 1.16667;
height: 95px;
}
.winner-name small {
font-size: 21px;
}
.winner-item .episode-button {
padding-left: 81px;
}
.winner-item .episode-button::before {
top: 6px;
left: 12px;
width: 58px;
height: 58px;
}
}
/*** winner - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.winner-list {
max-width: 800px;
}
.winner-item:nth-child(odd) {
margin-right: 15px;
}
.winner-item:nth-child(even) {
margin-left: 15px;
}
}
/*** winner - pc ***/
@media print,
(min-width: 980px) {}
/***** MAIN *****/
.main-section,
.section-inner {
position: relative;
}
.section-wave {
background: linear-gradient(to bottom, #8ddfea, #eaf9fb);
}
.section-wave::before {
content: '';
position: absolute;
top: -20px;
left: 0;
width: 100%;
height: 20px;
background: center left repeat-x url(../img/section-bg-top-wave.png);
}
.section-wave::after {
content: '';
position: absolute;
bottom: -20px;
left: 0;
width: 100%;
height: 20px;
background: center left repeat-x url(../img/section-bg-bottom-wave.png);
}
.section-header-ttl {
position: relative;
font-size: 25px;
font-weight: bold;
text-align: center;
line-height: 1.375;
}
.ttl-line-drop::after {
content: '';
display: block;
margin-top: .4em;
width: 100%;
height: 12px;
background: center center / contain no-repeat url(../img/line-drop.svg);
}
.icon-plus {
position: relative;
}
.icon-plus::before,
.icon-plus::after {
content: '';
position: absolute;
left: calc(50% - 1.5px);
width: 3px;
height: 100%;
background-color: #424252;
border-radius: 1.5px;
}
.icon-plus::after {
transform: rotate(90deg);
}
@media screen and (max-width: 599px) {
.section-wave::before,
.section-wave::after {
background-size: 50vw 20px;
}
}
@media screen and (max-width: 979px) {
.section-header-ttl {
padding: 0 15px;
}
}
@media print,
(min-width: 600px) {
.section-wave::before,
.section-wave::after {
background-size: 640px 20px;
}
.section-header-ttl {
font-size: 44px;
}
}
/*** intro ***/
.mangaka-list {
display: flex;
}
.mangaka-image {
border: 4px solid #fff;
border-radius: 50%;
box-shadow: 2px 2px 8px rgba(0, 0, 0, .25);
overflow: hidden;
}
.mangaka {
position: relative;
border: 3px solid #2FC5D9;
border-radius: 28px;
background-color: #fff;
width: 100%;
line-height: 1.6;
}
.mangaka::after {
content: '';
position: absolute;
top: -30px;
left: calc(50% - 12px);
width: 24px;
height: 30px;
background: center bottom / contain no-repeat url(../img/manga-fukidashi-top.png);
}
.mangaka dt {
font-size: 25px;
font-weight: bold;
text-align: center;
}
.mangaka dt small {
display: inline-block;
padding-left: 3px;
font-size: 20px;
}
.mangaka .type {
font-size: 14px;
text-align: center;
}
.episode-button {
position: relative;
display: block;
width: 100%;
background-color: #0050AA;
font-weight: 900;
color: #fff;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, .25);
transition: box-shadow .3s, opacity .3s;
}
.episode-button:hover {
box-shadow: 0 0 0 rgba(0, 0, 0, 0);
;
}
.episode-button::after {
content: '';
position: absolute;
top: calc(50% - 7px);
right: 13px;
width: 13px;
height: 13px;
border-right: 2px solid #fff;
border-top: 2px solid #fff;
transform: rotate(45deg);
}
/*** intro - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** intro - sp ***/
@media only screen and (max-width: 599px) {
#intro {
padding: 35px 0;
}
.mangaka-list {
flex-direction: column;
margin: 40px auto 0;
width: 270px;
}
.mangaka-image {
margin: 0 auto;
width: 188px;
height: 188px;
border-width: 3px;
}
.mangaka {
margin-top: 30px;
padding: 20px 0;
}
.mangaka .detail {
padding: 0 17px;
font-size: 15px;
}
.episode-manga {
position: relative;
margin-top: 18px;
}
.episode-manga::before {
content: '';
position: absolute;
top: 160px;
left: 0;
display: block;
width: 100%;
height: 110px;
}
.episode-button {
padding-top: 8px;
height: 64px;
border-radius: 37px;
line-height: 1.4;
transform: translateY(-32px);
}
}
/*** intro - tab & pc ***/
@media print,
(min-width: 600px) {
#intro {
padding: 80px 0 120px;
}
.mangaka-list {
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
padding-left: 20px;
padding-right: 20px;
width: 100%;
max-width: 1104px;
}
.mangaka-list::after {
content: '';
display: block;
width: 0;
height: 0;
}
.mangaka-item {
margin: 50px 32px 0;
width: 290px;
}
.mangaka-image {
border-width: 6px;
width: 272px;
height: 272px;
}
.mangaka {
margin-top: 50px;
padding-top: 25px;
min-height: 290px;
border-width: 4px;
line-height: 30px;
}
.mangaka::after {
left: calc(50% - 14.5px);
width: 29px;
}
.mangaka dt {
font-size: 30px;
}
.mangaka-narrow {
display: inline-block;
font-size: 27px;
transform: scale(1, 1.1);
transform-origin: bottom;
}
.mangaka .type {
text-align: center;
}
.mangaka .detail {
margin-top: 1em;
padding: 0 15px 0 19px;
font-size: 16px;
}
.episode-manga {
margin-top: 32px;
min-height: 290px;
}
.episode-button {
padding-top: 12px;
height: 74px;
border-radius: 37px;
line-height: 1.6;
transform: translateY(-37px);
}
.episode-button::after {
right: 20px;
width: 14px;
height: 14px;
}
#intro .section-inner::before,
#intro .section-inner::after,
#terms .section-inner::before,
#terms .section-inner::after,
#footstep .section-inner::after,
#about .section-inner::before,
#about .section-inner::after {
content: '';
position: absolute;
width: 165px;
height: 212px;
background: center / contain no-repeat url(../img/icon-toilet.svg);
opacity: .4;
z-index: 1;
}
#intro .section-inner::before {
top: -240px;
right: 30px;
}
#intro .section-inner::after {
bottom: -245px;
left: 30px;
transform: scale(-1, 1);
z-index: 1;
}
}
/*** intro - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
#intro .section-inner::before,
#terms .section-inner::before,
#footstep .section-inner::after,
#about .section-inner::after {
transform: scale(.75);
transform-origin: center right;
}
#intro .section-inner::after,
#terms .section-inner::after {
transform: scale(-.75, .75)!important;
transform-origin: top center;
}
}
/*** intro - pc ***/
@media print,
(min-width: 980px) {
#intro .section-header-ttl {
font-size: 48px;
}
.mangaka-item.drops::after {
content: '';
display: block;
margin: 115px auto 0;
width: 220px;
height: 257px;
background: center / contain no-repeat url(../img/drops.svg);
opacity: .9;
}
}
/*** prize ***/
.prize-6,
.prize-w {
display: block;
position: relative;
}
.prize-6::after,
.prize-w::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.prize-6::after {
background: center / contain no-repeat url(../img/prize-6.svg);
}
.prize-w::after {
background: center / contain no-repeat url(../img/prize-w.svg);
}
.prize-notice {
margin-left: 1em;
color: #888;
list-style-type: decimal;
}
/*** prize - tab & sp ***/
@media only screen and (max-width: 979px) {
.prize-text {
padding: 0 20px;
}
}
/*** prize - sp ***/
@media only screen and (max-width: 599px) {
.prize {
padding-top: 60px;
}
.prize-6,
.prize-w {
display: block;
margin: 0 auto 4px;
width: 101px;
height: 106px;
}
.prize-6::after,
.prize-w::after {
left: 3px;
}
.ttl-prize {
padding: 0;
}
.prize-text {
margin: 20px 0;
}
.prize-6-box img,
.prize-card {
display: block;
margin: 0 auto;
}
.prize-manga {
width: 170px;
}
.prize-plus {
margin: 6px auto 8px;
width: 30px;
height: 30px;
}
.prize-amazon,
.prize-card {
width: 200px;
}
.prize-notice {
margin-top: 50px;
margin-left: 10px;
padding: 0 20px;
font-size: 12px;
font-feature-settings: "palt";
line-height: 1.6;
}
.prize-notice li:first-child {
line-break: anywhere;
}
}
/*** prize - tab & pc ***/
@media print,
(min-width: 600px) {
.prize {
padding-top: 120px;
}
.header-prize {
position: relative;
margin: 0 auto;
max-width: 1280px;
}
.header-prize::before,
.header-prize::after {
content: '';
position: absolute;
bottom: -60px;
display: block;
width: 144px;
height: 192px;
background: center / contain no-repeat url(../img/prize-line-pc.svg);
}
.header-prize::before {
left: 90px;
}
.header-prize::after {
right: 90px;
transform: scale(-1, 1);
}
.ttl-prize {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
}
.ttl-prize span+span {
margin-left: 10px;
}
.ttl-prize img {
display: block;
width: 165px;
height: 159px;
}
.prize-6 {
transform: translateY(-30px);
}
.prize-text {
margin: 60px auto 0;
max-width: 790px;
font-feature-settings: "palt";
}
.prize-6-box {
display: flex;
justify-content: space-between;
align-items: center;
margin: 40px auto 0;
padding: 0 20px;
width: 100%;
max-width: 790px;
height: 33.42857vw;
max-height: 266px;
}
.prize-plus {
width: 73px;
height: 73px;
transform: translateX(-8px);
}
.prize-plus::before,
.prize-plus::after {
width: 5px;
border-radius: 2.5px;
}
.prize-card {
min-height: 195px;
margin-top: 40px;
text-align: center;
}
.prize-notice {
margin: 40px auto 0 46.5%;
font-size: 13px;
}
}
/*** prize - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.prize {
overflow: hidden;
}
.header-prize::before {
bottom: -40px;
left: -50px;
}
.header-prize::after {
bottom: -40px;
right: -50px;
}
.ttl-prize {
flex-direction: column;
align-items: center;
}
.ttl-prize span+span {
margin-left: 0;
}
.prize-6::after,
.prize-w::after {
left: 6px;
}
.prize-manga {
width: 39.73%;
}
.prize-plus {
width: 7.449vw;
height: 7.449vw;
}
.prize-amazon {
width: 41.3333%;
}
.prize-notice {
margin-left: calc(100% - 610px);
margin-left: max(calc(100% - 610px), 4px);
padding-left: 16px;
width: 600px;
white-space: nowrap;
}
}
/*** prize - pc ***/
@media print,
(min-width: 980px) {
.ttl-prize img {
transform: rotate(-76deg);
}
}
/*** flow ***/
.flow-leading+.flow-leading {
margin-top: 0;
}
.flow-leading a {
text-decoration: underline;
}
.step-item {
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 790px;
}
.step {
position: relative;
background-color: #fff;
border: 3px solid #00ACEE;
border-radius: 15px;
font-weight: bold;
text-align: center;
}
.step>dt {
margin: 0 auto;
background: center / contain no-repeat url(../img/step-drop.svg);
color: #fff;
text-align: center;
}
.step-finish>dl>dt {
background-image: url(../img/step-drop-fin.svg);
}
.txt-hash {
color: #00ACEE;
}
.clipboard-copy {
text-decoration: underline;
cursor: pointer;
}
.step-button {
display: block;
background: #00ACEE;
color: #fff;
transition: .3s;
}
.step-button:hover {
box-shadow: 0 0 5px rgba(0, 0, 0, 0);
}
.step-button::after {
content: '';
display: inline-block;
width: .6em;
height: .6em;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
transform: rotate(45deg);
}
.step-notice {
color: #888;
font-feature-settings: "palt";
}
.step-notice a {
color: #2FC5D9;
text-decoration: underline;
}
.step-finish>dl {
border-color: #0050AA;
}
.step-prize-name {
background: center / contain no-repeat url(../img/crown-6.svg);
}
.step-prize-name small {
display: block;
}
.step-prize-w .step-prize-name {
background-image: url(../img/crown-w.svg);
}
.step-prize-item {
color: #0050AA;
}
.step-prize-left span,
.step-prize-right span {
display: inline-block;
}
/*** flow - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** flow - sp ***/
@media only screen and (max-width: 599px) {
#flow {
margin-top: 40px;
}
.flow-leading {
margin-top: 20px;
padding: 0 20px;
font-size: 15px;
}
#flow .main-section+.main-section {
margin-top: 60px;
}
.step-item {
margin-top: 80px;
max-width: 350px;
}
.step-item+.step-item {
margin-top: 70px;
}
.step>dt {
margin-top: -50px;
padding-top: 28px;
width: 62px;
height: 82px;
font-size: 32px;
font-weight: normal;
line-height: 1;
}
.step>dt small {
display: block;
font-size: 13px;
}
.step>dd {
margin-top: 10px;
font-size: 17px;
line-height: 1.5;
}
.txt-hash {
font-size: 22px;
}
.step .sp95 {
display: inline-block;
transform: scale(.95, 1);
transform-origin: bottom center;
}
.step-button {
display: flex;
align-items: center;
justify-content: space-between;
margin: 20px auto 40px;
padding: 0 20px;
width: 240px;
height: 62px;
border-radius: 31px;
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
font-size: 15px;
line-height: 1.4;
}
.step-button::after {
margin-left: -3px;
}
.step-button>img {
display: inline-block;
width: 24px;
}
.step-notice {
display: flex;
justify-content: flex-end;
margin: 5px auto;
font-size: 12px;
}
.step-finish .step {
padding-bottom: 20px;
}
.step-finish>dl>dt {
padding-top: 25px;
width: 78px;
height: 102px;
font-size: 25px;
line-height: 1.3;
}
.step-finish>dl>dt small {
font-size: 20px;
}
.step-prize {
margin: 0 auto;
padding: 0 20px;
}
.step-prize+.step-prize {
margin-top: 40px;
}
.step-prize-name {
margin: 0 auto;
padding-top: 45px;
width: 75px;
height: 103px;
font-size: 20px;
color: #000;
line-height: 1.3;
}
.step-prize-name small {
font-size: 16px;
}
.step-prize-item {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 10px;
width: 100%;
}
.step-prize-manga {
display: inline-block;
margin-top: 10px;
width: 145px;
}
.step-plus {
margin: 10px auto;
width: 24px;
height: 24px;
}
.step-plus::before,
.step-plus::after {
width: 3px;
}
.step-prize-right-amazon {
width: 160px;
margin-top: 10px;
}
}
/*** flow - tab & pc ***/
@media print,
(min-width: 600px) {
#flow {
margin-top: 80px;
}
#flow .main-section+.main-section {
margin-top: 80px;
}
.flow-leading {
margin: 40px auto 0;
padding: 0 20px;
width: 100%;
max-width: 790px;
}
.step {
margin-top: 120px;
padding: 0 20px;
border-radius: 40px;
}
.step>dt {
margin-top: -75px;
padding-top: 38px;
width: 95px;
height: 125px;
font-size: 55px;
line-height: 1;
}
.step>dt small {
display: block;
font-size: 19px;
}
.step>dd {
margin-top: 20px;
font-size: 24px;
}
.txt-hash {
font-size: 30px;
}
.step-button {
margin: 20px auto 40px;
padding-top: 11px;
width: 400px;
height: 70px;
border-radius: 35px;
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
font-size: 22px;
}
.step-button>img {
display: inline-block;
width: 34px;
}
.step-notice {
display: flex;
justify-content: flex-end;
margin: 20px auto;
width: 100%;
font-size: 13px;
}
.step-finish {
padding: 0 10px;
width: 100%;
max-width: 1020px;
}
.step-finish .step {
padding-bottom: 40px;
}
.step-finish>dl>dt {
padding-top: 52px;
width: 125px;
height: 173px;
font-size: 40px;
line-height: 1.3;
}
.step-finish>dl>dt small {
font-size: 32px;
}
.step-prize {
display: flex;
margin: 0 auto;
width: 100%;
max-width: 855px;
}
.step-prize+.step-prize {
margin-top: 60px;
}
.step-prize-name {
flex-shrink: 0;
padding-top: 70px;
width: 120px;
height: 160px;
font-size: 32px;
color: #000;
line-height: 1.3;
}
.step-prize-name small {
font-size: 24px;
}
.step-prize-item {
display: flex;
justify-content: space-between;
width: 100%;
}
.step-prize-left {
width: 57.9856%;
max-width: 410px;
}
.step-prize-manga {
display: inline-block;
margin-top: 10px;
width: 220px;
height: 196px;
}
.step-plus {
flex-shrink: 0;
margin: 20px 10px 0;
width: 40px;
height: 40px;
}
.step-plus::before,
.step-plus::after {
width: 5px;
border-radius: 2.5px;
}
.step-prize-right {
width: 30.2158%;
max-width: 210px;
}
.step-prize-6 .step-prize-right-amazon {
margin-top: 40px;
}
.step-prize-w .step-prize-item {
align-items: center;
}
}
/*** flow - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.step-finish {
max-width: 790px;
}
.step-prize {
flex-direction: column;
align-items: center;
}
.step-prize-item {
max-width: 696px;
}
}
/*** flow - pc ***/
@media print,
(min-width: 980px) {
.step-prize-item {
margin-left: 16px;
}
}
/*** terms ***/
#terms .section-content {
position: relative;
}
#terms .section-content::before,
#terms .section-content::after {
position: absolute;
left: 40px;
z-index: 1;
content: '';
display: block;
width: calc(100% - 80px);
height: 35px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25px);
}
#terms .section-content::before {
background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25px);
}
.term-lead {
margin-top: 2em;
padding: 0 25px;
text-align: center;
}
.term-lead+.term-lead {
margin-top: 0;
}
.term-lead span {
display: inline-block;
}
.term-list {
width: calc(100% - 40px);
border: 3px solid #2FC5D9;
background: #fff;
overflow: scroll;
}
.term-ttl {
font-weight: 500;
border-bottom: 1px solid #2FC5D9;
}
.term-detail a {
text-decoration: underline;
}
.term-notice {
margin-top: 4px;
color: #888;
line-height: 1.4;
}
ul.term-notice li,
ol.term-notice li {
position: relative;
padding-left: 1em;
}
.term-notice li::before {
content: '※';
position: absolute;
left: 0;
}
.term-condition li,
.term-prohibition li,
.term-notes li,
.term-copyright li {
margin-left: 1.5em;
list-style-type: disc;
}
.term-prohibition li+li,
.term-notes li+li,
.term-copyright li+li {
margin-top: .2em;
}
/*** terms - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** terms - sp ***/
@media only screen and (max-width: 599px) {
#terms {
margin-top: 100px;
padding-top: 40px;
padding-bottom: 70px;
}
.term-lead {
font-size: 15px;
}
.term-list {
margin: 30px auto 0;
padding: 25px 20px 30px;
height: 70vh;
max-height: 560px;
border-radius: 15px;
}
.term-ttl {
margin-bottom: 5px;
font-size: 17px;
}
.term-detail {
font-size: 15px;
line-height: 1.6667;
}
.term-notice {
font-size: 14px;
}
.term-detail+.term-ttl {
margin-top: 20px;
}
#terms .section-content::before {
top: 3px;
}
#terms .section-content::after {
bottom: 3px;
}
}
/*** terms - tab & pc ***/
@media print,
(min-width: 600px) {
#terms {
margin-top: 120px;
padding-top: 100px;
padding-bottom: 120px;
}
.term-list {
margin: 50px auto 0;
padding: 40px;
max-width: 850px;
height: 560px;
border-width: 4px;
border-radius: 19px;
line-height: 1.875;
}
.term-ttl {
margin-bottom: 6px;
padding-bottom: 6px;
font-size: 20px;
}
.term-notice {
font-size: 14px;
}
.term-detail+.term-ttl {
margin-top: 16px;
}
#terms .section-inner::before {
top: -200px;
right: 30px;
}
#terms .section-inner::after {
bottom: -245px;
left: 30px;
transform: scale(-1, 1);
z-index: 1;
}
#terms .section-content::before,
#terms .section-content::after {
left: calc(50% - 400px);
width: calc(100% - 120px);
max-width: 800px;
}
#terms .section-content::before {
top: 4px;
}
#terms .section-content::after {
bottom: 4px;
}
}
/*** terms - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.term-list {
max-height: 70vh;
}
#terms .section-content::before,
#terms .section-content::after {
left: 60px;
}
}
/*** terms - pc ***/
@media print,
(min-width: 980px) {}
/*** history ***/
/*** history - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** history - sp ***/
@media only screen and (max-width: 599px) {
#history,
#toilet-culture {
margin-top: 60px;
}
.history-text {
padding: 0 20px;
font-size: 15px;
line-height: 1.6667;
}
.sp-read-more {
position: relative;
box-sizing: content-box;
margin-top: 30px;
height: 290px;
background: linear-gradient(to bottom, #424252 235px, rgba(66, 66, 82, 0) 287px);
overflow: hidden;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.sp-read-more.open {
background: none;
-webkit-text-fill-color: inherit;
padding-bottom: 30px;
}
.sp-read-more::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
display: block;
opacity: 1;
transition-delay: .3s;
transition-property: opacity;
}
.sp-read-more.open::after {
width: 100%;
height: 30px;
background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
opacity: 0;
}
.btn-read-more {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin: -32px auto 0;
width: 160px;
height: 32px;
background-color: #2FC5D9;
border-radius: 16px;
box-shadow: 0 5px 10px rgba(0, 10, 53, .15);
font-size: 15px;
font-weight: bold;
color: #fff;
overflow: hidden;
cursor: pointer;
transition: .15s;
transition-delay: visibility .15s;
}
.btn-read-more.open {
opacity: 0;
visibility: hidden;
}
}
/*** history - tab & pc ***/
@media print,
(min-width: 600px) {
#history,
#toilet-culture {
margin-top: 100px;
}
#history .section-header-ttl,
#toilet-culture .section-header-ttl {
font-size: 36px;
}
#history .section-content,
#toilet-culture .section-content {
margin: 40px auto 0;
width: calc(100% - 40px);
max-width: 750px;
}
.shower-image {
display: block;
float: right;
margin-top: 10px;
margin-left: 16px;
width: 295px;
height: 230px;
border-radius: 11px;
}
.history-text {
line-height: 2.375;
}
}
/*** history - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {}
/*** history - pc ***/
@media print,
(min-width: 980px) {}
/*** footstep ***/
#footstep .section-content img {
display: block;
margin: 0 auto;
}
/*** footstep - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** footstep - sp ***/
@media only screen and (max-width: 599px) {
#footstep {
margin-top: 80px;
padding: 30px 0;
}
#footstep .section-content img {
margin-top: 10px;
width: calc(100% - 40px);
max-width: 370px;
}
}
/*** footstep - tab & pc ***/
@media print,
(min-width: 600px) {
#footstep {
margin-top: 120px;
padding: 100px 15px 120px 20px;
}
#footstep .section-header-ttl {
font-size: 36px;
}
#footstep .section-content img {
margin-top: 45px;
}
#footstep .section-inner::after {
bottom: -140px;
right: 5px;
}
}
/*** footstep - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
#footstep {
padding-top: 7.8125vw;
padding-bottom: 9.375vw;
}
#footstep .section-content img {
margin-top: 3.515625vw;
}
}
/*** footstep - pc ***/
@media print,
(min-width: 980px) {
#footstep .section-content img {
height: 1005px;
}
}
/*** survey ***/
#survey .section-content img {
display: block;
margin: 0 auto;
}
.survey-list dt {
background: #0050AA;
font-weight: bold;
color: #fff;
}
.survey-item {
text-align: center;
}
.survey-notice {
color: #888;
}
.survey-notice>dt {
display: block;
float: left;
}
.survey-notice>dt::after {
content: ': ';
}
.survey-notice>dd::after {
content: '';
display: block;
clear: both;
}
/*** survey - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** survey - sp ***/
@media only screen and (max-width: 599px) {
#survey {
margin-top: 80px;
}
#survey .section-content {
margin-top: 30px;
}
.survey-lead {
margin: 0 auto;
padding: 0 25px;
max-width: 400px;
font-size: 15px;
}
.survey-item {
margin: 40px auto 0;
padding: 0 20px;
width: 100%;
max-width: 370px;
}
.survey-item dt {
margin-bottom: 20px;
padding: 6px 0;
border-radius: 5px;
font-size: 16px;
line-height: 1.45;
}
.survey-1 img {
width: 100%;
}
.survey-3 dd,
.survey-4 dd,
.survey-5 dd {
margin: 0 auto;
width: 70%;
}
.survey-notice {
margin-top: 40px;
padding: 0 25px;
font-size: 12px;
}
}
/*** survey - tab & pc ***/
@media print,
(min-width: 600px) {
#survey {
margin-top: 120px;
padding: 100px 0 120px;
overflow: hidden;
}
#survey .header-prize::before,
#survey .header-prize::after {
width: 79px;
height: 105px;
bottom: 0;
}
#survey .header-prize::before {
left: calc(50% - 360px);
}
#survey .header-prize::after {
right: calc(50% - 360px);
}
#survey .section-header-ttl {
font-size: 36px;
}
#survey .section-content {
margin-top: 40px;
padding: 0 20px;
}
.survey-lead {
text-align: center;
}
.survey-list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 50px auto 0;
width: 100%;
max-width: 1000px;
}
.survey-item {
width: 290px;
}
.survey-item dt {
padding: 12px 0 13px;
border-radius: 10px;
font-size: 20px;
line-height: 1.45;
}
.survey-item dd {
margin-top: 30px;
}
.survey-1 {
margin-bottom: 40px;
width: 530px;
}
.survey-notice {
margin-top: 20px;
margin-left: auto;
width: 485px;
font-size: 13px;
}
}
/*** survey - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
#survey .header-prize::before {
left: calc(50% - 260px);
}
#survey .header-prize::after {
right: calc(50% - 260px);
}
.survey-list {
justify-content: space-around;
max-width: 700px;
}
.survey-item {
margin-bottom: 40px;
width: 40%;
}
.survey-1 {
width: 500px;
}
.survey-item dt {
padding: 11px 0 12px;
font-size: 18px;
}
.survey-item dd {
padding: 11px 0 12px;
font-size: 18px;
}
.survey-2 dd {
width: 350px;
transform: translateX(-11%);
}
}
@media screen and (min-width: 600px) and (max-width: 739px) {
.survey-list {
flex-direction: column;
align-items: center;
}
}
/*** survey - pc ***/
@media print,
(min-width: 980px) {
.survey-2 dd {
width: 361px;
transform: translateX(-71px);
}
.survey-3,
.survey-5 {
margin-top: 15px;
}
}
/*** about ***/
.coop-item::after {
content: '、';
}
.coop-item:last-child:after {
content: '';
}
/*** about - tab & sp ***/
@media only screen and (max-width: 979px) {}
/*** about - sp ***/
@media only screen and (max-width: 599px) {
#about {
margin-top: 80px;
padding: 40px 0 140px;
font-size: 15px;
}
#about .section-inner {
padding: 0 22px;
}
#about .section-inner::after {
content: '';
position: absolute;
right: 25px;
bottom: -100px;
width: 66px;
height: 85px;
background: center / contain no-repeat url(../img/icon-toilet.svg);
opacity: .4;
z-index: 1;
}
.about-text {
margin-top: 20px;
}
.coop {
margin-top: 1em;
}
.coop-item {
display: inline;
}
.mangaka-item.drops {
margin-top: 20px;
}
}
/*** about - tab & pc ***/
@media print,
(min-width: 600px) {
#about {
padding: 80px 0 200px;
}
#about .section-inner::before {
top: -280px;
left: 20px;
transform: scale(-1, 1);
}
#about .section-inner::after {
bottom: -140px;
right: 20px;
}
#about .section-header-ttl {
font-size: 36px;
}
#about .section-content {
margin: 40px auto 0;
padding: 0 20px;
width: 100%;
max-width: 780px;
}
.coop {
margin-top: 2em;
}
.coop-item {
display: inline-block;
font-feature-settings: "palt";
}
}
/*** about - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
#about {
padding: 60px 0 140px;
}
.coop {
width: calc(100% - 120px);
}
}
/*** about - pc ***/
@media print,
(min-width: 980px) {}
/***** FOOTER *****/
.site-footer {
position: relative;
background-color: #2FC5D9;
}
.site-footer::before {
content: '';
position: absolute;
left: 0;
display: block;
width: 100%;
background: left bottom / contain repeat-x url(../img/header-bg-wave.png);
transform: scale(1, -1);
}
.site-footer,
.site-footer a {
color: #fff;
}
.copyright {
display: flex;
justify-content: center;
align-items: center;
background-color: #0050AA;
}
.to-top {
position: fixed;
bottom: 20px;
right: 20px;
background-color: rgba(255, 255, 255, .9);
width: 36px;
height: 36px;
border: 2px solid #E1BF6F;
border-radius: 50%;
overflow: hidden;
display: none;
transition: .3s transform;
z-index: 1;
}
.to-top a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
transform: rotate(180deg);
transition: .3s;
}
.to-top:hover a {
transform: rotate(180deg) translateY(4px);
}
/*** FOOTER - tab & sp ***/
@media only screen and (max-width: 979px) {
.site-footer::before {
top: -8px;
height: 8px;
}
}
/*** FOOTER - sp ***/
@media only screen and (max-width: 599px) {
.site-footer {
padding-top: 20px;
}
.footer-logo {
margin: 0 auto;
width: 192px;
}
.footer-syadan {
display: block;
width: 72px;
}
.copyright {
margin-top: 20px;
padding: 0 25px;
height: 50px;
font-size: 11px;
text-align: center;
line-height: 1.4;
}
.copyright span {
display: inline-block;
}
}
/*** FOOTER - tab & pc ***/
@media print,
(min-width: 600px) {
.site-footer {
padding-top: 30px;
}
.site-footer::before {
top: -10px;
height: 10px;
}
.footer-content {
display: flex;
justify-content: space-between;
margin: 0 auto;
max-width: 1000px;
}
.footer-nav-list {
display: flex;
flex-direction: column;
flex-wrap: wrap;
/* justify-content: space-between; */
align-content: space-between;
width: 362px;
height: 6.1em;
font-size: 15px;
line-height: 2.05;
}
.footer-nav-item::before {
content: '';
display: inline-block;
margin-right: 6px;
width: 9px;
height: 12px;
background: center / contain no-repeat url(../img/icon-drop-w.svg);
}
.copyright {
margin-top: 30px;
height: 50px;
font-size: 12px;
}
}
/*** FOOTER - tab ***/
@media screen and (min-width: 600px) and (max-width: 979px) {
.footer-content {
margin-right: 25px;
width: calc(100% - 50px);
max-width: 830px;
}
.footer-syadan {
display: block;
width: 90px;
}
.footer-nav-list {
width: 30vw;
max-width: 362px;
}
}
/*** FOOTER - pc ***/
@media print,
(min-width: 980px) {
.footer-content {
transform: translateX(8%);
}
.footer-logo a {
display: flex;
justify-content: space-between;
width: 339px;
}
}
@media only screen and (max-width: 599px) {
.to-top a img {
width: 18px;
}
}
@media (min-width: 600px) {
.to-top {
width: 40px;
height: 40px;
right: auto;
left: calc(100% - 60px);
}
}
@media print {
body {
width: 100%;
}
.site-header {
position: absolute;
min-height: 80px
}
.site-header-logo {
margin-top: 0;
padding-top: 10px
}
.site-header-nav {
position: absolute;
bottom: 0;
right: 0;
}
.to-top {
display: none;
}
}
/* inview ***/
@media not print {
.elemFadeIn {
opacity: 0;
filter: blur(1rem);
transition: 1s opacity, 1s filter;
}
.elemFadeIn.animated {
opacity: 1;
filter: blur(0);
}
.delay-1 {
transition-delay: 1.2s;
}
.delay-2 {
transition-delay: 1.7s;
}
.delay-3 {
transition-delay: 2.2s;
}
.main-copy {
transition-delay: 1s;
transition-property: opacity, filter;
}
}
/* other ***/
.mt1em {
margin-top: 1em;
}
.mt2em {
margin-top: 2em;
}
No preview for this file type
No preview for this file type
No preview for this file type
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 220 257"><defs><style>.cls-1{fill:#91dde9;}.cls-2{mix-blend-mode:multiply;}.cls-3{isolation:isolate;}</style></defs><g class="cls-3"><g id="_イヤー_2"><g id="_景"><g><g class="cls-2"><path class="cls-1" d="M129.2,91c19.12,0,34.64-15.88,34.64-35.41S129.2,0,129.2,0c0,0-34.62,36.06-34.62,55.59s15.48,35.41,34.62,35.41Z"/></g><g class="cls-2"><path class="cls-1" d="M189.02,257c17.1,0,30.98-14.2,30.98-31.66s-30.98-49.72-30.98-49.72c0,0-30.96,32.25-30.96,49.72s13.84,31.66,30.96,31.66Z"/></g><g class="cls-2"><path class="cls-1" d="M51.7,214.14c28.56,0,51.74-23.72,51.74-52.89S51.7,78.22,51.7,78.22c0,0-51.7,53.87-51.7,83.04s23.11,52.89,51.7,52.89Z"/></g></g></g></g></g></svg>
\ No newline at end of file
No preview for this file type
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="_イヤー_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="210.81px" height="19.06px" viewBox="0 0 210.81 19.06" style="enable-background:new 0 0 210.81 19.06;"
xml:space="preserve">
<g id="_イヤー_1-2">
<path style="fill:#FFFFFF;" d="M15.76,0.88v17.44H0V0.88H15.76z M2.62,8.26H13.1V3.34H2.62V8.26z M2.62,10.68v5.16H13.1v-5.16H2.62
z"/>
<path style="fill:#FFFFFF;" d="M26.48,13.26v-5.4c-1.96,3.98-4.84,6.64-6.98,8.16l-1.44-2.46c4.04-2.68,5.98-5.22,7.36-8h-7.08V3.1
h8.14V0h2.48v3.1h8.18v2.46h-7.16c1.44,3.1,4.68,6.38,7.42,7.9l-1.42,2.56c-0.6-0.42-1.64-1.16-3.18-2.7v2.26h-3.88v3.34h-2.44
v-3.34H22.7v-2.32C22.7,13.26,26.48,13.26,26.48,13.26z M32.74,13.26c-1.96-2.08-2.92-3.66-3.82-5.4v5.4H32.74z"/>
<path style="fill:#FFFFFF;" d="M43.1,14.78c4.7-0.54,8.1-2.62,10.12-8.96l2.4,1.42c-2.54,6.82-6.32,10.18-15.34,10.48V1.24h2.82
V14.78z"/>
<path style="fill:#FFFFFF;" d="M71.88,1.84c-0.82,4.06-2.3,6.54-3.58,8.32c3.04,2.4,4.12,3.28,6.5,5.64l-2.24,2.16
c-1.22-1.36-2.92-3.22-5.9-5.82c-1.88,2.1-4.74,4.44-7.78,5.78l-1.52-2.22c2.9-1.24,4.94-2.64,7.08-4.96
c2.16-2.34,3.22-4.48,3.92-6.38h-9.9V1.84C58.46,1.84,71.88,1.84,71.88,1.84z"/>
<path style="fill:#FFFFFF;" d="M89.44,12.62c-2.88-1.86-4.84-2.9-8.06-4.16v9.5H78.5V0.88h2.88v4.8c4.5,1.42,7.7,3.2,9.46,4.16
L89.44,12.62z"/>
<path style="fill:#FFFFFF;" d="M97.9,6.34c0,7.44-2.04,10.14-3.66,11.72l-2.02-2.02c1.86-2,3.04-4.02,3.04-9.48V1.7h2.64V6.34z
M103.24,14.36c2-0.88,4.02-1.76,4.92-6.98l2.52,1.08c-0.82,3.6-2.62,8.82-10.1,9.22V1.18h2.66
C103.24,1.18,103.24,14.36,103.24,14.36z"/>
<path style="fill:#FFFFFF;" d="M130.08,8.06v2.78h-17.16V8.06H130.08z"/>
<path style="fill:#FFFFFF;" d="M132.8,14.48h1.92c0.12-0.3,2.1-5.6,4.04-13.5l2.86,0.52c-1.74,6.84-3.66,11.5-4.26,12.92
c4.04-0.12,4.46-0.16,8.24-0.46c-1.16-2.32-2.22-3.88-2.92-4.9l2.3-1.1c2.28,3,3.58,5.38,4.96,8.88l-2.64,1.18
c-0.34-0.92-0.46-1.26-0.68-1.8c-4.54,0.5-6.52,0.72-13.5,1.02L132.8,14.48L132.8,14.48z"/>
<path style="fill:#FFFFFF;" d="M152.52,1.16h17.08v2.52h-7.2v11.74h8.04v2.5h-18.76v-2.5h8.08V3.68h-7.24V1.16z"/>
<path style="fill:#FFFFFF;" d="M189.23,18.62c-2.18-0.7-4.44-1.58-6.96-3.78v3.98h-2.44V14.9c-2.2,2.02-4.6,2.94-6.96,3.72
l-1.2-2.18c1.88-0.52,4.32-1.26,6.44-2.68h-6.4V11.8h8.12v-1.04h-6.76v-1.7h6.76V8.04h-7.24v-1.9h4.02
c-0.06-0.26-0.32-1.04-0.48-1.32h-4.42V2.76h2.84c-0.14-0.38-0.38-0.98-1.02-2.18L175.97,0c0.48,0.96,0.7,1.58,1.04,2.76h1.06V0.1
h2.28v2.66h1.46V0.1h2.26v2.66h1.08c0.38-0.8,0.78-2,1-2.76l2.44,0.58c-0.08,0.2-0.46,1.24-0.98,2.18h2.78v2.06h-4.42
c-0.26,0.74-0.32,0.94-0.48,1.32h4.14v1.9h-7.36v1.02h6.86v1.7h-6.86v1.04h8.12v1.96h-6.34c2.22,1.58,4.84,2.24,6.48,2.62
L189.23,18.62L189.23,18.62z M182.99,6.14c0.12-0.28,0.26-0.64,0.42-1.32h-4.74c0.08,0.18,0.4,1.12,0.48,1.32H182.99L182.99,6.14z"
/>
<path style="fill:#FFFFFF;" d="M195.84,6.52c-1.6,0.96-2.6,1.4-3.22,1.68l-1.24-2.46c4.86-1.9,7.24-4.12,8.32-5.72h2.84
c1.08,1.36,3.04,3.6,8.26,5.72l-1.28,2.44c-0.64-0.28-1.62-0.7-3.16-1.7v1.14h-10.52L195.84,6.52L195.84,6.52z M207.44,19.06
c-0.22-0.4-0.36-0.7-0.8-1.42c-2.58,0.3-5.84,0.7-13.92,0.86l-0.32-2.52c0.26,0,2.4,0.02,2.86,0.02c0.58-1.1,1.26-2.74,1.72-4.14
h-4.8V9.52h17.8v2.34h-10.14c-0.76,1.78-1.26,2.92-1.88,4.12c0.64,0,3.98-0.08,7.26-0.34c-0.44-0.6-0.96-1.26-2.02-2.48l2.12-1.14
c2.28,2.26,3.98,5.06,4.4,5.74L207.44,19.06L207.44,19.06z M204.78,5.4c-2.16-1.6-3.16-2.76-3.68-3.38
c-0.96,1.34-2.38,2.5-3.6,3.38H204.78z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="_イヤー_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="118.94px" height="19.08px" viewBox="0 0 118.94 19.08" style="enable-background:new 0 0 118.94 19.08;"
xml:space="preserve">
<g id="_イヤー_1-2">
<path style="fill:#FFFFFF;" d="M0,7.94h18.44v2.64H0C0,10.58,0,7.94,0,7.94z"/>
<path style="fill:#FFFFFF;" d="M25.1,15.2h-1.56v-4.62c-0.14,0.02-0.7,0.08-0.82,0.1c-0.06,2.44-0.44,5.92-1.74,8.16l-1.54-1.9
c0.34-0.7,1.24-2.56,1.32-6.08c-0.2,0.02-0.28,0.02-0.96,0.06l-0.18-2.24c0.8-0.04,0.88-0.04,1.14-0.06V1.86h2.06
c0.12-0.34,0.24-0.7,0.48-1.86l2.54,0.22c-0.28,0.76-0.32,0.84-0.64,1.64H28v6.06c0.28-0.06,0.48-0.08,0.64-0.12v2.04
c-0.1,0.02-0.54,0.1-0.64,0.12v6.98c0,1.26-0.54,1.96-1.9,1.96h-2.04l-0.44-2.4h1.94c0.4,0,0.5-0.02,0.5-0.48v-5.76
c-0.6,0.1-0.68,0.1-0.96,0.14C25.1,10.4,25.1,15.2,25.1,15.2z M22.72,8.5c0.46-0.04,1.94-0.16,3.34-0.32V4.04h-3.34V8.5z
M23.88,7.92c-0.14-0.94-0.4-2.08-0.68-2.98l1.62-0.38c0.12,0.36,0.54,1.58,0.8,2.92L23.88,7.92z M37.68,18.92
c-1.5-0.64-2.84-1.3-4.18-2.4c-1.7,1.44-3.2,2.06-4.04,2.42l-1.24-2.14c0.98-0.36,2.24-0.84,3.6-1.94
c-1.2-1.46-1.72-2.62-2.02-3.32l1.8-0.78h-2.64V8.5h8.58v2.26c-0.4,1-1.02,2.48-2.36,4.08c1.3,0.96,2.88,1.48,3.54,1.7
C38.72,16.54,37.68,18.92,37.68,18.92z M35.74,0.6v3.96c0,0.28,0.1,0.5,0.38,0.5h0.36c0.2,0,0.38-0.16,0.44-0.48
c0.04-0.24,0.1-1.12,0.12-1.5l1.82,0.54c-0.18,2.86-0.58,3.62-1.9,3.62h-1.82c-0.92,0-1.5-0.26-1.5-1.56V2.76h-1.92
c-0.16,2.52-0.84,4.18-2,5.38l-1.4-1.9c1.06-1.04,1.36-2.86,1.36-4.36V0.6H35.74z M31.92,10.76c0.28,0.6,0.66,1.44,1.54,2.48
c0.8-1,1.18-1.8,1.52-2.48C34.98,10.76,31.92,10.76,31.92,10.76z"/>
<path style="fill:#FFFFFF;" d="M45.08,18.92h-2.5v-7.26c-1.02,0.9-1.7,1.38-2.28,1.78l-0.82-2.74c2.26-1.38,4.3-3.6,5.12-5.36
h-4.82V3h2.8V0.04h2.5V3h2.22v2.34c-0.7,1.44-1.22,2.3-1.84,3.14c1.26,1.46,2.16,1.96,2.78,2.32l-1.22,2.34
c-0.6-0.54-1.26-1.16-1.94-2.06V18.92z M51.52,0.04h2.54V5.4h4.12v2.54h-4.12v7.84h4.5v2.52H46.68v-2.52h4.84V7.94H47.6V5.4h3.92
C51.52,5.4,51.52,0.04,51.52,0.04z"/>
<path style="fill:#FFFFFF;" d="M77.88,0.72v17.66H60.56V0.72H77.88z M63.02,3.04v13h12.4v-13H63.02z M73.06,13.72
c0,1.58-1.5,1.72-2,1.72h-2.72L68,13.18h2.12c0.48,0,0.58-0.18,0.58-0.5V7.76h-6.9V5.58h6.9V3.66h2.36v1.92h1.64v2.18h-1.64
C73.06,7.76,73.06,13.72,73.06,13.72z M66.18,8.32c1.28,1.62,1.88,2.68,2.38,3.7l-2.04,1.32c-0.22-0.48-1.08-2.38-2.26-3.84
C64.26,9.5,66.18,8.32,66.18,8.32z"/>
<path style="fill:#FFFFFF;" d="M85.08,11.98c-1.08,2.42-2.32,4.78-4,6.82l-1.62-2.34c1.26-1.46,2.16-2.88,3.64-5.96L85.08,11.98z
M80.82,5.32c1.38,0.48,2.46,1.12,3.52,2l-1.48,2.14c-0.92-0.78-1.94-1.42-3.28-2.06C79.58,7.4,80.82,5.32,80.82,5.32z M81.6,0.04
c1.38,0.52,2.28,0.98,3.5,1.94l-1.54,2.18c-1.08-0.94-2.02-1.5-3.32-2.14C80.24,2.02,81.6,0.04,81.6,0.04z M91.4,10.36
c-0.68,1.78-1.32,3.44-2.44,5.56c1.76-0.06,3.24-0.1,5.62-0.34c-0.74-1.28-1.36-2.22-1.92-2.96l2.12-1.14
c1.4,1.66,3.14,4.58,3.84,6.48l-2.32,1.12c-0.14-0.36-0.24-0.58-0.66-1.5c-2.82,0.4-7.3,0.74-10.66,0.84l-0.32-2.38
c0.16,0,1.36-0.02,1.6-0.04c1.1-2.14,1.74-3.62,2.3-5.64H85V8.04h5.56v-3h-4.78V2.7h4.78V0.08h2.5V2.7h4.8v2.34h-4.8v3h5.52v2.32
C98.58,10.36,91.4,10.36,91.4,10.36z"/>
<path style="fill:#FFFFFF;" d="M107.9,0.1h2.74v2.42c0,2.22,0.5,5.06,1.72,7.72c1.74,3.8,5.38,5.6,6.58,6.2l-1.7,2.4
c-4.02-2.1-7.08-6.12-7.98-10.02c-1.52,5.66-5.18,8.44-7.98,10.04L99.5,16.5c2.88-1.34,5.3-3.54,6.68-6.4
c1.12-2.28,1.72-4.96,1.72-7.5V0.1z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="9px" height="12px" viewBox="0 0 9 12" style="enable-background:new 0 0 9 12;" xml:space="preserve">
<g style="enable-background:new ;">
<path style="fill:#FFFFFF;" d="M4.5,12C6.98,12,9,10,9,7.54C9,5.09,4.5,0,4.5,0S0,5.09,0,7.54C0,10,2.01,12,4.5,12z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="96px" height="123px" viewBox="0 0 96 123" style="enable-background:new 0 0 96 123;" xml:space="preserve">
<path style="fill:#2FC5D9;" d="M96,64v59H36.66C14.86,113.72,0,87.13,0,64H96z"/>
<path style="fill:#2FC5D9;" d="M87.82,0H84v8.19V59h12V8.19C96,3.67,92.34,0,87.82,0z"/>
<g>
<path style="fill:#2FC5D9;" d="M40.07,51.07c0,1.52-1.23,2.75-2.75,2.75s-2.75-1.23-2.75-2.75c0-1.52,1.23-2.75,2.75-2.75
S40.07,49.55,40.07,51.07z"/>
<path style="fill:#2FC5D9;" d="M40.07,38.61c0,1.52-1.23,2.75-2.75,2.75s-2.75-1.23-2.75-2.75c0-1.52,1.23-2.75,2.75-2.75
S40.07,37.1,40.07,38.61z"/>
<path style="fill:#2FC5D9;" d="M40.07,26.16c0,1.52-1.23,2.75-2.75,2.75s-2.75-1.23-2.75-2.75s1.23-2.75,2.75-2.75
S40.07,24.64,40.07,26.16z"/>
<path style="fill:#2FC5D9;" d="M28.13,15.28c0,1.52,1.23,2.75,2.75,2.75c1.52,0,2.75-1.23,2.75-2.75s-1.23-2.75-2.75-2.75
C29.36,12.54,28.13,13.77,28.13,15.28z"/>
<path style="fill:#2FC5D9;" d="M16.45,10.43c0,1.52,1.23,2.75,2.75,2.75c1.52,0,2.75-1.23,2.75-2.75c0-1.52-1.23-2.75-2.75-2.75
C17.68,7.69,16.45,8.92,16.45,10.43z"/>
<path style="fill:#2FC5D9;" d="M4.95,15.58c0,1.52,1.23,2.75,2.75,2.75c1.52,0,2.75-1.23,2.75-2.75c0-1.52-1.23-2.75-2.75-2.75
C6.18,12.83,4.95,14.06,4.95,15.58z"/>
<path style="fill:#2FC5D9;" d="M46.51,15.28c0,1.52-1.23,2.75-2.75,2.75c-1.52,0-2.75-1.23-2.75-2.75s1.23-2.75,2.75-2.75
C45.28,12.54,46.51,13.77,46.51,15.28z"/>
<path style="fill:#2FC5D9;" d="M58.19,10.43c0,1.52-1.23,2.75-2.75,2.75c-1.52,0-2.75-1.23-2.75-2.75c0-1.52,1.23-2.75,2.75-2.75
C56.96,7.69,58.19,8.92,58.19,10.43z"/>
<path style="fill:#2FC5D9;" d="M69.7,15.58c0,1.52-1.23,2.75-2.75,2.75c-1.52,0-2.75-1.23-2.75-2.75c0-1.52,1.23-2.75,2.75-2.75
C68.47,12.83,69.7,14.06,69.7,15.58z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="50px" height="41px" viewBox="0 0 50 41" style="enable-background:new 0 0 50 41;" xml:space="preserve">
<path id="Icon_awesome-twitter_00000000938168625382084200000013154737872601412508_" style="fill:#FFFFFF;" d="M44.86,10.12
c0.03,0.44,0.03,0.89,0.03,1.33c0,13.55-10.31,29.16-29.16,29.16C10.16,40.62,4.69,39.03,0,36.01c0.82,0.09,1.65,0.13,2.47,0.13
c4.61,0.01,9.09-1.53,12.72-4.38c-4.38-0.08-8.23-2.93-9.58-7.11c0.64,0.1,1.29,0.15,1.93,0.16c0.91,0,1.82-0.12,2.7-0.35
c-4.78-0.97-8.22-5.18-8.22-10.06v-0.13c1.42,0.79,3.01,1.24,4.63,1.3C2.15,12.57,0.76,6.56,3.49,1.87
c5.21,6.41,12.88,10.3,21.13,10.72c-0.16-0.77-0.25-1.56-0.25-2.35C24.37,4.58,28.96,0,34.63,0c2.83,0,5.53,1.17,7.47,3.24
c2.3-0.44,4.5-1.28,6.51-2.47c-0.76,2.37-2.37,4.38-4.5,5.65c2.03-0.23,4.02-0.77,5.9-1.59C48.6,6.87,46.86,8.66,44.86,10.12z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="106px" height="12px" viewBox="0 0 106 12" style="enable-background:new 0 0 106 12;" xml:space="preserve">
<path style="fill:#2FC5D9;" d="M28.72,12c2.46,0,4.45-2,4.45-4.46c0-2.46-4.45-7.54-4.45-7.54s-4.45,5.09-4.45,7.54
C24.27,10,26.26,12,28.72,12z"/>
<path style="fill:#2FC5D9;" d="M4.45,12c2.46,0,4.45-2,4.45-4.46C8.9,5.09,4.45,0,4.45,0S0,5.09,0,7.54C0,10,1.99,12,4.45,12z"/>
<path style="fill:#2FC5D9;" d="M101.55,12C104,12,106,10,106,7.54c0-2.46-4.45-7.54-4.45-7.54S97.1,5.09,97.1,7.54
C97.1,10,99.09,12,101.55,12z"/>
<path style="fill:#2FC5D9;" d="M77.27,12c2.46,0,4.45-2,4.45-4.46c0-2.46-4.45-7.54-4.45-7.54s-4.45,5.09-4.45,7.54
C72.82,10,74.81,12,77.27,12z"/>
<path style="fill:#2FC5D9;" d="M53,12c2.46,0,4.45-2,4.45-4.46C57.45,5.09,53,0,53,0s-4.45,5.09-4.45,7.54C48.55,10,50.54,12,53,12z
"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="154px" height="201.26px" viewBox="0 0 154 201.26" style="enable-background:new 0 0 154 201.26;"
xml:space="preserve">
<g>
<g>
<g>
<line style="fill:none;stroke:#2FC5D9;stroke-width:10;stroke-linecap:round;stroke-miterlimit:10;" x1="45.24" y1="5" x2="45.24" y2="5"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:10;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0,18.7948;" x1="54.67" y1="21.26" x2="144.28" y2="175.69"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:10;stroke-linecap:round;stroke-miterlimit:10;" x1="149" y1="183.82" x2="149" y2="183.82"/>
</g>
</g>
<g>
<g>
<line style="fill:none;stroke:#2FC5D9;stroke-width:10;stroke-linecap:round;stroke-miterlimit:10;" x1="5" y1="87.28" x2="5" y2="87.28"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:10;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0,17.717;" x1="17.93" y1="99.39" x2="114.94" y2="190.2"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:10;stroke-linecap:round;stroke-miterlimit:10;" x1="121.4" y1="196.26" x2="121.4" y2="196.26"/>
</g>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="985.66px" height="110.86px" viewBox="0 0 985.66 110.86" style="enable-background:new 0 0 985.66 110.86;"
xml:space="preserve">
<style type="text/css">
.st0{fill:#FFF100;}
.st1{fill:#FF0000;stroke:#FF0000;stroke-miterlimit:10;}
.st2{clip-path:url(#SVGID_00000136408672437472427270000009460237706833083039_);}
.st3{fill:#FF0000;}
.st4{clip-path:url(#SVGID_00000004508400950743141870000007803702762318464666_);}
</style>
<rect x="7.83" y="74.86" class="st0" width="970" height="36"/>
<g>
<g>
<path class="st1" d="M111.22,47.9c2.34-0.7,3.69-1.1,6.3-2l2.79-1.4l1.53,4.3l-2.43,1.4c-3.24,2.3-5.04,3.6-7.56,5.2
c-0.36,0.2-0.36,0.2-0.63,0.4v33.6c0,4.6-1.98,7-5.76,7c-2.25,0-5.76-1-10.44-3l-4.05-1l-0.45-4.9c2.34,0.2,5.4,0.4,7.47,0.4
c1.35,0,1.62-0.4,1.62-2v-23c-0.45,0.3-1.08,0.6-2.97,1.7l-3.6,2.6l-4.32-14.7l4.5-0.6c2.88-0.5,4.5-0.8,4.95-0.9
c0.45-0.1,0.72-0.2,1.44-0.3V29.3h-3.33c-2.16,0-3.15,0.1-5.94,0.5v-6.1c2.61,0.4,3.96,0.5,5.94,0.5h3.33v-14
c0-1.3-0.09-2.5-0.18-3.7l-0.27-2l-0.09-0.9h12.69c-0.45,3.8-0.54,4.5-0.54,6.6v14h2.79c2.25,0,3.24-0.1,5.94-0.5v6.1
c-3.06-0.4-3.51-0.5-5.94-0.5h-2.79V47.9z M123.28,58.5c-2.34,0.1-3.06,0.1-5.94,0.5v-6c1.98,0.4,3.24,0.4,5.94,0.4h15.84v-3.5
c0-1.4-0.09-2.5-0.18-3.7l-0.27-1.9l-0.09-1h12.87c-0.45,3.9-0.54,4.5-0.54,6.6v3.5h16.47c2.7,0,3.51,0,5.94-0.4v6
c-2.88-0.4-3.51-0.4-5.94-0.5h-14.94c4.23,7.7,10.89,13.9,19.26,17.7l4.32,1.6l-8.1,13l-3.06-2.9c-6.21-5.4-10.89-12.7-13.95-21.7
v23.6c0,2.2,0.09,2.6,0.54,6.6h-12.87l0.09-0.5l0.18-2c0.18-1.3,0.27-2.4,0.27-4.1V71c-5.31,7.3-11.79,13.5-19.53,18.6l-2.52,2.1
l-3.06-4l2.88-1.9c6.57-6.1,13.23-16.9,16.83-27.3H123.28z M172.15,15.5l-6.12,0.5c-9.45,1.1-32.13,2.5-43.65,2.6l-2.97,0.6
l-1.17-5.4h3.87c15.84-1.9,29.43-5.1,37.8-8.8l4.77-2.2L172.15,15.5z M126.7,24.1c2.52,3.4,3.78,5.2,8.55,12.4l2.79,3.9
l-11.25,5.8l-0.54-4.2c-1.71-8-2.52-11.3-3.78-15.7l-1.17-2.4l4.05-2.2L126.7,24.1z M142.9,21.3l1.53,2.3
c2.7,4.1,4.23,6.4,6.39,9.8l2.43,3.5l-11.7,5.1l-0.36-4.4c-0.54-4.7-1.44-9.4-2.61-13.7l-1.26-3.3l4.23-1.7L142.9,21.3z
M173.5,23.5l-3.24,4.6c-2.52,4.4-7.38,11.3-11.7,16.4l-1.71,2.6l-3.78-2.5l1.53-2.9c2.25-6.2,4.41-13.9,5.22-19.3l0.72-4.9
L173.5,23.5z"/>
<path class="st1" d="M251.98,10c3.33,0,4.68-0.1,7.47-0.4c-0.45,3.2-0.54,4.5-0.54,8.3v69.4c0,4.9-2.43,8-6.39,8
c-1.98,0-3.6-0.3-11.43-2.3c-1.08-0.3-1.44-0.4-2.79-0.7l-4.32-1l-0.81-5.4c3.15,0.4,8.37,0.7,11.16,0.7c1.89,0,2.34-0.6,2.34-2.8
V61h-18.54v24.5c0,2.2,0.09,2.8,0.54,6.6h-13.05c0.09-0.7,0.09-0.9,0.36-2.5c0.18-1.6,0.27-2.6,0.27-4.1V61h-16.83
c-1.08,13.8-6.03,25-15.03,33.9l-2.25,2.9l-3.69-3.2l2.43-2.9c4.41-8.7,6.39-19.8,6.39-36.4V17.9v-1.1c0-2.5-0.09-4.3-0.54-7.2
c2.7,0.3,4.14,0.4,7.47,0.4H251.98z M216.25,15.1h-16.56v17.6h16.56V15.1z M199.69,37.8v17.3v0.6v0.2h16.56V37.8H199.69z
M228.13,32.7h18.54V15.1h-18.54V32.7z M228.13,37.8v18.1h18.54V37.8H228.13z"/>
<path class="st1" d="M282.94,27.3c-1.53,0-3.06,0.2-5.04,0.6v-6.5c2.34,0.5,3.6,0.7,5.04,0.7h55.17c1.44,0,2.43-0.1,5.04-0.7v6.5
c-2.16-0.4-3.24-0.6-5.04-0.6h-21.33v51.1h26.73c1.89,0,3.15-0.2,5.04-0.8v6.8c-2.07-0.4-3.33-0.6-5.04-0.6h-65.97
c-1.53,0-3.06,0.2-5.04,0.6v-6.8c1.71,0.6,3.33,0.8,5.04,0.8h27V27.3H282.94z"/>
<path class="st1" d="M426.4,90.11c-2.43-0.1-3.06-0.1-3.6-0.1c-0.72,0-0.72,0-3.6,0.1c-7.38,0.4-15.93,0.6-26.64,0.6
c-15.03,0-19.44-0.9-23.31-4.6c-3.15-3-4.5-7.8-4.5-15.9V17c0-1.8-0.09-3.1-0.54-5.6h12.96c-0.54,3-0.63,3.9-0.63,5.6v23.9
c15.3-3,36-10.8,42.75-16l6.66,14.3c-3.6,0.6-4.05,0.7-8.64,1.9c-10.17,2.5-25.65,4.4-40.77,5.1v22.5c0,5.1,1.17,7.7,3.96,8.9
c2.34,1,4.59,1.2,16.65,1.2c9.9,0,17.37-0.2,24.48-0.8c1.62-0.1,2.97-0.3,4.77-0.8V90.11z M437.02,12.4c0,6.5-4.86,11.9-10.8,11.9
c-5.76,0-10.62-5.4-10.62-12c0-6.4,4.86-11.8,10.8-11.8C432.16,0.5,437.02,6,437.02,12.4z M419.38,12.4c0,4.2,3.15,7.7,7.02,7.7
c3.69,0,6.84-3.5,6.84-7.7c0-4.2-3.15-7.7-6.93-7.7S419.38,8.3,419.38,12.4z"/>
<path class="st1" d="M460.06,54.6C457.09,43.5,447.73,26,442.51,22l5.67-5.6c0.81,1.4,1.35,2.2,2.61,3.4
c7.92,8,15.48,17.6,20.61,26.2L460.06,54.6z M454.21,87.91c3.33,0,5.31-0.6,11.34-3.5c14.22-6.7,23.49-16.7,29.43-31.8
c3.69-9.3,7.02-25.1,7.02-33.3c0-0.8,0-1.7-0.18-3.2l13.86,2.6c-0.54,2-0.81,3.2-0.99,4.9c-4.68,40.3-20.43,60.1-54,68.3
c-2.07,0.5-3.6,1.1-4.5,1.7L454.21,87.91z"/>
<path class="st1" d="M598.3,54c-2.25-0.5-3.33-0.6-4.68-0.6h-63.9c-2.16,0-3.33,0.2-4.68,0.7V45c1.44,0.4,2.97,0.6,4.68,0.6h63.9
c1.17,0,2.7-0.2,4.68-0.6V54z"/>
<path class="st1" d="M617.38,93.01c0.36-2.3,0.54-3.7,0.54-5.6V15.2c0-1.7-0.18-3.2-0.54-5.6h12.96c-0.36,2.2-0.54,4-0.54,5.6
v22.3c14.13,3.1,27,8.3,35.73,14.5c3.6,2.6,4.32,3.2,5.13,3.7l-8.1,12.8c-7.38-9.4-21.24-20.2-32.76-25.5v44.4
c0,1.8,0.18,3.5,0.54,5.6H617.38z M657.7,11.3v16h-6.12v-16H657.7z M668.32,11.3v16h-6.12v-16H668.32z"/>
<path class="st1" d="M733.39,23.3c2.61,2.6,4.77,4.4,7.56,6.4c2.34-3.7,3.78-6.4,6.84-12.4l1.35-3.7l11.16,8.3l-3.69,2.5
c-2.79,2.4-7.11,5.6-11.07,8.1c3.33,1.9,7.56,3.7,11.52,4.7l4.86,1.1l-6.57,12.4l-4.23-2.5c-2.61-1.4-4.23-2.4-7.65-4.7l-0.81-0.1
c-1.62-0.2-2.61-0.3-4.59-0.3h-1.98v15.8h15.66c2.16,0,3.33-0.1,5.94-0.5v6.1l-0.9-0.1c-2.07-0.3-2.88-0.4-5.04-0.4h-15.66v15.7
c0,3.2,0.36,3.4,7.47,3.4c5.76,0,8.37-0.5,9-1.7c0.54-0.9,1.26-5.7,1.17-8.2l-0.09-4.5l5.4,1.6l-0.36,3.6
c0.27,3.5,0.27,6.2,0.27,12c-0.63,7.5-3.33,8.8-17.91,8.8c-8.46,0-11.52-0.5-13.68-2.1c-2.16-1.7-3.06-4.3-3.06-8.9V64h-9.09
c-2.07,16.7-11.7,26.9-30.15,31.9l-2.79,1.3l-2.25-5l3.51-1.1c11.7-5.9,17.82-14.3,19.62-27.1h-14.76c-2.16,0-3.15,0.1-5.94,0.5
v-6.1c2.61,0.4,3.96,0.5,5.94,0.5h15.12V43.1h-1.98c-2.07,0-3.15,0.1-5.31,0.4l-0.54,0.1c-3.69,2.4-8.28,4.8-12.87,6.7l-2.43,1.4
l-2.25-4.3l2.97-1.3c5.4-3.2,10.62-7.6,15.39-12.8c-2.61-4.1-6.3-9.3-9-12.5l-2.16-1.9l2.97-3.5l2.16,1.8
c4.23,2.5,8.46,5.2,12.51,8c2.79-4,5.13-8.3,6.93-12.7h-11.52c-2.16,0-3.06,0.1-5.94,0.5V6.9c2.79,0.4,3.96,0.5,5.94,0.5h18
c2.34,0,4.5-0.1,6.12-0.4c2.07,4.8,4.23,8.4,7.38,12.4c2.34-3.6,4.59-7.8,5.94-11.2l1.35-3.4l10.71,8.3l-3.33,2.2
c-2.25,2-6.3,5-10.35,7.4L733.39,23.3z M736.54,38c-6.12-5.4-12.15-14.4-15.48-23.1c-3.6,8.6-9.63,16.5-17.64,23.1H736.54z
M715.48,43.1v15.8h8.82V43.1H715.48z"/>
<path class="st1" d="M841.57,93.11c-16.29-9.9-25.38-22.1-30.15-40.7c-3.51,3.5-5.58,5.2-9.9,8.4v21.1c2.88-0.3,5.13-0.6,6.21-0.7
c3.6-0.3,4.68-0.4,10.26-1.2l3.51-1.1l1.08,5.4l-3.15,0.7c-10.35,3.7-23.31,7.4-37.98,10.9l-4.23,1.3l-4.14-13.4h4.41l4.05-0.3
l1.8-0.1l1.8-0.1l4.14-0.3V68.1c-5.13,2.6-10.8,4.9-17.28,7l-3.06,1.2l-2.34-4.8l3.87-1.2c10.44-5.3,19.53-12,27.09-19.9h-22.59
c-2.16,0-3.06,0.1-5.94,0.5v-6.1c2.79,0.4,3.96,0.5,5.94,0.5h28.44v-9.8h-20.07c-2.16,0-3.15,0.1-5.94,0.5v-6.1
c2.61,0.4,3.96,0.5,5.94,0.5h20.07v-9.2h-24.48c-2.16,0-3.06,0.1-5.94,0.5v-6.1c2.79,0.4,3.96,0.5,5.94,0.5h24.48v-5.9
c0-1.3-0.09-2.5-0.18-3.7l-0.27-2l-0.09-0.9h13.86l-0.09,1l-0.27,1.5c-0.18,1.9-0.27,2.6-0.27,4.1v5.9h25.11
c2.07,0,3.42-0.1,5.94-0.5v6.1l-0.99-0.1l-1.26-0.2c-0.99-0.1-2.16-0.2-3.69-0.2H816.1v9.2h20.52c2.07,0,3.42-0.1,5.94-0.5V36
l-0.99-0.1l-1.26-0.2c-0.99-0.1-2.16-0.2-3.69-0.2H816.1v9.8h29.07c2.07,0,3.42-0.1,5.94-0.5v6.1l-0.99-0.1l-1.26-0.2
c-0.99-0.1-2.16-0.2-3.69-0.2h-28.8c2.43,6.4,5.22,11.4,8.55,15.5c4.77-4,8.46-7.8,11.88-12.3l1.98-3.1l10.44,10.6l-3.87,1.7
c-5.4,2.9-9.45,4.7-16.56,7.1c4.68,4.2,10.44,7.6,18.99,11.1l4.95,1.2l-8.01,13.5L841.57,93.11z"/>
<path class="st1" d="M881.8,83.41c0,5.2-3.96,9.6-8.64,9.6s-8.64-4.4-8.64-9.6c0-5.2,4.05-9.6,8.64-9.6
C877.84,73.8,881.8,78.3,881.8,83.41z M876.76,64.2c0.63-1.2,1.53-3.4,1.98-5.2l11.07-45.7c0.54-2.1,0.9-4.1,1.17-6.8l16.2,7.4
c-0.9,1.3-1.71,2.9-3.24,5.9l-20.25,41.1c-0.99,1.9-1.98,4.2-2.43,5.7L876.76,64.2z"/>
</g>
<g>
<g>
<defs>
<circle id="SVGID_1_" cx="32.7" cy="50.37" r="32.7"/>
</defs>
<clipPath id="SVGID_00000119810490441671915110000017702082607715108534_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000119810490441671915110000017702082607715108534_);">
<path class="st3" d="M32.7,92.25c0-27.92-13.96-41.88-41.88-41.88c27.92,0,41.88-13.96,41.88-41.88
c0,27.92,13.96,41.88,41.88,41.88C46.66,50.37,32.7,64.33,32.7,92.25z"/>
</g>
</g>
<g>
<defs>
<circle id="SVGID_00000018215018760056387680000012909279420732334249_" cx="952.96" cy="50.37" r="32.7"/>
</defs>
<clipPath id="SVGID_00000165201723917588315620000003281325532715584902_">
<use xlink:href="#SVGID_00000018215018760056387680000012909279420732334249_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000165201723917588315620000003281325532715584902_);">
<path class="st3" d="M952.96,92.25c0-27.92-13.96-41.88-41.88-41.88c27.92,0,41.88-13.96,41.88-41.88
c0,27.92,13.96,41.88,41.88,41.88C966.92,50.37,952.96,64.33,952.96,92.25z"/>
</g>
</g>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="524.6px" height="321.55px" viewBox="0 0 524.6 321.55" style="enable-background:new 0 0 524.6 321.55;"
xml:space="preserve">
<g>
<g>
<path style="fill:#424252;" d="M313.69,187.55l1.12-1.48c0.86,0.88,1.96,1.62,3.48,1.62c1.66,0,2.8-0.92,2.8-2.44
c0-1.64-1.04-2.7-4.36-2.7v-1.7c2.9,0,3.86-1.1,3.86-2.58c0-1.3-0.86-2.12-2.26-2.14c-1.14,0.02-2.1,0.58-2.94,1.4l-1.2-1.44
c1.16-1.04,2.52-1.78,4.22-1.78c2.64,0,4.5,1.36,4.5,3.8c0,1.7-0.98,2.88-2.54,3.46v0.1c1.7,0.42,3.04,1.7,3.04,3.68
c0,2.66-2.22,4.22-4.92,4.22C316.17,189.57,314.67,188.66,313.69,187.55z"/>
<path style="fill:#424252;" d="M326.25,187.41h3.22v-10.24h-2.64v-1.46c1.38-0.26,2.36-0.6,3.2-1.12h1.74v12.82h2.88v1.9h-8.4
V187.41z"/>
<path style="fill:#424252;" d="M336.5,181.02c0-2.37,1.1-3.71,2.75-3.71s2.77,1.34,2.77,3.71c0,2.37-1.12,3.75-2.77,3.75
S336.5,183.39,336.5,181.02z M340.68,181.02c0-1.83-0.59-2.62-1.42-2.62c-0.82,0-1.41,0.8-1.41,2.62c0,1.81,0.59,2.66,1.41,2.66
C340.09,183.68,340.68,182.83,340.68,181.02z M346.07,177.31h1.17l-6.47,12.21h-1.15L346.07,177.31z M344.86,185.79
c0-2.37,1.12-3.71,2.77-3.71c1.63,0,2.75,1.34,2.75,3.71s-1.12,3.73-2.75,3.73C345.98,189.52,344.86,188.16,344.86,185.79z
M349.04,185.79c0-1.82-0.59-2.62-1.41-2.62c-0.83,0-1.42,0.8-1.42,2.62c0,1.81,0.59,2.66,1.42,2.66
C348.44,188.45,349.04,187.6,349.04,185.79z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M276.75,225.41h3.22v-10.24h-2.64v-1.46c1.38-0.26,2.36-0.6,3.2-1.12h1.74v12.82h2.88v1.9h-8.4
V225.41z"/>
<path style="fill:#424252;" d="M286.97,225.61l1.1-1.5c0.84,0.84,1.9,1.58,3.44,1.58c1.66,0,2.92-1.18,2.92-3.14
c0-1.96-1.12-3.08-2.8-3.08c-0.94,0-1.5,0.28-2.36,0.84l-1.12-0.74l0.44-6.98h7.46v1.94h-5.46l-0.34,3.78
c0.62-0.32,1.22-0.52,2.02-0.52c2.46,0,4.48,1.46,4.48,4.68c0,3.26-2.38,5.1-4.96,5.1C289.47,227.57,288.01,226.64,286.97,225.61z
"/>
<path style="fill:#424252;" d="M298.41,219.02c0-2.37,1.1-3.71,2.75-3.71c1.65,0,2.77,1.34,2.77,3.71c0,2.37-1.12,3.75-2.77,3.75
C299.51,222.77,298.41,221.39,298.41,219.02z M302.58,219.02c0-1.83-0.59-2.62-1.42-2.62c-0.82,0-1.41,0.8-1.41,2.62
c0,1.81,0.59,2.66,1.41,2.66C301.99,221.68,302.58,220.83,302.58,219.02z M307.98,215.31h1.17l-6.47,12.21h-1.15L307.98,215.31z
M306.76,223.79c0-2.37,1.12-3.71,2.77-3.71c1.63,0,2.75,1.34,2.75,3.71s-1.12,3.73-2.75,3.73
C307.88,227.52,306.76,226.16,306.76,223.79z M310.94,223.79c0-1.82-0.59-2.62-1.41-2.62c-0.83,0-1.42,0.8-1.42,2.62
c0,1.81,0.59,2.66,1.42,2.66C310.35,226.45,310.94,225.6,310.94,223.79z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M274.37,263.41h3.22v-10.24h-2.64v-1.46c1.38-0.26,2.36-0.6,3.2-1.12h1.74v12.82h2.88v1.9h-8.4
V263.41z"/>
<path style="fill:#424252;" d="M294.85,261.35h-1.88v3.96h-2.16v-3.96h-6.36v-1.54l5.86-9.22h2.66v8.98h1.88V261.35z
M290.81,259.57v-3.86c0-0.8,0.08-2.04,0.12-2.84h-0.08c-0.36,0.74-0.76,1.5-1.18,2.26l-2.9,4.44H290.81z"/>
<path style="fill:#424252;" d="M296.03,257.02c0-2.37,1.1-3.71,2.75-3.71c1.65,0,2.77,1.34,2.77,3.71c0,2.37-1.12,3.75-2.77,3.75
C297.13,260.77,296.03,259.39,296.03,257.02z M300.2,257.02c0-1.83-0.59-2.63-1.42-2.63c-0.82,0-1.41,0.8-1.41,2.63
c0,1.81,0.59,2.66,1.41,2.66C299.61,259.68,300.2,258.83,300.2,257.02z M305.6,253.31h1.17l-6.47,12.21h-1.15L305.6,253.31z
M304.38,261.79c0-2.37,1.12-3.71,2.77-3.71c1.63,0,2.75,1.34,2.75,3.71s-1.12,3.73-2.75,3.73
C305.5,265.52,304.38,264.16,304.38,261.79z M308.56,261.79c0-1.82-0.59-2.62-1.41-2.62c-0.83,0-1.42,0.8-1.42,2.62
c0,1.81,0.59,2.66,1.42,2.66C307.97,264.45,308.56,263.6,308.56,261.79z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M271.99,301.41h3.22v-10.24h-2.64v-1.46c1.38-0.26,2.36-0.6,3.2-1.12h1.74v12.82h2.88v1.9h-8.4
V301.41z"/>
<path style="fill:#424252;" d="M282.23,301.55l1.12-1.48c0.86,0.88,1.96,1.62,3.48,1.62c1.66,0,2.8-0.92,2.8-2.44
c0-1.64-1.04-2.7-4.36-2.7v-1.7c2.9,0,3.86-1.1,3.86-2.58c0-1.3-0.86-2.12-2.26-2.14c-1.14,0.02-2.1,0.58-2.94,1.4l-1.2-1.44
c1.16-1.04,2.52-1.78,4.22-1.78c2.64,0,4.5,1.36,4.5,3.8c0,1.7-0.98,2.88-2.54,3.46v0.1c1.7,0.42,3.04,1.7,3.04,3.68
c0,2.66-2.22,4.22-4.92,4.22C284.71,303.57,283.21,302.66,282.23,301.55z"/>
<path style="fill:#424252;" d="M293.65,295.02c0-2.37,1.1-3.71,2.75-3.71c1.65,0,2.77,1.34,2.77,3.71c0,2.37-1.12,3.75-2.77,3.75
C294.75,298.77,293.65,297.39,293.65,295.02z M297.82,295.02c0-1.83-0.59-2.62-1.42-2.62c-0.82,0-1.41,0.8-1.41,2.62
c0,1.81,0.59,2.66,1.41,2.66C297.23,297.68,297.82,296.83,297.82,295.02z M303.22,291.31h1.17l-6.47,12.21h-1.15L303.22,291.31z
M302,299.79c0-2.37,1.12-3.71,2.77-3.71c1.63,0,2.75,1.34,2.75,3.71s-1.12,3.73-2.75,3.73C303.12,303.52,302,302.16,302,299.79z
M306.18,299.79c0-1.82-0.59-2.62-1.41-2.62c-0.83,0-1.42,0.8-1.42,2.62c0,1.81,0.59,2.66,1.42,2.66
C305.59,302.45,306.18,301.6,306.18,299.79z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M376.92,130.19h-3.32v7.44h-6.64v-7.44h-12.48v-4.92l10.36-17.4h8.76v16.92h3.32V130.19z
M366.96,124.79v-4.36c0-1.88,0.2-4.72,0.28-6.6h-0.16c-0.76,1.68-1.56,3.4-2.4,5.08l-3.4,5.88H366.96z"/>
<path style="fill:#424252;" d="M379.88,130.23c0-3.72,2.12-6.04,4.88-7.52v-0.2c-2.32-1.72-3.88-4-3.88-7.16
c0-4.96,3.92-8.04,9.44-8.04c5.36,0,8.92,3.12,8.92,7.96c0,2.84-1.72,5.2-3.76,6.6v0.2c2.84,1.48,5,3.96,5,8.04
c0,4.6-4.16,8.08-10.4,8.08C384.24,138.19,379.88,134.95,379.88,130.23z M393.88,129.83c0-2.6-2.28-3.72-5.92-5.28
c-1.2,1.16-2,2.96-2,4.84c0,2.44,1.96,3.84,4.28,3.84C392.28,133.23,393.88,132.19,393.88,129.83z M393.48,115.75
c0-2.16-1.24-3.52-3.36-3.52c-1.6,0-3,1-3,3.12c0,2.36,1.84,3.64,4.76,4.8C393,118.79,393.48,117.27,393.48,115.75z"/>
<path style="fill:#424252;" d="M402.99,125.08c0-3.58,1.9-5.64,4.51-5.64s4.54,2.06,4.54,5.64c0,3.58-1.92,5.71-4.54,5.71
S402.99,128.65,402.99,125.08z M409.07,125.08c0-2.5-0.72-3.29-1.56-3.29c-0.84,0-1.56,0.79-1.56,3.29s0.72,3.36,1.56,3.36
C408.35,128.44,409.07,127.57,409.07,125.08z M417.75,119.44h2.45l-9.65,18.53h-2.42L417.75,119.44z M416.29,132.25
c0-3.58,1.92-5.66,4.51-5.66s4.51,2.09,4.51,5.66c0,3.58-1.92,5.71-4.51,5.71S416.29,135.83,416.29,132.25z M422.34,132.25
c0-2.52-0.7-3.29-1.54-3.29c-0.84,0-1.58,0.77-1.58,3.29c0,2.5,0.74,3.34,1.58,3.34C421.64,135.59,422.34,134.75,422.34,132.25z"
/>
</g>
</g>
<g>
<rect x="230.32" y="101.98" style="fill:#00ACEE;" width="116.29" height="40"/>
<path style="fill:#FFFFFF;" d="M345.6,102.98v38H231.32v-38H345.6 M347.6,100.98h-2H231.32h-2v2v38v2h2H345.6h2v-2v-38V100.98
L347.6,100.98z"/>
</g>
<g>
<rect x="230.32" y="171.55" style="fill:#97E2EC;" width="75.81" height="22"/>
<path style="fill:#FFFFFF;" d="M305.13,172.55v20h-73.81v-20H305.13 M307.13,170.55h-2h-73.81h-2v2v20v2h2h73.81h2v-2v-20V170.55
L307.13,170.55z"/>
</g>
<g>
<rect x="230.32" y="209.55" style="fill:#80D5F6;" width="37.71" height="22"/>
<path style="fill:#FFFFFF;" d="M267.03,210.55v20h-35.71v-20H267.03 M269.03,208.55h-2h-35.71h-2v2v20v2h2h35.71h2v-2v-20V208.55
L269.03,208.55z"/>
</g>
<g>
<rect x="230.32" y="247.55" style="fill:#97E2EC;" width="35.33" height="22"/>
<path style="fill:#FFFFFF;" d="M264.65,248.55v20h-33.33v-20H264.65 M266.65,246.55h-2h-33.33h-2v2v20v2h2h33.33h2v-2v-20V246.55
L266.65,246.55z"/>
</g>
<g>
<rect x="230.32" y="285.55" style="fill:#80D5F6;" width="32.95" height="22"/>
<path style="fill:#FFFFFF;" d="M262.27,286.55v20h-30.95v-20H262.27 M264.27,284.55h-2h-30.95h-2v2v20v2h2h30.95h2v-2v-20V284.55
L264.27,284.55z"/>
</g>
<g>
<g>
<path style="fill:#424252;" d="M441.62,55.16c0-4.46,2.54-7.25,5.86-9.02V45.9c-2.78-2.06-4.66-4.8-4.66-8.59
c0-5.95,4.7-9.65,11.33-9.65c6.43,0,10.7,3.74,10.7,9.55c0,3.41-2.06,6.24-4.51,7.92v0.24c3.41,1.78,6,4.75,6,9.65
c0,5.52-4.99,9.7-12.48,9.7C446.85,64.71,441.62,60.83,441.62,55.16z M458.42,54.68c0-3.12-2.74-4.46-7.1-6.34
c-1.44,1.39-2.4,3.55-2.4,5.81c0,2.93,2.35,4.61,5.14,4.61C456.5,58.76,458.42,57.51,458.42,54.68z M457.94,37.78
c0-2.59-1.49-4.22-4.03-4.22c-1.92,0-3.6,1.2-3.6,3.74c0,2.83,2.21,4.37,5.71,5.76C457.37,41.43,457.94,39.61,457.94,37.78z"/>
<path style="fill:#424252;" d="M470.56,59.15c8.93-8.11,14.93-14.59,14.93-19.78c0-3.26-1.82-5.04-4.66-5.04
c-2.45,0-4.37,1.63-6.05,3.46l-4.66-4.61c3.5-3.7,6.77-5.52,11.86-5.52c6.91,0,11.71,4.42,11.71,11.23
c0,6.14-5.28,12.91-10.75,18.43c1.78-0.24,4.22-0.48,5.81-0.48h6.58v7.2h-24.77V59.15z"/>
<path style="fill:#424252;" d="M498.56,49.4c0-4.17,2.21-6.58,5.26-6.58s5.29,2.41,5.29,6.58c0,4.17-2.24,6.66-5.29,6.66
S498.56,53.57,498.56,49.4z M505.65,49.4c0-2.91-0.84-3.84-1.82-3.84c-0.98,0-1.82,0.92-1.82,3.84c0,2.91,0.84,3.92,1.82,3.92
C504.81,53.32,505.65,52.31,505.65,49.4z M515.78,42.82h2.86l-11.26,21.62h-2.83L515.78,42.82z M514.08,57.77
c0-4.17,2.24-6.61,5.26-6.61c3.02,0,5.26,2.44,5.26,6.61c0,4.17-2.24,6.66-5.26,6.66C516.32,64.43,514.08,61.94,514.08,57.77z
M521.13,57.77c0-2.94-0.81-3.84-1.79-3.84c-0.98,0-1.85,0.9-1.85,3.84c0,2.91,0.87,3.89,1.85,3.89
C520.32,61.66,521.13,60.68,521.13,57.77z"/>
</g>
</g>
<g>
<rect x="230.32" y="16.42" style="fill:#2FC5D9;" width="202" height="56"/>
<path style="fill:#FFFFFF;" d="M431.32,17.42v54h-200v-54H431.32 M433.32,15.42h-2h-200h-2v2v54v2h2h200h2v-2v-54V15.42
L433.32,15.42z"/>
</g>
<g>
<g>
<path style="fill:#424252;" d="M6.21,26.49c-0.94-0.84-2.9-1.94-4.44-2.62l1.49-2.14c1.51,0.58,3.55,1.58,4.54,2.4L6.21,26.49z
M2.56,35.45c1.22-1.8,2.95-4.78,4.34-7.54l2.14,1.85c-1.2,2.52-2.64,5.26-4.03,7.56L2.56,35.45z M7.55,20.11
c-0.89-0.86-2.86-2.02-4.39-2.69l1.56-2.11c1.54,0.58,3.53,1.63,4.51,2.47L7.55,20.11z M15.52,24.67
c-0.17,0.82-0.36,1.63-0.53,2.4h7.85c0,0-0.02,0.77-0.07,1.15c-0.41,5.21-0.89,7.46-1.73,8.35c-0.65,0.7-1.39,0.91-2.4,1.01
c-0.84,0.07-2.33,0.07-3.86,0c-0.07-0.84-0.46-1.94-0.96-2.74c1.49,0.14,3.02,0.17,3.7,0.17c0.48,0,0.77-0.05,1.1-0.29
c0.48-0.41,0.84-1.94,1.1-5.11h-5.33l-0.31,1.18l-2.93-0.36c0.46-1.58,0.94-3.62,1.42-5.76h-3.7v-2.64h4.27
c0.19-0.96,0.36-1.92,0.53-2.83H9.9v-2.66h13.32v2.66h-6.58c-0.17,0.91-0.36,1.87-0.55,2.83h8.06v2.64H15.52z"/>
<path style="fill:#424252;" d="M48.5,34.17c-1.08,1.03-2.54,1.8-4.46,1.8c-1.78,0-2.98-1.32-2.98-3.6c0-2.59,0.84-6.07,0.84-8.23
c0-1.18-0.6-1.75-1.58-1.75c-1.78,0-4.37,2.18-6.29,4.32c-0.02,0.67-0.05,1.32-0.05,1.92c0,1.94,0,3.94,0.14,6.17
c0.02,0.43,0.12,1.3,0.17,1.82h-3.26c0.05-0.5,0.07-1.37,0.07-1.75c0.05-1.85,0.05-3.22,0.1-5.23c-1.03,1.51-2.18,3.26-3,4.39
l-1.87-2.64c1.34-1.63,3.74-4.8,5.09-6.79l0.1-1.66c-1.15,0.14-2.98,0.38-4.32,0.55l-0.29-3.05c0.67,0.02,1.22,0.02,2.06-0.02
c0.7-0.05,1.73-0.17,2.74-0.31c0.05-0.89,0.1-1.56,0.1-1.82c0-0.67,0.02-1.39-0.1-2.11l3.48,0.1c-0.14,0.67-0.34,1.9-0.53,3.38
l0.89,1.13c-0.31,0.41-0.82,1.18-1.22,1.8c0,0.17-0.02,0.34-0.05,0.5c1.87-1.63,4.61-3.53,6.91-3.53c2.54,0,3.74,1.51,3.74,3.5
c0,2.47-0.79,5.95-0.79,8.42c0,0.62,0.31,1.03,0.91,1.03c0.86,0,1.99-0.6,3.05-1.68L48.5,34.17z"/>
<path style="fill:#424252;" d="M59.99,16.82c-0.14,0.62-0.29,1.37-0.41,1.97c-0.14,0.72-0.34,1.58-0.5,2.45
c0.79-0.05,1.51-0.1,1.99-0.1c2.52,0,4.3,1.13,4.3,4.54c0,2.81-0.34,6.6-1.34,8.67c-0.79,1.66-2.09,2.18-3.91,2.18
c-0.89,0-2.04-0.14-2.83-0.34l-0.53-3.14c0.91,0.26,2.3,0.5,2.93,0.5c0.79,0,1.39-0.24,1.78-1.03c0.65-1.32,0.96-4.15,0.96-6.5
c0-1.9-0.82-2.16-2.3-2.16c-0.38,0-0.96,0.05-1.63,0.1c-0.94,3.6-2.66,9.19-4.85,12.7l-3.1-1.25c2.3-3.12,3.94-7.87,4.78-11.11
c-0.84,0.1-1.58,0.19-2.04,0.26c-0.67,0.07-1.9,0.24-2.64,0.36l-0.26-3.22c0.86,0.07,1.66,0.02,2.52,0
c0.74-0.02,1.87-0.1,3.07-0.19c0.34-1.82,0.53-3.55,0.5-5.04L59.99,16.82z M68.51,19.65c1.39,2.18,3.17,6.19,3.86,8.28l-3.02,1.42
c-0.62-2.64-2.3-6.84-4.01-8.95l2.21-0.94c-0.48-0.91-1.08-2.06-1.63-2.83l1.9-0.79c0.6,0.89,1.44,2.4,1.92,3.29L68.51,19.65z
M70.7,18.86c-0.5-1.01-1.27-2.42-1.94-3.31l1.9-0.79c0.65,0.91,1.54,2.42,1.94,3.26L70.7,18.86z"/>
<path style="fill:#424252;" d="M80.42,16.58c-0.17,1.01-0.29,2.21-0.31,3.17c-0.12,2.54-0.29,7.87-0.29,10.82
c0,2.4,1.44,3.17,3.26,3.17c3.94,0,6.43-2.26,8.14-4.85l2.16,2.66c-1.54,2.26-4.9,5.42-10.32,5.42c-3.89,0-6.41-1.7-6.41-5.76
c0-3.19,0.24-9.43,0.24-11.47c0-1.13-0.1-2.28-0.31-3.22L80.42,16.58z"/>
<path style="fill:#424252;" d="M97.58,24.72c1.61-0.48,5.64-1.85,8.52-1.85c3.74,0,6.26,2.23,6.26,5.83
c0,4.3-3.77,7.25-11.33,7.71l-1.25-2.95c5.4-0.14,9.43-1.56,9.43-4.8c0-1.78-1.34-3.02-3.41-3.02c-2.76,0-7.49,1.97-9.53,2.83
l-1.22-3.12C95.75,25.22,96.86,24.96,97.58,24.72z"/>
<path style="fill:#424252;" d="M124.72,16.65c-0.14,0.62-0.31,1.37-0.43,1.97c-0.12,0.72-0.31,1.58-0.48,2.45
c0.79-0.05,1.51-0.1,1.99-0.1c2.52,0,4.3,1.13,4.3,4.54c0,2.81-0.34,6.6-1.34,8.67c-0.79,1.66-2.11,2.18-3.91,2.18
c-0.91,0-2.04-0.14-2.83-0.34l-0.53-3.14c0.91,0.26,2.28,0.5,2.9,0.5c0.79,0,1.42-0.24,1.78-1.03c0.67-1.32,0.98-4.15,0.98-6.5
c0-1.9-0.82-2.16-2.33-2.16c-0.38,0-0.96,0.05-1.63,0.1c-0.91,3.6-2.64,9.19-4.82,12.7l-3.12-1.25c2.33-3.12,3.94-7.87,4.8-11.11
c-0.84,0.1-1.58,0.19-2.04,0.26c-0.67,0.07-1.9,0.24-2.64,0.36l-0.26-3.22c0.86,0.07,1.66,0.02,2.52,0
c0.74-0.02,1.87-0.1,3.07-0.19c0.34-1.82,0.53-3.55,0.5-5.04L124.72,16.65z M132.93,18.88c1.44,2.04,3.43,6.58,4.15,8.83l-3,1.42
c-0.62-2.64-2.33-6.94-4.03-9.05L132.93,18.88z"/>
<path style="fill:#424252;" d="M143.83,16.34c-0.34,1.18-0.82,3.6-0.96,4.92c1.13-1.82,3.19-3.84,5.88-3.84
c3.31,0,5.88,3.24,5.88,8.47c0,6.72-4.13,9.94-10.42,11.09l-1.8-2.76c5.28-0.82,8.98-2.54,8.98-8.3c0-3.67-1.22-5.71-3.19-5.71
c-2.81,0-5.26,4.22-5.38,7.34c-0.02,0.65-0.02,1.42,0.12,2.52l-2.95,0.19c-0.12-0.91-0.29-2.38-0.29-3.96
c0-2.21,0.31-5.16,0.67-7.61c0.12-0.86,0.17-1.82,0.19-2.5L143.83,16.34z"/>
<path style="fill:#424252;" d="M161.13,29.47c-0.89-0.72-2.71-1.87-4.06-2.64l1.68-1.92c1.27,0.65,3.14,1.7,4.1,2.42L161.13,29.47
z M157.51,35.4c1.32-1.27,3.22-3.41,4.8-5.42l1.7,2.06c-1.37,1.85-2.95,3.82-4.46,5.57L157.51,35.4z M162.69,19.05h-5.02v-2.5
h5.02v-1.32h2.78v1.32h5.52v-1.32h2.78v1.32h5.16v2.5h-5.16v1.58h-2.78v-1.58h-5.52v1.58h-2.78V19.05z M160.22,20.2
c1.27,0.65,3.17,1.68,4.13,2.33l-1.7,2.14c-0.91-0.65-2.78-1.8-4.06-2.52L160.22,20.2z M178.15,22.68
c-0.98,1.51-2.33,2.81-3.89,3.96c1.8,0.67,3.77,1.25,5.64,1.63c-0.6,0.55-1.34,1.61-1.73,2.28c-0.34-0.07-0.7-0.17-1.03-0.26v7.32
h-2.81v-0.96h-6.38v0.96h-2.69v-6.91c-0.31,0.07-0.65,0.17-0.96,0.24c-0.26-0.65-0.89-1.73-1.39-2.26
c2.09-0.41,4.22-1.08,6.17-1.92c-0.7-0.46-1.39-0.96-2.04-1.46c-0.65,0.65-1.37,1.3-2.16,1.87c-0.46-0.53-1.37-1.34-1.97-1.7
c2.38-1.58,4.22-3.7,5.3-5.4l2.74,0.55c-0.24,0.36-0.5,0.72-0.77,1.08h5.69l0.46-0.12L178.15,22.68z M176.61,30.12
c-1.66-0.5-3.34-1.13-4.9-1.92c-1.46,0.77-3,1.39-4.58,1.92H176.61z M174.33,34.46v-2.18h-6.38v2.18H174.33z M168.95,23.76
c0.72,0.6,1.63,1.15,2.66,1.68c0.86-0.53,1.66-1.08,2.3-1.68H168.95z"/>
<path style="fill:#424252;" d="M197.95,21.38c-2.47,0.38-6.24,0.84-9.43,1.01c-0.31,1.44-0.7,2.95-1.08,4.1
c1.92-1.06,3.72-1.49,5.9-1.49c3.84,0,6.38,2.06,6.38,5.09c0,5.35-5.14,7.27-12.82,6.46l-0.84-3.07
c5.21,0.84,10.47,0.22,10.47-3.29c0-1.42-1.25-2.62-3.55-2.62c-2.74,0-5.16,0.98-6.58,2.81c-0.26,0.31-0.43,0.62-0.67,1.03
l-2.81-1.01c1.13-2.18,2.09-5.35,2.71-7.97c-1.51-0.02-2.9-0.12-4.1-0.24v-2.95c1.42,0.24,3.22,0.43,4.66,0.46
c0.05-0.36,0.12-0.67,0.14-0.96c0.12-1.03,0.14-1.61,0.12-2.4l3.36,0.14c-0.26,0.84-0.38,1.63-0.55,2.42l-0.14,0.72
c2.71-0.14,5.93-0.5,8.78-1.13L197.95,21.38z"/>
<path style="fill:#424252;" d="M207.23,37.2c-1.46-1.8-3.48-3.86-5.16-5.3l2.5-2.16c1.7,1.39,4.01,3.77,5.23,5.26L207.23,37.2z"/>
<path style="fill:#424252;" d="M79.96,60.44c-0.91-0.82-2.81-1.87-4.32-2.52l1.51-2.14c1.49,0.53,3.48,1.46,4.44,2.28L79.96,60.44
z M76.31,69.52c1.2-1.82,2.93-4.85,4.3-7.66l2.16,1.78c-1.2,2.54-2.62,5.3-3.96,7.66L76.31,69.52z M81.11,54.04
c-0.86-0.84-2.74-1.94-4.25-2.59l1.56-2.14c1.46,0.58,3.38,1.58,4.34,2.38L81.11,54.04z M98.13,56.32v2.04h-15.7v-2.04h6.26v-0.98
h-4.87v-1.92h4.87V52.5h-5.52v-2.04h5.52v-1.25h2.83v1.25h5.83v2.04h-5.83v0.91h5.18v1.92h-5.18v0.98H98.13z M96.38,68.77
c0,1.27-0.24,1.94-1.13,2.33c-0.84,0.41-2.04,0.43-3.7,0.43c-0.1-0.72-0.46-1.78-0.77-2.42c0.98,0.02,2.11,0.02,2.42,0
c0.31,0,0.43-0.07,0.43-0.36v-1.49h-6.53v4.32h-2.64V59.24h11.91V68.77z M87.11,61.33v1.06h6.53v-1.06H87.11z M93.64,65.36v-1.15
h-6.53v1.15H93.64z"/>
<path style="fill:#424252;" d="M103.38,60.18c-0.79-0.74-2.42-1.71-3.74-2.3l1.56-2.09c1.32,0.5,3.02,1.34,3.84,2.09L103.38,60.18
z M105.45,63.68c-0.79,2.57-1.85,5.33-2.83,7.68l-2.57-1.46c0.89-1.85,2.16-4.9,3.1-7.71L105.45,63.68z M104.27,53.94
c-0.77-0.77-2.4-1.82-3.72-2.42l1.61-2.11c1.3,0.55,2.98,1.51,3.79,2.23L104.27,53.94z M111.52,67.98
c-1.15,1.3-2.93,2.67-4.39,3.5c-0.5-0.48-1.56-1.3-2.16-1.68c1.49-0.7,3.05-1.73,3.96-2.74L111.52,67.98z M120.43,67.31
c-0.22-0.31-0.5-0.67-0.82-1.03c-1.54,0.05-3.07,0.12-4.58,0.17v5.16h-2.78v-5.06c-2.38,0.07-4.58,0.14-6.38,0.19l-0.17-2.33
c1.25-0.02,2.71-0.05,4.34-0.07l0.62-0.41c-1.13-0.79-2.54-1.63-3.77-2.18l1.61-1.7c0.41,0.17,0.86,0.36,1.3,0.6
c0.62-0.65,1.27-1.37,1.75-1.99l-5.66,0.74l-0.36-2.26c0.86-0.07,1.9-0.19,3.02-0.29v-1.3h-2.18V53.7h2.18v-1.08h-2.5v-1.94h2.5
v-1.46h2.52v1.46h2.35v1.94h-2.35v1.08h2.11v1.85h-2.11v1.03l2.38-0.26l0.05,1.37c1.2-1.22,1.68-2.95,1.82-5.11h-1.42v-2.23h7.75
c0,0-0.02,0.62-0.05,0.94c-0.1,4.82-0.24,6.72-0.77,7.39c-0.38,0.5-0.82,0.7-1.42,0.77c-0.48,0.12-1.32,0.12-2.18,0.1
c-0.05-0.67-0.26-1.56-0.58-2.16c-0.43,0.96-1.03,1.78-1.82,2.45c-0.34-0.38-1.18-1.01-1.78-1.37l-0.91,0.12l1.97,1.01
c-0.82,0.74-1.63,1.49-2.4,2.11c0.38,0.22,0.74,0.46,1.08,0.7c1.25-0.96,2.45-1.97,3.34-2.86l2.42,1.15
c-1.44,1.22-3.12,2.47-4.75,3.58l3.67-0.1c-0.34-0.31-0.67-0.6-1.01-0.86l1.85-1.18c1.44,1.1,3.24,2.71,4.06,3.86L120.43,67.31z
M117.69,66.78c1.49,0.86,3.41,2.14,4.39,3.07l-2.09,1.46c-0.89-0.89-2.76-2.28-4.25-3.17L117.69,66.78z M117.76,52.57
c-0.14,1.85-0.46,3.43-1.08,4.73c0.62,0.05,1.18,0.07,1.49,0.07c0.26,0,0.43-0.05,0.62-0.26c0.22-0.34,0.34-1.49,0.41-4.54H117.76
z"/>
<path style="fill:#424252;" d="M129.9,51.23c-0.19,0.48-0.48,1.68-0.58,2.11c-0.34,1.58-1.15,6.34-1.15,8.71
c0,0.46,0.02,1.03,0.1,1.54c0.34-0.84,0.72-1.63,1.06-2.4l1.49,1.15c-0.67,1.99-1.46,4.56-1.7,5.83c-0.07,0.34-0.14,0.86-0.14,1.1
c0.02,0.26,0.02,0.65,0.05,0.98l-2.74,0.19c-0.48-1.66-0.94-4.56-0.94-7.78c0-3.58,0.72-7.58,0.98-9.41
c0.1-0.67,0.24-1.58,0.24-2.33L129.9,51.23z M135.47,62.96c-0.19,0.77-0.29,1.34-0.29,1.99c0,1.06,0.91,1.68,3.31,1.68
c2.14,0,3.89-0.19,5.95-0.62l0.07,3.22c-1.54,0.29-3.46,0.48-6.14,0.48c-4.1,0-6.05-1.49-6.05-3.91c0-0.98,0.17-1.99,0.41-3.1
L135.47,62.96z M143.78,52.79v3.07c-2.93,0.26-7.22,0.26-10.2,0l-0.02-3.07C136.48,53.2,141.21,53.1,143.78,52.79z"/>
<path style="fill:#424252;" d="M154.89,50.12c-0.62,1.56-1.37,3.19-2.23,4.73v16.73h-2.71V59.03c-0.6,0.77-1.2,1.49-1.82,2.14
c-0.26-0.7-1.06-2.23-1.54-2.93c2.23-2.16,4.42-5.57,5.66-8.98L154.89,50.12z M164.35,63.25c1.42,2.09,3.48,4.06,5.5,5.23
c-0.65,0.55-1.56,1.56-2.02,2.28c-1.75-1.25-3.5-3.19-4.87-5.33v6.19h-2.88v-6.07c-1.46,2.11-3.29,3.94-5.18,5.16
c-0.43-0.7-1.32-1.73-1.97-2.28c2.16-1.13,4.3-3.07,5.78-5.18h-4.92v-2.59h6.29V58.5h-4.7v-8.23h12.6v8.23h-5.02v2.16h6.19v2.59
H164.35z M158.08,55.98h7.03v-3.22h-7.03V55.98z"/>
<path style="fill:#424252;" d="M173.18,52.96c1.97-0.19,5.9-0.53,10.25-0.91c2.45-0.19,5.06-0.34,6.72-0.41l0.02,3.07
c-1.27,0-3.31,0.02-4.58,0.31c-2.86,0.77-5.02,3.84-5.02,6.65c0,3.91,3.67,5.3,7.68,5.52l-1.1,3.29c-4.99-0.34-9.7-3.02-9.7-8.16
c0-3.43,1.92-6.12,3.5-7.32c-2.04,0.22-7.06,0.74-9.82,1.34l-0.29-3.26C171.79,53.05,172.7,53,173.18,52.96z"/>
<path style="fill:#424252;" d="M208.92,53.07c-0.58,0.36-1.13,0.72-1.66,1.08c-1.27,0.89-3.77,3-5.26,4.2
c0.79-0.22,1.46-0.26,2.23-0.26c4.03,0,7.1,2.52,7.1,5.98c0,3.74-2.86,6.72-8.59,6.72c-3.31,0-5.81-1.51-5.81-3.89
c0-1.92,1.75-3.7,4.27-3.7c2.93,0,4.7,1.8,5.06,4.06c1.3-0.7,1.94-1.8,1.94-3.24c0-2.14-2.16-3.58-4.92-3.58
c-3.65,0-6.02,1.94-8.57,4.82l-2.16-2.23c1.68-1.37,4.54-3.79,5.95-4.94c1.32-1.1,3.79-3.1,4.97-4.13
c-1.22,0.02-4.49,0.17-5.74,0.26c-0.65,0.02-1.39,0.1-1.94,0.19l-0.1-3.1c0.67,0.07,1.49,0.12,2.16,0.12
c1.25,0,6.34-0.12,7.68-0.24c0.98-0.07,1.54-0.17,1.82-0.24L208.92,53.07z M203.54,68.03c-0.14-1.54-1.03-2.54-2.33-2.54
c-0.89,0-1.46,0.53-1.46,1.13c0,0.89,1.01,1.49,2.4,1.49C202.65,68.1,203.11,68.08,203.54,68.03z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M88.47,183.06c1.15-0.34,2.34-0.5,3.3-0.5c2.35,0,4.13,1.26,4.13,3.3c0,1.89-1.09,3.2-3.43,3.76
c-0.72,0.16-1.42,0.21-2,0.22l-0.58-1.6c0.64,0,1.31,0,1.9-0.11c1.33-0.24,2.5-0.94,2.5-2.29c0-1.22-1.1-1.89-2.54-1.89
c-1.12,0-2.19,0.19-3.25,0.53c0.02,1.31,0.06,2.64,0.06,3.27c0,1.68-0.62,2.16-1.55,2.16c-1.38,0-3.49-1.25-3.49-2.79
c0-1.34,1.62-2.74,3.49-3.55c0-0.34,0-0.67,0-0.99c0-0.56,0-1.15,0.02-1.74c-0.38,0.03-0.74,0.05-1.04,0.05
c-0.7,0-1.46-0.02-2.08-0.08l-0.05-1.54c0.9,0.11,1.52,0.13,2.1,0.13c0.34,0,0.71-0.02,1.09-0.03c0-0.72,0.02-1.3,0.02-1.58
c0-0.34-0.05-0.96-0.1-1.25h1.73c-0.03,0.3-0.08,0.83-0.1,1.22c-0.02,0.38-0.03,0.9-0.06,1.46c1.12-0.13,2.26-0.35,3.12-0.61
l0.03,1.57c-0.91,0.21-2.08,0.4-3.18,0.53c-0.02,0.64-0.03,1.26-0.03,1.83V183.06z M87.09,187.49c0-0.5-0.03-1.41-0.05-2.43
c-1.15,0.56-1.95,1.36-1.95,2c0,0.62,0.93,1.17,1.47,1.17C86.9,188.23,87.09,188.02,87.09,187.49z M93.46,178.27
c1.17,0.59,2.94,1.65,3.75,2.27l-0.78,1.28c-0.77-0.7-2.67-1.81-3.67-2.34L93.46,178.27z"/>
<path style="fill:#424252;" d="M102.07,176.85c-0.1,0.58-0.14,1.25-0.18,1.81c-0.06,1.76-0.19,5.41-0.19,7.62
c0,1.66,1.06,2.24,2.42,2.24c2.79,0,4.43-1.57,5.57-3.26l1.14,1.39c-1.06,1.5-3.19,3.55-6.74,3.55c-2.42,0-4.03-1.04-4.03-3.67
c0-2.26,0.16-6.34,0.16-7.88c0-0.66-0.05-1.3-0.16-1.83L102.07,176.85z"/>
<path style="fill:#424252;" d="M115.78,176.69c-0.29,0.99-0.59,2.91-0.69,3.92c0.69-1.46,2.22-3.15,4.13-3.15
c2.16,0,3.76,2.13,3.76,5.54c0,4.42-2.77,6.45-6.8,7.19l-0.96-1.44c3.47-0.54,6.07-1.83,6.07-5.75c0-2.47-0.82-4.08-2.34-4.08
c-1.92,0-3.68,2.85-3.81,4.93c-0.06,0.53-0.05,1.07,0.05,1.83l-1.55,0.11c-0.08-0.59-0.19-1.52-0.19-2.56
c0-1.49,0.27-3.67,0.48-5.11c0.06-0.53,0.11-1.07,0.13-1.49L115.78,176.69z"/>
<path style="fill:#424252;" d="M126.59,183.63c0.78-0.82,2.08-2.54,3.03-3.67c0.99-1.17,1.94-1.3,3.03-0.21
c0.99,0.99,2.26,2.61,3.23,3.67c0.98,1.07,2.45,2.64,3.91,3.94l-1.26,1.47c-1.18-1.1-2.59-2.67-3.65-3.89
c-1.01-1.17-2.21-2.69-2.95-3.5c-0.64-0.67-0.93-0.59-1.42,0.05c-0.69,0.88-1.92,2.54-2.66,3.49c-0.35,0.45-0.71,0.98-0.98,1.34
l-1.5-1.55C125.79,184.43,126.15,184.1,126.59,183.63z"/>
<path style="fill:#424252;" d="M148.12,188.39c0.56-0.05,1.02-0.13,1.41-0.22c2.03-0.46,3.84-1.94,3.84-4.5
c0-2.3-1.38-4.11-3.81-4.42c-0.22,1.42-0.51,2.96-0.95,4.45c-0.96,3.23-2.27,5.04-3.86,5.04c-1.57,0-3.01-1.78-3.01-4.42
c0-3.52,3.12-6.58,7.09-6.58c3.81,0,6.23,2.66,6.23,5.99c0,3.31-2.13,5.62-6,6.16L148.12,188.39z M147,183.36
c0.4-1.25,0.7-2.69,0.86-4.08c-2.85,0.46-4.51,2.95-4.51,4.9c0,1.83,0.82,2.66,1.46,2.66C145.49,186.83,146.26,185.81,147,183.36z
"/>
<path style="fill:#424252;" d="M159.6,177.71c0.13,0.27,0.43,0.85,0.59,1.14c0.27,0.5,0.56,1.07,0.85,1.68
c1.91-0.85,3.95-1.66,5.59-1.66c2.3,0,3.71,1.38,3.71,3.15c0,1.98-1.33,3.38-3.78,3.38c-0.88,0-1.82-0.22-2.4-0.45l0.05-1.57
c0.64,0.29,1.44,0.53,2.21,0.53c1.5,0,2.27-0.83,2.27-1.95c0-0.9-0.7-1.65-2.11-1.65c-1.31,0-3.17,0.7-4.93,1.52
c0.18,0.38,0.35,0.78,0.53,1.17c0.82,1.86,1.91,4.99,2.45,6.77l-1.75,0.43c-0.5-1.92-1.26-4.53-2.14-6.53l-0.51-1.17
c-1.18,0.59-2.24,1.14-2.94,1.46l-0.75-1.62c0.53-0.13,1.15-0.35,1.42-0.46c0.51-0.21,1.07-0.45,1.67-0.72
c-0.29-0.59-0.56-1.12-0.82-1.57c-0.21-0.35-0.54-0.88-0.83-1.23L159.6,177.71z M164.08,178.99c-0.59-0.58-1.41-1.38-2.07-1.86
l1.15-0.82c0.54,0.42,1.5,1.2,2.08,1.79L164.08,178.99z"/>
<path style="fill:#424252;" d="M184.21,179.82c-0.9,0.24-1.89,0.46-2.87,0.64c0.58,1.28,1.39,2.96,2.1,4.27l-0.91,0.94
c-0.75-0.16-2.32-0.38-3.43-0.51l0.16-1.3c0.58,0.06,1.57,0.16,2.08,0.21c-0.42-0.9-1.09-2.29-1.57-3.36
c-2.02,0.22-4.26,0.22-6.72,0.02l-0.06-1.6c2.3,0.29,4.37,0.29,6.13,0.11l-0.45-0.98c-0.27-0.62-0.42-0.93-0.72-1.42l1.79-0.34
c0.32,0.94,0.62,1.7,0.98,2.51c1.1-0.19,2.13-0.43,3.19-0.78L184.21,179.82z M175.39,184.42c-0.24,0.56-0.45,1.49-0.45,1.95
c0,1.3,0.79,2.1,3.11,2.1c2.15,0,3.09-0.21,4.23-0.43l-0.03,1.65c-0.95,0.18-2.11,0.38-4.21,0.38c-3.04,0-4.72-1.2-4.72-3.28
c0-0.69,0.19-1.62,0.45-2.5L175.39,184.42z"/>
<path style="fill:#424252;" d="M189.84,176.85c-0.1,0.58-0.14,1.25-0.18,1.81c-0.06,1.76-0.19,5.41-0.19,7.62
c0,1.66,1.06,2.24,2.42,2.24c2.79,0,4.43-1.57,5.57-3.26l1.14,1.39c-1.06,1.5-3.19,3.55-6.74,3.55c-2.42,0-4.03-1.04-4.03-3.67
c0-2.26,0.16-6.34,0.16-7.88c0-0.66-0.05-1.3-0.16-1.83L189.84,176.85z"/>
<path style="fill:#424252;" d="M211.99,179.82c-0.9,0.24-1.89,0.46-2.87,0.64c0.58,1.28,1.39,2.96,2.1,4.27l-0.91,0.94
c-0.75-0.16-2.32-0.38-3.43-0.51l0.16-1.3c0.58,0.06,1.57,0.16,2.08,0.21c-0.42-0.9-1.09-2.29-1.57-3.36
c-2.02,0.22-4.26,0.22-6.72,0.02l-0.06-1.6c2.3,0.29,4.37,0.29,6.13,0.11l-0.45-0.98c-0.27-0.62-0.42-0.93-0.72-1.42l1.79-0.34
c0.32,0.94,0.62,1.7,0.98,2.51c1.1-0.19,2.13-0.43,3.19-0.78L211.99,179.82z M203.17,184.42c-0.24,0.56-0.45,1.49-0.45,1.95
c0,1.3,0.79,2.1,3.11,2.1c2.15,0,3.09-0.21,4.23-0.43l-0.03,1.65c-0.95,0.18-2.11,0.38-4.21,0.38c-3.04,0-4.72-1.2-4.72-3.28
c0-0.69,0.19-1.62,0.45-2.5L203.17,184.42z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M17.02,221.87c0.74-0.75,2.07-2.43,3.12-3.68c0.9-1.06,1.65-1.17,2.87-0.14
c1.02,0.83,2.29,2.19,3.3,3.28c1.07,1.15,2.74,2.93,3.89,4.29l-1.33,1.44c-1.07-1.38-2.53-3.07-3.52-4.23
c-1.06-1.2-2.4-2.66-3.06-3.22c-0.61-0.51-0.86-0.51-1.36,0.11c-0.72,0.88-1.99,2.56-2.67,3.44c-0.34,0.46-0.7,0.98-0.96,1.34
l-1.49-1.5C16.24,222.64,16.56,222.32,17.02,221.87z M27.57,215.66c1.12,0,2.02,0.9,2.02,2.02c0,1.1-0.9,1.98-2.02,1.98
c-1.1,0-2-0.88-2-1.98C25.57,216.56,26.47,215.66,27.57,215.66z M27.57,218.78c0.61,0,1.1-0.5,1.1-1.1s-0.5-1.1-1.1-1.1
s-1.1,0.5-1.1,1.1S26.97,218.78,27.57,218.78z"/>
<path style="fill:#424252;" d="M32.66,220.22c0.51,0.05,1.5,0.1,2.37,0.1h8.69c0.79,0,1.41-0.06,1.79-0.1v1.97
c-0.35-0.02-1.07-0.06-1.78-0.06h-8.71c-0.9,0-1.84,0.03-2.37,0.06V220.22z"/>
<path style="fill:#424252;" d="M51.31,216.48l1.83,0.37c-0.11,0.4-0.26,1.01-0.34,1.36c-0.21,1.06-0.78,3.34-1.41,4.93
c-0.58,1.49-1.49,3.22-2.35,4.47l-1.75-0.74c1.01-1.33,1.92-3.03,2.48-4.39C50.48,220.77,51.12,218.4,51.31,216.48z M55.35,216.83
l1.65-0.54c0.64,1.2,1.71,3.52,2.35,5.14c0.61,1.54,1.46,4.03,1.89,5.54l-1.82,0.59c-0.43-1.75-1.1-3.86-1.75-5.57
C57.03,220.32,56.04,218.03,55.35,216.83z M60.12,214.21c1.02,0,1.86,0.83,1.86,1.84c0,1.02-0.83,1.84-1.86,1.84
s-1.84-0.82-1.84-1.84C58.28,215.04,59.09,214.21,60.12,214.21z M60.12,217.04c0.54,0,1.01-0.45,1.01-0.99s-0.46-1.01-1.01-1.01
s-0.99,0.46-0.99,1.01S59.57,217.04,60.12,217.04z"/>
<path style="fill:#424252;" d="M63.49,220.22c0.51,0.05,1.5,0.1,2.37,0.1h8.69c0.78,0,1.41-0.06,1.79-0.1v1.97
c-0.35-0.02-1.07-0.06-1.78-0.06h-8.71c-0.9,0-1.84,0.03-2.37,0.06V220.22z"/>
<path style="fill:#424252;" d="M79.97,216.57c1.15-0.11,3.99-0.38,6.9-0.62c1.68-0.14,3.28-0.24,4.35-0.27l0.02,1.62
c-0.88,0-2.26,0.02-3.09,0.22c-2.1,0.64-3.49,2.88-3.49,4.75c0,2.9,2.69,3.84,5.3,3.97l-0.58,1.7c-3.11-0.16-6.35-1.82-6.35-5.31
c0-2.4,1.39-4.32,2.67-5.14c-1.38,0.14-5.27,0.53-7.04,0.91l-0.16-1.74C79.1,216.64,79.65,216.61,79.97,216.57z M90.31,221.25
l-0.99,0.45c-0.38-0.82-0.8-1.55-1.28-2.24l0.96-0.42C89.38,219.6,89.97,220.58,90.31,221.25z M92.13,220.51l-0.98,0.48
c-0.42-0.82-0.83-1.52-1.34-2.21l0.96-0.43C91.16,218.9,91.78,219.86,92.13,220.51z"/>
<path style="fill:#424252;" d="M98.37,222.24c-0.56,0.16-1.12,0.32-1.68,0.48v4.15c0,0.77-0.16,1.15-0.62,1.36
c-0.46,0.24-1.18,0.27-2.27,0.27c-0.05-0.37-0.26-0.98-0.45-1.34c0.7,0.02,1.39,0.02,1.58,0.02c0.22-0.02,0.3-0.08,0.3-0.32v-3.7
c-0.59,0.16-1.17,0.3-1.68,0.45l-0.4-1.42c0.59-0.14,1.31-0.32,2.08-0.51v-3.22h-1.89v-1.38h1.89v-3.14h1.46v3.14h1.55v1.38h-1.55
v2.83l1.5-0.4L98.37,222.24z M103.69,225.27l0.1,1.34c-1.84,0.37-3.81,0.74-5.27,1.02l-0.35-1.42c0.61-0.1,1.36-0.22,2.18-0.35
v-3.83h-1.57v-1.38h4.42v1.38h-1.47v3.58L103.69,225.27z M104.98,218.54c0.19,4.64,0.71,8.05,1.39,8.08
c0.24,0.02,0.42-0.85,0.5-2.34c0.26,0.32,0.93,0.72,1.18,0.85c-0.37,2.85-1.09,3.47-1.7,3.47c-1.9-0.03-2.59-3.99-2.85-10.07
h-4.88v-1.42h4.82c-0.03-0.99-0.05-2.02-0.06-3.09h1.5c0,1.07,0.02,2.1,0.05,3.09h2.72v1.42H104.98z M106.81,217.01
c-0.29-0.62-0.98-1.58-1.58-2.27l1.01-0.62c0.62,0.67,1.34,1.58,1.67,2.18L106.81,217.01z"/>
<path style="fill:#424252;" d="M117.81,215.71c-0.4,0.3-0.9,0.74-1.22,0.98c-1.06,0.9-3.25,2.63-4.37,3.57
c-0.91,0.78-0.91,0.99,0.03,1.79c1.33,1.1,4.32,3.52,5.87,5.06l-1.44,1.33c-0.38-0.45-0.83-0.88-1.22-1.3
c-0.86-0.93-3.43-3.09-4.88-4.32c-1.54-1.28-1.38-2.06,0.11-3.31c1.22-1.02,3.52-2.85,4.59-3.92c0.37-0.38,0.83-0.85,1.04-1.18
L117.81,215.71z"/>
<path style="fill:#424252;" d="M134.79,223.57h-6.42v3.14c0,0.98-0.27,1.39-0.94,1.62c-0.66,0.24-1.75,0.27-3.39,0.26
c-0.1-0.4-0.38-1.07-0.62-1.47c1.28,0.05,2.56,0.05,2.93,0.03c0.35,0,0.48-0.11,0.48-0.45v-3.12h-6.43v-1.46h6.43v-2.27h-5.35
v-1.42h5.35v-2.18c-1.71,0.14-3.46,0.26-5.07,0.32c-0.02-0.37-0.21-0.98-0.35-1.3c3.78-0.18,8.29-0.59,10.79-1.31l1.1,1.22
c-1.39,0.4-3.09,0.67-4.91,0.9v2.35h5.51v1.42h-5.51v2.27h6.42V223.57z"/>
<path style="fill:#424252;" d="M138.48,220.14v8.48h-1.47v-14.05h5.91v5.57H138.48z M138.48,215.69v1.1h3.03v-1.1H138.48z
M141.51,219.04v-1.18h-3.03v1.18H141.51z M150.23,226.77c0,0.85-0.18,1.33-0.75,1.58c-0.56,0.24-1.44,0.26-2.79,0.26
c-0.06-0.4-0.27-1.04-0.46-1.46h-4.32v0.8h-1.36v-6.71h6v5.86c0.78,0.03,1.55,0.02,1.81,0.02c0.29-0.02,0.37-0.1,0.37-0.37v-6.58
h-4.55v-5.6h6.05V226.77z M141.91,222.37v1.25h3.25v-1.25H141.91z M145.16,226.03v-1.33h-3.25v1.33H145.16z M145.6,215.69v1.1
h3.12v-1.1H145.6z M148.73,219.07v-1.22h-3.12v1.22H148.73z"/>
<path style="fill:#424252;" d="M158.55,214.94c-0.08,0.34-0.18,0.74-0.24,1.09c-0.08,0.48-0.22,1.25-0.37,1.97
c0.64-0.05,1.22-0.08,1.58-0.08c1.52,0,2.69,0.64,2.69,2.85c0,1.87-0.24,4.39-0.9,5.75c-0.53,1.07-1.34,1.38-2.45,1.38
c-0.61,0-1.36-0.11-1.89-0.24l-0.27-1.67c0.66,0.19,1.52,0.34,1.95,0.34c0.56,0,1.01-0.14,1.3-0.75c0.48-0.99,0.7-2.98,0.7-4.63
c0-1.36-0.61-1.58-1.62-1.58c-0.32,0-0.85,0.03-1.44,0.08c-0.58,2.34-1.7,5.97-3.26,8.5l-1.65-0.66c1.58-2.11,2.72-5.52,3.28-7.67
c-0.72,0.08-1.36,0.14-1.73,0.19c-0.42,0.05-1.12,0.14-1.57,0.22l-0.16-1.73c0.54,0.03,0.99,0.02,1.54,0
c0.51-0.02,1.36-0.08,2.24-0.16c0.22-1.17,0.38-2.37,0.38-3.39L158.55,214.94z M164.25,217.01c0.96,1.44,2.13,4,2.61,5.36
l-1.58,0.75c-0.45-1.7-1.65-4.48-2.77-5.83l1.49-0.66c0.08,0.11,0.16,0.22,0.26,0.35c-0.32-0.64-0.83-1.6-1.28-2.21l1.04-0.43
c0.4,0.58,0.98,1.58,1.3,2.21L164.25,217.01z M166.1,216.32c-0.34-0.69-0.85-1.6-1.31-2.21l1.04-0.43
c0.42,0.59,1.02,1.6,1.33,2.19L166.1,216.32z"/>
<path style="fill:#424252;" d="M179.69,217.47c-1.15,1.31-2.8,2.29-4.69,3.02h5.52v8.07h-1.5v-0.48h-6.5v0.56h-1.42v-6.98
c-0.77,0.18-1.55,0.32-2.32,0.45c-0.19-0.35-0.64-0.99-0.94-1.31c4.29-0.51,8.5-1.7,10.45-3.95L179.69,217.47z M172.88,215.17
c-0.9,1.41-2.35,2.75-3.65,3.6c-0.26-0.27-0.83-0.8-1.17-1.04c1.3-0.72,2.61-1.86,3.39-3.03L172.88,215.17z M175.97,217.5
c0,0.72-0.18,1.07-0.75,1.28s-1.39,0.21-2.53,0.21c-0.11-0.4-0.37-0.93-0.59-1.3c0.86,0.05,1.79,0.05,2.03,0.03
c0.27-0.02,0.35-0.06,0.35-0.26v-3.55h1.49V217.5z M179.01,221.63h-6.5v1.06h6.5V221.63z M172.52,224.82h6.5v-1.09h-6.5V224.82z
M179.01,226.95v-1.07h-6.5v1.07H179.01z M179.03,214.59c1.25,0.85,2.77,2.1,3.5,2.99l-1.28,0.83c-0.67-0.88-2.16-2.19-3.39-3.09
L179.03,214.59z"/>
<path style="fill:#424252;" d="M187.47,215.07c-0.11,0.34-0.24,0.83-0.32,1.15c-0.45,2.05-0.99,5.44-0.48,7.76
c0.22-0.59,0.53-1.46,0.8-2.16l0.83,0.53c-0.42,1.22-0.88,2.82-1.06,3.67c-0.05,0.22-0.1,0.54-0.08,0.72
c0,0.16,0.03,0.4,0.03,0.59l-1.38,0.16c-0.34-0.98-0.86-3.11-0.86-5.07c0-2.59,0.37-5.03,0.56-6.34c0.06-0.4,0.08-0.86,0.1-1.18
L187.47,215.07z M197.86,219.36c-0.69,0.1-1.54,0.18-2.46,0.24v0.59c0,3.68-0.13,6.15-3.39,8.15l-1.47-1.15
c0.54-0.24,1.26-0.67,1.68-1.12c1.49-1.38,1.65-2.99,1.65-5.89v-0.5c-0.64,0.02-1.28,0.03-1.9,0.03c-0.74,0-1.78-0.05-2.51-0.1
v-1.6c0.74,0.11,1.63,0.16,2.48,0.16c0.61,0,1.26-0.02,1.9-0.03c-0.02-0.96-0.05-1.9-0.08-2.32c-0.03-0.34-0.1-0.74-0.16-0.99
h1.84c-0.05,0.3-0.05,0.64-0.06,0.99c-0.02,0.35,0,1.28,0.02,2.23c0.91-0.08,1.78-0.19,2.48-0.34V219.36z"/>
<path style="fill:#424252;" d="M210.25,216.32c-0.32,0.21-0.69,0.45-0.98,0.66c-0.82,0.58-2.74,2.26-3.86,3.19
c0.64-0.21,1.25-0.27,1.87-0.27c2.66,0,4.63,1.63,4.63,3.84c0,2.54-2.03,4.35-5.59,4.35c-2.19,0-3.67-0.99-3.67-2.42
c0-1.17,1.07-2.26,2.62-2.26c1.97,0,3.11,1.26,3.33,2.78c1.07-0.48,1.67-1.33,1.67-2.48c0-1.49-1.5-2.54-3.44-2.54
c-2.53,0-4.03,1.18-5.91,3.17l-1.17-1.18c1.23-1.01,3.22-2.67,4.15-3.44c0.88-0.74,2.71-2.26,3.5-2.95
c-0.83,0.03-3.54,0.14-4.37,0.19c-0.4,0.03-0.82,0.06-1.17,0.11l-0.05-1.65c0.4,0.05,0.88,0.08,1.26,0.08
c0.83,0,4.42-0.1,5.28-0.18c0.54-0.06,0.83-0.1,1.01-0.16L210.25,216.32z M207.16,226.58c-0.13-1.17-0.82-1.94-1.87-1.94
c-0.66,0-1.14,0.38-1.14,0.88c0,0.69,0.82,1.12,1.89,1.12C206.44,226.64,206.8,226.63,207.16,226.58z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M109.14,252.41c-0.4,1.17-0.93,2.35-1.5,3.49v10.71h-1.41v-8.34c-0.37,0.51-0.72,0.98-1.1,1.39
c-0.13-0.35-0.56-1.15-0.83-1.49c1.39-1.5,2.67-3.86,3.44-6.18L109.14,252.41z M114.52,261.47c-0.16,0.93-0.5,1.79-1.1,2.58
c1.6,0.62,3.6,0.96,5.86,1.1c-0.34,0.34-0.71,0.96-0.9,1.38c-2.34-0.21-4.35-0.66-6.02-1.44c-0.82,0.62-1.92,1.15-3.36,1.58
c-0.18-0.35-0.61-0.94-0.91-1.22c1.28-0.29,2.24-0.67,2.96-1.1c-0.85-0.58-1.57-1.26-2.13-2.1l1.3-0.45
c0.46,0.66,1.1,1.18,1.91,1.65c0.54-0.61,0.8-1.28,0.94-1.99h-3.65v-6.18h3.79v-1.18h-4.13v-1.3h9.75v1.3h-4.15v1.18h3.68v6.18
H114.52z M110.79,257.86h2.42v-1.44h-2.42V257.86z M113.19,260.35c0.02-0.24,0.02-0.51,0.02-0.75v-0.69h-2.42v1.44H113.19z
M116.9,258.91h-2.23v0.7c0,0.24,0,0.5-0.02,0.74h2.24V258.91z M114.68,256.41v1.44h2.23v-1.44H114.68z"/>
<path style="fill:#424252;" d="M125.33,261.41c-0.21-0.38-0.62-1.06-1.04-1.67v6.87h-1.42v-6.55c-0.54,1.47-1.23,2.9-1.91,3.83
c-0.14-0.43-0.5-1.04-0.72-1.39c0.86-1.1,1.78-3.03,2.34-4.71h-2.11v-1.39h2.4v-2.19c-0.69,0.14-1.39,0.26-2.05,0.34
c-0.06-0.32-0.26-0.8-0.43-1.14c1.71-0.27,3.68-0.72,4.8-1.22l1.04,1.1c-0.58,0.22-1.23,0.43-1.94,0.61v2.5h1.84v1.39h-1.84v0.46
c0.45,0.42,1.63,1.73,1.92,2.08L125.33,261.41z M132.09,265.14c0.53,0,0.61-0.42,0.67-2.37c0.32,0.26,0.91,0.51,1.31,0.61
c-0.16,2.37-0.53,3.12-1.86,3.12h-1.98c-1.44,0-1.84-0.46-1.86-2.07c-0.7,0.64-1.47,1.23-2.32,1.78
c-0.21-0.32-0.69-0.82-1.06-1.06c1.28-0.8,2.4-1.73,3.38-2.77v-7.14h1.44v5.36c1.58-2.26,2.62-4.91,3.25-7.83l1.38,0.3
c-0.35,1.57-0.8,3.03-1.34,4.4l0.69-0.19c0.75,1.47,1.36,3.39,1.5,4.67l-1.36,0.38c-0.1-1.12-0.56-2.77-1.14-4.15
c-0.78,1.76-1.76,3.35-2.98,4.75v1.41c0,0.66,0.1,0.77,0.62,0.77H132.09z M125.49,262.27c0.72-1.18,1.06-3.07,1.17-4.79l1.2,0.22
c-0.16,1.78-0.45,3.87-1.22,5.11L125.49,262.27z M131.06,255.41c-0.62-0.75-1.97-1.78-3.12-2.43l0.94-0.94
c1.14,0.61,2.51,1.55,3.17,2.3L131.06,255.41z"/>
<path style="fill:#424252;" d="M147.09,253.97c-0.32,1.87-1.06,3.35-3.03,4.23c-0.14-0.27-0.43-0.67-0.7-0.93v7.83
c0,0.64-0.13,1.06-0.56,1.28c-0.45,0.21-1.09,0.22-2.13,0.22c-0.06-0.34-0.27-0.93-0.46-1.25c0.77,0.02,1.44,0.02,1.63,0.02
c0.21-0.02,0.29-0.08,0.29-0.29v-2.61h-3.55c-0.14,1.49-0.48,3.03-1.23,4.18c-0.22-0.19-0.77-0.53-1.06-0.66
c1.07-1.68,1.18-4.03,1.18-5.83v-2.54l-0.14,0.18c-0.24-0.22-0.78-0.69-1.09-0.88c1.1-1.2,1.95-3.06,2.42-4.99l1.36,0.3
c-0.11,0.38-0.22,0.77-0.35,1.15h1.68l0.21-0.06l0.87,0.54c-0.26,0.67-0.61,1.44-0.96,2.11h1.91v1.15
c1.52-0.67,2.1-1.79,2.35-3.15h-1.98v-1.23h6.96c0,0,0,0.35-0.02,0.51c-0.11,2.59-0.26,3.67-0.59,4.05
c-0.22,0.29-0.5,0.4-0.91,0.45c-0.34,0.05-0.98,0.05-1.62,0.02c-0.03-0.38-0.16-0.9-0.34-1.23c0.56,0.06,1.07,0.06,1.3,0.06
c0.21,0.02,0.34-0.02,0.43-0.14c0.18-0.19,0.29-0.85,0.37-2.48H147.09z M139.22,254.53c-0.21,0.5-0.43,0.99-0.67,1.44h1.63
c0.21-0.42,0.42-0.94,0.59-1.44H139.22z M138.67,260.18c0,0.37,0,0.75-0.02,1.15h1.23v-1.62h-1.22V260.18z M138.67,258.61h1.22
v-1.52h-1.22V258.61z M140.93,258.61h1.2v-1.52h-1.2V258.61z M142.13,261.33v-1.62h-1.2v1.62H142.13z M151.13,263.73h-2.91v2.82
h-1.41v-2.82h-3.17v-1.3h3.17v-1.73h-1.57c-0.22,0.54-0.48,1.02-0.75,1.42c-0.26-0.19-0.82-0.46-1.12-0.59
c0.66-0.9,1.12-2.19,1.38-3.52l1.23,0.26c-0.08,0.38-0.18,0.77-0.29,1.15h1.12v-1.54h1.41v1.54h2.61v1.28h-2.61v1.73h2.91V263.73z
"/>
<path style="fill:#424252;" d="M155.19,259.26c-0.59-0.58-1.81-1.39-2.82-1.9l0.85-1.06c0.99,0.46,2.24,1.22,2.87,1.81
L155.19,259.26z M152.83,265.54c0.77-1.22,1.87-3.26,2.72-5.12l1.09,0.91c-0.74,1.7-1.66,3.63-2.5,5.17L152.83,265.54z
M153.98,252.11c0.98,0.46,2.19,1.23,2.79,1.81l-0.93,1.15c-0.56-0.59-1.75-1.41-2.74-1.94L153.98,252.11z M158.87,255.98
c-0.24-0.8-0.88-2.06-1.54-2.98l1.26-0.56c0.66,0.88,1.34,2.08,1.62,2.88L158.87,255.98z M166.12,264.9
c0,0.77-0.16,1.18-0.69,1.41c-0.51,0.24-1.33,0.26-2.54,0.26c-0.06-0.38-0.27-1.02-0.46-1.41c0.82,0.05,1.68,0.05,1.92,0.03
c0.24-0.02,0.32-0.08,0.32-0.3v-1.57h-5.41v3.31h-1.46v-10.21h3.46v-4.48h1.5v4.48h3.36V264.9z M159.25,257.81v1.47h5.41v-1.47
H159.25z M164.66,262.05v-1.5h-5.41v1.5H164.66z M166.76,252.89c-0.53,1.07-1.17,2.22-1.71,2.99l-1.28-0.51
c0.53-0.82,1.22-2.08,1.57-3.03L166.76,252.89z"/>
<path style="fill:#424252;" d="M172.07,253.26c-0.11,0.3-0.27,0.93-0.34,1.22c-0.27,1.3-0.78,4.27-0.78,5.97
c0,0.56,0.03,1.09,0.11,1.67c0.24-0.64,0.56-1.41,0.8-1.99l0.83,0.64c-0.43,1.2-0.99,2.9-1.14,3.7c-0.05,0.21-0.1,0.54-0.08,0.72
c0,0.16,0.02,0.4,0.03,0.59l-1.44,0.1c-0.32-1.1-0.61-2.98-0.61-5.12c0-2.37,0.51-5.06,0.69-6.32c0.06-0.4,0.13-0.9,0.14-1.31
L172.07,253.26z M175.72,261.01c-0.13,0.54-0.19,0.98-0.19,1.41c0,0.72,0.53,1.28,2.45,1.28c1.42,0,2.62-0.13,3.95-0.42l0.03,1.7
c-0.99,0.19-2.3,0.32-4.02,0.32c-2.69,0-3.94-0.93-3.94-2.46c0-0.62,0.13-1.26,0.27-1.95L175.72,261.01z M181.46,254.4v1.63
c-1.81,0.18-4.8,0.19-6.64,0v-1.62C176.63,254.69,179.81,254.62,181.46,254.4z"/>
<path style="fill:#424252;" d="M192.32,255.89c-0.78,0.21-1.76,0.42-2.82,0.56c-0.77,2.23-2.14,4.99-3.44,6.74l-1.54-0.78
c1.3-1.55,2.62-3.99,3.31-5.78c-0.38,0.02-0.75,0.03-1.14,0.03c-0.61,0-1.26-0.02-1.9-0.06l-0.11-1.47
c0.62,0.06,1.38,0.1,2.02,0.1c0.53,0,1.07-0.02,1.63-0.06c0.24-0.88,0.43-1.86,0.46-2.69l1.75,0.16
c-0.13,0.54-0.34,1.42-0.58,2.32c0.8-0.13,1.58-0.32,2.3-0.54L192.32,255.89z M194.28,257.53c-0.05,0.67-0.03,1.22-0.02,1.86
c0.02,0.51,0.06,1.42,0.11,2.32c1.36,0.5,2.48,1.3,3.28,2l-0.85,1.36c-0.62-0.56-1.42-1.25-2.37-1.76v0.43
c0,1.34-0.82,2.43-2.9,2.43c-1.84,0-3.33-0.78-3.33-2.43c0-1.49,1.34-2.55,3.31-2.55c0.46,0,0.9,0.03,1.33,0.11
c-0.06-1.25-0.14-2.74-0.18-3.78H194.28z M192.9,262.69c-0.45-0.13-0.94-0.19-1.46-0.19c-1.06,0-1.75,0.46-1.75,1.1
c0,0.67,0.54,1.14,1.63,1.14c1.18,0,1.58-0.67,1.58-1.49C192.92,263.09,192.92,262.91,192.9,262.69z M197.24,258.14
c-0.88-0.72-2.62-1.73-3.7-2.21l0.8-1.23c1.14,0.5,3.01,1.55,3.79,2.13L197.24,258.14z"/>
<path style="fill:#424252;" d="M210.25,254.32c-0.32,0.21-0.69,0.45-0.98,0.66c-0.82,0.58-2.74,2.26-3.86,3.19
c0.64-0.21,1.25-0.27,1.87-0.27c2.66,0,4.63,1.63,4.63,3.84c0,2.54-2.03,4.35-5.59,4.35c-2.19,0-3.67-0.99-3.67-2.42
c0-1.17,1.07-2.26,2.62-2.26c1.97,0,3.11,1.26,3.33,2.78c1.07-0.48,1.67-1.33,1.67-2.48c0-1.49-1.5-2.54-3.44-2.54
c-2.53,0-4.03,1.18-5.91,3.17l-1.17-1.18c1.23-1.01,3.22-2.67,4.15-3.44c0.88-0.74,2.71-2.26,3.5-2.95
c-0.83,0.03-3.54,0.14-4.37,0.19c-0.4,0.03-0.82,0.06-1.17,0.11l-0.05-1.65c0.4,0.05,0.88,0.08,1.26,0.08
c0.83,0,4.42-0.1,5.28-0.18c0.54-0.06,0.83-0.1,1.01-0.16L210.25,254.32z M207.16,264.58c-0.13-1.17-0.82-1.94-1.87-1.94
c-0.66,0-1.14,0.38-1.14,0.88c0,0.69,0.82,1.12,1.89,1.12C206.44,264.64,206.8,264.63,207.16,264.58z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M78.37,292.61v3.75c0,2.51-0.32,6.05-2.38,8.28c-0.21-0.27-0.75-0.83-1.06-1.01
c1.18-1.3,1.7-2.96,1.91-4.58c-0.66,0.4-1.33,0.8-1.95,1.15l-0.46-1.36c0.66-0.3,1.57-0.75,2.54-1.28
c0.02-0.42,0.02-0.82,0.02-1.2v-5.06h4.95v-1.36h1.55v1.36h5.73v1.31H78.37z M75.68,296.24c-0.13-0.8-0.59-2.06-1.09-3.03
l1.09-0.51c0.51,0.93,1.02,2.16,1.15,2.95L75.68,296.24z M86.63,297.94v1.33h2.46v1.22h-2.46v2.59c0,0.74-0.14,1.1-0.69,1.31
c-0.53,0.19-1.33,0.19-2.48,0.19c-0.06-0.38-0.26-0.91-0.43-1.28c0.83,0.03,1.63,0.03,1.86,0.02c0.24,0,0.32-0.06,0.32-0.27v-2.56
h-6.18v-1.22h6.18v-1.33h-6.4v-1.25h4.43v-1.34h-3.41v-1.17h3.41v-1.25h1.47v1.25h3.67v1.17h-3.67v1.34h4.59v1.25H86.63z
M81.17,300.63c0.7,0.66,1.5,1.54,1.84,2.23l-1.18,0.66c-0.3-0.66-1.06-1.6-1.76-2.27L81.17,300.63z"/>
<path style="fill:#424252;" d="M99.11,293.89c-0.78,0.21-1.76,0.42-2.82,0.56c-0.77,2.23-2.14,4.99-3.44,6.74l-1.54-0.78
c1.3-1.55,2.62-3.99,3.31-5.78c-0.38,0.02-0.75,0.03-1.14,0.03c-0.61,0-1.26-0.02-1.9-0.06l-0.11-1.47
c0.62,0.06,1.38,0.1,2.02,0.1c0.53,0,1.07-0.02,1.63-0.06c0.24-0.88,0.43-1.86,0.46-2.69l1.75,0.16
c-0.13,0.54-0.34,1.42-0.58,2.32c0.8-0.13,1.58-0.32,2.3-0.54L99.11,293.89z M101.06,295.54c-0.05,0.67-0.03,1.22-0.02,1.86
c0.02,0.51,0.06,1.42,0.11,2.32c1.36,0.5,2.48,1.3,3.28,2l-0.85,1.36c-0.62-0.56-1.42-1.25-2.37-1.76v0.43
c0,1.34-0.82,2.43-2.9,2.43c-1.84,0-3.33-0.78-3.33-2.43c0-1.49,1.34-2.55,3.31-2.55c0.46,0,0.9,0.03,1.33,0.11
c-0.06-1.25-0.14-2.74-0.18-3.78H101.06z M99.68,300.69c-0.45-0.13-0.94-0.19-1.46-0.19c-1.06,0-1.75,0.46-1.75,1.1
c0,0.67,0.54,1.14,1.63,1.14c1.18,0,1.58-0.67,1.58-1.49C99.7,301.09,99.7,300.91,99.68,300.69z M104.02,296.14
c-0.88-0.72-2.62-1.73-3.7-2.21l0.8-1.23c1.14,0.5,3.01,1.55,3.79,2.13L104.02,296.14z"/>
<path style="fill:#424252;" d="M117.49,294.37c-0.42,0.26-0.85,0.48-1.36,0.75c-1.04,0.53-2.69,1.3-4.19,2.29
c-1.41,0.91-2.29,1.89-2.29,3.04c0,1.25,1.18,1.97,3.55,1.97c1.68,0,3.81-0.22,5.12-0.56l-0.02,1.81c-1.26,0.22-3.03,0.4-5.04,0.4
c-3.06,0-5.31-0.9-5.31-3.42c0-1.68,1.07-2.99,2.69-4.15c-0.74-1.33-1.54-3.1-2.26-4.8l1.58-0.66c0.61,1.71,1.39,3.33,2.05,4.56
c1.3-0.77,2.59-1.41,3.41-1.87c0.51-0.29,0.91-0.53,1.26-0.83L117.49,294.37z M117.78,290.8c0.4,0.59,0.98,1.58,1.28,2.21
l-1.04,0.46c-0.32-0.66-0.85-1.62-1.28-2.24L117.78,290.8z M119.59,290.13c0.43,0.59,1.04,1.6,1.33,2.18l-1.04,0.46
c-0.34-0.69-0.86-1.62-1.31-2.21L119.59,290.13z"/>
<path style="fill:#424252;" d="M127.88,302.39c0.56-0.05,1.02-0.13,1.41-0.22c2.03-0.46,3.84-1.94,3.84-4.5
c0-2.3-1.38-4.11-3.81-4.42c-0.22,1.42-0.51,2.96-0.94,4.45c-0.96,3.23-2.27,5.04-3.86,5.04c-1.57,0-3.01-1.78-3.01-4.42
c0-3.52,3.12-6.58,7.09-6.58c3.81,0,6.23,2.66,6.23,5.99c0,3.31-2.13,5.62-6,6.16L127.88,302.39z M126.76,297.36
c0.4-1.25,0.7-2.69,0.86-4.08c-2.85,0.46-4.51,2.95-4.51,4.9c0,1.83,0.82,2.66,1.46,2.66
C125.25,300.83,126.02,299.81,126.76,297.36z"/>
<path style="fill:#424252;" d="M136.51,303.33c1.1-0.7,1.83-1.9,2.18-3.14l1.31,0.46c-0.42,1.38-1.06,2.71-2.26,3.54
L136.51,303.33z M139.27,299.39h-1.38v-4h5.2v-0.9h-4.67v-3.41h4.67v-1.15h1.47v1.15h4.91v3.41h-4.91v0.9h5.41v3.97h-1.44v-0.43
h-3.97v0.94H144c0.58,0.4,1.09,0.85,1.41,1.22l-1.04,0.88c-0.5-0.64-1.58-1.49-2.53-2.05l0.98-0.8l0.27,0.16v-0.35h-3.83V299.39z
M139.27,296.51v1.31h3.83v-1.31H139.27z M143.09,293.41v-1.23h-3.3v1.23H143.09z M145.65,303.11c0.64,0,0.75-0.19,0.82-1.55
c0.3,0.22,0.93,0.45,1.33,0.53c-0.18,1.89-0.61,2.35-2,2.35h-2.82c-1.79,0-2.22-0.4-2.22-1.79v-2.32h1.46v2.3
c0,0.42,0.14,0.48,0.93,0.48H145.65z M144.56,292.17v1.23H148v-1.23H144.56z M144.56,296.51v1.31h3.97v-1.31H144.56z
M148.32,300.1c1.15,0.93,2.37,2.26,2.9,3.3l-1.33,0.75c-0.45-0.99-1.63-2.38-2.77-3.36L148.32,300.1z"/>
<path style="fill:#424252;" d="M152.58,295.98h8.2v1.36h-8.2V295.98z M160.56,292.9h-7.6v-1.3h3.07v-1.58h1.44v1.58h3.09V292.9z
M153.58,298.58h6.39v5.99h-1.46v-0.8h-3.55v0.86h-1.38V298.58z M154.55,295.89c-0.06-0.67-0.32-1.71-0.62-2.48l1.23-0.27
c0.35,0.75,0.61,1.79,0.71,2.45L154.55,295.89z M154.96,299.89v2.58h3.55v-2.58H154.96z M157.54,295.62
c0.29-0.69,0.62-1.81,0.8-2.56l1.41,0.32c-0.35,0.9-0.71,1.89-1.02,2.54L157.54,295.62z M167.29,291.49
c-0.62,1.52-1.39,3.36-2.08,4.75c1.47,1.46,1.82,2.71,1.82,3.79c0,1.07-0.24,1.82-0.82,2.21c-0.3,0.21-0.66,0.32-1.07,0.38
c-0.37,0.05-0.86,0.03-1.31,0.03c-0.02-0.43-0.16-1.06-0.4-1.47c0.42,0.03,0.8,0.05,1.09,0.03c0.26-0.02,0.46-0.06,0.64-0.18
c0.32-0.19,0.43-0.61,0.43-1.18c0-0.93-0.42-2.1-1.89-3.42c0.58-1.25,1.2-2.93,1.65-4.18h-2.54v12.37h-1.46v-13.77h4.59l0.24-0.06
L167.29,291.49z"/>
<path style="fill:#424252;" d="M175.3,302.39c0.56-0.05,1.02-0.13,1.41-0.22c2.03-0.46,3.84-1.94,3.84-4.5
c0-2.3-1.38-4.11-3.81-4.42c-0.22,1.42-0.51,2.96-0.94,4.45c-0.96,3.23-2.27,5.04-3.86,5.04c-1.57,0-3.01-1.78-3.01-4.42
c0-3.52,3.12-6.58,7.09-6.58c3.81,0,6.23,2.66,6.23,5.99c0,3.31-2.13,5.62-6,6.16L175.3,302.39z M174.18,297.36
c0.4-1.25,0.7-2.69,0.86-4.08c-2.85,0.46-4.51,2.95-4.51,4.9c0,1.83,0.82,2.66,1.46,2.66
C172.67,300.83,173.44,299.81,174.18,297.36z"/>
<path style="fill:#424252;" d="M196.18,293.53c0.4,0,1.09-0.02,1.57-0.1v1.73c-0.54-0.03-1.2-0.05-1.57-0.05h-2.5
c-0.29,4.43-2.02,7.2-4.83,8.98l-1.7-1.15c0.5-0.21,1.02-0.51,1.39-0.8c1.62-1.23,3.17-3.28,3.41-7.03h-3.79
c-0.66,1.18-1.68,2.61-2.62,3.41l-1.58-0.96c1.14-0.85,2.24-2.4,2.82-3.38c0.43-0.78,0.72-1.6,0.91-2.22
c0.13-0.42,0.24-0.94,0.27-1.42l1.95,0.38c-0.16,0.37-0.34,0.87-0.46,1.2c-0.14,0.4-0.32,0.9-0.53,1.41H196.18z"/>
<path style="fill:#424252;" d="M212.79,292.54c-0.14,0.18-0.4,0.48-0.53,0.67c-0.69,1.17-2.21,3.2-3.92,4.42l-1.33-1.07
c1.39-0.82,2.8-2.4,3.26-3.31h-8.79c-0.62,0-1.18,0.05-1.87,0.1v-1.78c0.59,0.08,1.25,0.14,1.87,0.14h8.95
c0.37,0,1.09-0.05,1.34-0.11L212.79,292.54z M206.32,294.67c0,4.18-0.24,7.25-4.45,9.41l-1.47-1.2c0.46-0.16,1.02-0.42,1.54-0.78
c2.29-1.47,2.66-3.49,2.66-6.15c0-0.43-0.02-0.82-0.1-1.28H206.32z"/>
</g>
</g>
<g>
<line style="fill:none;stroke:#CCCCCC;stroke-width:2;stroke-miterlimit:10;" x1="231.32" y1="0" x2="231.32" y2="321.55"/>
</g>
<line style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="1" y1="42.12" x2="212.98" y2="42.12"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="74.6" y1="76.12" x2="212.98" y2="76.12"/>
<g>
<g>
<g>
<path style="fill:#424252;" d="M19.24,120.69c-0.05,5.52,0.25,9.87,1.59,9.87c0.35-0.02,0.44-1.22,0.48-3.08
c0.53,0.62,1.22,1.31,1.77,1.7c-0.21,2.87-0.69,4.09-2.46,4.09c-3.36,0-4.02-4.39-4.16-10.28H4.14v-1.91l-0.21,0.18
c-0.53-0.46-1.82-1.33-2.48-1.72c2.28-1.72,4-4.69,4.9-7.86l2.85,0.6c-0.18,0.57-0.37,1.15-0.58,1.7h13.59v2.28H7.61
c-0.18,0.37-0.39,0.74-0.6,1.08h13.11v2.21H6.85v-1.93c-0.71,1.17-1.5,2.21-2.32,3.08H19.24z M14.65,123.98
c-0.69,1.26-1.49,2.46-2.44,3.56c1.45,0.99,2.74,2.02,3.63,2.92l-2.18,2.07c-0.8-0.9-2.02-1.91-3.4-2.97
c-1.82,1.66-3.86,3.01-5.98,4.05c-0.44-0.57-1.45-1.63-2.05-2.14c2.14-0.83,4.12-2.02,5.82-3.47c-1.31-0.87-2.64-1.68-3.86-2.37
l1.95-1.79c1.2,0.62,2.53,1.4,3.84,2.23c0.81-0.92,1.47-1.91,2.02-2.97L14.65,123.98z"/>
<path style="fill:#424252;" d="M32.01,123.98c-0.71,0.21-1.43,0.44-2.16,0.62v5.61c0,1.26-0.23,1.93-0.94,2.37
c-0.67,0.44-1.68,0.53-3.15,0.51c-0.07-0.67-0.37-1.79-0.71-2.53c0.85,0.05,1.63,0.05,1.91,0.02c0.28,0,0.39-0.09,0.39-0.39
v-4.85l-2.37,0.69l-0.6-2.62c0.83-0.21,1.84-0.46,2.97-0.74v-4.02h-2.6v-2.53h2.6v-4.32h2.51v4.32h1.95v2.53h-1.95v3.38
l1.82-0.51L32.01,123.98z M43.42,121.36v1.82h2.53v2.48h-2.53v4.69c0,1.38-0.25,2.05-1.15,2.46c-0.85,0.39-2.05,0.44-3.7,0.44
c-0.11-0.76-0.46-1.84-0.78-2.58c1.03,0.05,2.23,0.05,2.6,0.02c0.32,0,0.44-0.07,0.44-0.39v-4.65h-8.46v-2.48h8.46v-1.82h-8.67
v-2.48h5.7v-2h-4.71v-2.48h4.71v-2.51h2.6v2.51h4.62v2.48h-4.62v2h5.66v2.48H43.42z M35.78,125.75c0.94,1.15,2.09,2.78,2.58,3.91
l-2.32,1.33c-0.41-1.13-1.49-2.81-2.41-4.02L35.78,125.75z"/>
<path style="fill:#424252;" d="M63.75,117.68c-2.37,0.37-5.98,0.8-9.04,0.97c-0.3,1.38-0.67,2.83-1.04,3.93
c1.84-1.01,3.56-1.43,5.66-1.43c3.68,0,6.12,1.98,6.12,4.88c0,5.13-4.92,6.97-12.28,6.19l-0.8-2.94
c4.99,0.8,10.03,0.21,10.03-3.15c0-1.36-1.2-2.51-3.4-2.51c-2.62,0-4.94,0.94-6.3,2.69c-0.25,0.3-0.41,0.6-0.64,0.99l-2.69-0.97
c1.08-2.09,2-5.13,2.6-7.63c-1.45-0.02-2.78-0.11-3.93-0.23v-2.83c1.36,0.23,3.08,0.41,4.46,0.44c0.05-0.34,0.12-0.64,0.14-0.92
c0.12-0.99,0.14-1.54,0.12-2.3l3.22,0.14c-0.25,0.8-0.37,1.56-0.53,2.32L55.29,116c2.6-0.14,5.68-0.48,8.42-1.08L63.75,117.68z"
/>
<path style="fill:#424252;" d="M77.67,129.5c0.87-0.11,1.52-0.23,2.12-0.37c2.92-0.69,5.17-2.78,5.17-6.09
c0-3.15-1.7-5.5-4.76-6.03c-0.32,1.93-0.71,4.05-1.36,6.19c-1.36,4.6-3.33,7.4-5.82,7.4c-2.51,0-4.65-2.78-4.65-6.62
c0-5.24,4.58-9.75,10.49-9.75c5.63,0,9.2,3.93,9.2,8.9c0,4.78-2.94,8.19-8.69,9.06L77.67,129.5z M75.9,122.6
c0.53-1.68,0.94-3.63,1.22-5.52c-3.77,0.78-5.77,4.09-5.77,6.6c0,2.3,0.92,3.43,1.77,3.43C74.06,127.11,74.98,125.68,75.9,122.6z
"/>
<path style="fill:#424252;" d="M110.78,125.2c-1.56,1.2-3.47,2.42-5.15,3.33c1.61,1.1,3.66,1.86,6.16,2.28
c-0.6,0.57-1.36,1.72-1.72,2.48c-5.73-1.2-8.9-4.07-10.83-8.92h-2.92v5.27c1.7-0.23,3.52-0.51,5.27-0.8l0.16,2.55
c-3.5,0.62-7.24,1.17-10,1.63l-0.67-2.67c0.74-0.09,1.54-0.18,2.44-0.32v-16.12h5.96v-2.21h2.83v2.21h6.71v9.91L110.78,125.2z
M96.32,116.28v1.7h9.86v-1.7H96.32z M96.32,121.98h9.86v-1.82h-9.86V121.98z M102.07,124.37c0.46,0.97,1.04,1.84,1.75,2.6
c1.24-0.74,2.64-1.68,3.79-2.6H102.07z"/>
<path style="fill:#424252;" d="M131.09,117.7c-1.15,0.32-2.48,0.64-3.86,0.92c0.87,1.84,1.95,4,2.94,5.82l-1.61,1.72
c-1.24-0.25-3.5-0.62-5.17-0.83l0.25-2.34c0.76,0.07,2,0.21,2.69,0.25c-0.55-1.15-1.33-2.74-2-4.16c-2.78,0.3-5.98,0.3-9.59,0
l-0.09-2.92c3.26,0.41,6.09,0.46,8.51,0.23c-0.18-0.37-0.34-0.74-0.48-1.08c-0.41-0.92-0.64-1.38-1.13-2.18l3.22-0.62
c0.39,1.2,0.83,2.28,1.33,3.47c1.59-0.3,3.01-0.67,4.46-1.15L131.09,117.7z M118.65,124.03c-0.28,0.74-0.62,2.05-0.62,2.71
c0,1.66,0.85,2.78,4.07,2.78c3.17,0,4.53-0.32,6.21-0.67l-0.07,3.01c-1.26,0.23-3.17,0.55-6.14,0.55c-4.58,0-7.04-1.72-7.04-4.9
c0-1.01,0.28-2.44,0.64-3.75L118.65,124.03z"/>
<path style="fill:#424252;" d="M138.43,119.57c1.61,0,2.94,1.33,2.94,2.94s-1.33,2.94-2.94,2.94s-2.94-1.33-2.94-2.94
S136.82,119.57,138.43,119.57z"/>
<path style="fill:#424252;" d="M163.87,127.78c-0.39-0.44-0.94-0.92-1.63-1.45c-0.48,0.44-0.97,0.83-1.43,1.13
c-0.39-0.37-1.24-1.04-1.82-1.4c1.56,2.39,3.89,3.98,7.47,4.76c-0.6,0.57-1.33,1.7-1.68,2.46c-4.65-1.22-7.27-3.63-8.92-7.36
c-1.31,3.45-3.96,5.89-9.22,7.43c-0.28-0.78-1.06-1.91-1.66-2.51c8.14-2.21,9.17-6.37,9.34-13.82h-8.92v-2.46h8.94v-2.69h2.9
v2.69h8.76v2.46h-8.81c-0.02,1.33-0.09,2.6-0.21,3.77c0.44,2,1.06,3.75,1.96,5.17c0.48-0.3,0.97-0.64,1.45-0.99
c-0.53-0.35-1.03-0.67-1.52-0.97l1.56-1.31c0.46,0.28,0.99,0.57,1.5,0.92c0.48-0.46,0.92-0.92,1.24-1.38l2.23,0.8
c-0.46,0.6-1.01,1.24-1.61,1.84c0.69,0.48,1.31,0.99,1.72,1.42L163.87,127.78z M150.51,127.66c-0.3-0.35-0.71-0.71-1.17-1.1
c-0.69,0.58-1.38,1.1-2.05,1.54c-0.44-0.44-1.29-1.24-1.84-1.61c0.69-0.39,1.38-0.85,2.07-1.38c-0.46-0.28-0.9-0.6-1.31-0.85
l1.56-1.29c0.41,0.25,0.87,0.53,1.31,0.83c0.51-0.48,0.99-1.01,1.38-1.5l2.21,0.83c-0.51,0.67-1.13,1.36-1.77,1.98
c0.48,0.39,0.92,0.78,1.24,1.13L150.51,127.66z M151.2,122.26c-0.37-0.39-0.92-0.85-1.54-1.31c-0.76,0.6-1.5,1.15-2.18,1.61
c-0.41-0.41-1.24-1.2-1.77-1.54c0.69-0.37,1.4-0.8,2.12-1.31c-0.55-0.34-1.08-0.64-1.56-0.92l1.47-1.38
c0.55,0.28,1.13,0.62,1.75,0.97c0.48-0.41,0.94-0.85,1.31-1.29l2.09,0.83c-0.46,0.53-1.01,1.08-1.59,1.63
c0.6,0.39,1.1,0.8,1.49,1.13L151.2,122.26z M164.93,117.89c-0.46,0.53-0.99,1.08-1.56,1.63c0.62,0.44,1.17,0.87,1.56,1.22
l-1.61,1.54c-0.37-0.39-0.9-0.85-1.52-1.31c-0.74,0.62-1.43,1.2-2.09,1.66c-0.44-0.41-1.29-1.2-1.82-1.54
c0.67-0.39,1.38-0.85,2.05-1.38c-0.53-0.34-1.08-0.69-1.59-0.97l1.47-1.36c0.55,0.28,1.13,0.62,1.72,0.97
c0.46-0.44,0.9-0.87,1.26-1.31L164.93,117.89z"/>
<path style="fill:#424252;" d="M167.62,122.3c0.55-1.54,0.97-4.09,1.13-6l1.95,0.25c-0.09,2-0.51,4.69-1.03,6.46L167.62,122.3z
M174.47,120.85c-0.18-0.83-0.58-2-1.03-3.1v15.48h-2.71v-21.45h2.71v4.32l1.24-0.53c0.71,1.38,1.5,3.22,1.79,4.35L174.47,120.85
z M183.83,124.58c1.13,2.83,3.01,5.08,5.89,6.16c-0.64,0.58-1.52,1.77-1.93,2.58c-2.88-1.36-4.71-3.68-5.98-6.76
c-0.92,2.58-2.67,4.99-5.84,6.81c-0.37-0.6-1.33-1.61-1.93-2.12c3.5-1.7,4.97-4.14,5.59-6.67h-4.58v-2.6h4.94
c0.07-0.74,0.07-1.43,0.07-2.12v-2.09h-3.96v-2.53h3.96v-3.47h2.76v3.47h4.99v6.74h1.45v2.6H183.83z M182.82,119.89
c0,0.69-0.02,1.38-0.07,2.09h2.39v-4.21h-2.32V119.89z"/>
<path style="fill:#424252;" d="M195.34,117.41c0,2.83-0.44,6.83-2.62,9.43c-0.39-0.48-1.45-1.38-1.98-1.66
c1.89-2.28,2.09-5.5,2.09-7.82v-3.45h9.77c-0.07-0.71-0.12-1.43-0.14-2.14h2.58c0.02,0.71,0.07,1.45,0.14,2.14h2.44
c-0.6-0.32-1.26-0.62-1.86-0.85l1.36-1.49c1.08,0.32,2.48,0.94,3.2,1.52l-0.69,0.83h2.12v2.16h-6.25
c0.23,1.31,0.58,2.53,0.94,3.59c0.58-0.92,1.06-1.93,1.4-3.01l2.53,0.6c-0.64,1.86-1.56,3.54-2.67,5.01
c0.62,0.94,1.26,1.47,1.91,1.47c0.51-0.02,0.69-0.78,0.8-2.76c0.58,0.51,1.43,0.99,2.07,1.2c-0.39,3.27-1.17,4.02-3.01,4.02
c-1.31,0-2.48-0.74-3.47-1.98c-0.69,0.67-1.4,1.26-2.16,1.77c-0.28-0.39-0.85-0.99-1.36-1.45v0.41h-1.47
c1.22,0.67,2.58,1.7,3.26,2.51l-1.88,1.61c-0.67-0.87-2.16-2.05-3.43-2.81l1.56-1.31h-4.55v-4.97h6.51v3.77
c0.78-0.51,1.49-1.1,2.16-1.77c-0.76-1.66-1.36-3.68-1.72-5.91h-7.57V117.41z M190.94,131.25c1.36-1.06,2.35-2.69,2.81-4.39
l2.44,0.87c-0.53,1.91-1.42,3.82-2.99,5.04L190.94,131.25z M202.63,118.88h-6.76v-1.75h6.76V118.88z M203.91,130.51
c0.9,0,1.04-0.23,1.15-2.05c0.51,0.41,1.68,0.8,2.39,0.97c-0.3,2.83-1.06,3.52-3.29,3.52h-3.68c-2.97,0-3.66-0.74-3.66-3.1v-2.97
h2.71v2.94c0,0.62,0.18,0.69,1.24,0.69H203.91z M200.23,121.73h-2.09v1.45h2.09V121.73z M208.77,126.51
c1.49,1.36,3.08,3.29,3.68,4.78l-2.48,1.24c-0.51-1.4-2-3.43-3.5-4.87L208.77,126.51z"/>
</g>
</g>
<line style="fill:none;stroke:#00ACEE;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="1" y1="137.19" x2="212.98" y2="137.19"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="270px" height="328.22px" viewBox="0 0 270 328.22" style="enable-background:new 0 0 270 328.22;"
xml:space="preserve">
<g>
<g>
<path style="fill:#424252;" d="M130.12,111.59l0.78-1.04c0.6,0.62,1.37,1.13,2.44,1.13c1.16,0,1.96-0.64,1.96-1.71
c0-1.15-0.73-1.89-3.05-1.89v-1.19c2.03,0,2.7-0.77,2.7-1.81c0-0.91-0.6-1.48-1.58-1.5c-0.8,0.01-1.47,0.41-2.06,0.98l-0.84-1.01
c0.81-0.73,1.77-1.25,2.96-1.25c1.85,0,3.15,0.95,3.15,2.66c0,1.19-0.69,2.02-1.78,2.42v0.07c1.19,0.29,2.13,1.19,2.13,2.58
c0,1.86-1.55,2.96-3.45,2.96C131.86,113,130.81,112.36,130.12,111.59z"/>
<path style="fill:#424252;" d="M138.91,111.49h2.26v-7.17h-1.85v-1.02c0.97-0.18,1.65-0.42,2.24-0.78h1.22v8.98h2.02v1.33h-5.88
V111.49z"/>
<path style="fill:#424252;" d="M146.08,107.12c0-1.63,0.76-2.55,1.89-2.55c1.13,0,1.9,0.92,1.9,2.55c0,1.63-0.77,2.58-1.9,2.58
C146.84,109.7,146.08,108.75,146.08,107.12z M148.95,107.12c0-1.25-0.41-1.8-0.98-1.8c-0.56,0-0.97,0.55-0.97,1.8
c0,1.24,0.41,1.83,0.97,1.83C148.55,108.95,148.95,108.37,148.95,107.12z M152.66,104.57h0.8l-4.44,8.39h-0.79L152.66,104.57z
M151.83,110.4c0-1.63,0.77-2.55,1.9-2.55c1.12,0,1.89,0.92,1.89,2.55c0,1.63-0.77,2.56-1.89,2.56
C152.6,112.96,151.83,112.03,151.83,110.4z M154.7,110.4c0-1.25-0.41-1.8-0.97-1.8c-0.57,0-0.98,0.55-0.98,1.8
c0,1.24,0.41,1.83,0.98,1.83C154.29,112.23,154.7,111.65,154.7,110.4z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M165.93,137.21h2.26v-7.17h-1.85v-1.02c0.97-0.18,1.65-0.42,2.24-0.78h1.22v8.98h2.02v1.33h-5.88
V137.21z"/>
<path style="fill:#424252;" d="M173.09,137.35l0.77-1.05c0.59,0.59,1.33,1.11,2.41,1.11c1.16,0,2.05-0.83,2.05-2.2
s-0.78-2.16-1.96-2.16c-0.66,0-1.05,0.2-1.65,0.59l-0.78-0.52l0.31-4.89h5.22v1.36h-3.82l-0.24,2.65
c0.43-0.22,0.85-0.36,1.41-0.36c1.72,0,3.14,1.02,3.14,3.28c0,2.28-1.67,3.57-3.47,3.57
C174.84,138.72,173.81,138.06,173.09,137.35z"/>
<path style="fill:#424252;" d="M181.08,132.84c0-1.63,0.76-2.55,1.89-2.55s1.9,0.92,1.9,2.55c0,1.63-0.77,2.58-1.9,2.58
S181.08,134.47,181.08,132.84z M183.95,132.84c0-1.25-0.41-1.8-0.98-1.8c-0.56,0-0.97,0.55-0.97,1.8c0,1.24,0.41,1.83,0.97,1.83
C183.55,134.66,183.95,134.08,183.95,132.84z M187.66,130.29h0.8l-4.44,8.39h-0.79L187.66,130.29z M186.83,136.12
c0-1.63,0.77-2.55,1.9-2.55c1.12,0,1.89,0.92,1.89,2.55c0,1.63-0.77,2.56-1.89,2.56C187.6,138.68,186.83,137.75,186.83,136.12z
M189.7,136.12c0-1.25-0.41-1.8-0.97-1.8c-0.57,0-0.98,0.55-0.98,1.8c0,1.24,0.41,1.83,0.98,1.83
C189.29,137.94,189.7,137.36,189.7,136.12z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M200.93,137.21h2.26v-7.17h-1.85v-1.02c0.97-0.18,1.65-0.42,2.24-0.78h1.22v8.98h2.02v1.33h-5.88
V137.21z"/>
<path style="fill:#424252;" d="M215.27,135.76h-1.32v2.77h-1.51v-2.77h-4.45v-1.08l4.1-6.46h1.86v6.29h1.32V135.76z
M212.44,134.52v-2.7c0-0.56,0.06-1.43,0.08-1.99h-0.06c-0.25,0.52-0.53,1.05-0.83,1.58l-2.03,3.11H212.44z"/>
<path style="fill:#424252;" d="M216.08,132.84c0-1.63,0.76-2.55,1.89-2.55s1.9,0.92,1.9,2.55c0,1.63-0.77,2.58-1.9,2.58
S216.08,134.47,216.08,132.84z M218.95,132.84c0-1.25-0.41-1.8-0.98-1.8c-0.56,0-0.97,0.55-0.97,1.8c0,1.24,0.41,1.83,0.97,1.83
C218.55,134.67,218.95,134.08,218.95,132.84z M222.66,130.29h0.8l-4.44,8.39h-0.79L222.66,130.29z M221.83,136.12
c0-1.63,0.77-2.55,1.9-2.55c1.12,0,1.89,0.92,1.89,2.55c0,1.63-0.77,2.56-1.89,2.56C222.6,138.68,221.83,137.75,221.83,136.12z
M224.7,136.12c0-1.25-0.41-1.8-0.97-1.8c-0.57,0-0.98,0.55-0.98,1.8c0,1.24,0.41,1.83,0.98,1.83
C224.29,137.94,224.7,137.36,224.7,136.12z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M235.93,137.21h2.26v-7.17h-1.85v-1.02c0.97-0.18,1.65-0.42,2.24-0.78h1.22v8.98h2.02v1.33h-5.88
V137.21z"/>
<path style="fill:#424252;" d="M243.1,137.3l0.78-1.04c0.6,0.62,1.37,1.13,2.44,1.13c1.16,0,1.96-0.64,1.96-1.71
c0-1.15-0.73-1.89-3.05-1.89v-1.19c2.03,0,2.7-0.77,2.7-1.81c0-0.91-0.6-1.48-1.58-1.5c-0.8,0.01-1.47,0.41-2.06,0.98l-0.84-1.01
c0.81-0.73,1.76-1.25,2.96-1.25c1.85,0,3.15,0.95,3.15,2.66c0,1.19-0.69,2.02-1.78,2.42v0.07c1.19,0.29,2.13,1.19,2.13,2.58
c0,1.86-1.55,2.96-3.45,2.96C244.84,138.72,243.79,138.08,243.1,137.3z"/>
<path style="fill:#424252;" d="M251.08,132.84c0-1.63,0.76-2.55,1.89-2.55s1.9,0.92,1.9,2.55c0,1.63-0.77,2.58-1.9,2.58
S251.08,134.47,251.08,132.84z M253.95,132.84c0-1.25-0.41-1.8-0.98-1.8c-0.56,0-0.97,0.55-0.97,1.8c0,1.24,0.41,1.83,0.97,1.83
C253.55,134.67,253.95,134.08,253.95,132.84z M257.66,130.29h0.8l-4.44,8.39h-0.79L257.66,130.29z M256.83,136.12
c0-1.63,0.77-2.55,1.9-2.55c1.12,0,1.89,0.92,1.89,2.55c0,1.63-0.77,2.56-1.89,2.56C257.6,138.68,256.83,137.75,256.83,136.12z
M259.7,136.12c0-1.25-0.41-1.8-0.97-1.8c-0.57,0-0.98,0.55-0.98,1.8c0,1.24,0.41,1.83,0.98,1.83
C259.29,137.94,259.7,137.36,259.7,136.12z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M85.31,81.31h-2.32v5.21h-4.65v-5.21H69.6v-3.45l7.25-12.18h6.13v11.84h2.32V81.31z M78.34,77.53
v-3.05c0-1.32,0.14-3.3,0.2-4.62h-0.11c-0.53,1.18-1.09,2.38-1.68,3.56l-2.38,4.12H78.34z"/>
<path style="fill:#424252;" d="M86.54,81.34c0-2.6,1.48-4.23,3.42-5.26v-0.14c-1.62-1.2-2.72-2.8-2.72-5.01
c0-3.47,2.74-5.63,6.61-5.63c3.75,0,6.24,2.18,6.24,5.57c0,1.99-1.2,3.64-2.63,4.62v0.14c1.99,1.04,3.5,2.77,3.5,5.63
c0,3.22-2.91,5.66-7.28,5.66C89.59,86.91,86.54,84.65,86.54,81.34z M96.34,81.06c0-1.82-1.6-2.61-4.14-3.7
c-0.84,0.81-1.4,2.07-1.4,3.39c0,1.71,1.37,2.69,3,2.69C95.22,83.44,96.34,82.71,96.34,81.06z M96.06,71.21
c0-1.51-0.87-2.46-2.35-2.46c-1.12,0-2.1,0.7-2.1,2.18c0,1.65,1.29,2.55,3.33,3.36C95.72,73.33,96.06,72.27,96.06,71.21z"/>
<path style="fill:#424252;" d="M101.88,77.63c0-2.53,1.34-4,3.2-4s3.21,1.46,3.21,4c0,2.53-1.36,4.04-3.21,4.04
S101.88,80.16,101.88,77.63z M106.18,77.63c0-1.77-0.51-2.33-1.1-2.33s-1.1,0.56-1.1,2.33c0,1.77,0.51,2.38,1.1,2.38
S106.18,79.4,106.18,77.63z M112.34,73.64h1.73l-6.83,13.12h-1.72L112.34,73.64z M111.3,82.71c0-2.53,1.36-4.01,3.2-4.01
c1.84,0,3.2,1.48,3.2,4.01s-1.36,4.04-3.2,4.04C112.66,86.76,111.3,85.25,111.3,82.71z M115.58,82.71c0-1.79-0.49-2.33-1.09-2.33
s-1.12,0.54-1.12,2.33c0,1.77,0.53,2.36,1.12,2.36S115.58,84.48,115.58,82.71z"/>
</g>
</g>
<g>
<rect x="73.32" y="90.49" style="fill:#00ACEE;" width="40.5" height="77.64"/>
<path style="fill:#FFFFFF;" d="M113.57,90.74v77.14h-40V90.74H113.57 M114.07,90.24h-0.5h-40h-0.5v0.5v77.14v0.5h0.5h40h0.5v-0.5
V90.74V90.24L114.07,90.24z"/>
</g>
<g>
<rect x="130.37" y="118.06" style="fill:#97E2EC;" width="25" height="49.82"/>
</g>
<g>
<rect x="165.37" y="143.78" style="fill:#80D5F6;" width="25" height="24.11"/>
</g>
<g>
<rect x="200.37" y="145.39" style="fill:#97E2EC;" width="25" height="22.5"/>
</g>
<g>
<rect x="235.37" y="146.99" style="fill:#80D5F6;" width="25" height="20.89"/>
</g>
<g>
<g>
<path style="fill:#424252;" d="M10.02,20.53c0-3.33,1.9-5.41,4.37-6.73v-0.18c-2.08-1.54-3.48-3.58-3.48-6.41
c0-4.44,3.51-7.2,8.46-7.2c4.8,0,7.99,2.79,7.99,7.13c0,2.54-1.54,4.66-3.37,5.91v0.18c2.54,1.33,4.48,3.55,4.48,7.2
c0,4.12-3.73,7.24-9.32,7.24C13.92,27.66,10.02,24.76,10.02,20.53z M22.56,20.17c0-2.33-2.04-3.33-5.3-4.73
c-1.07,1.04-1.79,2.65-1.79,4.34c0,2.19,1.76,3.44,3.83,3.44C21.12,23.22,22.56,22.29,22.56,20.17z M22.2,7.56
c0-1.94-1.11-3.15-3.01-3.15c-1.43,0-2.69,0.9-2.69,2.79c0,2.12,1.65,3.26,4.26,4.3C21.77,10.28,22.2,8.92,22.2,7.56z"/>
<path style="fill:#424252;" d="M30.19,23.5c6.66-6.05,11.14-10.89,11.14-14.76c0-2.44-1.36-3.76-3.48-3.76
c-1.83,0-3.26,1.22-4.51,2.58l-3.48-3.44C32.48,1.36,34.92,0,38.72,0c5.16,0,8.74,3.3,8.74,8.38c0,4.59-3.94,9.64-8.03,13.76
c1.33-0.18,3.15-0.36,4.34-0.36h4.91v5.38H30.19V23.5z"/>
<path style="fill:#424252;" d="M49.65,16.22c0-3.12,1.65-4.91,3.93-4.91s3.95,1.8,3.95,4.91s-1.67,4.97-3.95,4.97
S49.65,19.34,49.65,16.22z M54.94,16.22c0-2.17-0.63-2.86-1.36-2.86s-1.36,0.69-1.36,2.86s0.63,2.93,1.36,2.93
S54.94,18.4,54.94,16.22z M62.51,11.31h2.13l-8.4,16.14h-2.11L62.51,11.31z M61.23,22.47c0-3.12,1.67-4.93,3.93-4.93
c2.26,0,3.93,1.82,3.93,4.93s-1.67,4.98-3.93,4.98C62.91,27.45,61.23,25.59,61.23,22.47z M66.5,22.47c0-2.2-0.61-2.86-1.34-2.86
s-1.38,0.67-1.38,2.86c0,2.17,0.65,2.91,1.38,2.91S66.5,24.65,66.5,22.47z"/>
</g>
</g>
<g>
<rect x="15.03" y="32.51" style="fill:#2FC5D9;" width="40.75" height="135.75"/>
<path style="fill:#FFFFFF;" d="M55.4,32.89v135h-40v-135H55.4 M56.15,32.14H55.4h-40h-0.75v0.75v135v0.75h0.75h40h0.75v-0.75v-135
V32.14L56.15,32.14z"/>
</g>
<g>
<line style="fill:none;stroke:#CCCCCC;stroke-width:2;stroke-miterlimit:10;" x1="0" y1="167.88" x2="270" y2="167.88"/>
</g>
<g>
<g>
<path style="fill:#424252;" d="M41.88,185.93c-0.62-0.56-1.94-1.3-2.96-1.74l0.99-1.42c1.01,0.38,2.37,1.06,3.03,1.6L41.88,185.93
z M39.45,191.9c0.82-1.2,1.97-3.19,2.9-5.03l1.42,1.23c-0.8,1.68-1.76,3.51-2.69,5.04L39.45,191.9z M42.78,181.67
c-0.59-0.58-1.91-1.34-2.93-1.79l1.04-1.41c1.02,0.38,2.35,1.09,3.01,1.65L42.78,181.67z M48.09,184.71
c-0.11,0.54-0.24,1.09-0.35,1.6h5.23c0,0-0.02,0.51-0.05,0.77c-0.27,3.47-0.59,4.98-1.15,5.57c-0.43,0.46-0.93,0.61-1.6,0.67
c-0.56,0.05-1.55,0.05-2.58,0c-0.05-0.56-0.3-1.3-0.64-1.83c0.99,0.1,2.02,0.11,2.46,0.11c0.32,0,0.51-0.03,0.74-0.19
c0.32-0.27,0.56-1.3,0.74-3.41h-3.55l-0.21,0.78l-1.95-0.24c0.3-1.06,0.62-2.42,0.94-3.84h-2.46v-1.76h2.85
c0.13-0.64,0.24-1.28,0.35-1.89h-2.51v-1.78h8.88v1.78h-4.39c-0.11,0.61-0.24,1.25-0.37,1.89h5.38v1.76H48.09z"/>
<path style="fill:#424252;" d="M53.79,206.67c-0.74,0.69-1.66,1.17-2.93,1.17c-1.15,0-1.95-0.85-1.95-2.35
c0-1.68,0.56-3.95,0.56-5.36c0-0.77-0.38-1.15-1.04-1.15c-1.15,0-2.85,1.44-4.1,2.82c-0.02,0.45-0.03,0.86-0.03,1.26
c0,1.26,0,2.58,0.1,4.03c0.02,0.27,0.06,0.85,0.11,1.18h-2.15c0.03-0.32,0.05-0.9,0.05-1.15c0.03-1.2,0.03-2.08,0.05-3.38
c-0.66,0.96-1.42,2.1-1.95,2.83l-1.22-1.71c0.88-1.07,2.45-3.12,3.33-4.43l0.06-1.09c-0.75,0.1-1.94,0.24-2.82,0.37l-0.19-2
c0.43,0.02,0.8,0.02,1.34-0.02c0.45-0.03,1.14-0.11,1.79-0.21c0.03-0.58,0.06-1.01,0.06-1.18c0-0.45,0.02-0.9-0.06-1.38l2.26,0.06
c-0.1,0.43-0.21,1.23-0.34,2.19l0.58,0.75c-0.21,0.27-0.53,0.75-0.78,1.17c-0.02,0.11-0.02,0.22-0.03,0.34
c1.22-1.06,3.01-2.3,4.51-2.3c1.66,0,2.43,0.99,2.43,2.29c0,1.6-0.51,3.89-0.51,5.49c0,0.43,0.21,0.69,0.59,0.69
c0.58,0,1.31-0.38,2-1.1L53.79,206.67z"/>
<path style="fill:#424252;" d="M45.11,213.64c0.51-0.03,0.98-0.06,1.3-0.06c1.65,0,2.8,0.74,2.8,2.96c0,1.82-0.22,4.31-0.86,5.65
c-0.53,1.09-1.38,1.42-2.56,1.42c-0.58,0-1.33-0.1-1.86-0.21l-0.34-2.07c0.59,0.18,1.5,0.32,1.9,0.32c0.51,0,0.91-0.14,1.15-0.66
c0.43-0.86,0.64-2.72,0.64-4.26c0-1.22-0.53-1.41-1.52-1.41c-0.24,0-0.62,0.03-1.06,0.06c-0.61,2.34-1.73,5.99-3.15,8.29
l-2.03-0.82c1.5-2.02,2.56-5.14,3.14-7.25c-0.56,0.06-1.06,0.13-1.34,0.16c-0.45,0.06-1.25,0.16-1.71,0.26l-0.19-2.11
c0.56,0.05,1.1,0.02,1.66,0c0.48-0.02,1.2-0.06,1.99-0.13c0.22-1.18,0.35-2.3,0.34-3.3l2.32,0.26c-0.1,0.4-0.21,0.9-0.29,1.28
L45.11,213.64z M51.26,212.6c0.93,1.44,2.08,4.03,2.53,5.41l-1.98,0.91c-0.4-1.71-1.5-4.45-2.61-5.84l1.44-0.61
c-0.3-0.59-0.7-1.34-1.07-1.86l1.25-0.51c0.4,0.58,0.94,1.58,1.25,2.16L51.26,212.6z M52.68,212.07
c-0.32-0.66-0.83-1.57-1.25-2.16l1.23-0.51c0.4,0.59,0.99,1.58,1.26,2.14L52.68,212.07z"/>
<path style="fill:#424252;" d="M44.41,225.69c-0.1,0.66-0.18,1.46-0.21,2.07c-0.06,1.68-0.18,5.15-0.18,7.07
c0,1.57,0.94,2.08,2.13,2.08c2.58,0,4.19-1.47,5.33-3.17l1.39,1.73c-0.99,1.49-3.19,3.55-6.74,3.55c-2.54,0-4.18-1.12-4.18-3.76
c0-2.08,0.14-6.16,0.14-7.51c0-0.74-0.06-1.46-0.19-2.08L44.41,225.69z"/>
<path style="fill:#424252;" d="M44.14,242.63c1.01-0.3,3.49-1.15,5.25-1.15c2.42,0,4.1,1.5,4.1,3.65c0,2.77-2.38,4.71-7.22,4.96
l-0.8-1.86c3.33-0.06,6.04-0.96,6.04-3.12c0-0.98-0.72-1.92-2.21-1.92c-1.87,0-4.79,1.28-6.08,1.84l-0.8-2
C42.94,242.95,43.67,242.76,44.14,242.63z"/>
<path style="fill:#424252;" d="M45.22,255.45c0.51-0.03,0.98-0.06,1.3-0.06c1.65,0,2.8,0.74,2.8,2.96c0,1.82-0.22,4.31-0.88,5.67
c-0.51,1.07-1.36,1.42-2.54,1.42c-0.59,0-1.34-0.11-1.86-0.22l-0.34-2.07c0.59,0.18,1.49,0.34,1.89,0.34
c0.53,0,0.91-0.16,1.17-0.67c0.42-0.86,0.62-2.72,0.62-4.26c0-1.22-0.53-1.41-1.5-1.41c-0.24,0-0.62,0.03-1.06,0.06
c-0.61,2.35-1.73,6-3.15,8.29l-2.03-0.82c1.5-2.02,2.56-5.14,3.12-7.25c-0.56,0.06-1.04,0.13-1.33,0.16
c-0.45,0.06-1.25,0.16-1.73,0.26l-0.18-2.11c0.56,0.05,1.07,0.02,1.65,0c0.48-0.02,1.22-0.06,2-0.13c0.21-1.18,0.35-2.3,0.32-3.28
l2.3,0.24c-0.08,0.42-0.18,0.9-0.26,1.28L45.22,255.45z M51.16,254.02c0.94,1.33,2.26,4.27,2.72,5.76l-1.97,0.93
c-0.4-1.73-1.5-4.53-2.61-5.92L51.16,254.02z"/>
<path style="fill:#424252;" d="M44.39,267.64c-0.21,0.75-0.51,2.35-0.61,3.2c0.74-1.18,2.1-2.5,3.83-2.5
c2.18,0,3.84,2.11,3.84,5.54c0,4.39-2.69,6.47-6.8,7.22l-1.17-1.79c3.44-0.53,5.87-1.67,5.87-5.41c0-2.39-0.8-3.73-2.1-3.73
c-1.83,0-3.44,2.75-3.51,4.79c-0.03,0.42-0.02,0.93,0.08,1.65l-1.92,0.13c-0.1-0.61-0.19-1.55-0.19-2.59
c0-1.44,0.19-3.36,0.43-4.98c0.06-0.56,0.11-1.17,0.13-1.6L44.39,267.64z"/>
<path style="fill:#424252;" d="M41.62,291.92c-0.59-0.48-1.81-1.25-2.71-1.76l1.12-1.28c0.85,0.43,2.1,1.14,2.74,1.62
L41.62,291.92z M39.21,295.87c0.88-0.85,2.14-2.27,3.2-3.62l1.14,1.38c-0.91,1.23-1.97,2.54-2.98,3.71L39.21,295.87z
M42.66,284.97h-3.35v-1.67h3.35v-0.88h1.86v0.88h3.68v-0.88h1.86v0.88h3.44v1.67h-3.44v1.06H48.2v-1.06h-3.68v1.06h-1.86V284.97z
M41.02,285.74c0.85,0.43,2.11,1.12,2.75,1.55l-1.14,1.42c-0.61-0.43-1.86-1.2-2.71-1.68L41.02,285.74z M52.97,287.38
c-0.66,1.01-1.55,1.87-2.59,2.64c1.2,0.45,2.51,0.83,3.76,1.09c-0.4,0.37-0.9,1.07-1.15,1.52c-0.22-0.05-0.46-0.11-0.69-0.18v4.88
h-1.87v-0.64h-4.26v0.64h-1.79v-4.61c-0.21,0.05-0.43,0.11-0.64,0.16c-0.18-0.43-0.59-1.15-0.93-1.5
c1.39-0.27,2.82-0.72,4.11-1.28c-0.46-0.3-0.93-0.64-1.36-0.98c-0.43,0.43-0.91,0.86-1.44,1.25c-0.3-0.35-0.91-0.9-1.31-1.14
c1.58-1.06,2.82-2.47,3.54-3.6l1.82,0.37c-0.16,0.24-0.34,0.48-0.51,0.72h3.79l0.3-0.08L52.97,287.38z M51.95,292.35
c-1.1-0.34-2.22-0.75-3.26-1.28c-0.98,0.51-2,0.93-3.06,1.28H51.95z M50.43,295.24v-1.46h-4.26v1.46H50.43z M46.84,288.11
c0.48,0.4,1.09,0.77,1.78,1.12c0.58-0.35,1.1-0.72,1.54-1.12H46.84z"/>
<path style="fill:#424252;" d="M50.99,301.74c-1.62,0.26-4.11,0.56-6.19,0.66c-0.21,0.9-0.43,1.81-0.66,2.53
c1.25-0.69,2.42-0.98,3.84-0.98c2.51,0,4.18,1.34,4.18,3.33c0,3.49-3.36,4.75-8.39,4.21l-0.54-2c3.41,0.54,6.83,0.14,6.83-2.16
c0-0.91-0.8-1.68-2.32-1.68c-1.78,0-3.38,0.64-4.27,1.82c-0.18,0.19-0.3,0.4-0.45,0.67l-1.84-0.66c0.72-1.39,1.33-3.38,1.73-5.06
c-0.96-0.02-1.87-0.06-2.62-0.14v-1.94c0.93,0.16,2.05,0.29,2.99,0.3c0.06-0.3,0.1-0.58,0.13-0.8c0.08-0.66,0.1-1.04,0.08-1.55
l2.21,0.08c-0.18,0.56-0.27,1.09-0.38,1.58l-0.13,0.64c1.78-0.1,3.89-0.34,5.78-0.74L50.99,301.74z"/>
<path style="fill:#424252;" d="M52.01,318.44c-0.94-1.18-2.27-2.53-3.38-3.47l1.65-1.39c1.1,0.9,2.61,2.45,3.42,3.42L52.01,318.44
z"/>
<path style="fill:#424252;" d="M19.78,185.9c-0.61-0.54-1.87-1.25-2.88-1.68l1.01-1.42c0.99,0.35,2.32,0.98,2.96,1.52L19.78,185.9
z M17.35,191.95c0.8-1.22,1.95-3.23,2.87-5.11l1.44,1.18c-0.8,1.7-1.74,3.54-2.64,5.11L17.35,191.95z M20.55,181.62
c-0.58-0.56-1.82-1.3-2.83-1.73l1.04-1.42c0.98,0.38,2.26,1.06,2.9,1.58L20.55,181.62z M31.9,183.14v1.36H21.43v-1.36h4.18v-0.66
h-3.25v-1.28h3.25v-0.61h-3.68v-1.36h3.68v-0.83h1.89v0.83h3.89v1.36H27.5v0.61h3.46v1.28H27.5v0.66H31.9z M30.73,191.45
c0,0.85-0.16,1.3-0.75,1.55c-0.56,0.27-1.36,0.29-2.46,0.29c-0.06-0.48-0.3-1.18-0.51-1.62c0.66,0.02,1.41,0.02,1.62,0
c0.21,0,0.29-0.05,0.29-0.24v-0.99h-4.35v2.88h-1.76v-8.23h7.94V191.45z M24.55,186.49v0.7h4.35v-0.7H24.55z M28.91,189.18v-0.77
h-4.35v0.77H28.91z"/>
<path style="fill:#424252;" d="M19.4,201.72c-0.53-0.5-1.62-1.14-2.5-1.54l1.04-1.39c0.88,0.34,2.02,0.9,2.56,1.39L19.4,201.72z
M20.78,204.06c-0.53,1.71-1.23,3.55-1.89,5.12l-1.71-0.98c0.59-1.23,1.44-3.26,2.06-5.14L20.78,204.06z M19.99,197.56
c-0.51-0.51-1.6-1.22-2.48-1.62l1.07-1.41c0.86,0.37,1.99,1.01,2.53,1.49L19.99,197.56z M24.83,206.92
c-0.77,0.86-1.95,1.78-2.93,2.34c-0.34-0.32-1.04-0.86-1.44-1.12c0.99-0.46,2.03-1.15,2.64-1.83L24.83,206.92z M30.76,206.47
c-0.14-0.21-0.34-0.45-0.54-0.69c-1.02,0.03-2.05,0.08-3.06,0.11v3.44h-1.86v-3.38c-1.58,0.05-3.06,0.1-4.26,0.13l-0.11-1.55
c0.83-0.02,1.81-0.03,2.9-0.05l0.42-0.27c-0.75-0.53-1.7-1.09-2.51-1.46l1.07-1.14c0.27,0.11,0.58,0.24,0.86,0.4
c0.42-0.43,0.85-0.91,1.17-1.33l-3.78,0.5l-0.24-1.5c0.58-0.05,1.26-0.13,2.02-0.19v-0.86h-1.46v-1.23h1.46v-0.72h-1.67v-1.3h1.67
v-0.98h1.68v0.98h1.57v1.3h-1.57v0.72h1.41v1.23h-1.41v0.69l1.58-0.18l0.03,0.91c0.8-0.82,1.12-1.97,1.22-3.41h-0.94v-1.49h5.17
c0,0-0.02,0.42-0.03,0.62c-0.06,3.22-0.16,4.48-0.51,4.93c-0.26,0.34-0.54,0.46-0.94,0.51c-0.32,0.08-0.88,0.08-1.46,0.06
c-0.03-0.45-0.18-1.04-0.38-1.44c-0.29,0.64-0.69,1.18-1.22,1.63c-0.22-0.26-0.78-0.67-1.18-0.91l-0.61,0.08l1.31,0.67
c-0.54,0.5-1.09,0.99-1.6,1.41c0.26,0.14,0.5,0.3,0.72,0.46c0.83-0.64,1.63-1.31,2.22-1.9l1.62,0.77
c-0.96,0.82-2.08,1.65-3.17,2.38l2.45-0.06c-0.22-0.21-0.45-0.4-0.67-0.58l1.23-0.78c0.96,0.74,2.16,1.81,2.71,2.58L30.76,206.47z
M28.94,206.12c0.99,0.58,2.27,1.42,2.93,2.05l-1.39,0.98c-0.59-0.59-1.84-1.52-2.83-2.11L28.94,206.12z M28.99,196.65
c-0.1,1.23-0.3,2.29-0.72,3.15c0.42,0.03,0.79,0.05,0.99,0.05c0.18,0,0.29-0.03,0.42-0.18c0.14-0.22,0.22-0.99,0.27-3.03H28.99z"
/>
<path style="fill:#424252;" d="M21.22,211c-0.13,0.3-0.32,1.1-0.38,1.39c-0.22,1.02-0.75,4.13-0.75,5.68
c0,0.29,0.02,0.67,0.05,0.98c0.24-0.53,0.48-1.06,0.69-1.55l0.99,0.75c-0.45,1.3-0.96,2.99-1.12,3.81
c-0.05,0.21-0.08,0.56-0.08,0.72s0,0.43,0.02,0.66l-1.79,0.11c-0.3-1.07-0.61-2.98-0.61-5.07c0-2.34,0.48-4.96,0.64-6.15
c0.06-0.43,0.16-1.02,0.16-1.52L21.22,211z M24.84,218.65c-0.13,0.51-0.18,0.9-0.18,1.31c0,0.69,0.58,1.1,2.16,1.1
c1.39,0,2.54-0.13,3.89-0.4l0.05,2.08c-1.01,0.19-2.26,0.32-4.02,0.32c-2.69,0-3.95-0.98-3.95-2.56c0-0.66,0.11-1.3,0.27-2.02
L24.84,218.65z M30.27,212.02v2c-1.9,0.16-4.72,0.18-6.66,0l-0.02-2C25.5,212.28,28.6,212.21,30.27,212.02z"/>
<path style="fill:#424252;" d="M22.26,225.99c-0.42,1.04-0.91,2.13-1.49,3.15v11.16h-1.81v-8.37c-0.4,0.51-0.8,0.99-1.22,1.42
c-0.18-0.46-0.7-1.49-1.02-1.95c1.49-1.44,2.95-3.71,3.78-5.99L22.26,225.99z M28.57,234.75c0.94,1.39,2.32,2.71,3.67,3.49
c-0.43,0.37-1.04,1.04-1.34,1.52c-1.17-0.83-2.34-2.13-3.25-3.55v4.13h-1.92v-4.05c-0.98,1.41-2.19,2.62-3.46,3.44
c-0.29-0.46-0.88-1.15-1.31-1.52c1.44-0.75,2.87-2.05,3.86-3.46h-3.28v-1.73h4.19v-1.44h-3.14v-5.49h8.4v5.49h-3.35v1.44h4.13
v1.73H28.57z M24.39,229.9h4.69v-2.14h-4.69V229.9z"/>
<path style="fill:#424252;" d="M19.29,243.51c1.3-0.1,3.86-0.34,6.69-0.59c1.6-0.13,3.3-0.22,4.39-0.26l0.02,1.99
c-0.83,0.02-2.16,0.02-2.99,0.22c-1.87,0.5-3.28,2.46-3.28,4.31c0,2.54,2.4,3.46,5.03,3.6l-0.74,2.14
c-3.25-0.21-6.32-1.97-6.32-5.33c0-2.24,1.25-3.97,2.29-4.75c-1.34,0.16-4.61,0.5-6.4,0.88l-0.19-2.13
C18.38,243.58,18.98,243.54,19.29,243.51z"/>
<path style="fill:#424252;" d="M28.46,258.76c-0.37,0.22-0.74,0.45-1.07,0.69c-0.83,0.59-2.29,1.86-3.25,2.64
c0.51-0.14,0.91-0.19,1.41-0.19c2.64,0,4.64,1.58,4.64,3.92c0,2.46-2.06,4.4-5.92,4.4c-2.07,0-3.47-0.99-3.47-2.54
c0-1.25,1.14-2.42,2.79-2.42c1.87,0,3.03,1.12,3.3,2.56c0.83-0.46,1.28-1.17,1.28-2.07c0-1.34-1.3-2.24-3.11-2.24
c-2.32,0-3.99,1.33-5.59,3.2l-1.46-1.44c1.09-0.9,2.93-2.5,3.84-3.26c0.85-0.74,2.3-2,3.07-2.67c-0.8,0.02-2.62,0.11-3.44,0.16
c-0.45,0.03-0.91,0.06-1.28,0.13l-0.06-2.02c0.43,0.05,0.96,0.08,1.42,0.08c0.8,0,3.83-0.08,4.72-0.16
c0.62-0.05,0.98-0.11,1.17-0.18L28.46,258.76z M25.08,268.35c-0.13-0.96-0.67-1.58-1.5-1.58c-0.58,0-0.96,0.32-0.96,0.74
c0,0.58,0.54,0.9,1.46,0.9C24.43,268.4,24.76,268.38,25.08,268.35z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M176.6,184.21c0.98-0.27,1.99-0.42,2.82-0.42c2.02,0,3.54,1.06,3.54,2.74
c0,1.57-0.94,2.66-2.93,3.12c-0.62,0.14-1.23,0.16-1.72,0.19l-0.49-1.33c0.55,0,1.13,0,1.62-0.08c1.15-0.2,2.13-0.79,2.13-1.9
c0-1.02-0.94-1.58-2.17-1.58c-0.94,0-1.88,0.16-2.77,0.45c0.01,1.09,0.06,2.19,0.06,2.7c0,1.39-0.53,1.79-1.33,1.79
c-1.18,0-2.98-1.04-2.98-2.32c0-1.1,1.4-2.27,2.98-2.95v-0.81c0-0.45,0-0.95,0.01-1.44c-0.34,0.03-0.63,0.04-0.88,0.04
c-0.62,0-1.25-0.01-1.79-0.07l-0.03-1.28c0.77,0.09,1.3,0.11,1.79,0.11c0.28,0,0.59-0.01,0.92-0.04c0-0.58,0.01-1.07,0.01-1.32
c0-0.27-0.04-0.79-0.08-1.02h1.48c-0.03,0.23-0.07,0.69-0.08,1c-0.01,0.31-0.03,0.73-0.06,1.21c0.95-0.12,1.92-0.3,2.66-0.52
l0.04,1.32c-0.78,0.16-1.79,0.33-2.73,0.45c-0.01,0.52-0.03,1.03-0.03,1.49V184.21z M175.42,187.89c0-0.41-0.03-1.17-0.04-2.02
c-0.98,0.48-1.67,1.13-1.67,1.67c0,0.52,0.8,0.96,1.26,0.96C175.26,188.5,175.42,188.33,175.42,187.89z M180.87,180.25
c1,0.49,2.52,1.37,3.21,1.87l-0.67,1.07c-0.66-0.58-2.28-1.51-3.14-1.94L180.87,180.25z"/>
<path style="fill:#424252;" d="M175.89,191.3c-0.07,0.48-0.13,1.03-0.15,1.51c-0.06,1.45-0.15,4.48-0.15,6.31
c0,1.38,0.91,1.85,2.06,1.85c2.38,0,3.8-1.3,4.78-2.7l0.97,1.17c-0.9,1.25-2.73,2.95-5.77,2.95c-2.06,0-3.45-0.87-3.45-3.06
c0-1.86,0.14-5.24,0.14-6.52c0-0.56-0.04-1.09-0.15-1.52L175.89,191.3z"/>
<path style="fill:#424252;" d="M175.94,204.03c-0.25,0.83-0.52,2.4-0.6,3.25c0.59-1.21,1.9-2.61,3.54-2.61
c1.83,0,3.21,1.77,3.21,4.59c0,3.68-2.35,5.36-5.83,5.98l-0.81-1.21c2.97-0.43,5.2-1.51,5.2-4.75c0-2.05-0.7-3.38-2-3.38
c-1.65,0-3.14,2.35-3.26,4.09c-0.06,0.42-0.04,0.88,0.04,1.51l-1.33,0.09c-0.07-0.5-0.15-1.28-0.15-2.13
c0-1.24,0.22-3.04,0.39-4.24c0.07-0.45,0.1-0.9,0.11-1.24L175.94,204.03z"/>
<path style="fill:#424252;" d="M172.79,220.87c0.67-0.67,1.78-2.11,2.59-3.03c0.85-0.96,1.65-1.09,2.59-0.18
c0.84,0.83,1.92,2.16,2.76,3.03c0.84,0.91,2.1,2.2,3.36,3.29l-1.11,1.22c-1.01-0.92-2.21-2.21-3.11-3.23
c-0.87-0.96-1.89-2.23-2.54-2.91c-0.53-0.56-0.78-0.49-1.22,0.03c-0.57,0.73-1.64,2.13-2.27,2.91c-0.29,0.37-0.6,0.8-0.83,1.11
l-1.3-1.29C172.1,221.54,172.4,221.27,172.79,220.87z"/>
<path style="fill:#424252;" d="M177.67,235.9c0.48-0.04,0.87-0.12,1.2-0.18c1.74-0.39,3.29-1.62,3.29-3.73
c0-1.92-1.19-3.42-3.28-3.67c-0.17,1.18-0.42,2.46-0.81,3.69c-0.81,2.67-1.93,4.18-3.29,4.18c-1.33,0-2.56-1.48-2.56-3.67
c0-2.93,2.66-5.47,6.08-5.47c3.25,0,5.31,2.21,5.31,4.97s-1.82,4.66-5.13,5.11L177.67,235.9z M176.7,231.73
c0.34-1.03,0.59-2.23,0.74-3.38c-2.44,0.38-3.85,2.43-3.85,4.06c0,1.51,0.69,2.2,1.23,2.2
C175.41,234.61,176.07,233.77,176.7,231.73z"/>
<path style="fill:#424252;" d="M174.42,239.71c0.1,0.22,0.36,0.71,0.5,0.94c0.22,0.41,0.48,0.88,0.71,1.39
c1.64-0.69,3.38-1.37,4.78-1.37c1.99,0,3.19,1.14,3.19,2.62c0,1.66-1.13,2.81-3.25,2.81c-0.74,0-1.54-0.19-2.04-0.38l0.04-1.32
c0.55,0.24,1.23,0.45,1.89,0.45c1.29,0,1.95-0.69,1.95-1.62c0-0.75-0.62-1.37-1.81-1.37c-1.12,0-2.7,0.58-4.22,1.26
c0.15,0.33,0.31,0.65,0.45,0.96c0.7,1.55,1.62,4.16,2.1,5.62l-1.48,0.37c-0.43-1.6-1.11-3.76-1.85-5.42l-0.43-0.96
c-1.01,0.49-1.92,0.95-2.52,1.21l-0.66-1.36c0.46-0.11,0.99-0.29,1.22-0.38c0.45-0.16,0.92-0.38,1.43-0.6
c-0.24-0.49-0.48-0.94-0.7-1.3c-0.17-0.3-0.46-0.72-0.7-1.03L174.42,239.71z M178.24,240.77c-0.49-0.47-1.21-1.14-1.76-1.53
l0.98-0.69c0.48,0.35,1.3,1,1.79,1.49L178.24,240.77z"/>
<path style="fill:#424252;" d="M182.74,253.28c-0.77,0.2-1.61,0.39-2.45,0.54c0.49,1.06,1.19,2.46,1.79,3.53l-0.77,0.8
c-0.66-0.14-2-0.33-2.94-0.43l0.13-1.07c0.49,0.05,1.36,0.14,1.79,0.18c-0.36-0.73-0.94-1.89-1.36-2.78
c-1.71,0.19-3.63,0.18-5.74,0.01l-0.04-1.34c1.96,0.24,3.73,0.24,5.22,0.11c-0.13-0.29-0.25-0.54-0.38-0.82
c-0.22-0.53-0.35-0.77-0.62-1.18l1.54-0.29c0.28,0.79,0.55,1.4,0.84,2.09c0.94-0.16,1.83-0.37,2.72-0.65L182.74,253.28z
M175.19,257.11c-0.2,0.46-0.38,1.22-0.38,1.62c0,1.06,0.67,1.72,2.65,1.72c1.83,0,2.66-0.16,3.63-0.35l-0.03,1.37
c-0.8,0.15-1.82,0.31-3.6,0.31c-2.62,0-4.03-0.98-4.03-2.7c0-0.58,0.15-1.36,0.36-2.09L175.19,257.11z"/>
<path style="fill:#424252;" d="M175.89,263.51c-0.07,0.48-0.13,1.03-0.15,1.51c-0.06,1.45-0.15,4.48-0.15,6.32
c0,1.39,0.91,1.85,2.06,1.85c2.38,0,3.8-1.3,4.78-2.7l0.97,1.17c-0.9,1.25-2.73,2.95-5.77,2.95c-2.06,0-3.45-0.87-3.45-3.05
c0-1.86,0.14-5.24,0.14-6.52c0-0.56-0.04-1.09-0.15-1.52L175.89,263.51z"/>
<path style="fill:#424252;" d="M182.74,278.32c-0.77,0.2-1.61,0.39-2.45,0.54c0.49,1.06,1.19,2.46,1.79,3.53l-0.77,0.8
c-0.66-0.14-2-0.33-2.94-0.43l0.13-1.07c0.49,0.05,1.36,0.13,1.79,0.18c-0.36-0.73-0.94-1.89-1.36-2.78
c-1.71,0.19-3.63,0.18-5.74,0.01l-0.04-1.34c1.96,0.24,3.73,0.24,5.22,0.11c-0.13-0.29-0.25-0.54-0.38-0.81
c-0.22-0.53-0.35-0.77-0.62-1.18l1.54-0.29c0.28,0.79,0.55,1.4,0.84,2.09c0.94-0.16,1.83-0.37,2.72-0.65L182.74,278.32z
M175.19,282.15c-0.2,0.46-0.38,1.22-0.38,1.62c0,1.06,0.67,1.72,2.65,1.72c1.83,0,2.66-0.16,3.63-0.35l-0.03,1.37
c-0.8,0.15-1.82,0.31-3.6,0.31c-2.62,0-4.03-0.98-4.03-2.7c0-0.58,0.15-1.36,0.36-2.09L175.19,282.15z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M137.68,183.73c0.63-0.61,1.77-1.93,2.68-2.92c0.77-0.84,1.42-0.93,2.46-0.1
c0.88,0.66,1.96,1.73,2.83,2.59c0.92,0.92,2.35,2.32,3.36,3.39l-1.16,1.15c-0.92-1.09-2.17-2.43-3.03-3.35
c-0.9-0.95-2.06-2.1-2.62-2.55c-0.53-0.4-0.74-0.39-1.18,0.1c-0.62,0.68-1.71,2.02-2.3,2.72c-0.28,0.36-0.6,0.77-0.83,1.07
l-1.27-1.2C137.01,184.32,137.29,184.08,137.68,183.73z M146.74,178.81c0.95,0,1.72,0.71,1.72,1.6c0,0.86-0.77,1.57-1.72,1.57
c-0.95,0-1.71-0.71-1.71-1.57C145.03,179.52,145.79,178.81,146.74,178.81z M146.74,181.28c0.53,0,0.95-0.4,0.95-0.88
c0-0.49-0.42-0.88-0.95-0.88c-0.52,0-0.95,0.39-0.95,0.88C145.79,180.88,146.22,181.28,146.74,181.28z"/>
<path style="fill:#424252;" d="M141.81,197.76c0.1-0.6,0.1-1.33,0.1-1.76c0-0.63,0.01-5.05,0.01-5.89c0-0.36,0-0.97-0.1-1.4h1.76
c-0.1,0.42-0.1,1.04-0.1,1.39v5.9c0,0.34,0,1.16,0.1,1.76H141.81z"/>
<path style="fill:#424252;" d="M140.17,200.37l1.57,0.31c-0.11,0.31-0.24,0.79-0.29,1.06c-0.18,0.84-0.67,2.65-1.22,3.9
c-0.49,1.19-1.27,2.54-2.02,3.53l-1.5-0.58c0.85-1.04,1.65-2.39,2.13-3.46C139.44,203.75,140,201.9,140.17,200.37z M143.63,200.65
l1.42-0.42c0.56,0.94,1.47,2.77,2.02,4.06c0.53,1.21,1.27,3.18,1.64,4.38l-1.57,0.46c-0.38-1.38-0.95-3.04-1.51-4.4
C145.07,203.41,144.22,201.6,143.63,200.65z M147.74,198.58c0.87,0,1.58,0.64,1.58,1.46s-0.71,1.46-1.58,1.46
c-0.88,0-1.6-0.64-1.6-1.46S146.85,198.58,147.74,198.58z M147.74,200.82c0.46,0,0.87-0.35,0.87-0.79c0-0.42-0.41-0.79-0.87-0.79
c-0.48,0-0.85,0.36-0.85,0.79C146.88,200.47,147.26,200.82,147.74,200.82z"/>
<path style="fill:#424252;" d="M141.81,219.73c0.1-0.6,0.1-1.33,0.1-1.76c0-0.63,0.01-5.05,0.01-5.89c0-0.36,0-0.98-0.1-1.4h1.76
c-0.1,0.42-0.1,1.04-0.1,1.39v5.9c0,0.34,0,1.16,0.1,1.76H141.81z"/>
<path style="fill:#424252;" d="M138.36,222.29c1-0.08,3.42-0.3,5.9-0.5c1.46-0.12,2.82-0.18,3.74-0.21l0.01,1.26
c-0.76,0-1.93,0.01-2.65,0.19c-1.79,0.49-2.98,2.2-2.98,3.68c0,2.27,2.3,3.01,4.54,3.1l-0.5,1.35c-2.65-0.13-5.44-1.44-5.44-4.19
c0-1.88,1.19-3.34,2.28-3.99c-1.18,0.13-4.51,0.42-6.02,0.72l-0.14-1.36C137.64,222.34,138.1,222.31,138.36,222.29z M147.22,225.9
l-0.85,0.36c-0.34-0.64-0.67-1.22-1.09-1.76l0.83-0.33C146.43,224.6,146.94,225.38,147.22,225.9z M148.79,225.32l-0.85,0.37
c-0.34-0.63-0.7-1.18-1.13-1.73l0.81-0.35C147.95,224.05,148.48,224.81,148.79,225.32z"/>
<path style="fill:#424252;" d="M140.94,238.46c-0.49,0.13-0.98,0.26-1.47,0.39v3.34c0,0.62-0.14,0.93-0.55,1.09
c-0.41,0.19-1.04,0.22-1.99,0.22c-0.04-0.3-0.22-0.79-0.39-1.08c0.62,0.01,1.22,0.01,1.39,0.01c0.2-0.01,0.27-0.06,0.27-0.26
v-2.98c-0.52,0.13-1.02,0.25-1.47,0.36l-0.35-1.15c0.52-0.12,1.15-0.26,1.82-0.41v-2.59h-1.65v-1.11h1.65v-2.52h1.27v2.52h1.36
v1.11h-1.36v2.28l1.32-0.32L140.94,238.46z M145.59,240.9l0.08,1.08c-1.61,0.3-3.33,0.59-4.61,0.82l-0.31-1.15
c0.53-0.08,1.19-0.18,1.91-0.28v-3.08h-1.37v-1.11h3.87v1.11h-1.29v2.88L145.59,240.9z M146.73,235.49
c0.17,3.74,0.62,6.48,1.22,6.5c0.21,0.01,0.36-0.68,0.43-1.88c0.22,0.26,0.81,0.58,1.04,0.68c-0.32,2.29-0.95,2.79-1.48,2.79
c-1.67-0.03-2.27-3.21-2.49-8.1h-4.27v-1.15h4.22c-0.03-0.8-0.04-1.62-0.06-2.49h1.32c0,0.86,0.01,1.69,0.04,2.49h2.38v1.15
H146.73z M148.32,234.25c-0.25-0.5-0.85-1.27-1.39-1.83l0.88-0.5c0.55,0.54,1.18,1.27,1.46,1.75L148.32,234.25z"/>
<path style="fill:#424252;" d="M145.82,245.28c-0.34,0.23-0.77,0.57-1.04,0.76c-0.91,0.71-2.79,2.05-3.74,2.79
c-0.78,0.61-0.78,0.77,0.04,1.39c1.13,0.88,3.68,2.77,5.01,3.97l-1.23,1.04c-0.34-0.35-0.71-0.7-1.05-1
c-0.74-0.73-2.93-2.43-4.17-3.39c-1.32-1-1.18-1.64,0.1-2.6c1.04-0.8,3.01-2.23,3.92-3.08c0.32-0.28,0.71-0.66,0.9-0.93
L145.82,245.28z"/>
<path style="fill:#424252;" d="M149.19,263.38h-5.62v2.52c0,0.79-0.24,1.12-0.83,1.3c-0.57,0.19-1.53,0.22-2.97,0.21
c-0.08-0.32-0.34-0.86-0.55-1.18c1.12,0.04,2.24,0.04,2.56,0.03c0.31,0,0.42-0.09,0.42-0.36v-2.51h-5.63v-1.17h5.63v-1.83h-4.68
v-1.15h4.68v-1.75c-1.5,0.12-3.03,0.21-4.44,0.26c-0.01-0.3-0.18-0.79-0.31-1.04c3.31-0.14,7.26-0.48,9.44-1.06l0.97,0.98
c-1.22,0.32-2.7,0.54-4.3,0.72v1.89h4.82v1.15h-4.82v1.83h5.62V263.38z"/>
<path style="fill:#424252;" d="M138.42,272.94v6.83h-1.29v-11.31h5.17v4.48H138.42z M138.42,269.36v0.89h2.65v-0.89H138.42z
M141.07,272.05v-0.95h-2.65v0.95H141.07z M148.7,278.27c0,0.68-0.15,1.07-0.66,1.27c-0.49,0.19-1.26,0.21-2.44,0.21
c-0.06-0.32-0.24-0.84-0.41-1.17h-3.78v0.64h-1.19v-5.4h5.25v4.71c0.69,0.03,1.36,0.01,1.58,0.01c0.25-0.01,0.32-0.08,0.32-0.3
v-5.29h-3.98v-4.51h5.29V278.27z M141.42,274.73v1h2.84v-1H141.42z M144.26,277.68v-1.07h-2.84v1.07H144.26z M144.65,269.36v0.89
h2.73v-0.89H144.65z M147.39,272.08v-0.98h-2.73v0.98H147.39z"/>
<path style="fill:#424252;" d="M142.03,280.98c-0.06,0.27-0.14,0.58-0.2,0.85c-0.07,0.37-0.2,0.98-0.32,1.56
c0.56-0.04,1.05-0.06,1.36-0.06c1.3,0,2.31,0.5,2.31,2.24c0,1.47-0.21,3.45-0.79,4.51c-0.45,0.85-1.15,1.08-2.09,1.08
c-0.52,0-1.18-0.08-1.61-0.18l-0.24-1.31c0.56,0.15,1.3,0.27,1.67,0.27c0.49,0,0.87-0.1,1.11-0.59c0.42-0.77,0.6-2.34,0.6-3.64
c0-1.07-0.52-1.24-1.37-1.24c-0.28,0-0.73,0.03-1.23,0.06c-0.49,1.83-1.44,4.7-2.8,6.68l-1.4-0.53c1.34-1.66,2.31-4.33,2.8-6.03
c-0.62,0.06-1.18,0.12-1.48,0.15c-0.35,0.04-0.97,0.12-1.34,0.18l-0.13-1.37c0.45,0.03,0.85,0.01,1.3,0s1.18-0.06,1.93-0.13
c0.18-0.91,0.32-1.84,0.31-2.67L142.03,280.98z M146.92,282.6c0.81,1.12,1.82,3.14,2.23,4.21l-1.36,0.59
c-0.38-1.33-1.42-3.52-2.37-4.58l1.29-0.5c0.06,0.08,0.13,0.15,0.2,0.24c-0.28-0.51-0.73-1.25-1.09-1.71l0.9-0.33
c0.34,0.45,0.84,1.24,1.11,1.73L146.92,282.6z M148.51,282.06c-0.28-0.54-0.74-1.26-1.11-1.74l0.87-0.33
c0.36,0.46,0.88,1.25,1.13,1.71L148.51,282.06z"/>
<path style="fill:#424252;" d="M146.77,295.11c-1.01,1.06-2.45,1.84-4.1,2.43h4.83v6.49h-1.32v-0.39h-5.69v0.45h-1.25v-5.62
c-0.67,0.14-1.36,0.26-2.03,0.36c-0.17-0.28-0.56-0.8-0.83-1.06c3.75-0.41,7.44-1.37,9.15-3.18L146.77,295.11z M140.82,293.25
c-0.78,1.13-2.06,2.21-3.19,2.9c-0.22-0.22-0.73-0.64-1.02-0.84c1.13-0.58,2.28-1.49,2.97-2.43L140.82,293.25z M143.52,295.13
c0,0.58-0.15,0.86-0.66,1.03c-0.5,0.17-1.22,0.17-2.21,0.17c-0.1-0.32-0.32-0.75-0.52-1.04c0.76,0.04,1.57,0.04,1.78,0.03
c0.24-0.01,0.31-0.05,0.31-0.21v-2.86h1.3V295.13z M146.18,298.46h-5.69v0.85h5.69V298.46z M140.49,301.02h5.69v-0.88h-5.69
V301.02z M146.18,302.73v-0.86h-5.69v0.86H146.18z M146.19,292.79c1.09,0.68,2.42,1.69,3.07,2.41l-1.12,0.67
c-0.59-0.71-1.89-1.76-2.97-2.49L146.19,292.79z"/>
<path style="fill:#424252;" d="M139.72,305.3c-0.1,0.26-0.22,0.64-0.28,0.9c-0.39,1.61-0.85,4.16-0.42,5.99
c0.18-0.46,0.45-1.15,0.69-1.69l0.7,0.4c-0.34,0.97-0.73,2.23-0.9,2.88c-0.04,0.18-0.07,0.44-0.07,0.58
c0.01,0.12,0.03,0.31,0.04,0.45l-1.19,0.13c-0.28-0.76-0.74-2.43-0.74-3.99c0-2.03,0.32-3.83,0.49-4.87
c0.06-0.31,0.07-0.67,0.08-0.93L139.72,305.3z M148.6,308.63c-0.59,0.08-1.33,0.14-2.11,0.19v0.39c0,2.9-0.11,4.83-2.9,6.4
l-1.26-0.91c0.48-0.18,1.08-0.53,1.44-0.86c1.27-1.09,1.4-2.37,1.4-4.64v-0.31c-0.55,0.01-1.09,0.03-1.62,0.03
c-0.63,0-1.53-0.04-2.16-0.08v-1.27c0.63,0.09,1.4,0.14,2.13,0.14c0.52,0,1.08-0.01,1.64-0.04c-0.03-0.72-0.04-1.44-0.07-1.78
c-0.03-0.27-0.08-0.59-0.15-0.79h1.58c-0.04,0.23-0.04,0.5-0.06,0.77c-0.01,0.28,0,1,0.01,1.73c0.78-0.06,1.53-0.14,2.14-0.26
L148.6,308.63z"/>
<path style="fill:#424252;" d="M146.24,317.73c-0.27,0.18-0.59,0.35-0.84,0.51c-0.69,0.46-2.17,1.69-3.12,2.42
c0.55-0.15,1.01-0.22,1.53-0.22c2.28,0,3.96,1.24,3.96,3.03c0,2.01-1.91,3.42-5.01,3.42c-1.79,0-2.89-0.79-2.89-1.89
c0-0.93,0.9-1.78,2.24-1.78c1.65,0,2.62,0.95,2.83,2.11c0.91-0.39,1.43-1.04,1.43-1.91c0-1.16-1.2-1.94-2.87-1.94
c-2.07,0-3.49,1-5.03,2.56l-1.01-0.91c1.04-0.82,2.69-2.12,3.49-2.74c0.74-0.59,2.19-1.75,2.87-2.31
c-0.71,0.03-2.79,0.12-3.5,0.15c-0.34,0.03-0.7,0.04-1.01,0.09l-0.03-1.3c0.34,0.04,0.76,0.05,1.08,0.05
c0.7,0,3.54-0.08,4.29-0.14c0.46-0.04,0.7-0.08,0.87-0.12L146.24,317.73z M143.69,325.67c-0.11-0.88-0.7-1.47-1.58-1.47
c-0.56,0-0.97,0.3-0.97,0.68c0,0.54,0.57,0.85,1.49,0.85C143,325.74,143.35,325.71,143.69,325.67z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M210.61,178.85c-0.35,0.99-0.81,2-1.32,2.96v9.08h-1.23v-7.08c-0.32,0.43-0.63,0.83-0.97,1.18
c-0.11-0.3-0.49-0.98-0.73-1.26c1.22-1.28,2.34-3.27,3.01-5.24L210.61,178.85z M215.31,186.53c-0.14,0.79-0.43,1.52-0.97,2.19
c1.4,0.53,3.15,0.81,5.13,0.94c-0.29,0.29-0.62,0.81-0.78,1.17c-2.05-0.18-3.81-0.56-5.27-1.22c-0.71,0.53-1.68,0.98-2.94,1.34
c-0.15-0.3-0.53-0.8-0.8-1.03c1.12-0.24,1.96-0.57,2.59-0.94c-0.74-0.49-1.37-1.07-1.86-1.78l1.13-0.38
c0.41,0.56,0.97,1.01,1.67,1.4c0.48-0.52,0.7-1.09,0.83-1.68h-3.19v-5.24h3.32v-1h-3.61v-1.1h8.53v1.1h-3.63v1h3.22v5.24H215.31z
M212.05,183.46h2.12v-1.22h-2.12V183.46z M214.15,185.58c0.01-0.2,0.01-0.43,0.01-0.64v-0.58h-2.12v1.22H214.15z M217.4,184.36
h-1.95v0.6c0,0.2,0,0.42-0.01,0.62h1.96V184.36z M215.45,182.24v1.22h1.95v-1.22H215.45z"/>
<path style="fill:#424252;" d="M210.77,199.65c-0.18-0.33-0.55-0.9-0.91-1.41v5.83h-1.25v-5.55c-0.48,1.25-1.08,2.46-1.67,3.25
c-0.13-0.37-0.43-0.88-0.63-1.18c0.76-0.94,1.55-2.57,2.04-3.99h-1.85v-1.18h2.1v-1.86c-0.6,0.12-1.22,0.22-1.79,0.29
c-0.06-0.27-0.22-0.68-0.38-0.96c1.5-0.23,3.22-0.61,4.2-1.03l0.91,0.94c-0.5,0.19-1.08,0.37-1.7,0.52v2.12h1.61v1.18h-1.61v0.39
c0.39,0.35,1.43,1.47,1.68,1.77L210.77,199.65z M216.68,202.82c0.46,0,0.53-0.35,0.59-2.01c0.28,0.22,0.8,0.43,1.15,0.52
c-0.14,2.01-0.46,2.65-1.62,2.65h-1.74c-1.26,0-1.61-0.39-1.62-1.75c-0.62,0.54-1.29,1.05-2.03,1.51c-0.18-0.27-0.6-0.69-0.92-0.9
c1.12-0.68,2.1-1.47,2.96-2.35v-6.06h1.26v4.55c1.39-1.91,2.3-4.17,2.84-6.64l1.21,0.26c-0.31,1.33-0.7,2.57-1.18,3.73l0.6-0.16
c0.66,1.25,1.19,2.88,1.32,3.96l-1.19,0.33c-0.08-0.95-0.49-2.35-1-3.52c-0.69,1.49-1.54,2.84-2.6,4.03v1.2
c0,0.56,0.08,0.65,0.55,0.65H216.68z M210.91,200.38c0.63-1,0.92-2.61,1.02-4.06l1.05,0.19c-0.14,1.51-0.39,3.29-1.07,4.33
L210.91,200.38z M215.79,194.56c-0.55-0.64-1.72-1.51-2.73-2.06l0.83-0.8c0.99,0.52,2.2,1.32,2.77,1.96L215.79,194.56z"/>
<path style="fill:#424252;" d="M215.82,206.51c-0.28,1.59-0.92,2.84-2.65,3.59c-0.13-0.23-0.38-0.57-0.62-0.79v6.64
c0,0.54-0.11,0.9-0.49,1.09c-0.39,0.18-0.95,0.19-1.86,0.19c-0.06-0.29-0.24-0.79-0.41-1.06c0.67,0.01,1.26,0.01,1.43,0.01
c0.18-0.01,0.25-0.07,0.25-0.25v-2.21h-3.11c-0.13,1.26-0.42,2.57-1.08,3.54c-0.2-0.16-0.67-0.45-0.92-0.56
c0.94-1.43,1.04-3.42,1.04-4.94v-2.16l-0.13,0.15c-0.21-0.19-0.69-0.58-0.95-0.75c0.97-1.02,1.71-2.59,2.12-4.24l1.19,0.26
c-0.1,0.33-0.2,0.65-0.31,0.98h1.47l0.18-0.05l0.76,0.46c-0.22,0.57-0.53,1.22-0.84,1.79h1.67v0.98c1.33-0.57,1.83-1.52,2.06-2.68
h-1.74v-1.04h6.09c0,0,0,0.3-0.01,0.43c-0.1,2.2-0.22,3.11-0.52,3.44c-0.2,0.24-0.43,0.34-0.8,0.38
c-0.29,0.04-0.85,0.04-1.42,0.01c-0.03-0.33-0.14-0.76-0.29-1.05c0.49,0.05,0.94,0.05,1.13,0.05c0.18,0.01,0.29-0.01,0.38-0.12
c0.15-0.16,0.25-0.72,0.32-2.11H215.82z M208.92,206.99c-0.18,0.42-0.38,0.84-0.59,1.22h1.43c0.18-0.35,0.36-0.8,0.52-1.22H208.92
z M208.45,211.78c0,0.31,0,0.64-0.01,0.98h1.08v-1.37h-1.06V211.78z M208.45,210.45h1.06v-1.29h-1.06V210.45z M210.42,210.45h1.05
v-1.29h-1.05V210.45z M211.47,212.76v-1.37h-1.05v1.37H211.47z M219.35,214.79h-2.55v2.39h-1.23v-2.39h-2.77v-1.1h2.77v-1.47
h-1.37c-0.2,0.46-0.42,0.87-0.66,1.21c-0.22-0.16-0.71-0.39-0.98-0.5c0.57-0.76,0.98-1.86,1.21-2.99l1.08,0.22
c-0.07,0.33-0.15,0.65-0.25,0.98h0.98v-1.3h1.23v1.3h2.28v1.09h-2.28v1.47h2.55V214.79z"/>
<path style="fill:#424252;" d="M208.9,224.18c-0.52-0.49-1.58-1.18-2.46-1.62l0.74-0.9c0.87,0.39,1.96,1.03,2.51,1.53
L208.9,224.18z M206.84,229.5c0.67-1.03,1.64-2.77,2.38-4.35l0.95,0.77c-0.64,1.44-1.46,3.08-2.19,4.39L206.84,229.5z
M207.85,218.11c0.85,0.39,1.92,1.04,2.44,1.53l-0.81,0.98c-0.49-0.5-1.53-1.2-2.39-1.64L207.85,218.11z M212.12,221.39
c-0.21-0.68-0.77-1.75-1.34-2.53l1.11-0.47c0.58,0.75,1.18,1.77,1.42,2.44L212.12,221.39z M218.46,228.96c0,0.65-0.14,1-0.6,1.19
c-0.45,0.2-1.16,0.22-2.23,0.22c-0.06-0.33-0.24-0.87-0.41-1.2c0.71,0.04,1.47,0.04,1.68,0.03s0.28-0.07,0.28-0.26v-1.33h-4.73
v2.81h-1.28v-8.66h3.03v-3.8h1.32v3.8h2.94V228.96z M212.46,222.94v1.25h4.73v-1.25H212.46z M217.19,226.54v-1.28h-4.73v1.28
H217.19z M219.02,218.77c-0.46,0.91-1.02,1.89-1.5,2.54l-1.12-0.44c0.46-0.69,1.07-1.76,1.37-2.57L219.02,218.77z"/>
<path style="fill:#424252;" d="M209.88,231.85c-0.1,0.23-0.24,0.76-0.29,1c-0.22,1.07-0.66,3.54-0.66,4.94
c0,0.47,0.01,0.91,0.08,1.38c0.21-0.53,0.49-1.17,0.69-1.64l0.7,0.53c-0.35,0.99-0.83,2.4-0.97,3.07
c-0.03,0.18-0.07,0.45-0.06,0.6c0,0.12,0.01,0.33,0.03,0.49l-1.25,0.08c-0.27-0.92-0.52-2.47-0.52-4.25
c0-1.96,0.45-4.21,0.59-5.24c0.06-0.34,0.11-0.76,0.13-1.1L209.88,231.85z M213,238.27c-0.11,0.45-0.17,0.8-0.17,1.15
c0,0.6,0.45,1.07,2.1,1.07c1.22,0,2.26-0.11,3.38-0.34l0.03,1.4c-0.85,0.16-1.98,0.27-3.43,0.27c-2.31,0-3.38-0.77-3.38-2.05
c0-0.52,0.11-1.05,0.24-1.63L213,238.27z M217.92,232.79v1.36c-1.56,0.14-4.12,0.15-5.69,0v-1.34
C213.79,233.02,216.52,232.98,217.92,232.79z"/>
<path style="fill:#424252;" d="M213.86,246.64c-0.67,0.18-1.51,0.35-2.41,0.48c-0.66,1.85-1.76,4.05-2.87,5.5l-1.32-0.65
c1.11-1.28,2.19-3.23,2.77-4.71c-0.32,0.03-0.64,0.03-0.97,0.03c-0.53,0-1.11-0.03-1.64-0.07l-0.1-1.28
c0.5,0.09,1.18,0.16,1.72,0.16c0.45,0,0.91-0.01,1.39-0.05c0.2-0.69,0.35-1.45,0.38-2.13l1.5,0.13c-0.11,0.45-0.28,1.13-0.48,1.82
c0.69-0.11,1.37-0.26,1.99-0.45L213.86,246.64z M215.54,248.01c-0.04,0.57-0.01,1.02,0,1.55c0.01,0.42,0.04,1.15,0.08,1.88
c1.16,0.42,2.1,1.07,2.79,1.66l-0.71,1.13c-0.53-0.46-1.2-1.02-2.02-1.45v0.34c0,1.11-0.7,2.02-2.49,2.02
c-1.57,0-2.84-0.67-2.84-2.02c0-1.24,1.16-2.11,2.84-2.11c0.39,0,0.77,0.03,1.13,0.1c-0.04-1.02-0.11-2.21-0.14-3.08H215.54z
M214.36,252.25c-0.39-0.11-0.81-0.16-1.25-0.16c-0.9,0-1.5,0.37-1.5,0.9c0,0.57,0.46,0.94,1.4,0.94c1.01,0,1.36-0.56,1.36-1.22
C214.37,252.57,214.37,252.42,214.36,252.25z M218.07,248.53c-0.74-0.61-2.25-1.44-3.18-1.83l0.7-1.03
c0.98,0.42,2.58,1.29,3.25,1.76L218.07,248.53z"/>
<path style="fill:#424252;" d="M216.24,258.06c-0.27,0.19-0.59,0.37-0.84,0.54c-0.69,0.49-2.17,1.78-3.12,2.55
c0.55-0.16,1.01-0.23,1.53-0.23c2.28,0,3.96,1.3,3.96,3.19c0,2.12-1.91,3.61-5.01,3.61c-1.79,0-2.89-0.83-2.89-2
c0-0.98,0.9-1.87,2.24-1.87c1.65,0,2.62,1,2.83,2.23c0.91-0.41,1.43-1.1,1.43-2.01c0-1.22-1.2-2.05-2.87-2.05
c-2.07,0-3.49,1.06-5.03,2.7l-1.01-0.96c1.04-0.87,2.69-2.24,3.49-2.89c0.74-0.62,2.19-1.85,2.87-2.43
c-0.71,0.03-2.79,0.12-3.5,0.16c-0.34,0.03-0.7,0.04-1.01,0.1l-0.03-1.37c0.34,0.04,0.76,0.05,1.08,0.05
c0.7,0,3.54-0.08,4.29-0.15c0.46-0.04,0.7-0.08,0.87-0.12L216.24,258.06z M213.69,266.44c-0.11-0.92-0.7-1.55-1.58-1.55
c-0.56,0-0.97,0.31-0.97,0.72c0,0.57,0.57,0.9,1.49,0.9C213,266.51,213.35,266.48,213.69,266.44z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M244.77,180.71v3.18c0,2.13-0.28,5.13-2.09,7.02c-0.18-0.23-0.66-0.71-0.92-0.86
c1.04-1.1,1.48-2.51,1.67-3.88c-0.58,0.34-1.16,0.68-1.71,0.98l-0.41-1.15c0.57-0.26,1.37-0.64,2.23-1.09
c0.01-0.35,0.01-0.69,0.01-1.02v-4.29h4.33v-1.15h1.36v1.15h5.01v1.11H244.77z M242.41,183.79c-0.11-0.68-0.52-1.75-0.95-2.57
l0.95-0.43c0.45,0.79,0.9,1.83,1.01,2.5L242.41,183.79z M251.99,185.23v1.13h2.16v1.03h-2.16v2.2c0,0.62-0.13,0.94-0.6,1.11
c-0.46,0.16-1.16,0.16-2.17,0.16c-0.06-0.33-0.22-0.77-0.38-1.09c0.73,0.03,1.43,0.03,1.62,0.01c0.21,0,0.28-0.05,0.28-0.23v-2.17
h-5.41v-1.03h5.41v-1.13h-5.6v-1.06h3.88v-1.14h-2.98v-0.99h2.98v-1.06h1.29v1.06h3.21v0.99h-3.21v1.14h4.02v1.06H251.99z
M247.22,187.51c0.62,0.56,1.32,1.3,1.61,1.89l-1.04,0.56c-0.27-0.56-0.92-1.36-1.54-1.93L247.22,187.51z"/>
<path style="fill:#424252;" d="M248.86,194.68c-0.67,0.18-1.51,0.35-2.41,0.48c-0.66,1.85-1.76,4.05-2.87,5.5l-1.32-0.65
c1.11-1.28,2.19-3.23,2.77-4.71c-0.32,0.03-0.64,0.03-0.97,0.03c-0.53,0-1.11-0.03-1.64-0.07l-0.1-1.28
c0.5,0.09,1.18,0.16,1.72,0.16c0.45,0,0.91-0.01,1.39-0.05c0.2-0.69,0.35-1.45,0.38-2.13l1.5,0.14c-0.11,0.45-0.28,1.13-0.48,1.82
c0.69-0.11,1.37-0.26,1.99-0.45L248.86,194.68z M250.54,196.05c-0.04,0.57-0.01,1.02,0,1.55c0.01,0.42,0.04,1.15,0.08,1.87
c1.16,0.42,2.1,1.07,2.79,1.66l-0.71,1.13c-0.53-0.46-1.2-1.02-2.02-1.45v0.34c0,1.11-0.7,2.02-2.49,2.02
c-1.57,0-2.84-0.67-2.84-2.02c0-1.24,1.16-2.11,2.84-2.11c0.39,0,0.77,0.03,1.13,0.1c-0.04-1.02-0.11-2.21-0.14-3.08H250.54z
M249.36,200.29c-0.39-0.11-0.81-0.16-1.25-0.16c-0.9,0-1.5,0.37-1.5,0.9c0,0.57,0.46,0.94,1.4,0.94c1.01,0,1.36-0.56,1.36-1.22
C249.37,200.62,249.37,200.47,249.36,200.29z M253.07,196.57c-0.74-0.61-2.25-1.44-3.18-1.83l0.7-1.03
c0.98,0.42,2.58,1.29,3.25,1.77L253.07,196.57z"/>
<path style="fill:#424252;" d="M251.35,207.71c-0.36,0.22-0.73,0.41-1.18,0.62c-0.88,0.45-2.3,1.07-3.59,1.9
c-1.2,0.76-1.95,1.58-1.95,2.53c0,1.02,1.01,1.63,3.03,1.63c1.44,0,3.28-0.2,4.4-0.46l-0.03,1.49c-1.06,0.18-2.58,0.33-4.31,0.33
c-2.62,0-4.55-0.73-4.55-2.84c0-1.38,0.92-2.49,2.3-3.44c-0.62-1.11-1.3-2.59-1.92-3.98l1.34-0.54c0.53,1.41,1.19,2.74,1.76,3.78
c1.11-0.64,2.23-1.17,2.91-1.55c0.43-0.24,0.79-0.43,1.09-0.69L251.35,207.71z M251.57,204.76c0.35,0.48,0.84,1.3,1.12,1.82
l-0.9,0.38c-0.28-0.54-0.73-1.34-1.11-1.85L251.57,204.76z M253.14,204.19c0.35,0.49,0.88,1.33,1.13,1.81l-0.9,0.38
c-0.29-0.57-0.74-1.33-1.12-1.83L253.14,204.19z"/>
<path style="fill:#424252;" d="M247.67,226.95c0.48-0.04,0.87-0.12,1.2-0.18c1.74-0.39,3.29-1.62,3.29-3.73
c0-1.91-1.19-3.42-3.28-3.67c-0.17,1.18-0.42,2.46-0.81,3.69c-0.81,2.68-1.93,4.18-3.29,4.18c-1.33,0-2.56-1.48-2.56-3.67
c0-2.93,2.66-5.47,6.08-5.47c3.25,0,5.31,2.21,5.31,4.97s-1.82,4.66-5.13,5.11L247.67,226.95z M246.7,222.78
c0.34-1.03,0.59-2.23,0.74-3.38c-2.44,0.38-3.85,2.43-3.85,4.06c0,1.51,0.69,2.2,1.23,2.2
C245.41,225.66,246.07,224.82,246.7,222.78z"/>
<path style="fill:#424252;" d="M241.42,240.76c0.97-0.6,1.6-1.62,1.91-2.66l1.15,0.39c-0.36,1.17-0.92,2.29-1.97,3L241.42,240.76z
M243.83,237.42h-1.21v-3.39h4.55v-0.76h-4.09v-2.89h4.09v-0.98h1.29v0.98h4.3v2.89h-4.3v0.76h4.73v3.37h-1.26v-0.37h-3.47v0.8
h-0.49c0.5,0.34,0.95,0.72,1.23,1.03l-0.91,0.75c-0.43-0.54-1.39-1.26-2.21-1.74l0.85-0.68l0.24,0.14v-0.3h-3.35V237.42z
M243.83,234.97v1.11h3.35v-1.11H243.83z M247.17,232.34v-1.05h-2.89v1.05H247.17z M249.42,240.57c0.56,0,0.66-0.16,0.71-1.32
c0.27,0.19,0.81,0.38,1.16,0.45c-0.15,1.6-0.53,2-1.75,2h-2.47c-1.57,0-1.95-0.34-1.95-1.52v-1.97h1.28v1.96
c0,0.35,0.13,0.41,0.81,0.41H249.42z M248.46,231.29v1.05h3.01v-1.05H248.46z M248.46,234.97v1.11h3.47v-1.11H248.46z
M251.75,238.02c1.01,0.79,2.07,1.92,2.54,2.8l-1.16,0.64c-0.39-0.84-1.43-2.02-2.42-2.85L251.75,238.02z"/>
<path style="fill:#424252;" d="M241.47,247.7h7.17v1.15h-7.17V247.7z M248.46,245.08h-6.65v-1.1h2.69v-1.34h1.26v1.34h2.7V245.08z
M242.36,249.9h5.59v5.08h-1.28v-0.68h-3.11v0.73h-1.21V249.9z M243.2,247.62c-0.06-0.57-0.28-1.45-0.55-2.1l1.08-0.23
c0.31,0.64,0.53,1.52,0.62,2.08L243.2,247.62z M243.56,251.01v2.19h3.11v-2.19H243.56z M245.82,247.39
c0.25-0.58,0.55-1.54,0.7-2.17l1.23,0.27c-0.31,0.76-0.62,1.6-0.9,2.16L245.82,247.39z M254.35,243.88
c-0.55,1.29-1.22,2.85-1.82,4.03c1.29,1.24,1.6,2.29,1.6,3.22c0,0.91-0.21,1.55-0.71,1.87c-0.27,0.18-0.57,0.27-0.94,0.33
c-0.32,0.04-0.76,0.03-1.15,0.03c-0.01-0.37-0.14-0.9-0.35-1.25c0.36,0.03,0.7,0.04,0.95,0.03c0.22-0.01,0.41-0.05,0.56-0.15
c0.28-0.16,0.38-0.52,0.38-1c0-0.79-0.36-1.78-1.65-2.91c0.5-1.06,1.05-2.49,1.44-3.54h-2.23v10.5h-1.27v-11.68h4.02l0.21-0.05
L254.35,243.88z"/>
<path style="fill:#424252;" d="M247.67,265.6c0.48-0.04,0.87-0.12,1.2-0.18c1.74-0.39,3.29-1.62,3.29-3.73
c0-1.92-1.19-3.42-3.28-3.67c-0.17,1.18-0.42,2.46-0.81,3.69c-0.81,2.67-1.93,4.18-3.29,4.18c-1.33,0-2.56-1.48-2.56-3.67
c0-2.93,2.66-5.47,6.08-5.47c3.25,0,5.31,2.21,5.31,4.97c0,2.76-1.82,4.66-5.13,5.11L247.67,265.6z M246.7,261.43
c0.34-1.03,0.59-2.23,0.74-3.38c-2.44,0.38-3.85,2.43-3.85,4.06c0,1.51,0.69,2.2,1.23,2.2
C245.41,264.31,246.07,263.46,246.7,261.43z"/>
<path style="fill:#424252;" d="M252.29,271.02c0.34,0,0.92-0.03,1.34-0.09v1.44c-0.48-0.03-1.04-0.04-1.34-0.04h-2.16
c-0.25,3.69-1.74,6-4.15,7.48l-1.47-0.96c0.43-0.16,0.88-0.41,1.19-0.65c1.4-1.03,2.75-2.74,2.94-5.87h-3.25
c-0.56,0.99-1.46,2.16-2.27,2.84l-1.37-0.8c0.99-0.69,1.93-1.98,2.42-2.81c0.38-0.64,0.63-1.33,0.8-1.85
c0.11-0.35,0.2-0.79,0.22-1.2l1.68,0.33c-0.13,0.31-0.29,0.72-0.39,0.99c-0.13,0.34-0.28,0.77-0.46,1.19H252.29z"/>
<path style="fill:#424252;" d="M253.95,282.71c-0.13,0.15-0.35,0.39-0.45,0.57c-0.59,0.96-1.91,2.66-3.38,3.67l-1.13-0.88
c1.19-0.68,2.4-2.01,2.8-2.76h-7.55c-0.53,0-1.02,0.03-1.61,0.07v-1.47c0.5,0.07,1.08,0.12,1.61,0.12h7.69
c0.32,0,0.92-0.04,1.15-0.09L253.95,282.71z M248.41,284.47c0,3.49-0.22,6.06-3.84,7.86l-1.26-1c0.41-0.12,0.9-0.35,1.32-0.65
c1.98-1.24,2.28-2.92,2.28-5.13c0-0.35-0.01-0.68-0.07-1.07H248.41z"/>
</g>
</g>
<line style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="35.24" y1="270.22" x2="35.24" y2="177.88"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="57.24" y1="318.45" x2="57.24" y2="177.88"/>
<g>
<g>
<path style="fill:#424252;" d="M98.38,184.62c-0.03,3.84,0.18,6.87,1.1,6.87c0.24-0.02,0.3-0.85,0.34-2.15
c0.37,0.43,0.85,0.91,1.23,1.18c-0.14,2-0.48,2.85-1.71,2.85c-2.34,0-2.8-3.06-2.9-7.16h-8.58v-1.33l-0.14,0.13
c-0.37-0.32-1.26-0.93-1.73-1.2c1.58-1.2,2.79-3.27,3.41-5.47l1.99,0.42c-0.13,0.4-0.26,0.8-0.4,1.18h9.46v1.58H90.28
c-0.13,0.26-0.27,0.51-0.42,0.75h9.12v1.54h-9.24v-1.34c-0.5,0.82-1.04,1.54-1.62,2.14H98.38z M95.18,186.91
c-0.48,0.88-1.04,1.71-1.7,2.48c1.01,0.69,1.9,1.41,2.53,2.03l-1.52,1.44c-0.56-0.62-1.41-1.33-2.37-2.06
c-1.26,1.15-2.69,2.1-4.16,2.82c-0.3-0.4-1.01-1.14-1.42-1.49c1.49-0.58,2.87-1.41,4.05-2.42c-0.91-0.61-1.84-1.17-2.69-1.65
l1.36-1.25c0.83,0.43,1.76,0.98,2.67,1.55c0.56-0.64,1.02-1.33,1.41-2.06L95.18,186.91z"/>
<path style="fill:#424252;" d="M91.26,202.91c-0.5,0.14-0.99,0.3-1.5,0.43v3.91c0,0.88-0.16,1.34-0.66,1.65
c-0.46,0.3-1.17,0.37-2.19,0.35c-0.05-0.46-0.26-1.25-0.5-1.76c0.59,0.03,1.14,0.03,1.33,0.02c0.19,0,0.27-0.06,0.27-0.27v-3.38
l-1.65,0.48l-0.42-1.83c0.58-0.14,1.28-0.32,2.06-0.51v-2.8H86.2v-1.76h1.81v-3.01h1.75v3.01h1.36v1.76h-1.36v2.35l1.26-0.35
L91.26,202.91z M99.2,201.08v1.27h1.76v1.73H99.2v3.26c0,0.96-0.18,1.42-0.8,1.71c-0.59,0.27-1.42,0.3-2.58,0.3
c-0.08-0.53-0.32-1.28-0.54-1.79c0.72,0.03,1.55,0.03,1.81,0.02c0.22,0,0.3-0.05,0.3-0.27v-3.23H91.5v-1.73h5.89v-1.27h-6.03
v-1.73h3.97v-1.39h-3.28v-1.73h3.28v-1.74h1.81v1.74h3.22v1.73h-3.22v1.39h3.94v1.73H99.2z M93.88,204.14
c0.66,0.8,1.46,1.94,1.79,2.72l-1.62,0.93c-0.29-0.78-1.04-1.95-1.68-2.8L93.88,204.14z"/>
<path style="fill:#424252;" d="M98.16,213.74c-1.62,0.26-4.11,0.56-6.19,0.66c-0.21,0.9-0.43,1.81-0.66,2.53
c1.25-0.69,2.42-0.98,3.84-0.98c2.51,0,4.18,1.34,4.18,3.33c0,3.49-3.36,4.75-8.39,4.21l-0.54-2c3.41,0.54,6.83,0.14,6.83-2.16
c0-0.91-0.8-1.68-2.32-1.68c-1.78,0-3.38,0.64-4.27,1.83c-0.18,0.19-0.3,0.4-0.45,0.67l-1.84-0.66c0.72-1.39,1.33-3.38,1.73-5.06
c-0.96-0.02-1.87-0.06-2.62-0.14v-1.94c0.93,0.16,2.05,0.29,2.99,0.3c0.06-0.3,0.1-0.58,0.13-0.8c0.08-0.66,0.1-1.04,0.08-1.55
l2.21,0.08c-0.18,0.56-0.27,1.09-0.38,1.58l-0.13,0.64c1.78-0.1,3.89-0.34,5.78-0.74L98.16,213.74z"/>
<path style="fill:#424252;" d="M93.23,236.97c0.61-0.06,1.02-0.16,1.46-0.24c1.97-0.48,3.52-1.89,3.52-4.15
c0-2.14-1.17-3.75-3.25-4.1c-0.21,1.31-0.48,2.75-0.93,4.19c-0.93,3.14-2.26,5.06-3.95,5.06c-1.73,0-3.17-1.91-3.17-4.53
c0-3.57,3.12-6.63,7.16-6.63c3.83,0,6.26,2.67,6.26,6.05c0,3.25-2,5.59-5.92,6.18L93.23,236.97z M92.02,232.28
c0.35-1.14,0.64-2.46,0.83-3.76c-2.56,0.54-3.94,2.8-3.94,4.5c0,1.57,0.62,2.32,1.22,2.32C90.78,235.34,91.38,234.38,92.02,232.28
z"/>
<path style="fill:#424252;" d="M100.36,249.95c-1.09,0.83-2.42,1.68-3.59,2.32c1.12,0.77,2.55,1.3,4.29,1.58
c-0.42,0.4-0.94,1.2-1.2,1.73c-3.99-0.83-6.19-2.83-7.54-6.21H90.3v3.67c1.18-0.16,2.45-0.35,3.67-0.56l0.11,1.78
c-2.43,0.43-5.04,0.82-6.96,1.14l-0.46-1.86c0.51-0.06,1.07-0.13,1.7-0.22v-11.22h4.15v-1.54h1.97v1.54h4.67v6.9L100.36,249.95z
M90.3,243.74v1.18h6.87v-1.18H90.3z M90.3,247.71h6.87v-1.26H90.3V247.71z M94.3,249.37c0.32,0.67,0.72,1.28,1.22,1.81
c0.86-0.51,1.84-1.17,2.64-1.81H94.3z"/>
<path style="fill:#424252;" d="M99.23,260.28c-0.8,0.22-1.71,0.45-2.64,0.62c0.58,1.25,1.31,2.74,2,3.97l-1.09,1.19
c-0.85-0.18-2.38-0.43-3.54-0.58l0.18-1.58c0.53,0.05,1.38,0.13,1.84,0.16c-0.37-0.78-0.91-1.86-1.34-2.83
c-1.92,0.21-4.1,0.21-6.56,0l-0.06-1.99c2.24,0.29,4.16,0.3,5.81,0.16c-0.13-0.27-0.24-0.51-0.34-0.75
c-0.27-0.62-0.42-0.93-0.77-1.47l2.21-0.43c0.26,0.82,0.56,1.57,0.9,2.37c1.07-0.19,2.06-0.45,3.04-0.78L99.23,260.28z
M90.76,264.59c-0.21,0.51-0.43,1.39-0.43,1.87c0,1.12,0.56,1.87,2.77,1.87c2.16,0,3.1-0.21,4.23-0.45l-0.03,2.06
c-0.88,0.16-2.16,0.37-4.19,0.37c-3.12,0-4.8-1.17-4.8-3.33c0-0.69,0.19-1.66,0.43-2.56L90.76,264.59z"/>
<path style="fill:#424252;" d="M93.58,273.37c1.12,0,2.05,0.93,2.05,2.05c0,1.12-0.93,2.05-2.05,2.05c-1.12,0-2.05-0.93-2.05-2.05
C91.53,274.3,92.46,273.37,93.58,273.37z"/>
<path style="fill:#424252;" d="M99.28,291.08c-0.27-0.3-0.66-0.64-1.14-1.01c-0.34,0.3-0.67,0.58-0.99,0.78
c-0.27-0.26-0.86-0.72-1.26-0.98c1.09,1.67,2.71,2.77,5.2,3.31c-0.42,0.4-0.93,1.18-1.17,1.71c-3.23-0.85-5.06-2.53-6.21-5.12
c-0.91,2.4-2.75,4.1-6.42,5.17c-0.19-0.54-0.74-1.33-1.15-1.75c5.67-1.54,6.39-4.43,6.5-9.62h-6.21v-1.71h6.23v-1.87h2.02v1.87
h6.1v1.71h-6.13c-0.02,0.93-0.06,1.81-0.14,2.62c0.3,1.39,0.74,2.61,1.36,3.6c0.34-0.21,0.67-0.45,1.01-0.69
c-0.37-0.24-0.72-0.46-1.06-0.67l1.09-0.91c0.32,0.19,0.69,0.4,1.04,0.64c0.34-0.32,0.64-0.64,0.86-0.96l1.55,0.56
c-0.32,0.42-0.71,0.86-1.12,1.28c0.48,0.34,0.91,0.69,1.2,0.99L99.28,291.08z M89.98,291c-0.21-0.24-0.5-0.5-0.82-0.77
c-0.48,0.4-0.96,0.77-1.42,1.07c-0.3-0.3-0.9-0.86-1.28-1.12c0.48-0.27,0.96-0.59,1.44-0.96c-0.32-0.19-0.62-0.42-0.91-0.59
l1.09-0.9c0.29,0.18,0.61,0.37,0.91,0.58c0.35-0.34,0.69-0.7,0.96-1.04l1.54,0.58c-0.35,0.46-0.78,0.94-1.23,1.38
c0.34,0.27,0.64,0.54,0.86,0.78L89.98,291z M90.46,287.24c-0.26-0.27-0.64-0.59-1.07-0.91c-0.53,0.42-1.04,0.8-1.52,1.12
c-0.29-0.29-0.86-0.83-1.23-1.07c0.48-0.26,0.98-0.56,1.47-0.91c-0.38-0.24-0.75-0.45-1.09-0.64l1.02-0.96
c0.38,0.19,0.78,0.43,1.22,0.67c0.34-0.29,0.66-0.59,0.91-0.9l1.46,0.58c-0.32,0.37-0.71,0.75-1.1,1.14
c0.42,0.27,0.77,0.56,1.04,0.78L90.46,287.24z M100.01,284.2c-0.32,0.37-0.69,0.75-1.09,1.14c0.43,0.3,0.82,0.61,1.09,0.85
l-1.12,1.07c-0.26-0.27-0.62-0.59-1.06-0.91c-0.51,0.43-0.99,0.83-1.46,1.15c-0.3-0.29-0.9-0.83-1.26-1.07
c0.46-0.27,0.96-0.59,1.42-0.96c-0.37-0.24-0.75-0.48-1.1-0.67l1.02-0.94c0.38,0.19,0.78,0.43,1.2,0.67
c0.32-0.3,0.62-0.61,0.88-0.91L100.01,284.2z"/>
<path style="fill:#424252;" d="M85.88,303.27c0.38-1.07,0.67-2.85,0.79-4.18l1.36,0.18c-0.06,1.39-0.35,3.27-0.72,4.5
L85.88,303.27z M90.65,302.26c-0.13-0.58-0.4-1.39-0.72-2.16v10.77h-1.89v-14.93h1.89v3.01l0.86-0.37
c0.5,0.96,1.04,2.24,1.25,3.03L90.65,302.26z M97.16,304.86c0.78,1.97,2.1,3.54,4.1,4.29c-0.45,0.4-1.06,1.23-1.34,1.79
c-2-0.94-3.28-2.56-4.16-4.71c-0.64,1.79-1.86,3.47-4.07,4.74c-0.26-0.42-0.93-1.12-1.34-1.47c2.43-1.19,3.46-2.88,3.89-4.64
h-3.18v-1.81h3.44c0.05-0.51,0.05-0.99,0.05-1.47v-1.46h-2.75v-1.76h2.75v-2.42h1.92v2.42h3.47v4.69h1.01v1.81H97.16z
M96.46,301.59c0,0.48-0.02,0.96-0.05,1.46h1.67v-2.93h-1.62V301.59z"/>
<path style="fill:#424252;" d="M89.16,315.86c0,1.97-0.3,4.75-1.83,6.56c-0.27-0.34-1.01-0.96-1.38-1.15
c1.31-1.58,1.46-3.83,1.46-5.44v-2.4h6.8c-0.05-0.5-0.08-0.99-0.1-1.49h1.79c0.02,0.5,0.05,1.01,0.1,1.49h1.7
c-0.42-0.22-0.88-0.43-1.3-0.59l0.95-1.04c0.75,0.22,1.73,0.66,2.22,1.06l-0.48,0.58h1.47v1.5h-4.35c0.16,0.91,0.4,1.76,0.66,2.5
c0.4-0.64,0.74-1.34,0.98-2.1l1.76,0.42c-0.45,1.3-1.09,2.46-1.86,3.49c0.43,0.66,0.88,1.02,1.33,1.02
c0.35-0.02,0.48-0.54,0.56-1.92c0.4,0.35,0.99,0.69,1.44,0.83c-0.27,2.27-0.82,2.8-2.1,2.8c-0.91,0-1.73-0.51-2.42-1.38
c-0.48,0.46-0.98,0.88-1.5,1.23c-0.19-0.27-0.59-0.69-0.94-1.01v0.29H93.1c0.85,0.46,1.79,1.19,2.27,1.75l-1.31,1.12
c-0.46-0.61-1.5-1.42-2.38-1.95l1.09-0.91h-3.17v-3.46h4.53v2.62c0.54-0.35,1.04-0.77,1.5-1.23c-0.53-1.15-0.94-2.56-1.2-4.11
h-5.27V315.86z M86.1,325.5c0.94-0.74,1.63-1.87,1.95-3.06l1.7,0.61c-0.37,1.33-0.99,2.66-2.08,3.5L86.1,325.5z M94.23,316.89
h-4.71v-1.22h4.71V316.89z M95.13,324.99c0.62,0,0.72-0.16,0.8-1.42c0.35,0.29,1.17,0.56,1.66,0.67
c-0.21,1.97-0.74,2.45-2.29,2.45h-2.56c-2.06,0-2.54-0.51-2.54-2.16v-2.07h1.89v2.05c0,0.43,0.13,0.48,0.86,0.48H95.13z
M92.57,318.87h-1.46v1.01h1.46V318.87z M98.51,322.2c1.04,0.94,2.14,2.29,2.56,3.33l-1.73,0.87c-0.35-0.98-1.39-2.39-2.43-3.39
L98.51,322.2z"/>
</g>
</g>
<line style="fill:none;stroke:#00ACEE;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="104.4" y1="327.22" x2="104.4" y2="177.88"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="362.75px" height="292.32px" viewBox="0 0 362.75 292.32" style="enable-background:new 0 0 362.75 292.32;"
xml:space="preserve">
<polyline style="fill:none;stroke:#95BBFC;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="
241.73,171.32 139.75,286.55 1.5,286.55 "/>
<polyline style="fill:none;stroke:#B2DBC2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="
241.73,171.32 123.65,108.05 1,108.05 "/>
<g>
<g>
<path style="fill:#424252;" d="M142.81,9.41c-0.05,5.76,0.26,10.3,1.66,10.3c0.36-0.02,0.46-1.27,0.5-3.22
c0.55,0.65,1.27,1.37,1.85,1.78c-0.22,3-0.72,4.27-2.57,4.27c-3.5,0-4.2-4.58-4.34-10.73h-12.87V9.82l-0.22,0.19
c-0.55-0.48-1.9-1.39-2.59-1.8c2.38-1.8,4.18-4.9,5.11-8.21l2.98,0.62c-0.19,0.6-0.38,1.2-0.6,1.78h14.18v2.38h-15.24
c-0.19,0.38-0.41,0.77-0.62,1.13h13.68v2.3h-13.85V6.19c-0.74,1.22-1.56,2.3-2.42,3.22H142.81z M138.01,12.84
c-0.72,1.32-1.56,2.57-2.54,3.72c1.51,1.03,2.86,2.11,3.79,3.05l-2.28,2.16c-0.84-0.94-2.11-1.99-3.55-3.1
c-1.9,1.73-4.03,3.14-6.24,4.22c-0.46-0.6-1.51-1.71-2.14-2.23c2.23-0.86,4.3-2.11,6.07-3.62c-1.37-0.91-2.76-1.75-4.03-2.47
l2.04-1.87c1.25,0.65,2.64,1.46,4.01,2.33c0.84-0.96,1.54-1.99,2.11-3.1L138.01,12.84z"/>
<path style="fill:#424252;" d="M156.13,12.84c-0.74,0.22-1.49,0.46-2.26,0.65v5.86c0,1.32-0.24,2.02-0.98,2.47
c-0.7,0.46-1.75,0.55-3.29,0.53c-0.07-0.7-0.38-1.87-0.74-2.64c0.89,0.05,1.7,0.05,1.99,0.02c0.29,0,0.41-0.1,0.41-0.41v-5.06
l-2.47,0.72l-0.62-2.74c0.86-0.22,1.92-0.48,3.1-0.77v-4.2h-2.71V4.63h2.71V0.12h2.62v4.51h2.04v2.64h-2.04v3.53l1.9-0.53
L156.13,12.84z M168.04,10.1V12h2.64v2.59h-2.64v4.9c0,1.44-0.26,2.14-1.2,2.57c-0.89,0.41-2.14,0.46-3.86,0.46
c-0.12-0.79-0.48-1.92-0.82-2.69c1.08,0.05,2.33,0.05,2.71,0.02c0.34,0,0.46-0.07,0.46-0.41v-4.85h-8.83V12h8.83v-1.9h-9.05V7.51
h5.95V5.42h-4.92V2.83h4.92V0.22h2.71v2.62h4.82v2.59h-4.82v2.09h5.9v2.59H168.04z M160.07,14.69c0.98,1.2,2.18,2.9,2.69,4.08
l-2.42,1.39c-0.43-1.18-1.56-2.93-2.52-4.2L160.07,14.69z"/>
<path style="fill:#424252;" d="M189.25,6.26c-2.47,0.38-6.24,0.84-9.43,1.01c-0.31,1.44-0.7,2.95-1.08,4.1
c1.92-1.06,3.72-1.49,5.91-1.49c3.84,0,6.38,2.06,6.38,5.09c0,5.35-5.14,7.27-12.82,6.46l-0.84-3.07
c5.21,0.84,10.47,0.22,10.47-3.29c0-1.42-1.25-2.62-3.55-2.62c-2.74,0-5.16,0.98-6.58,2.81c-0.26,0.31-0.43,0.62-0.67,1.03
l-2.81-1.01c1.13-2.18,2.09-5.35,2.71-7.97c-1.51-0.02-2.9-0.12-4.1-0.24V4.13c1.42,0.24,3.22,0.43,4.66,0.46
c0.05-0.36,0.12-0.67,0.14-0.96c0.12-1.03,0.14-1.61,0.12-2.4l3.36,0.14c-0.26,0.84-0.38,1.63-0.55,2.42l-0.14,0.72
c2.71-0.14,5.93-0.5,8.78-1.13L189.25,6.26z"/>
<path style="fill:#424252;" d="M198.37,6.22c-0.02,1.54,0,3.34,0.14,5.04c0.34,3.43,1.06,5.76,2.54,5.76
c1.13,0,2.06-2.78,2.52-4.66l2.4,2.88c-1.58,4.13-3.07,5.59-4.99,5.59c-2.59,0-4.87-2.35-5.54-8.74
c-0.22-2.18-0.26-4.94-0.26-6.41c0-0.67-0.02-1.68-0.17-2.4l3.65,0.05C198.49,4.18,198.37,5.57,198.37,6.22z M214.89,15.99
l-3.14,1.2c-0.36-3.82-1.63-9.41-4.22-12.34l3.02-1.01C212.8,6.6,214.62,12.34,214.89,15.99z"/>
<path style="fill:#424252;" d="M222.06,6.22c-0.02,1.54,0,3.34,0.14,5.04c0.34,3.43,1.06,5.76,2.54,5.76
c1.13,0,2.06-2.78,2.52-4.66l2.4,2.88c-1.58,4.13-3.07,5.59-4.99,5.59c-2.59,0-4.87-2.35-5.54-8.74
c-0.22-2.18-0.26-4.94-0.26-6.41c0-0.67-0.02-1.68-0.17-2.4l3.65,0.05C222.18,4.18,222.06,5.57,222.06,6.22z M238.57,15.99
l-3.14,1.2c-0.36-3.82-1.63-9.41-4.22-12.34l3.02-1.01C236.49,6.6,238.31,12.34,238.57,15.99z"/>
<path style="fill:#424252;" d="M245.87,8.23c1.68,0,3.07,1.39,3.07,3.07c0,1.68-1.39,3.07-3.07,3.07c-1.68,0-3.07-1.39-3.07-3.07
C242.8,9.62,244.19,8.23,245.87,8.23z"/>
<path style="fill:#424252;" d="M272.41,16.8c-0.41-0.46-0.98-0.96-1.7-1.51c-0.5,0.46-1.01,0.86-1.49,1.18
c-0.41-0.38-1.3-1.08-1.9-1.46c1.63,2.5,4.06,4.15,7.8,4.97c-0.62,0.6-1.39,1.78-1.75,2.57c-4.85-1.27-7.58-3.79-9.31-7.68
c-1.37,3.6-4.13,6.14-9.62,7.75c-0.29-0.82-1.1-1.99-1.73-2.62c8.5-2.3,9.58-6.65,9.75-14.43h-9.31V3h9.34V0.19h3.02V3h9.14v2.57
h-9.19c-0.02,1.39-0.1,2.71-0.22,3.94c0.46,2.09,1.1,3.91,2.04,5.4c0.5-0.31,1.01-0.67,1.51-1.03c-0.55-0.36-1.08-0.7-1.58-1.01
l1.63-1.37c0.48,0.29,1.03,0.6,1.56,0.96c0.5-0.48,0.96-0.96,1.3-1.44l2.33,0.84c-0.48,0.62-1.06,1.3-1.68,1.92
c0.72,0.5,1.37,1.03,1.8,1.49L272.41,16.8z M258.47,16.68c-0.31-0.36-0.74-0.74-1.22-1.15c-0.72,0.6-1.44,1.15-2.14,1.61
c-0.46-0.46-1.34-1.3-1.92-1.68c0.72-0.41,1.44-0.89,2.16-1.44c-0.48-0.29-0.94-0.62-1.37-0.89l1.63-1.34
c0.43,0.26,0.91,0.55,1.37,0.86c0.53-0.5,1.03-1.06,1.44-1.56l2.3,0.86c-0.53,0.7-1.18,1.42-1.85,2.06
c0.5,0.41,0.96,0.82,1.3,1.18L258.47,16.68z M259.19,11.04c-0.38-0.41-0.96-0.89-1.61-1.37c-0.79,0.62-1.56,1.2-2.28,1.68
c-0.43-0.43-1.3-1.25-1.85-1.61c0.72-0.38,1.46-0.84,2.21-1.37c-0.58-0.36-1.13-0.67-1.63-0.96l1.54-1.44
c0.58,0.29,1.18,0.65,1.82,1.01c0.5-0.43,0.98-0.89,1.37-1.34l2.18,0.86c-0.48,0.55-1.06,1.13-1.66,1.7
c0.62,0.41,1.15,0.84,1.56,1.18L259.19,11.04z M273.52,6.48c-0.48,0.55-1.03,1.13-1.63,1.7c0.65,0.46,1.22,0.91,1.63,1.27
l-1.68,1.61c-0.38-0.41-0.94-0.89-1.58-1.37c-0.77,0.65-1.49,1.25-2.18,1.73c-0.46-0.43-1.34-1.25-1.9-1.61
c0.7-0.41,1.44-0.89,2.14-1.44c-0.55-0.36-1.13-0.72-1.66-1.01l1.54-1.42c0.58,0.29,1.18,0.65,1.8,1.01
c0.48-0.46,0.94-0.91,1.32-1.37L273.52,6.48z"/>
<path style="fill:#424252;" d="M276.32,11.09c0.58-1.61,1.01-4.27,1.18-6.26l2.04,0.26c-0.1,2.09-0.53,4.9-1.08,6.74L276.32,11.09
z M283.48,9.58c-0.19-0.86-0.6-2.09-1.08-3.24v16.15h-2.83V0.1h2.83v4.51l1.3-0.55c0.74,1.44,1.56,3.36,1.87,4.54L283.48,9.58z
M293.24,13.46c1.18,2.95,3.14,5.3,6.14,6.43c-0.67,0.6-1.58,1.85-2.02,2.69c-3-1.42-4.92-3.84-6.24-7.06
c-0.96,2.69-2.78,5.21-6.1,7.1c-0.38-0.62-1.39-1.68-2.02-2.21c3.65-1.78,5.18-4.32,5.83-6.96h-4.78v-2.71h5.16
c0.07-0.77,0.07-1.49,0.07-2.21V6.36h-4.13V3.72h4.13V0.1h2.88v3.62h5.21v7.03h1.51v2.71H293.24z M292.19,8.57
c0,0.72-0.02,1.44-0.07,2.18h2.5V6.36h-2.42V8.57z"/>
<path style="fill:#424252;" d="M305.87,8.23c1.68,0,3.07,1.39,3.07,3.07c0,1.68-1.39,3.07-3.07,3.07c-1.68,0-3.07-1.39-3.07-3.07
C302.8,9.62,304.19,8.23,305.87,8.23z"/>
<path style="fill:#424252;" d="M312.32,11.09c0.58-1.61,1.01-4.27,1.18-6.26l2.04,0.26c-0.1,2.09-0.53,4.9-1.08,6.74L312.32,11.09
z M319.48,9.58c-0.19-0.86-0.6-2.09-1.08-3.24v16.15h-2.83V0.1h2.83v4.51l1.3-0.55c0.74,1.44,1.56,3.36,1.87,4.54L319.48,9.58z
M329.24,13.46c1.18,2.95,3.14,5.3,6.14,6.43c-0.67,0.6-1.58,1.85-2.02,2.69c-3-1.42-4.92-3.84-6.24-7.06
c-0.96,2.69-2.78,5.21-6.1,7.1c-0.38-0.62-1.39-1.68-2.02-2.21c3.65-1.78,5.18-4.32,5.83-6.96h-4.78v-2.71h5.16
c0.07-0.77,0.07-1.49,0.07-2.21V6.36h-4.13V3.72h4.13V0.1h2.88v3.62h5.21v7.03h1.51v2.71H329.24z M328.19,8.57
c0,0.72-0.02,1.44-0.07,2.18h2.5V6.36h-2.42V8.57z"/>
<path style="fill:#424252;" d="M342.25,17.07c0.94,1.61,2.62,2.28,5.06,2.38c2.88,0.12,8.54,0.05,11.86-0.22
c-0.34,0.67-0.74,1.99-0.89,2.78c-2.98,0.14-8.06,0.19-10.99,0.07c-2.86-0.12-4.78-0.82-6.22-2.66c-0.96,0.94-1.94,1.85-3.17,2.88
l-1.34-2.83c0.94-0.6,2.02-1.39,2.98-2.21v-5.23h-2.69V9.41h5.4V17.07z M340.55,6.31c-0.67-1.18-2.26-2.83-3.6-3.98l2.18-1.63
c1.34,1.08,3,2.66,3.77,3.82L340.55,6.31z M346.43,3.96h-3.17V1.75h6.12V0.1h2.76v1.66h6.48v2.21h-2.76
c-0.31,0.62-0.6,1.18-0.86,1.68h3.12v10.3c0,1.15-0.19,1.78-0.96,2.21c-0.79,0.38-1.8,0.41-3.24,0.41
c-0.07-0.55-0.31-1.3-0.55-1.9h-3.74v0.72h-1.94V12.1h2.21v-1.32h-2.81V9.05h2.81V7.8h-3.43v10.66h-2.57V5.64h2.74
c-0.12-0.53-0.34-1.1-0.6-1.58L346.43,3.96z M352.4,5.64c0.22-0.5,0.43-1.13,0.62-1.68h-4.39c0.29,0.55,0.5,1.18,0.58,1.68H352.4z
M352.21,13.71h-2.59v1.32h2.59V13.71z M355.5,7.8h-3.58v1.25h2.83v1.73h-2.83v1.32h2.26v4.18c0.43,0,0.79,0,0.96,0
c0.26-0.02,0.36-0.1,0.36-0.38V7.8z"/>
</g>
</g>
<polyline style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="
124.23,31.32 359.17,31.32 241.73,171.32 "/>
<circle style="fill:#E6E6E6;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" cx="241.75" cy="171.32" r="120"/>
<path style="fill:#2FC5D9;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M241.75,51.32l-0.01,119.99l0.01,0.01
l-7.53,119.76l0,0c2.49,0.15,5,0.24,7.54,0.24c66.27,0,120-53.73,120-120C361.75,105.05,308.03,51.32,241.75,51.32z"/>
<path style="fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M234.22,287.05"/>
<path style="fill:#95BBFC;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M234.22,291.05l7.54-119.76l-119.09,15.04
c6.66,53.1,48.51,97.01,104.04,104.03c2.5,0.32,4.99,0.54,7.48,0.7L234.22,291.05z"/>
<path style="fill:#B2DBC2;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M122.69,186.36l119.04-15.04L183.92,66.17
l-0.01-0.01c-19.31,10.59-35.94,26.62-47.34,47.36c-12.7,23.1-16.99,48.55-13.9,72.84L122.69,186.36z"/>
<path style="fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M241.73,171.32"/>
<path style="fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M122.69,186.36"/>
<circle style="fill:none;" cx="241.75" cy="171.32" r="120"/>
<circle style="fill:none;" cx="241.75" cy="171.32" r="120"/>
<circle style="fill:none;" cx="241.74" cy="171.31" r="120"/>
<path style="fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M241.75,171.32"/>
<circle style="fill:#FFFFFF;" cx="241.74" cy="171.32" r="75"/>
<g>
<g>
<path style="fill:#424252;" d="M191.72,185.83l4.86-6.72c2.52,2.4,5.64,4.26,9.18,4.26c4.32,0,7.02-2.34,7.02-6.96
c0-4.5-2.7-6.9-6.54-6.9c-2.46,0-3.66,0.48-6.3,2.16l-4.68-3.06l1.14-22.08h25.08v8.88h-15.9l-0.66,7.56
c1.62-0.66,2.94-0.9,4.62-0.9c7.56,0,13.92,4.44,13.92,14.1c0,10.02-7.56,15.84-16.14,15.84
C200.18,192.01,195.26,189.31,191.72,185.83z"/>
<path style="fill:#424252;" d="M231.44,182.53h9.48v-25.38h-8.22v-6.6c4.8-0.9,7.92-2.1,11.04-4.02h7.86v36h8.04v8.64h-28.2
V182.53z"/>
<path style="fill:#424252;" d="M264.19,174.43c0-4.77,2.53-7.52,6.02-7.52s6.05,2.75,6.05,7.52s-2.56,7.62-6.05,7.62
S264.19,179.2,264.19,174.43z M272.29,174.43c0-3.33-0.96-4.38-2.08-4.38c-1.12,0-2.08,1.06-2.08,4.38c0,3.33,0.96,4.48,2.08,4.48
C271.33,178.91,272.29,177.76,272.29,174.43z M283.87,166.91h3.26l-12.86,24.7h-3.23L283.87,166.91z M281.92,184
c0-4.77,2.56-7.55,6.02-7.55s6.02,2.78,6.02,7.55c0,4.77-2.56,7.62-6.02,7.62S281.92,188.77,281.92,184z M289.98,184
c0-3.36-0.93-4.38-2.05-4.38s-2.11,1.02-2.11,4.38c0,3.33,0.99,4.45,2.11,4.45S289.98,187.33,289.98,184z"/>
</g>
</g>
<path style="fill:#CCF4FA;" d="M241.73,171.32"/>
<path style="fill:#CCF4FA;" d="M127.6,134.24"/>
<g>
<g>
<path style="fill:#424252;" d="M9.79,244.18c-0.78,0.21-1.76,0.42-2.82,0.56c-0.77,2.23-2.14,4.99-3.44,6.74l-1.54-0.78
c1.3-1.55,2.63-3.99,3.31-5.78c-0.38,0.02-0.75,0.03-1.14,0.03c-0.61,0-1.26-0.02-1.9-0.06l-0.11-1.47
c0.62,0.06,1.38,0.1,2.02,0.1c0.53,0,1.07-0.02,1.63-0.06c0.24-0.88,0.43-1.86,0.46-2.69l1.74,0.16
c-0.13,0.54-0.34,1.42-0.58,2.32c0.8-0.13,1.58-0.32,2.31-0.54L9.79,244.18z M11.74,245.83c-0.05,0.67-0.03,1.22-0.02,1.86
c0.02,0.51,0.06,1.42,0.11,2.32c1.36,0.5,2.48,1.3,3.28,2l-0.85,1.36c-0.62-0.56-1.42-1.25-2.37-1.76v0.43
c0,1.34-0.82,2.43-2.9,2.43c-1.84,0-3.33-0.78-3.33-2.43c0-1.49,1.34-2.55,3.31-2.55c0.46,0,0.9,0.03,1.33,0.11
c-0.06-1.25-0.14-2.74-0.18-3.78H11.74z M10.36,250.98c-0.45-0.13-0.94-0.19-1.46-0.19c-1.06,0-1.74,0.46-1.74,1.1
c0,0.67,0.54,1.14,1.63,1.14c1.18,0,1.58-0.67,1.58-1.49C10.38,251.38,10.38,251.21,10.36,250.98z M14.7,246.44
c-0.88-0.72-2.62-1.73-3.7-2.21l0.8-1.23c1.14,0.5,3.01,1.55,3.79,2.13L14.7,246.44z"/>
<path style="fill:#424252;" d="M24.4,242.37c-0.74,1.12-2.15,3.65-2.95,5.12c0.7-0.53,1.41-0.74,2.1-0.74c1.12,0,1.86,0.72,1.92,2
c0.03,0.83,0,2.07,0.06,2.8c0.05,0.7,0.54,0.99,1.15,0.99c1.6,0,2.56-1.98,2.99-3.81l1.34,1.09c-0.83,2.64-2.22,4.42-4.59,4.42
c-1.71,0-2.38-1.06-2.45-2.08c-0.05-0.9-0.03-2.16-0.08-2.93c-0.03-0.62-0.4-1.01-1.06-1.01c-1.18,0-2.24,1.22-2.83,2.48
c-0.45,0.93-1.07,2.75-1.3,3.57l-1.76-0.59c1.17-3.2,4.64-9.88,5.49-11.4c0.19-0.4,0.45-0.83,0.67-1.39l1.78,0.72
C24.75,241.81,24.57,242.1,24.4,242.37z"/>
<path style="fill:#424252;" d="M43.58,244.23c-0.4,0.24-0.85,0.48-1.36,0.74c-1.04,0.53-3.14,1.52-4.64,2.51
c-1.41,0.91-2.29,1.91-2.29,3.06c0,1.23,1.17,1.95,3.54,1.95c1.68,0,3.83-0.24,5.12-0.54l-0.02,1.79c-1.25,0.22-3.02,0.4-5.04,0.4
c-3.06,0-5.31-0.9-5.31-3.43c0-1.68,1.07-2.98,2.69-4.13c-0.72-1.34-1.52-3.12-2.26-4.82l1.58-0.64c0.62,1.7,1.39,3.31,2.06,4.56
c1.39-0.83,2.96-1.62,3.78-2.08c0.53-0.3,0.91-0.53,1.28-0.83L43.58,244.23z"/>
<path style="fill:#424252;" d="M57.71,246.76c1.07,1.26,1.6,2.37,1.6,3.73c0,2.37-2.15,3.94-5.41,3.94c-2.3,0-4.07-1.02-4.07-3.63
c0-0.42,0.05-1.01,0.11-1.71c-1.17-0.11-2.27-0.29-3.17-0.56l0.08-1.54c1.02,0.37,2.16,0.54,3.25,0.64
c0.1-0.83,0.21-1.71,0.32-2.54c-1.14-0.1-2.32-0.3-3.28-0.56l0.08-1.47c0.96,0.32,2.19,0.51,3.38,0.61
c0.06-0.58,0.11-1.09,0.14-1.49c0.03-0.4,0.06-0.8,0.02-1.25l1.79,0.1c-0.11,0.5-0.18,0.86-0.24,1.25l-0.19,1.44
c1.18,0,2.24-0.06,3.07-0.21l-0.05,1.5c-0.99,0.1-1.89,0.16-3.19,0.16h-0.03c-0.11,0.82-0.22,1.7-0.32,2.53h0.22
c1.02,0,2.16-0.05,3.25-0.19l-0.05,1.5c-0.98,0.11-1.94,0.16-2.96,0.16c-0.21,0-0.4,0-0.61,0c-0.05,0.56-0.08,1.04-0.08,1.38
c0,1.42,0.83,2.27,2.53,2.27c2.32,0,3.71-1.01,3.71-2.51c0-1.07-0.58-2.19-1.68-3.17L57.71,246.76z"/>
<path style="fill:#424252;" d="M15.79,265.22v1.28H1.5v-1.28H15.79z M3.74,271.86h9.78v4.99h-1.54v-0.58H5.21v0.62H3.74V271.86z
M13.28,268.68H3.96v-1.2h9.32V268.68z M3.96,269.65h9.32v1.2H3.96V269.65z M13.02,264.24H4.23v-1.2h8.79V264.24z M5.21,273.13
v1.92h6.77v-1.92H5.21z"/>
<path style="fill:#424252;" d="M26.91,268.42c-0.64,0.59-2.29,2.1-2.79,2.63c0.14-0.02,0.45,0.03,0.59,0.08
c0.54,0.1,0.88,0.5,1.1,1.12c0.14,0.45,0.34,1.15,0.5,1.62c0.16,0.56,0.53,0.82,1.25,0.82c1.12,0,2.27-0.14,3.04-0.32l-0.1,1.68
c-0.67,0.11-2.21,0.22-3.04,0.22c-1.36,0-2.18-0.3-2.53-1.34c-0.16-0.48-0.37-1.33-0.51-1.76c-0.19-0.54-0.51-0.8-0.91-0.8
c-0.37,0-0.72,0.24-1.1,0.61c-0.58,0.56-2.05,2.13-3.04,3.38l-1.5-1.04c0.24-0.19,0.58-0.46,0.91-0.83
c0.72-0.7,4.58-4.55,6.08-6.1c-1.18,0.06-3.51,0.26-4.47,0.34c-0.51,0.05-0.96,0.11-1.31,0.18l-0.14-1.76
c0.37,0.03,0.9,0.05,1.42,0.05c0.85-0.02,4.48-0.22,5.75-0.38c0.27-0.03,0.64-0.11,0.8-0.18l0.94,1.06
C27.5,267.92,27.15,268.23,26.91,268.42z M27.44,263.73l-0.21,1.47c-1.63-0.13-4.48-0.48-6.39-0.82l0.24-1.47
C22.83,263.27,25.87,263.64,27.44,263.73z"/>
<path style="fill:#424252;" d="M40.27,266.18c-0.78,0.21-1.76,0.42-2.82,0.56c-0.77,2.23-2.14,4.99-3.44,6.74l-1.54-0.78
c1.3-1.55,2.63-3.99,3.31-5.78c-0.38,0.02-0.75,0.03-1.14,0.03c-0.61,0-1.26-0.02-1.9-0.06l-0.11-1.47
c0.62,0.06,1.38,0.1,2.02,0.1c0.53,0,1.07-0.02,1.63-0.06c0.24-0.88,0.43-1.86,0.46-2.69l1.74,0.16
c-0.13,0.54-0.34,1.42-0.58,2.32c0.8-0.13,1.58-0.32,2.31-0.54L40.27,266.18z M42.22,267.83c-0.05,0.67-0.03,1.22-0.02,1.86
c0.02,0.51,0.06,1.42,0.11,2.32c1.36,0.5,2.48,1.3,3.28,2l-0.85,1.36c-0.62-0.56-1.42-1.25-2.37-1.76v0.43
c0,1.34-0.82,2.43-2.9,2.43c-1.84,0-3.33-0.78-3.33-2.43c0-1.49,1.34-2.55,3.31-2.55c0.46,0,0.9,0.03,1.33,0.11
c-0.06-1.25-0.14-2.74-0.18-3.78H42.22z M40.85,272.98c-0.45-0.13-0.94-0.19-1.46-0.19c-1.06,0-1.74,0.46-1.74,1.1
c0,0.67,0.54,1.14,1.63,1.14c1.18,0,1.58-0.67,1.58-1.49C40.86,273.38,40.86,273.21,40.85,272.98z M45.18,268.44
c-0.88-0.72-2.62-1.73-3.7-2.21l0.8-1.23c1.14,0.5,3.01,1.55,3.79,2.13L45.18,268.44z"/>
<path style="fill:#424252;" d="M50.23,266.12c-0.02,0.99,0,2.34,0.11,3.57c0.24,2.5,0.88,4.16,1.94,4.16
c0.8,0,1.49-1.73,1.84-3.19l1.28,1.49c-1.01,2.72-1.98,3.67-3.15,3.67c-1.6,0-3.07-1.54-3.51-5.71c-0.16-1.39-0.18-3.28-0.18-4.24
c0-0.4-0.02-1.06-0.11-1.49l1.94,0.03C50.31,264.87,50.23,265.68,50.23,266.12z M61.34,272.71l-1.65,0.64
c-0.26-2.72-1.17-6.13-2.77-8.02l1.58-0.53C59.97,266.64,61.13,270.13,61.34,272.71z"/>
<path style="fill:#424252;" d="M70.35,271.22h-4.42v-3.38h4.42v2.99c0.66-0.43,1.26-0.96,1.81-1.57
c-0.59-1.18-1.04-2.66-1.33-4.29h-5.55v1.2c0,1.89-0.29,4.56-1.76,6.35c-0.22-0.27-0.8-0.75-1.09-0.91
c1.33-1.62,1.49-3.84,1.49-5.46v-2.38h6.74c-0.06-0.51-0.11-1.02-0.13-1.55h1.41c0.02,0.53,0.05,1.04,0.11,1.55h2.42
c-0.51-0.3-1.17-0.62-1.73-0.83l0.74-0.85c0.78,0.24,1.74,0.69,2.27,1.09l-0.5,0.59h1.62v1.2h-4.63c0.21,1.14,0.51,2.16,0.88,3.03
c0.46-0.74,0.85-1.55,1.14-2.42l1.41,0.32c-0.46,1.3-1.09,2.48-1.84,3.51c0.56,0.88,1.17,1.39,1.73,1.39
c0.37,0,0.53-0.54,0.61-1.95c0.3,0.26,0.78,0.53,1.15,0.66c-0.22,2.1-0.72,2.64-1.84,2.64c-0.94,0-1.82-0.61-2.56-1.63
c-0.54,0.56-1.12,1.07-1.75,1.49c-0.14-0.21-0.51-0.58-0.82-0.83V271.22z M62.54,275.77c1.02-0.72,1.7-1.91,2.06-3.09l1.31,0.46
c-0.4,1.28-1.02,2.62-2.13,3.46L62.54,275.77z M70.54,266.9h-4.79v-0.99h4.79V266.9z M71.64,275.38c0.66,0,0.77-0.19,0.83-1.57
c0.3,0.22,0.94,0.45,1.33,0.54c-0.18,1.89-0.61,2.35-2.02,2.35h-2.87c-1.82,0-2.27-0.4-2.27-1.79v-2.29h1.47v2.27
c0,0.42,0.13,0.48,0.94,0.48H71.64z M69.12,268.85h-1.97v1.36h1.97V268.85z M68.94,271.32c0.94,0.48,2.08,1.25,2.61,1.86
l-1.04,0.91c-0.5-0.61-1.6-1.42-2.54-1.94L68.94,271.32z M74.56,272.49c1.1,0.91,2.24,2.22,2.72,3.23l-1.36,0.7
c-0.4-0.98-1.5-2.34-2.58-3.3L74.56,272.49z"/>
<path style="fill:#424252;" d="M91.13,275.5c0.56,0,0.66-0.18,0.72-1.6c0.29,0.24,0.91,0.46,1.33,0.53
c-0.18,1.95-0.61,2.38-1.89,2.38h-2.38c-1.67,0-2.05-0.4-2.05-1.73v-1.58h-2.02c-0.43,1.92-1.65,2.93-5.49,3.44
c-0.11-0.35-0.46-0.99-0.74-1.28c3.33-0.32,4.34-0.9,4.71-2.16h-1.74v-6.56h8.76v6.56h-2.02v1.57c0,0.38,0.11,0.43,0.77,0.43
H91.13z M80.67,268.07h-1.38v-3.33h2.23c-0.3-0.53-0.8-1.2-1.26-1.7l1.28-0.58c0.56,0.58,1.2,1.38,1.49,1.94l-0.7,0.34h3.1
c-0.22-0.61-0.7-1.44-1.12-2.07l1.3-0.45c0.48,0.64,0.99,1.52,1.22,2.1l-1.07,0.42h2.71c0.54-0.66,1.22-1.68,1.58-2.4l1.57,0.5
c-0.48,0.67-1.02,1.34-1.5,1.91h2.55v3.33h-1.42v-2.08H80.67V268.07z M82.99,268.82h5.91v-0.94h-5.91V268.82z M82.99,270.66h5.91
v-0.96h-5.91V270.66z M82.99,272.55h5.91v-0.99h-5.91V272.55z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M100.78,274.32c4.34-3.84,6.58-6.7,6.58-9.12c0-1.6-0.86-2.7-2.5-2.7c-1.16,0-2.12,0.74-2.9,1.64
l-1.3-1.28c1.26-1.36,2.56-2.2,4.48-2.2c2.7,0,4.44,1.76,4.44,4.42c0,2.84-2.26,5.78-5.38,8.76c0.76-0.08,1.68-0.14,2.4-0.14h3.68
v1.96h-9.5V274.32z"/>
<path style="fill:#424252;" d="M112.18,274.32c4.34-3.84,6.58-6.7,6.58-9.12c0-1.6-0.86-2.7-2.5-2.7c-1.16,0-2.12,0.74-2.9,1.64
l-1.3-1.28c1.26-1.36,2.56-2.2,4.48-2.2c2.7,0,4.44,1.76,4.44,4.42c0,2.84-2.26,5.78-5.38,8.76c0.76-0.08,1.68-0.14,2.4-0.14h3.68
v1.96h-9.5V274.32z"/>
<path style="fill:#424252;" d="M123.27,267.37c0-2.37,1.1-3.71,2.75-3.71c1.65,0,2.77,1.34,2.77,3.71c0,2.37-1.12,3.75-2.77,3.75
C124.38,271.11,123.27,269.73,123.27,267.37z M127.45,267.37c0-1.83-0.59-2.62-1.42-2.62c-0.82,0-1.41,0.8-1.41,2.62
c0,1.81,0.59,2.66,1.41,2.66C126.86,270.02,127.45,269.17,127.45,267.37z M132.84,263.65h1.17l-6.47,12.21h-1.15L132.84,263.65z
M131.63,272.13c0-2.37,1.12-3.71,2.77-3.71c1.63,0,2.75,1.34,2.75,3.71s-1.12,3.73-2.75,3.73
C132.75,275.86,131.63,274.5,131.63,272.13z M135.81,272.13c0-1.82-0.59-2.62-1.41-2.62c-0.83,0-1.42,0.8-1.42,2.62
c0,1.81,0.59,2.66,1.42,2.66C135.21,274.79,135.81,273.94,135.81,272.13z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M9.84,85.5c-0.4,0.3-0.9,0.74-1.22,0.98c-1.06,0.9-3.25,2.63-4.37,3.57
c-0.91,0.78-0.91,0.99,0.03,1.79c1.33,1.1,4.32,3.52,5.87,5.06l-1.44,1.33c-0.38-0.45-0.83-0.88-1.22-1.3
C6.64,96,4.07,93.84,2.62,92.61c-1.54-1.28-1.38-2.06,0.11-3.31c1.22-1.02,3.52-2.85,4.59-3.92c0.37-0.38,0.83-0.85,1.04-1.18
L9.84,85.5z"/>
<path style="fill:#424252;" d="M25.55,87.87c-0.94-0.05-2.43-0.08-4.74-0.08c0.02,0.85,0.02,1.78,0.02,2.48
c0.37,0.58,0.56,1.3,0.56,2.11c0,2.11-1.12,4.59-4.88,5.68l-1.36-1.34c1.86-0.42,3.31-1.1,4.08-2.29
c-0.32,0.14-0.69,0.22-1.1,0.22c-1.28,0-2.67-0.96-2.67-2.77c0-1.66,1.36-2.85,2.96-2.85c0.32,0,0.61,0.03,0.88,0.11l-0.02-1.34
c-2.4,0.03-4.99,0.13-6.96,0.26l-0.05-1.54c1.79-0.02,4.74-0.11,6.99-0.14c-0.02-0.34-0.02-0.62-0.03-0.8
c-0.03-0.4-0.08-0.93-0.13-1.15h1.82c-0.03,0.21-0.08,0.93-0.08,1.15c-0.02,0.19-0.02,0.46-0.02,0.78h4.74L25.55,87.87z
M18.41,93.26c0.82,0,1.42-0.66,1.22-2.16c-0.26-0.51-0.7-0.74-1.23-0.74c-0.72,0-1.42,0.54-1.42,1.49
C16.97,92.74,17.64,93.26,18.41,93.26z"/>
<path style="fill:#424252;" d="M35.65,85.5c-0.4,0.3-0.91,0.74-1.22,0.98c-1.07,0.9-3.27,2.63-4.39,3.57
c-0.91,0.78-0.9,0.99,0.05,1.79c1.33,1.1,4.32,3.52,5.87,5.06l-1.44,1.33c-0.38-0.45-0.85-0.88-1.23-1.3
c-0.86-0.93-3.41-3.09-4.88-4.32c-1.52-1.28-1.38-2.06,0.13-3.31c1.2-1.02,3.51-2.85,4.58-3.92c0.38-0.38,0.83-0.85,1.04-1.18
L35.65,85.5z M36.14,90.33l-1.09,0.46c-0.34-0.66-0.91-1.76-1.33-2.38l1.04-0.43C35.18,88.57,35.82,89.74,36.14,90.33z
M38.05,89.57l-1.06,0.46c-0.37-0.67-0.94-1.73-1.38-2.34l1.04-0.45C37.07,87.82,37.73,88.96,38.05,89.57z"/>
<path style="fill:#424252;" d="M40.41,90.17c1.1-0.35,3.75-1.28,5.63-1.28c2.37,0,4.02,1.41,4.02,3.68c0,2.98-2.75,4.71-7.36,4.99
l-0.66-1.55c3.51-0.11,6.37-1.07,6.37-3.47c0-1.26-0.99-2.18-2.5-2.18c-1.92,0-5.25,1.38-6.4,1.86l-0.67-1.65
C39.31,90.48,39.93,90.33,40.41,90.17z"/>
<path style="fill:#424252;" d="M60.17,87.85c-0.99,0.22-2.1,0.4-3.19,0.53c-0.14,0.69-0.32,1.39-0.5,2.06
c-0.58,2.24-1.63,5.51-2.5,7.3l-1.76-0.59c0.96-1.62,2.1-4.88,2.69-7.11c0.14-0.48,0.27-1.01,0.38-1.52
c-0.45,0.02-0.86,0.03-1.26,0.03c-0.74,0-1.31-0.03-1.89-0.06l-0.03-1.57c0.77,0.1,1.33,0.13,1.94,0.13c0.5,0,1.02-0.02,1.58-0.06
c0.08-0.46,0.16-0.88,0.19-1.17c0.06-0.51,0.08-1.09,0.05-1.44l1.94,0.14c-0.11,0.4-0.24,1.04-0.3,1.36l-0.19,0.93
c0.96-0.13,1.94-0.32,2.85-0.54V87.85z M59.68,93.25c-0.13,0.5-0.22,0.99-0.22,1.38c0,0.72,0.38,1.36,2.4,1.36
c1.04,0,2.13-0.13,3.17-0.32l-0.05,1.62c-0.88,0.13-1.94,0.22-3.14,0.22c-2.58,0-3.91-0.85-3.91-2.42c0-0.66,0.11-1.33,0.24-1.99
L59.68,93.25z M59.05,89.34c0.85-0.1,1.94-0.16,2.96-0.16c0.91,0,1.87,0.05,2.77,0.14l-0.05,1.52c-0.8-0.1-1.74-0.19-2.69-0.19
c-1.04,0-2.02,0.05-2.99,0.16V89.34z"/>
<path style="fill:#424252;" d="M69.63,87.61c-0.02,0.99,0,2.34,0.11,3.57c0.24,2.5,0.88,4.16,1.94,4.16c0.8,0,1.49-1.73,1.84-3.19
l1.28,1.49c-1.01,2.72-1.98,3.67-3.15,3.67c-1.6,0-3.07-1.54-3.51-5.71c-0.16-1.39-0.18-3.28-0.18-4.24c0-0.4-0.02-1.06-0.11-1.49
l1.94,0.03C69.71,86.37,69.63,87.18,69.63,87.61z M80.74,94.21l-1.65,0.64c-0.26-2.72-1.17-6.13-2.77-8.02l1.58-0.53
C79.36,88.14,80.53,91.63,80.74,94.21z"/>
</g>
</g>
<g>
<g>
<path style="fill:#424252;" d="M86.57,95.25h3.22V85.01h-2.64v-1.46c1.38-0.26,2.36-0.6,3.2-1.12h1.74v12.82h2.88v1.9h-8.4V95.25z
"/>
<path style="fill:#424252;" d="M98.59,94.43c0.58,0.66,1.48,1.1,2.42,1.1c1.78,0,3.32-1.44,3.46-5.64
c-0.86,1.06-2.12,1.72-3.24,1.72c-2.46,0-4.12-1.54-4.12-4.62c0-2.92,2-4.84,4.38-4.84c2.82,0,5.1,2.28,5.1,7.14
c0,5.8-2.64,8.12-5.48,8.12c-1.7,0-2.9-0.68-3.76-1.56L98.59,94.43z M104.44,88.15c-0.22-2.9-1.32-4.22-2.92-4.22
c-1.26,0-2.26,1.14-2.26,3.06c0,1.88,0.84,2.96,2.38,2.96C102.53,89.95,103.56,89.43,104.44,88.15z"/>
<path style="fill:#424252;" d="M108.23,88.86c0-2.37,1.1-3.71,2.75-3.71s2.77,1.34,2.77,3.71c0,2.37-1.12,3.75-2.77,3.75
S108.23,91.23,108.23,88.86z M112.41,88.86c0-1.83-0.59-2.62-1.42-2.62c-0.82,0-1.41,0.8-1.41,2.62c0,1.81,0.59,2.66,1.41,2.66
C111.82,91.52,112.41,90.67,112.41,88.86z M117.8,85.15h1.17l-6.47,12.21h-1.15L117.8,85.15z M116.59,93.63
c0-2.37,1.12-3.71,2.77-3.71c1.63,0,2.75,1.34,2.75,3.71s-1.12,3.73-2.75,3.73C117.71,97.36,116.59,96,116.59,93.63z
M120.76,93.63c0-1.82-0.59-2.62-1.41-2.62c-0.83,0-1.42,0.8-1.42,2.62c0,1.81,0.59,2.66,1.42,2.66
C120.17,96.29,120.76,95.44,120.76,93.63z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="242px" height="292.28px" viewBox="0 0 242 292.28" style="enable-background:new 0 0 242 292.28;"
xml:space="preserve">
<circle style="fill:#2FC5D9;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" cx="121" cy="171.28" r="120"/>
<path style="fill:#E6E6E6;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M1,171.28c0,9.96,1.22,19.64,3.51,28.9
c0.09,0.32,0.18,0.63,0.26,0.95L121,171.28h0l0-120C54.73,51.28,1,105,1,171.28z"/>
<g>
<g>
<path style="fill:#424252;" d="M23.48,11.28c1.54,1.34,3.26,2.45,5.02,3.22c-0.7,0.6-1.61,1.75-2.09,2.5
c-1.01-0.53-1.99-1.18-2.93-1.9v7.32H20.5v-10.1c-1.08-1.18-2.06-2.5-2.93-3.86c-1.8,6.79-5.14,11.38-9.41,13.8
c-0.48-0.62-1.58-1.68-2.28-2.14c2.64-1.37,4.83-3.43,6.5-6.22c-0.94-0.86-2.33-1.9-3.6-2.74C8.4,11.69,8,12.15,7.56,12.58
c-0.5-0.48-1.68-1.42-2.38-1.82c2.64-2.4,4.58-6.41,5.64-10.71l2.83,0.55c-0.26,1.01-0.55,1.97-0.89,2.93h3.34l0.5-0.1l1.87,0.65
c-0.12,0.72-0.24,1.42-0.36,2.09l0.89-0.34c0.41,0.77,0.91,1.56,1.49,2.3V0.1h2.98V11.28z M11.69,6.24
c-0.43,0.98-0.91,1.9-1.44,2.79c1.2,0.7,2.47,1.56,3.43,2.33c0.65-1.54,1.15-3.24,1.54-5.11H11.69z"/>
<path style="fill:#424252;" d="M50.41,12.29v10.15h-2.98v-1.37h-13.3v1.39h-2.9V12.29h2.9v5.98h5.02v-7.25h-6.96V2.3h2.83v5.93
h4.13V0.29h2.93v7.94h4.37V2.3h3v8.71h-7.37v7.25h5.35v-5.98H50.41z"/>
<path style="fill:#424252;" d="M72.1,19.42c0.72,0,0.86-0.46,0.96-3.29c0.58,0.48,1.82,0.96,2.59,1.15
c-0.29,3.79-1.06,4.83-3.29,4.83H69.6c-2.69,0-3.31-0.89-3.31-3.6v-5.83h-3.5c-0.53,4.27-1.75,7.85-7.27,9.94
c-0.34-0.77-1.13-1.92-1.78-2.52c4.78-1.56,5.69-4.25,6.05-7.42h-5.67V9.91h9.19V6.02h-4.13c-0.55,1.22-1.18,2.38-1.85,3.26
c-0.65-0.41-1.85-0.98-2.52-1.25c1.56-1.97,2.69-5.21,3.19-7.66l2.93,0.58c-0.22,0.74-0.46,1.51-0.72,2.33h3.1V0.05h2.9v3.24h7.34
v2.74h-7.34v3.89h9.22v2.76h-6.26v5.83c0,0.79,0.12,0.91,0.86,0.91H72.1z"/>
<path style="fill:#424252;" d="M79.76,3.84c1.99-0.17,5.93-0.53,10.27-0.91c2.45-0.19,5.04-0.34,6.72-0.41l0.02,3.07
c-1.27,0-3.31,0.02-4.58,0.31c-2.88,0.77-5.02,3.84-5.02,6.65c0,3.91,3.65,5.33,7.68,5.52l-1.1,3.29c-4.99-0.31-9.7-3-9.7-8.16
c0-3.43,1.9-6.12,3.5-7.32c-2.06,0.22-7.06,0.74-9.82,1.34l-0.31-3.26C78.39,3.94,79.3,3.89,79.76,3.84z M95.36,11.16l-1.82,0.82
c-0.6-1.32-1.1-2.26-1.87-3.34l1.78-0.74C94.01,8.76,94.9,10.2,95.36,11.16z M98.14,9.99l-1.8,0.86c-0.65-1.3-1.2-2.18-1.97-3.24
l1.75-0.82C96.72,7.63,97.64,9.05,98.14,9.99z"/>
<path style="fill:#424252;" d="M117.34,9.84c1.58,2.02,2.3,3.7,2.3,5.71c0,3.58-3.22,6.17-8.42,6.17c-3.74,0-6.38-1.63-6.38-5.59
c0-0.58,0.07-1.42,0.17-2.4c-1.73-0.17-3.29-0.43-4.56-0.79l0.17-2.88c1.54,0.53,3.14,0.79,4.68,0.94
c0.14-1.06,0.26-2.16,0.41-3.24c-1.66-0.17-3.34-0.46-4.73-0.84l0.17-2.76c1.37,0.46,3.14,0.74,4.87,0.89
c0.1-0.72,0.14-1.37,0.19-1.9c0.05-0.65,0.1-1.32,0.05-2.11l3.34,0.19c-0.19,0.86-0.31,1.49-0.41,2.11
c-0.07,0.41-0.14,1.03-0.26,1.8c1.7-0.02,3.24-0.12,4.37-0.29l-0.1,2.83c-1.42,0.14-2.71,0.22-4.63,0.22
c-0.14,1.06-0.29,2.18-0.41,3.24h0.17c1.46,0,3.22-0.12,4.78-0.29l-0.07,2.83c-1.34,0.12-2.74,0.22-4.2,0.22
c-0.31,0-0.65,0-0.96,0c-0.05,0.7-0.1,1.3-0.1,1.73c0,1.94,1.2,3.02,3.55,3.02c3.31,0,5.14-1.51,5.14-3.48
c0-1.61-0.91-3.14-2.45-4.61L117.34,9.84z"/>
<path style="fill:#424252;" d="M138.27,13.68c-0.19,1.49-0.6,2.9-1.32,4.18c2.21,1.06,4.97,1.73,8.21,2.02
c-0.6,0.62-1.34,1.8-1.7,2.54c-3.24-0.41-5.98-1.25-8.21-2.52c-1.15,1.06-2.78,1.94-4.92,2.57c-0.36-0.62-1.2-1.78-1.78-2.38
c1.92-0.43,3.34-1.06,4.37-1.85c-1.18-0.98-2.14-2.21-2.95-3.58l2.33-0.72c0.58,0.94,1.34,1.75,2.23,2.47
c0.48-0.86,0.74-1.75,0.89-2.74h-5.35V6.67h5.52V4.99h-6.02V2.78c-0.43,0.91-0.91,1.85-1.44,2.76v16.97h-2.71V9.62
c-0.65,0.82-1.3,1.58-1.97,2.26c-0.26-0.7-1.03-2.23-1.51-2.93c2.28-2.16,4.51-5.54,5.81-8.95l2.64,0.86
c-0.22,0.5-0.43,1.01-0.65,1.54h5.86V0.22h2.83V2.4h6.36v2.59h-6.36v1.68h5.71v7.01H138.27z M135.58,11.38v-0.31V9h-2.95v2.38
H135.58z M138.41,9v2.09v0.29h2.98V9H138.41z"/>
<path style="fill:#424252;" d="M167.14,19.08c0,1.54-0.34,2.3-1.3,2.74c-0.98,0.48-2.45,0.53-4.61,0.5
c-0.1-0.77-0.55-1.99-0.91-2.74c1.34,0.07,2.93,0.05,3.36,0.05c0.46,0,0.62-0.14,0.62-0.58v-3.6h-5.06v6.7h-2.88v-6.7h-4.9
c-0.43,2.62-1.3,5.26-3.02,7.13c-0.46-0.53-1.61-1.51-2.26-1.85c2.62-2.88,2.83-7.15,2.83-10.51V1.66h18.12V19.08z M156.36,12.77
V9.82h-4.51v0.43c0,0.77-0.02,1.63-0.07,2.52H156.36z M151.85,4.37v2.78h4.51V4.37H151.85z M164.31,4.37h-5.06v2.78h5.06V4.37z
M164.31,12.77V9.82h-5.06v2.95H164.31z"/>
<path style="fill:#424252;" d="M190.66,6.67c-1.44-0.07-3.67-0.12-6.89-0.12c0.02,1.2,0.02,2.5,0.02,3.53
c0.6,0.89,0.89,2.04,0.89,3.29c0,3.1-1.82,7.03-7.63,8.67l-2.52-2.54c2.4-0.5,4.49-1.3,5.81-2.71c-0.34,0.07-0.7,0.12-1.08,0.12
c-1.85,0-4.1-1.46-4.1-4.37c0-2.69,2.16-4.44,4.75-4.44c0.34,0,0.65,0.02,0.94,0.07l-0.02-1.58c-3.6,0.05-7.27,0.19-10.2,0.36
l-0.07-2.88c2.71,0,7.03-0.12,10.22-0.17c0-0.29,0-0.55-0.02-0.72c-0.05-0.77-0.12-1.68-0.22-2.06h3.46
c-0.07,0.38-0.14,1.66-0.17,2.04c0,0.19-0.02,0.43-0.02,0.72c2.4,0,5.64-0.02,6.89,0L190.66,6.67z M179.84,14.26
c0.98,0,1.87-0.74,1.56-2.81c-0.34-0.58-0.89-0.84-1.56-0.84c-0.91,0-1.82,0.62-1.82,1.87C178.01,13.58,178.9,14.26,179.84,14.26z
"/>
<path style="fill:#424252;" d="M208.97,3.91c-0.58,0.36-1.13,0.72-1.66,1.08c-1.27,0.89-3.77,3-5.26,4.2
c0.79-0.22,1.46-0.26,2.23-0.26c4.03,0,7.11,2.52,7.11,5.98c0,3.74-2.86,6.72-8.59,6.72c-3.31,0-5.81-1.51-5.81-3.89
c0-1.92,1.75-3.7,4.27-3.7c2.93,0,4.7,1.8,5.06,4.06c1.3-0.7,1.94-1.8,1.94-3.24c0-2.14-2.16-3.58-4.92-3.58
c-3.65,0-6.02,1.94-8.57,4.82l-2.16-2.23c1.68-1.37,4.54-3.79,5.95-4.94c1.32-1.1,3.79-3.1,4.97-4.13
c-1.22,0.02-4.49,0.17-5.74,0.26c-0.65,0.02-1.39,0.1-1.94,0.19l-0.1-3.1c0.67,0.07,1.49,0.12,2.16,0.12
c1.25,0,6.34-0.12,7.68-0.24c0.98-0.07,1.54-0.17,1.82-0.24L208.97,3.91z M203.6,18.87c-0.14-1.54-1.03-2.54-2.33-2.54
c-0.89,0-1.46,0.53-1.46,1.13c0,0.89,1.01,1.49,2.4,1.49C202.71,18.94,203.17,18.91,203.6,18.87z"/>
<path style="fill:#424252;" d="M226.52,0.6c-0.02,0.38-0.05,0.86-0.07,1.37c0.19,3.31,1.39,13.66,10.34,17.86
c-0.89,0.67-1.75,1.66-2.21,2.42c-5.42-2.69-8.11-7.63-9.46-12.05c-1.3,4.32-3.82,8.95-8.88,12.05c-0.5-0.74-1.44-1.61-2.4-2.28
c9.58-5.3,9.24-16.2,9.41-19.37H226.52z"/>
</g>
</g>
<polyline style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="
120.38,171.28 236.79,31.28 5.19,31.28 "/>
<circle style="fill:#FFFFFF;" cx="121" cy="171.28" r="75"/>
<g>
<g>
<path style="fill:#424252;" d="M91.72,155.36h-19.2v-8.88h30.6v6.48c-10.32,12.3-11.4,20.7-12.18,38.16H80.21
C81.04,176.42,83.32,167,91.72,155.36z"/>
<path style="fill:#424252;" d="M110.68,182.48h9.48V157.1h-8.22v-6.6c4.8-0.9,7.92-2.1,11.04-4.02h7.86v36h8.04v8.64h-28.2V182.48
z"/>
<path style="fill:#424252;" d="M143.44,174.38c0-4.77,2.53-7.52,6.02-7.52c3.49,0,6.05,2.75,6.05,7.52s-2.56,7.62-6.05,7.62
C145.97,182,143.44,179.15,143.44,174.38z M151.54,174.38c0-3.33-0.96-4.38-2.08-4.38c-1.12,0-2.08,1.06-2.08,4.38
c0,3.33,0.96,4.48,2.08,4.48C150.58,178.86,151.54,177.71,151.54,174.38z M163.12,166.87h3.26l-12.86,24.7h-3.23L163.12,166.87z
M161.17,183.95c0-4.77,2.56-7.55,6.02-7.55c3.46,0,6.02,2.78,6.02,7.55c0,4.77-2.56,7.62-6.02,7.62
C163.73,191.57,161.17,188.72,161.17,183.95z M169.23,183.95c0-3.36-0.93-4.38-2.05-4.38s-2.11,1.02-2.11,4.38
c0,3.33,0.99,4.45,2.11,4.45S169.23,187.28,169.23,183.95z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="252.27px" height="292.26px" viewBox="0 0 252.27 292.26" style="enable-background:new 0 0 252.27 292.26;"
xml:space="preserve">
<path style="fill:#E6E6E6;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M246.44,171.26c0,66.27-53.73,120-120,120
s-120-53.73-120-120s53.73-120,120-120S246.44,104.99,246.44,171.26z"/>
<path style="fill:#2FC5D9;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M126.43,51.26l0,119.99
c0,0,117.87-22.49,117.87-22.49c0-0.02,0.01-0.05,0-0.08C233.75,93.21,185,51.26,126.43,51.26
C126.43,51.26,126.43,51.26,126.43,51.26z"/>
<g>
<g>
<path style="fill:#424252;" d="M12.5,11.45c0,0-0.02,0.7-0.02,1.03c-0.24,5.79-0.48,8.09-1.15,8.91c-0.48,0.58-1.03,0.79-1.8,0.89
c-0.65,0.1-1.75,0.12-2.9,0.07C6.59,21.6,6.3,20.57,5.9,19.87c0.96,0.12,1.92,0.12,2.35,0.12c0.36,0,0.58-0.05,0.79-0.31
c0.36-0.41,0.58-1.94,0.74-5.74H7.12c-0.55,3.29-1.68,6.36-4.22,8.52c-0.41-0.72-1.22-1.61-1.9-2.09
c3.14-2.59,3.62-6.91,3.82-10.9h-2.4V1.13h9.87v8.35H7.6c-0.05,0.65-0.1,1.32-0.14,1.97H12.5z M5.01,6.94h4.51V3.65H5.01V6.94z
M16.87,16.44h-2.79V2.93h2.79V16.44z M22.55,0.5v18.48c0,1.68-0.34,2.47-1.32,2.93c-0.98,0.46-2.59,0.55-4.78,0.55
c-0.12-0.84-0.55-2.16-0.98-2.95c1.56,0.05,3.1,0.05,3.6,0.05c0.46,0,0.65-0.14,0.65-0.58V0.5H22.55z"/>
<path style="fill:#424252;" d="M35.63,18.53c0.91-0.12,1.58-0.24,2.21-0.38c3.05-0.72,5.4-2.9,5.4-6.36
c0-3.29-1.78-5.74-4.97-6.29c-0.34,2.02-0.74,4.22-1.42,6.46c-1.42,4.8-3.48,7.73-6.07,7.73c-2.62,0-4.85-2.9-4.85-6.91
c0-5.47,4.78-10.18,10.95-10.18c5.88,0,9.6,4.1,9.6,9.29c0,4.99-3.07,8.54-9.07,9.46L35.63,18.53z M33.78,11.33
c0.55-1.75,0.98-3.79,1.27-5.76c-3.94,0.82-6.02,4.27-6.02,6.89c0,2.4,0.96,3.58,1.85,3.58C31.86,16.03,32.82,14.54,33.78,11.33z"
/>
<path style="fill:#424252;" d="M64.91,14.83c-2.47-1.3-6.07-2.69-8.67-3.58v6.79c0,0.7,0.12,2.38,0.22,3.34h-3.74
c0.14-0.94,0.24-2.38,0.24-3.34V4.27c0-0.86-0.07-2.06-0.24-2.9h3.74c-0.1,0.84-0.22,1.9-0.22,2.9V7.8
c3.22,0.94,7.83,2.64,10.03,3.72L64.91,14.83z"/>
<path style="fill:#424252;" d="M82.31,18.27c0,1.06,0.05,2.54,0.22,3.14h-3.79c0.1-0.58,0.17-2.09,0.17-3.14v-7.87
c-2.47,1.25-5.47,2.5-8.26,3.26l-1.73-2.93c4.2-0.91,8.23-2.69,10.92-4.34c2.42-1.51,4.92-3.65,6.26-5.42l2.57,2.33
c-1.82,1.82-3.98,3.62-6.36,5.16V18.27z"/>
<path style="fill:#424252;" d="M93.42,19.39c0.29-0.6,0.31-1.01,0.31-1.56V4.82c0-0.91-0.12-2.04-0.26-2.71h3.77
C97.1,3.02,97,3.89,97,4.82v12.46c3.91-1.1,9.26-4.18,12.34-7.92l1.7,2.71c-3.29,3.94-8.28,6.79-13.92,8.64
c-0.34,0.12-0.86,0.29-1.44,0.65L93.42,19.39z"/>
<path style="fill:#424252;" d="M123.81,16.9c0.05-0.7,0.07-1.8,0.1-2.83c-1.75,0.96-2.71,1.9-2.71,3.07
c0,1.32,1.13,1.68,3.46,1.68c2.02,0,4.66-0.26,6.74-0.7l-0.1,3.1c-1.58,0.19-4.49,0.38-6.72,0.38c-3.72,0-6.53-0.89-6.53-3.96
c0-3.02,2.88-4.94,5.59-6.34c-0.38-0.6-1.01-0.82-1.66-0.82c-1.34,0-2.81,0.77-3.72,1.63c-0.72,0.72-1.39,1.58-2.21,2.62
l-2.54-1.9c2.5-2.3,4.18-4.42,5.23-6.53h-0.29c-0.96,0-2.71-0.05-4.01-0.17V3.36c1.2,0.19,2.98,0.26,4.18,0.26h1.15
c0.29-1.08,0.46-2.04,0.48-2.71l3.12,0.26c-0.12,0.58-0.29,1.39-0.58,2.35c2.23-0.12,4.63-0.31,6.72-0.7l-0.02,2.78
c-2.28,0.34-5.21,0.53-7.75,0.62c-0.38,0.84-0.86,1.7-1.37,2.4c0.62-0.31,1.9-0.48,2.69-0.48c1.44,0,2.64,0.62,3.17,1.85
c1.22-0.58,2.23-0.98,3.22-1.42c0.91-0.41,1.75-0.82,2.62-1.22l1.2,2.76c-0.77,0.19-2.02,0.67-2.83,1.01
c-1.06,0.41-2.4,0.94-3.86,1.61c0.02,1.32,0.07,3.07,0.1,4.15H123.81z"/>
<path style="fill:#424252;" d="M143.35,12.65c-0.77,0.24-1.54,0.48-2.3,0.7v6.07c0,1.32-0.22,2.04-0.94,2.5
c-0.74,0.46-1.75,0.55-3.34,0.53c-0.07-0.7-0.38-1.87-0.7-2.64c0.84,0.05,1.68,0.05,1.97,0.02c0.29,0,0.41-0.1,0.41-0.41v-5.3
c-0.79,0.24-1.58,0.46-2.28,0.65l-0.62-2.74c0.82-0.17,1.82-0.43,2.9-0.7V7.18h-2.52V4.56h2.52V0.05h2.59v4.51h2.18v2.62h-2.18
v3.46l1.94-0.55L143.35,12.65z M153.55,14.95c1.3,1.75,3.14,3.41,4.99,4.34c-0.62,0.5-1.49,1.51-1.92,2.18
c-1.68-1.03-3.29-2.69-4.58-4.54v5.47h-2.83v-5.5c-1.42,2.02-3.29,3.72-5.33,4.78c-0.41-0.65-1.2-1.66-1.82-2.18
c2.21-0.91,4.25-2.62,5.62-4.56h-4.15v-2.54h5.69v-2.38h2.71c-0.58-0.43-0.72-1.2-0.72-2.45V4.1h2.54v3.46
c0,0.6,0.1,0.65,0.53,0.65h1.15c0.43,0,0.53-0.22,0.58-1.8c0.48,0.38,1.54,0.77,2.21,0.89c-0.24,2.52-0.89,3.17-2.47,3.17h-1.9
c-0.82,0-1.39-0.1-1.8-0.34v2.28h5.78v2.54H153.55z M149.97,4.13c-0.22,3.65-1.01,5.79-5.33,6.89c-0.24-0.6-0.89-1.54-1.37-2.02
c3.5-0.79,3.96-2.16,4.1-4.87H149.97z M146.18,6.02h-2.42v-4.9h14.02v4.75h-2.52V3.55h-9.07V6.02z"/>
<path style="fill:#424252;" d="M180.07,6.65c-1.44-0.07-3.67-0.12-6.89-0.12c0.02,1.2,0.02,2.5,0.02,3.53
c0.6,0.89,0.89,2.04,0.89,3.29c0,3.1-1.82,7.03-7.63,8.67l-2.52-2.54c2.4-0.5,4.49-1.3,5.81-2.71c-0.34,0.07-0.7,0.12-1.08,0.12
c-1.85,0-4.1-1.46-4.1-4.37c0-2.69,2.16-4.44,4.75-4.44c0.34,0,0.65,0.02,0.94,0.07l-0.02-1.58c-3.6,0.05-7.27,0.19-10.2,0.36
l-0.07-2.88c2.71,0,7.03-0.12,10.22-0.17c0-0.29,0-0.55-0.02-0.72c-0.05-0.77-0.12-1.68-0.22-2.06h3.46
c-0.07,0.38-0.14,1.66-0.17,2.04c0,0.19-0.02,0.43-0.02,0.72c2.4,0,5.64-0.02,6.89,0L180.07,6.65z M169.24,14.23
c0.98,0,1.87-0.74,1.56-2.81c-0.34-0.58-0.89-0.84-1.56-0.84c-0.91,0-1.82,0.62-1.82,1.87C167.42,13.56,168.31,14.23,169.24,14.23
z"/>
<path style="fill:#424252;" d="M199.41,15.19c-0.96,1.49-2.23,2.69-3.79,3.67c2.33,0.58,4.99,0.91,7.87,1.06
c-0.58,0.62-1.27,1.78-1.63,2.54c-3.53-0.31-6.7-0.96-9.38-2.04c-2.74,1.06-5.93,1.7-9.24,2.06c-0.26-0.65-0.98-1.78-1.46-2.35
c2.81-0.19,5.47-0.58,7.8-1.22c-0.79-0.5-1.51-1.06-2.16-1.68c-1.06,0.58-2.14,1.1-3.19,1.51c-0.46-0.5-1.39-1.46-1.97-1.9
c2.78-0.84,5.54-2.26,7.27-4.01c-1.06-0.29-1.34-1.01-1.34-2.38V8.81h2.62v1.66c0,0.55,0.17,0.6,0.96,0.6h2.52
c0.6,0,0.77-0.14,0.84-1.13c0.53,0.31,1.49,0.62,2.18,0.74c-0.26,1.85-0.94,2.35-2.71,2.35h-2.21l0.14,0.05
c-0.29,0.36-0.6,0.72-0.94,1.06h5.57l0.48-0.07L199.41,15.19z M184.99,9.94h-2.71V5.57h4.13c-0.31-0.67-0.77-1.44-1.22-2.06
l0.26-0.12c-0.65,0.02-1.3,0.05-1.94,0.05c-0.05-0.6-0.31-1.54-0.55-2.06c5.9-0.12,12.87-0.58,16.8-1.37l1.9,1.9
c-0.96,0.19-1.97,0.36-3.07,0.53l2.16,0.67c-0.6,0.86-1.22,1.73-1.8,2.47h3.86v4.7h-2.3c0.65,0.6,1.18,1.2,1.54,1.73l-2.04,1.54
c-0.7-1.13-2.28-2.74-3.67-3.84l1.92-1.34c0.55,0.41,1.15,0.91,1.73,1.42V7.75h-6.53c0.65,0.34,1.22,0.72,1.63,1.06l-1.44,1.58
c-0.72-0.67-2.21-1.54-3.41-2.06l0.53-0.58h-5.76V9.94z M182.95,12.17c1.37-0.74,2.45-2.09,3.05-3.38l2.14,0.91
c-0.67,1.54-1.66,3.07-3.22,4.08L182.95,12.17z M191.56,5.57c-0.22-0.74-0.65-1.66-1.1-2.4c-0.82,0.05-1.63,0.1-2.45,0.14
c0.46,0.65,0.89,1.39,1.03,1.94l-0.72,0.31H191.56z M189.52,16.11c0.82,0.67,1.82,1.25,3,1.75c1.06-0.5,1.97-1.08,2.74-1.75
H189.52z M196.12,5.57c0.55-0.84,1.22-2.09,1.66-3.05c-1.46,0.19-3.02,0.34-4.63,0.48c0.43,0.72,0.82,1.49,0.96,2.09l-1.27,0.48
H196.12z"/>
<path style="fill:#424252;" d="M226.1,19.06c0,1.54-0.34,2.3-1.3,2.74c-0.98,0.48-2.45,0.53-4.61,0.5
c-0.1-0.77-0.55-1.99-0.91-2.74c1.34,0.07,2.93,0.05,3.36,0.05c0.46,0,0.62-0.14,0.62-0.58v-3.6h-5.06v6.7h-2.88v-6.7h-4.9
c-0.43,2.62-1.3,5.26-3.02,7.13c-0.46-0.53-1.61-1.51-2.26-1.85c2.62-2.88,2.83-7.15,2.83-10.51V1.63h18.12V19.06z M215.32,12.75
V9.79h-4.51v0.43c0,0.77-0.02,1.63-0.07,2.52H215.32z M210.81,4.34v2.78h4.51V4.34H210.81z M223.27,4.34h-5.06v2.78h5.06V4.34z
M223.27,12.75V9.79h-5.06v2.95H223.27z"/>
<path style="fill:#424252;" d="M242.63,9.79c-0.94,0.67-1.85,1.3-2.83,1.92h8.71v10.66h-2.98v-0.62h-8.26v0.72h-2.86v-7.85
c-1.2,0.53-2.45,1.06-3.67,1.51c-0.36-0.62-1.2-1.78-1.75-2.35c3.14-0.98,6.17-2.35,8.93-3.98h-8.16V7.27h7.71V5.09h-5.64V2.62
h5.64V0.02h2.83v2.59h5.21v1.18c0.91-0.98,1.73-1.99,2.47-3.05l2.45,1.25c-1.37,1.9-2.98,3.67-4.73,5.28h5.57v2.52H242.63z
M245.54,14.04h-8.26v1.54h8.26V14.04z M245.54,19.37v-1.63h-8.26v1.63H245.54z M240.31,7.27h1.32c0.91-0.7,1.78-1.42,2.59-2.18
h-3.91V7.27z"/>
</g>
</g>
<polyline style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="
126.44,171.26 251.27,31.25 1,31.25 "/>
<circle style="fill:#FFFFFF;" cx="126.44" cy="171.26" r="75"/>
<g>
<g>
<path style="fill:#424252;" d="M77.42,184.98c11.16-10.14,18.66-18.24,18.66-24.72c0-4.08-2.28-6.3-5.82-6.3
c-3.06,0-5.46,2.04-7.56,4.32l-5.82-5.76c4.38-4.62,8.46-6.9,14.82-6.9c8.64,0,14.64,5.52,14.64,14.04
c0,7.68-6.6,16.14-13.44,23.04c2.22-0.3,5.28-0.6,7.26-0.6h8.22v9H77.42V184.98z"/>
<path style="fill:#424252;" d="M113.96,184.98c11.16-10.14,18.66-18.24,18.66-24.72c0-4.08-2.28-6.3-5.82-6.3
c-3.06,0-5.46,2.04-7.56,4.32l-5.82-5.76c4.38-4.62,8.46-6.9,14.82-6.9c8.64,0,14.64,5.52,14.64,14.04
c0,7.68-6.6,16.14-13.44,23.04c2.22-0.3,5.28-0.6,7.26-0.6h8.22v9h-30.96V184.98z"/>
<path style="fill:#424252;" d="M148.88,174.37c0-4.77,2.53-7.52,6.02-7.52c3.49,0,6.05,2.75,6.05,7.52s-2.56,7.62-6.05,7.62
C151.41,181.99,148.88,179.14,148.88,174.37z M156.97,174.37c0-3.33-0.96-4.38-2.08-4.38c-1.12,0-2.08,1.06-2.08,4.38
c0,3.33,0.96,4.48,2.08,4.48C156.01,178.85,156.97,177.7,156.97,174.37z M168.56,166.85h3.26l-12.86,24.7h-3.23L168.56,166.85z
M166.6,183.94c0-4.77,2.56-7.55,6.02-7.55c3.46,0,6.02,2.78,6.02,7.55c0,4.77-2.56,7.62-6.02,7.62
C169.16,191.55,166.6,188.71,166.6,183.94z M174.67,183.94c0-3.36-0.93-4.38-2.05-4.38s-2.11,1.02-2.11,4.38
c0,3.33,0.99,4.45,2.11,4.45S174.67,187.26,174.67,183.94z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="255.49px" height="292.38px" viewBox="0 0 255.49 292.38" style="enable-background:new 0 0 255.49 292.38;"
xml:space="preserve">
<circle style="fill:#2FC5D9;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" cx="127.32" cy="171.38" r="120"/>
<path style="fill:#E6E6E6;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;" d="M127.32,171.38l0-120
c-3.21,0-6.39,0.13-9.53,0.38c-0.49,0.04-0.98,0.09-1.47,0.14c-0.98,0.09-1.96,0.18-2.93,0.3c-1.02,0.12-2.04,0.26-3.06,0.41
c-0.42,0.06-0.84,0.11-1.26,0.18c-1.39,0.22-2.78,0.45-4.17,0.72c-0.02,0-0.05,0.01-0.07,0.01L127.32,171.38z"/>
<g>
<g>
<path style="fill:#424252;" d="M13.58,0c2.57,3.67,6.5,7.06,10.25,8.81c-0.72,0.72-1.34,1.63-1.87,2.5
c-1.51-0.89-3.07-1.99-4.54-3.22v1.99H7.24V8.16c-1.37,1.18-2.88,2.26-4.44,3.19C2.44,10.68,1.62,9.67,1,9.07
C5.06,6.84,8.92,2.98,10.72,0H13.58z M18.23,12.24l2.28,0.67c-1.18,2.93-2.9,6.67-4.39,9.72l-3.02-0.84
c1.06-2.06,2.28-4.63,3.19-6.72H3.98v-2.71h13.75L18.23,12.24z M16.65,7.44c-1.75-1.54-3.31-3.17-4.37-4.66
c-1.03,1.49-2.5,3.12-4.22,4.66H16.65z"/>
<path style="fill:#424252;" d="M32.68,6.22c-0.53,0.96-1.15,1.94-1.82,2.9v13.49h-2.66V12.34c-0.62,0.67-1.25,1.25-1.87,1.78
c-0.26-0.62-1.03-2.06-1.49-2.66c2.02-1.51,4.1-3.84,5.35-6.17L32.68,6.22z M32.27,1.15c-1.51,2.06-3.74,4.39-5.74,5.86
c-0.36-0.58-1.06-1.58-1.49-2.09c1.7-1.2,3.7-3.19,4.71-4.75L32.27,1.15z M45.57,13.25c-0.82,2.11-2.09,3.82-3.65,5.19
c1.73,0.82,3.74,1.42,5.98,1.75c-0.6,0.6-1.34,1.7-1.7,2.45c-2.54-0.5-4.75-1.34-6.62-2.52c-1.99,1.18-4.32,2.02-6.79,2.57
c-0.26-0.72-0.86-1.85-1.37-2.42c2.14-0.36,4.15-0.98,5.9-1.87c-0.7-0.62-1.34-1.32-1.9-2.09c-0.72,0.55-1.44,1.06-2.16,1.49
c-0.38-0.55-1.3-1.61-1.85-2.11c2.04-1.03,4.01-2.62,5.35-4.44l-4.8,0.14l-0.24-2.52c1.08,0,2.33,0,3.7-0.02
c0.34-0.29,0.7-0.6,1.03-0.91c-1.1-1.13-2.78-2.47-4.22-3.41l1.7-1.85c0.41,0.26,0.86,0.55,1.32,0.86
c0.94-1.08,1.94-2.4,2.57-3.48l2.47,1.27c-1.03,1.25-2.21,2.54-3.22,3.55c0.5,0.41,0.98,0.82,1.37,1.2
c1.46-1.42,2.83-2.93,3.86-4.25l2.52,1.39c-1.73,1.82-3.86,3.87-5.88,5.57l4.3-0.07c-0.38-0.55-0.79-1.06-1.2-1.54l2.21-1.22
c1.39,1.56,2.98,3.72,3.65,5.26l-2.4,1.34c-0.19-0.46-0.46-1.01-0.79-1.58c-1.58,0.07-3.22,0.12-4.78,0.17
c-0.29,0.48-0.6,0.96-0.94,1.42h4.34l0.46-0.1L45.57,13.25z M37.17,14.71c0.62,0.86,1.44,1.63,2.38,2.33
c0.91-0.7,1.68-1.46,2.3-2.35h-4.66L37.17,14.71z"/>
<path style="fill:#424252;" d="M67.19,9.94c1.58,2.02,2.3,3.7,2.3,5.71c0,3.58-3.22,6.17-8.42,6.17c-3.74,0-6.38-1.63-6.38-5.59
c0-0.58,0.07-1.42,0.17-2.4c-1.73-0.17-3.29-0.43-4.56-0.79l0.17-2.88c1.54,0.53,3.14,0.79,4.68,0.94
c0.14-1.05,0.26-2.16,0.41-3.24c-1.66-0.17-3.34-0.46-4.73-0.84l0.17-2.76c1.37,0.46,3.14,0.74,4.87,0.89
c0.1-0.72,0.14-1.37,0.19-1.9c0.05-0.65,0.1-1.32,0.05-2.11l3.34,0.19c-0.19,0.86-0.31,1.49-0.41,2.11
c-0.07,0.41-0.14,1.03-0.26,1.8c1.7-0.03,3.24-0.12,4.37-0.29l-0.1,2.83c-1.42,0.14-2.71,0.22-4.63,0.22
c-0.14,1.06-0.29,2.18-0.41,3.24h0.17c1.46,0,3.22-0.12,4.78-0.29l-0.07,2.83c-1.34,0.12-2.74,0.21-4.2,0.21
c-0.31,0-0.65,0-0.96,0c-0.05,0.7-0.1,1.3-0.1,1.73c0,1.94,1.2,3.02,3.55,3.02c3.31,0,5.14-1.51,5.14-3.48
c0-1.61-0.91-3.14-2.45-4.61L67.19,9.94z"/>
<path style="fill:#424252;" d="M75.23,14.54c-0.22,2.28-0.74,4.63-1.44,6.17c-0.46-0.29-1.44-0.77-1.99-0.96
c0.7-1.42,1.03-3.55,1.22-5.57L75.23,14.54z M94.65,21.48H83.87v1.01h-2.66v-9.36l-1.8,0.79c-0.07-0.41-0.17-0.86-0.31-1.37
l-1.22,0.1v9.91h-2.4v-9.72l-3.17,0.24l-0.29-2.47c0.58-0.02,1.2-0.07,1.9-0.1c0.31-0.43,0.65-0.91,0.96-1.39
c-0.62-1.11-1.8-2.45-2.79-3.48l1.37-1.85c0.19,0.17,0.38,0.36,0.58,0.55c0.67-1.32,1.34-2.95,1.73-4.18l2.42,0.84
c-0.86,1.66-1.85,3.55-2.69,4.9c0.29,0.34,0.55,0.67,0.77,0.98c0.79-1.35,1.51-2.74,2.06-3.91l2.26,1.03
c-0.89,1.46-1.92,3.07-2.98,4.58l1.87-0.77c0.7,1.37,1.37,3.05,1.73,4.37V1.05h2.66v13.87c1.27-1.13,2.57-3.05,3.36-4.8h-2.88
V7.58h3.58V0.62h2.47v6.96h3.77v2.54H90.4v0.36c1.03,0.89,3.5,3.38,4.08,4.01l-1.68,2.21c-0.5-0.84-1.49-2.16-2.4-3.31v5.16h-2.47
v-5.04c-0.84,1.63-1.85,3.17-2.93,4.15c-0.22-0.74-0.72-1.82-1.13-2.54v3.77h10.78V21.48z M78.33,10.25
c-0.22-0.58-0.46-1.15-0.72-1.66c-0.43,0.62-0.84,1.22-1.27,1.78L78.33,10.25z M79.87,14.09c0.6,1.37,1.08,3.12,1.22,4.32
l-1.99,0.65c-0.1-1.2-0.55-3-1.1-4.42L79.87,14.09z M85.6,7.3c-0.17-1.27-0.77-3.19-1.37-4.63l2.02-0.7
c0.7,1.44,1.3,3.29,1.51,4.56L85.6,7.3z M94.31,2.52c-0.67,1.68-1.42,3.6-2.02,4.82l-1.9-0.67c0.53-1.34,1.2-3.46,1.46-4.92
L94.31,2.52z"/>
<path style="fill:#424252;" d="M99.3,14.57c-0.22,2.28-0.74,4.66-1.42,6.19c-0.48-0.34-1.51-0.79-2.09-1.01
c0.7-1.42,1.03-3.55,1.22-5.57L99.3,14.57z M102.09,12.62v9.94h-2.45v-9.74l-3.34,0.26l-0.29-2.47l1.73-0.1
c0.36-0.43,0.72-0.91,1.08-1.42c-0.67-1.08-1.78-2.38-2.74-3.36l1.39-1.92c0.17,0.17,0.36,0.34,0.55,0.5
C98.7,3,99.38,1.39,99.76,0.17l2.47,0.86c-0.84,1.66-1.82,3.55-2.71,4.9c0.29,0.31,0.55,0.65,0.77,0.94
c0.84-1.34,1.61-2.71,2.16-3.89l2.33,1.08c-1.32,2.02-2.95,4.39-4.46,6.31l2.09-0.12c-0.24-0.53-0.5-1.06-0.77-1.54l2.02-0.84
c0.62,1.08,1.22,2.38,1.66,3.53V9.14h13.18v4.75h-2.5v-2.54h-8.3v2.54h-2.38v-0.72l-1.66,0.77c-0.07-0.41-0.22-0.89-0.36-1.42
L102.09,12.62z M104.3,14.09c0.58,1.32,1.08,3.07,1.22,4.22l-2.11,0.7c-0.12-1.18-0.58-2.95-1.1-4.32L104.3,14.09z M108.19,12.55
h2.57v1.92c0,2.47-0.65,5.93-5.11,8.11c-0.43-0.58-1.32-1.39-1.94-1.9c3.94-1.87,4.49-4.51,4.49-6.27V12.55z M110.35,4.34h-4.97
V2.02h4.97V0.14h2.83v1.87h5.06v2.33h-5.06v1.39h4.37v2.3h-11.3v-2.3h4.1V4.34z M116.23,19.92c0.34,0,0.46-0.38,0.5-2.98
c0.5,0.46,1.56,0.86,2.28,1.05c-0.24,3.43-0.89,4.32-2.52,4.32h-1.54c-2.04,0-2.47-0.77-2.47-3.14v-6.62h2.57v6.62
c0,0.65,0.05,0.74,0.36,0.74H116.23z"/>
<path style="fill:#424252;" d="M126.91,1.51c-0.17,1.01-0.29,2.21-0.31,3.17c-0.12,2.54-0.29,7.87-0.29,10.82
c0,2.4,1.44,3.17,3.26,3.17c3.94,0,6.43-2.26,8.14-4.85l2.16,2.66c-1.54,2.26-4.9,5.43-10.32,5.43c-3.89,0-6.41-1.71-6.41-5.76
c0-3.19,0.24-9.43,0.24-11.47c0-1.13-0.1-2.28-0.31-3.22L126.91,1.51z"/>
<path style="fill:#424252;" d="M143.56,3.89c1.97-0.19,5.9-0.53,10.25-0.91c2.45-0.19,5.06-0.34,6.72-0.41l0.02,3.07
c-1.27,0-3.31,0.02-4.58,0.31c-2.86,0.77-5.02,3.84-5.02,6.65c0,3.91,3.67,5.3,7.68,5.52l-1.1,3.29c-4.99-0.34-9.7-3.03-9.7-8.16
c0-3.43,1.92-6.12,3.5-7.32c-2.04,0.22-7.06,0.74-9.82,1.34l-0.29-3.26C142.17,3.98,143.08,3.94,143.56,3.89z"/>
<path style="fill:#424252;" d="M178.15,13.78c-0.19,1.49-0.6,2.9-1.32,4.18c2.21,1.06,4.97,1.73,8.21,2.02
c-0.6,0.62-1.34,1.8-1.7,2.54c-3.24-0.41-5.98-1.25-8.21-2.52c-1.15,1.06-2.78,1.95-4.92,2.57c-0.36-0.62-1.2-1.78-1.78-2.38
c1.92-0.43,3.34-1.06,4.37-1.85c-1.18-0.98-2.14-2.21-2.95-3.58l2.33-0.72c0.58,0.94,1.34,1.75,2.23,2.47
c0.48-0.87,0.74-1.75,0.89-2.74h-5.35V6.77h5.52V5.09h-6.02V2.88c-0.43,0.91-0.91,1.85-1.44,2.76v16.97h-2.71V9.72
c-0.65,0.82-1.3,1.58-1.97,2.26c-0.26-0.7-1.03-2.23-1.51-2.93c2.28-2.16,4.51-5.54,5.81-8.95l2.64,0.86
c-0.22,0.5-0.43,1.01-0.65,1.54h5.86V0.31h2.83V2.5h6.36v2.59h-6.36v1.68H184v7.01H178.15z M175.46,11.47v-0.31V9.1h-2.95v2.38
H175.46z M178.29,9.1v2.09v0.29h2.98V9.1H178.29z"/>
<path style="fill:#424252;" d="M191.32,6.26c-0.02,1.54,0,3.34,0.14,5.04c0.34,3.43,1.06,5.76,2.54,5.76
c1.13,0,2.06-2.78,2.52-4.66l2.4,2.88c-1.58,4.13-3.07,5.59-4.99,5.59c-2.59,0-4.87-2.35-5.54-8.74
c-0.22-2.18-0.26-4.95-0.26-6.41c0-0.67-0.02-1.68-0.17-2.4l3.65,0.05C191.44,4.22,191.32,5.62,191.32,6.26z M207.84,16.03
l-3.14,1.2c-0.36-3.82-1.63-9.41-4.22-12.34l3.02-1.01C205.75,6.65,207.57,12.38,207.84,16.03z"/>
<path style="fill:#424252;" d="M223.27,6.74c-1.42,0.31-3.02,0.58-4.61,0.77c-0.22,1.03-0.46,2.09-0.72,3.05
c-0.86,3.34-2.47,8.21-3.77,10.99l-3.34-1.1c1.42-2.38,3.22-7.37,4.1-10.71c0.17-0.62,0.34-1.3,0.5-1.97
c-0.55,0.03-1.08,0.05-1.56,0.05c-1.15,0-2.04-0.05-2.88-0.1l-0.07-2.98c1.22,0.14,2.02,0.19,3,0.19c0.7,0,1.39-0.02,2.11-0.07
c0.1-0.53,0.17-0.98,0.22-1.37c0.12-0.89,0.14-1.85,0.1-2.4l3.62,0.29c-0.17,0.65-0.38,1.71-0.5,2.23l-0.19,0.91
c1.34-0.21,2.69-0.48,3.98-0.79V6.74z M222.79,14.54c-0.19,0.67-0.34,1.46-0.34,1.99c0,1.03,0.6,1.8,3.14,1.8
c1.58,0,3.24-0.17,4.94-0.48l-0.12,3.05c-1.34,0.17-2.95,0.34-4.85,0.34c-4.01,0-6.05-1.39-6.05-3.79c0-1.08,0.22-2.23,0.41-3.17
L222.79,14.54z M221.39,8.57c1.32-0.12,3.02-0.24,4.56-0.24c1.34,0,2.78,0.07,4.18,0.22l-0.07,2.86
c-1.18-0.14-2.64-0.29-4.08-0.29c-1.66,0-3.1,0.07-4.58,0.26V8.57z"/>
<path style="fill:#424252;" d="M237.98,6.26c-0.02,1.54,0,3.34,0.14,5.04c0.34,3.43,1.06,5.76,2.54,5.76
c1.13,0,2.06-2.78,2.52-4.66l2.4,2.88c-1.58,4.13-3.07,5.59-4.99,5.59c-2.59,0-4.87-2.35-5.54-8.74
c-0.22-2.18-0.26-4.95-0.26-6.41c0-0.67-0.02-1.68-0.17-2.4l3.65,0.05C238.1,4.22,237.98,5.62,237.98,6.26z M254.49,16.03
l-3.14,1.2c-0.36-3.82-1.63-9.41-4.22-12.34l3.02-1.01C252.4,6.65,254.23,12.38,254.49,16.03z"/>
</g>
</g>
<polyline style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="
127.32,171.38 254.49,31.37 1,31.37 "/>
<circle style="fill:#FFFFFF;" cx="127.32" cy="171.38" r="75"/>
<g>
<g>
<path style="fill:#424252;" d="M84.24,180.36c1.5,1.62,4.26,3.06,6.84,3.06c4.56,0,8.16-3.24,8.58-13.02
c-2.16,2.88-5.94,4.5-8.52,4.5c-7.5,0-13.08-4.44-13.08-14.04c0-9.48,6.72-15.12,14.7-15.12c8.46,0,16.68,6.42,16.68,22.62
s-8.52,23.7-17.64,23.7c-6,0-10.32-2.52-13.14-5.34L84.24,180.36z M99.48,163.21c-0.9-7.38-3.72-9.48-6.48-9.48
c-2.82,0-5.22,1.98-5.22,7.14c0,4.8,2.4,6.54,5.4,6.54C95.34,167.4,97.74,166.26,99.48,163.21z"/>
<path style="fill:#424252;" d="M134.58,155.46h-19.2v-8.88h30.6v6.48c-10.32,12.3-11.4,20.7-12.18,38.16h-10.74
C123.9,176.52,126.18,167.1,134.58,155.46z"/>
<path style="fill:#424252;" d="M149.76,174.49c0-4.77,2.53-7.52,6.02-7.52c3.49,0,6.05,2.75,6.05,7.52s-2.56,7.62-6.05,7.62
C152.28,182.1,149.76,179.26,149.76,174.49z M157.85,174.49c0-3.33-0.96-4.38-2.08-4.38c-1.12,0-2.08,1.05-2.08,4.38
s0.96,4.48,2.08,4.48C156.89,178.97,157.85,177.82,157.85,174.49z M169.44,166.97h3.26l-12.86,24.7h-3.23L169.44,166.97z
M167.48,184.05c0-4.77,2.56-7.55,6.02-7.55c3.46,0,6.02,2.78,6.02,7.55c0,4.77-2.56,7.62-6.02,7.62
C170.04,191.67,167.48,188.82,167.48,184.05z M175.55,184.05c0-3.36-0.93-4.38-2.05-4.38s-2.11,1.02-2.11,4.38
c0,3.33,0.99,4.45,2.11,4.45S175.55,187.38,175.55,184.05z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="_イヤー_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 1160.4 266.4" style="enable-background:new 0 0 1160.4 266.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFAA34;}
.st1{fill:#FFFFFF;}
</style>
<g id="_イヤー_1-2">
<path class="st0" d="M1152.1,98.1c-24.6-63.8-96.2-95.6-159.9-71c-56,21.6-88.3,79.7-77.5,136.5c2.9,15.4-9.3,20.6-6.3,28.4
c3,7.7,15.6,3.5,23.7,16.8c30.1,49.4,93,70.8,149,49.2C1144.9,233.5,1176.7,161.9,1152.1,98.1L1152.1,98.1z"/>
<g>
<path class="st1" d="M976.5,77.7c-1.4-1.3-2.9-2.1-4.3-2.3c-1.9-0.3-3.2,0.5-3.4,1.9c-0.3,1.5,0.7,2.2,2.5,3.1
c3.8,2,6.4,4,5.6,8.3c-0.7,4.1-4.5,6.8-9.7,5.9c-2.6-0.5-4.8-1.6-6.8-3.4l2.2-4.1c1.7,1.7,3.5,2.7,5.2,3c2,0.3,3.9-0.2,4.2-1.9
c0.3-1.5-0.7-2.4-3.2-3.9c-3.1-1.7-5.5-3.7-4.8-7.7c0.7-4,4.3-6.5,8.9-5.7c2.4,0.4,4.1,1.5,5.5,2.7L976.5,77.7L976.5,77.7z"/>
<path class="st1" d="M987.8,73.9l7.3,17.4l2.8-15.6l4.8,0.8l-4,23l-5.3-0.9L986,81.2l-2.8,15.6l-4.8-0.8l4-23L987.8,73.9
L987.8,73.9z"/>
<path class="st1" d="M1017,84.8c-1.4-1.3-2.9-2.1-4.3-2.3c-1.9-0.3-3.2,0.5-3.4,1.9c-0.3,1.5,0.7,2.2,2.5,3.1c3.8,2,6.4,4,5.6,8.3
c-0.7,4.1-4.5,6.8-9.7,5.9c-2.6-0.5-4.8-1.6-6.8-3.4l2.2-4.1c1.7,1.7,3.5,2.7,5.2,3c2,0.3,3.9-0.2,4.2-1.9
c0.3-1.5-0.7-2.4-3.2-3.9c-3.1-1.7-5.5-3.7-4.8-7.7c0.7-4,4.3-6.5,8.9-5.7c2.4,0.4,4.1,1.5,5.5,2.7L1017,84.8L1017,84.8z"/>
<path class="st1" d="M1046.5,89.8c-0.9-0.2-1.7-0.4-2.3-0.5c-0.9-0.2-2.4-0.4-3.5-0.2c-4.3,0.5-9.6,3.9-10.3,7.9
c-0.5,2.7,1.4,4.6,8.7,5.9c1.3,0.2,2,0.3,2.6,0.4l-1.5,4.8c-3.4-0.6-6.2-1.2-9.1-2.5c-5.8-2.6-5.9-7-5.5-9.2
c0.7-3.9,3.8-6.8,7.8-8.6c-2.6-0.2-9.2-0.8-11.4-0.9l0.6-5c1.9,0.3,2.7,0.4,6.1,0.8c6.2,0.7,11.7,1.5,18.4,2.4L1046.5,89.8
L1046.5,89.8z M1040.2,91.7c1,1.8,1.6,3.6,2.3,5.9l-2.8,1c-0.6-2.4-1.1-3.9-2.1-6L1040.2,91.7L1040.2,91.7z M1044.4,90.5
c1.1,1.8,1.7,3.7,2.4,5.9l-2.8,0.9c-0.7-2.4-1.1-3.7-2.2-6L1044.4,90.5z"/>
<path class="st1" d="M1061.8,85.6l4.6,0.8l-0.8,4.4c-0.3,1.5-0.6,6,0.8,10.9c1.6,5.4,6,8.5,7.6,9.6l-3.6,3.6
c-4.6-3.7-7.9-8.8-8.7-15.3c-2.9,6-8.4,9.7-13.5,11.4l-2.2-4.6c4.6-1.1,8.2-3.3,10.9-7c2-2.7,3.5-6.2,4.1-9.4L1061.8,85.6
L1061.8,85.6z"/>
<path class="st1" d="M1080.9,103.9c0.8,0.6,2.4,1.8,4.9,4.1c0.5-0.3,2.2-1.5,3.6-2.9l-12.7-2.2l0.6-3.5l23.5,4.2
c-2,5.7-2.7,9.4-2.7,9.7c-0.1,0.5-0.3,1.6,0.4,1.8c0.8,0.1,2-2.1,2.7-3.4l1.6,4.2c-0.6,1.2-2.5,4.5-5.4,4
c-1.2-0.2-2.1-0.9-2.8-1.8c-1.4-1.9-1-5-0.7-6.8c0.4-2.3,1-4.4,1.2-5.1l-5.6-1l3.2,2.6c-0.6,0.7-1.6,1.8-3.8,3.3
c1.3,1.4,2.3,2.7,3.5,4.1l-3.8,2.7c-0.6-0.9-1.7-2.5-3.5-4.6c-3.9,2-6.8,2.6-8.3,2.9l-1.8-4.2c1.2-0.1,3.6-0.4,7-1.8
c-2-1.8-3.3-2.9-4.2-3.5L1080.9,103.9L1080.9,103.9z M1084,94.9c-1.9,1.7-3.5,2.6-4.6,3.2l-1.8-4.3c2.4-1.2,4-2.5,5.9-4.8l4.6,1.4
c-0.3,0.4-0.5,0.7-0.9,1.2l18.7,3.3l-0.7,3.7L1084,94.9L1084,94.9z M1103.4,99.5l-0.6,3.2l-20.6-3.6l0.6-3.2L1103.4,99.5z"/>
<path class="st1" d="M1117.3,117.2c3.8,0.4,8.7-0.5,9.8-6.7c0.9-5-1.8-7.2-4.7-8c-0.4,1.8-4.1,17-11.9,15.7
c-4.2-0.8-5.1-5.7-4.5-9.6c1.5-8.4,8.7-11.9,15.8-10.6c8.3,1.5,11.2,7.4,10.1,13.6c-0.4,2.1-1.6,6.5-5.7,8.9
c-2.3,1.4-5.3,1.7-8.2,1.5L1117.3,117.2L1117.3,117.2z M1110.4,109.4c-0.2,1-0.3,3.6,1.2,3.8c1.6,0.3,4.1-2.9,6.4-11.3
C1114.2,102.2,1111.2,105.2,1110.4,109.4L1110.4,109.4z"/>
<path class="st1" d="M967.3,138.8c2.2-2,4.2-5.5,5.5-8.1l3.1,2.7c-1.3,2.8-3.9,7-6.1,9.4L967.3,138.8L967.3,138.8z M973.5,129.7
c-1-1.4-2.5-2.9-3.8-3.8l2.8-3c1.4,1.1,3,2.5,4.1,3.8L973.5,129.7z M975.9,122.5c-1.2-1.3-2.7-2.6-4.2-3.7l2.9-3
c2,1.3,3.6,2.8,4.3,3.6L975.9,122.5z M973.5,139.7c1.7,0.2,3.8,0.6,6.5,0.5c-1.1-1-1.8-1.9-2.4-2.7l1.6-0.6l-3.3-0.6l0.5-3
l17.5,3.1l-0.5,2.9c-1.2,0.9-2.3,1.7-4.1,2.5c2.6,1,4.6,1.3,5.8,1.6l-2.2,3.6c-1.8-0.5-4.8-1.4-8.7-3.6c-4.8,0.9-8.3,0.6-10.4,0.3
L973.5,139.7L973.5,139.7z M995.6,135.8l-19.2-3.4l1.1-6l19.2,3.4L995.6,135.8z M997.1,120.7l-1.4,8l-17-3l1.4-8
C980.1,117.7,997.1,120.7,997.1,120.7z M982.6,129.6l-1.9-0.3l-0.3,1.5l1.9,0.3L982.6,129.6z M981.8,137.4
c0.3,0.4,1.2,1.2,3.1,2.4c2-0.4,2.6-0.7,3.6-1.2L981.8,137.4L981.8,137.4z M992.2,124.9l-9.1-1.6l-0.2,1.1l9.1,1.6L992.2,124.9z
M992.7,122.2l-9.1-1.6l-0.2,1l9.1,1.6L992.7,122.2z M987.5,130.5l-1.9-0.3l-0.3,1.5l1.9,0.3L987.5,130.5z M992.5,131.4l-2-0.4
l-0.3,1.5l2,0.4L992.5,131.4z"/>
<path class="st1" d="M1004.4,127.2l-2.9,16.6l17,3l2.9-16.6l4,0.7l-3.6,20.3l-24.9-4.4l3.6-20.3L1004.4,127.2L1004.4,127.2z
M1026.7,129.9l-11.7-2.1l-0.3,1.6l5.5,1l-2.6,14.9l-14.5-2.6l2.6-14.9l5.5,1l0.3-1.6l-11.8-2.1l0.7-3.9l27.1,4.8L1026.7,129.9
L1026.7,129.9z M1009.6,137.8l-2.1-0.4l-0.5,2.6l2.1,0.4L1009.6,137.8z M1010.5,132.2l-2.1-0.4l-0.4,2.5l2.1,0.4L1010.5,132.2z
M1015.2,138.8l-2.1-0.4l-0.5,2.6l2.1,0.4L1015.2,138.8z M1016.2,133.1l-2.1-0.4l-0.4,2.5l2.1,0.4L1016.2,133.1z"/>
<path class="st1" d="M1053.4,142.9c-1.8,1.2-3.7,2.2-5.7,3.1c1.5,3.9,3.6,6.2,4.4,7.1l-3.9,2.6c-3.8-5.1-5.5-11.3-5.3-17.7
l-0.5-0.1c-0.5,0.4-0.9,0.7-1.8,1.1c1.2,1.8,3,5,2,10.5c-0.2,0.8-1,5.7-5,5l-4.7-0.8l-0.1-3.3c-3.3,0.8-5.8,1-7.1,1.2l-0.9-4
c6.5,0,11.5-1.4,14.2-2.5c0-0.3-0.1-0.6-0.2-1.2c-2.3,1-6.4,2.1-11.5,2.4l-0.9-3.7c6.1,0.3,9.9-0.8,11.3-1.2
c-0.3-0.5-0.5-0.8-0.6-1c-3.2,0.9-5.8,1.1-9.1,1l-0.8-3.7c3.9,0.5,6.7,0.4,9.6-0.7l-5.6-1l0.2-1.3l-3.1-0.6l1.2-6.6l10.5,1.9
l0.3-1.9l4.3,0.8l-0.3,1.9l10.5,1.9l-1.2,6.6l-3.2-0.6l-0.2,1.3l-3.8-0.7c0,1.7,0.2,2.7,0.3,3.4c1.7-0.8,3-1.6,4.4-2.7
L1053.4,142.9L1053.4,142.9z M1049.9,136.1l0.2-1.3l-17-3l-0.2,1.3L1049.9,136.1z M1036.7,151c0.9,0.2,1.7,0.2,2.1-2.7
c-0.8,0.4-2.4,1.2-5.5,2.1L1036.7,151L1036.7,151z"/>
<path class="st1" d="M1064.4,148.1c-0.8,0.3-2.9,0.9-3.2,2.6c-0.4,2.2,2.4,2.9,6.5,3.6c4.4,0.8,6.4,0.9,7.8,0.9l-0.8,4.5
c-1-0.1-3.1-0.3-6.7-0.9c-5.4-1-7.5-1.8-9.2-3.2c-1.5-1.2-2.6-3.1-2.1-5.5c0.6-3.5,4-4.8,6-5.3L1064.4,148.1L1064.4,148.1z
M1072.4,151.9c-2.2-3.7-3.2-8.9-3.3-9.4c-1-0.1-1.4-0.2-1.8-0.3l-9.9-1.8l0.8-4.3l10.3,1.9c-0.1-1.2-0.2-2-0.2-4.1l4.8,0.4
c-0.1,2,0,3.2,0.1,4.3c4.1,0.4,6.9,0.4,8.1,0.3l0,4.5c-2.5,0.1-4.6-0.1-7.3-0.4c0.4,1.5,1.1,4.1,3,7L1072.4,151.9L1072.4,151.9z"
/>
<path class="st1" d="M1098.3,139.8c-1.3,2.1-4.6,7.6-5.4,9.1c1.1-0.5,1.8-0.6,3-0.4c4.6,0.8,3.9,5,3.5,7.1l-0.3,1.9
c-0.2,0.9-0.2,2.1,1.2,2.4c0.7,0.1,1.8,0.2,3.1-2.6c0.9-1.9,1.4-3.5,1.7-5.5l4.2,2.1c-0.9,4-3,11.8-10.3,10.5
c-4.6-0.8-4.9-4.3-4.5-7l0.2-1.3c0.4-2.3,0.6-3.2-0.8-3.5c-1.9-0.3-3.3,1.3-4.6,3.4c-0.7,1.3-1.3,2.8-2.8,6.3l-4.4-2.3
c0.7-1.5,5.9-11.9,8.8-17.2c0.3-0.5,2-3.5,2.6-5.1L1098.3,139.8L1098.3,139.8z"/>
<path class="st1" d="M948.5,176.1c0.6,0.6,2.4,2.3,5.8,2.9c3,0.5,4.9-0.5,5.2-2.4c0.2-1.4-0.5-3-3.8-3.6l-2.6-0.5l0.7-4l2.3,0.4
c2.5,0.4,3.6-0.7,3.8-1.9c0.3-1.9-1.4-2.7-2.5-2.9c-2.5-0.4-4.5,0.5-6.1,1.7l-0.9-4.5c2.3-1.5,5.2-2.1,7.9-1.6
c4.6,0.8,7,4.1,6.4,7.7c-0.5,2.8-2.5,3.7-3.3,4.1c1.2,0.9,3.5,2.6,2.8,6.4c-0.6,3.3-3.8,6.8-10.8,5.5c-3.9-0.7-6.1-2.4-7.2-3.2
L948.5,176.1L948.5,176.1z"/>
<path class="st1" d="M970.2,167.9c4.2-0.6,8.2-2.3,11.1-5.4l5,1.3c-0.5,0.6-0.8,0.9-1.4,1.6l10.4,1.8l-0.7,3.7
c-3.8,3.9-6.9,5.4-10,6.8l10.4,1.8l-2.2,12.6l-19.7-3.5l1.4-7.9c-2.8,0.5-3.7,0.6-5.2,0.8l-1.2-4.8c5.6-0.1,8.4-0.8,10.6-1.4
c-1-1.5-2-2.8-3.2-4.1c-1.7,0.6-2.5,0.8-3.6,1.1L970.2,167.9L970.2,167.9z M990,182.7l-11-1.9l-0.8,4.5l11,1.9L990,182.7z
M981,168.5c-0.6,0.4-1,0.6-1.5,0.9c2,2.1,2.9,3.1,3.8,4.3c1.8-0.9,3.5-1.8,6-3.8L981,168.5L981,168.5z"/>
<path class="st1" d="M1019.8,182c-5.1-0.4-16.1-0.5-16.8,3.7c-0.4,2.5,2.7,3.1,6.9,3.9c1.7,0.3,5.2,0.9,9.3,1.1l-0.8,4.7
c-1.6-0.2-4.1-0.4-8-1.1c-4.5-0.8-13.5-2.4-12.3-9.2c0.7-4,4.8-5.9,8.3-6.9c-0.4-0.8-0.5-1.5-0.5-2.7c0-1.8,0.5-4.5,0.9-6.8
l4.9,0.9c-0.2,1-0.4,1.8-0.7,3.8c-0.4,2.3-0.5,3.1-0.2,4.1c2.1-0.3,4.4-0.4,9.3-0.2L1019.8,182L1019.8,182z"/>
<path class="st1" d="M1047.9,178l-3.6,20.6l-21.1-3.7l0.8-4.5l16.3,2.9l2.1-11.7l-16-2.8l0.8-4.4L1047.9,178L1047.9,178z"/>
<path class="st1" d="M1075.2,188.5c-1.1,4.1-3.5,9.6-8.3,11.9c-3.8,1.8-9.1,2-13.4,1.6l-0.6-4.5c7.9,1,13.6,0.2,16.2-5.7
l-17.6-3.1l0.7-4.2L1075.2,188.5z M1074.6,181.4l-0.7,4.2l-19.1-3.4l0.7-4.2L1074.6,181.4z"/>
<path class="st1" d="M1076.6,201.8c2.9-2,4.8-5.2,5.7-8.7l4.1,1.2c-2.1,7.7-5.7,10.4-6.8,11.2L1076.6,201.8L1076.6,201.8z
M1090.8,208.4l-4.7-0.8l2.8-15.6l-9.2-1.6l0.8-4.3l9.2,1.6l0.8-4.3l4.7,0.8l-0.8,4.3l9,1.6l-0.8,4.3l-9-1.6L1090.8,208.4z
M1099.3,196.1c0,4.1,0.2,6.4,2.4,10.5l-4.2,2.2c-2.1-3.5-2.6-6.8-2.4-12.9L1099.3,196.1L1099.3,196.1z M1100.6,182.9
c0.8,1.8,1.1,3.3,1.6,5.8l-2.6,0.6c-0.3-2.4-0.6-3.5-1.4-5.7L1100.6,182.9z M1105.1,183.6c0.8,2,1,3.3,1.4,5.8l-2.6,0.5
c-0.2-2.3-0.5-3.6-1.3-5.7L1105.1,183.6L1105.1,183.6z"/>
<path class="st1" d="M1107.5,206.9l5.3,0.9l-0.9,5.1l-5.3-0.9L1107.5,206.9z M1116.5,187.6l-3.8,17.8l-4.3-0.8l2.5-18
L1116.5,187.6L1116.5,187.6z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="_イヤー_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 304 95" style="enable-background:new 0 0 304 95;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFAA34;}
.st1{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M286.7,19.1c18.7,13.3,23,39.3,9.6,58c-11.7,16.4-33.3,22-50.9,13.7c-4.7-2.2-7.5,1.3-9.8-0.3
c-2.3-1.6,0.2-5.4-3.5-9.1c-13.5-13.9-15.2-36.2-3.5-52.6C242.1,10.1,268,5.8,286.7,19.1z"/>
<g>
<g>
<path class="st1" d="M240.8,31.5c-0.5-0.5-1.1-0.8-1.6-0.9c-0.7-0.1-1.2,0.2-1.2,0.7c-0.1,0.6,0.2,0.8,0.9,1.2
c1.4,0.8,2.4,1.5,2.1,3.1c-0.3,1.5-1.7,2.6-3.6,2.2c-1-0.2-1.8-0.6-2.5-1.3l0.8-1.5c0.6,0.7,1.3,1,1.9,1.1
c0.7,0.1,1.4-0.1,1.5-0.7c0.1-0.6-0.2-0.9-1.2-1.5c-1.1-0.6-2-1.4-1.8-2.9c0.3-1.5,1.6-2.5,3.3-2.2c0.9,0.2,1.5,0.5,2,1
L240.8,31.5z"/>
<path class="st1" d="M244.7,30l2.7,6.6l1.1-5.9l1.8,0.3l-1.5,8.7l-2-0.3l-2.7-6.6l-1.1,5.9l-1.8-0.3l1.5-8.7L244.7,30z"/>
<path class="st1" d="M255.3,34.1c-0.5-0.5-1.1-0.8-1.6-0.9c-0.7-0.1-1.2,0.2-1.3,0.7c-0.1,0.6,0.2,0.8,0.9,1.2
c1.4,0.8,2.4,1.5,2.1,3.1c-0.3,1.5-1.7,2.6-3.6,2.2c-1-0.2-1.8-0.6-2.5-1.3l0.8-1.5c0.6,0.7,1.3,1,1.9,1.1
c0.7,0.1,1.4-0.1,1.5-0.7c0.1-0.6-0.2-0.9-1.2-1.5c-1.1-0.6-2-1.4-1.8-2.9c0.3-1.5,1.6-2.5,3.3-2.2c0.9,0.2,1.5,0.6,2,1
L255.3,34.1z"/>
<path class="st1" d="M266,35.9c-0.3-0.1-0.6-0.1-0.9-0.2c-0.4-0.1-0.9-0.1-1.3-0.1c-1.6,0.2-3.5,1.5-3.8,3
c-0.2,1,0.5,1.8,3.2,2.2c0.5,0.1,0.7,0.1,1,0.1l-0.6,1.8c-1.2-0.2-2.3-0.4-3.3-0.9c-2.1-1-2.1-2.6-2-3.5c0.3-1.5,1.4-2.6,2.9-3.3
c-1-0.1-3.4-0.3-4.2-0.3l0.2-1.9c0.7,0.1,1,0.1,2.2,0.3c2.3,0.2,4.3,0.5,6.8,0.9L266,35.9z M263.6,36.6c0.4,0.7,0.6,1.3,0.8,2.2
l-1,0.4c-0.2-0.9-0.4-1.5-0.8-2.3L263.6,36.6z M265.2,36.2c0.4,0.7,0.6,1.4,0.9,2.2l-1,0.4c-0.2-0.9-0.4-1.4-0.8-2.3L265.2,36.2z
"/>
<path class="st1" d="M271.4,34.2l1.7,0.3l-0.3,1.7c-0.1,0.5-0.2,2.3,0.3,4.1c0.6,2,2.2,3.2,2.8,3.6l-1.3,1.4
c-1.7-1.4-2.9-3.3-3.2-5.8c-1.1,2.3-3.1,3.7-5,4.4l-0.8-1.7c1.7-0.4,3-1.3,4-2.7c0.7-1,1.3-2.4,1.5-3.6L271.4,34.2z"/>
<path class="st1" d="M278.2,41.1c0.3,0.2,0.9,0.7,1.8,1.5c0.2-0.1,0.8-0.6,1.3-1.1l-4.7-0.8l0.2-1.3l8.7,1.5
c-0.8,2.2-1,3.6-1,3.7c0,0.2-0.1,0.6,0.1,0.7c0.3,0,0.7-0.8,1-1.3l0.6,1.6c-0.2,0.5-0.9,1.7-2,1.5c-0.4-0.1-0.8-0.3-1-0.7
c-0.5-0.7-0.4-1.9-0.2-2.6c0.2-0.9,0.4-1.7,0.5-1.9l-2.1-0.4l1.2,1c-0.2,0.2-0.6,0.7-1.4,1.3c0.5,0.5,0.9,1,1.3,1.6l-1.4,1
c-0.2-0.3-0.6-1-1.3-1.7c-1.5,0.8-2.5,1-3.1,1.1l-0.6-1.6c0.5,0,1.3-0.2,2.6-0.7c-0.7-0.7-1.2-1.1-1.5-1.3L278.2,41.1z
M279.4,37.7c-0.7,0.7-1.3,1-1.7,1.2l-0.6-1.6c0.9-0.5,1.5-1,2.2-1.8l1.7,0.5c-0.1,0.2-0.2,0.3-0.4,0.5l6.9,1.2l-0.2,1.4
L279.4,37.7z M286.5,39.4l-0.2,1.2l-7.6-1.3l0.2-1.2L286.5,39.4z"/>
<path class="st1" d="M291.4,46c1.4,0.1,3.2-0.2,3.6-2.6c0.3-1.9-0.7-2.7-1.7-3c-0.1,0.7-1.5,6.5-4.4,6c-1.6-0.3-1.9-2.2-1.6-3.7
c0.6-3.2,3.2-4.5,5.8-4.1c3.1,0.5,4.1,2.8,3.7,5.2c-0.1,0.8-0.6,2.5-2.1,3.4c-0.9,0.5-2,0.7-3,0.6L291.4,46z M288.9,43.1
c-0.1,0.4-0.1,1.4,0.4,1.5c0.6,0.1,1.5-1.1,2.4-4.3C290.3,40.3,289.2,41.5,288.9,43.1z"/>
<path class="st1" d="M237.2,53.6c0.8-0.8,1.6-2.1,2-3.1l1.1,1c-0.5,1.1-1.5,2.7-2.3,3.6L237.2,53.6z M239.6,50.2
c-0.4-0.5-0.9-1.1-1.4-1.4l1-1.1c0.5,0.4,1.1,0.9,1.5,1.4L239.6,50.2z M240.4,47.5c-0.4-0.5-1-1-1.6-1.4l1.1-1.1
c0.7,0.5,1.3,1,1.6,1.4L240.4,47.5z M239.5,54c0.6,0.1,1.4,0.2,2.4,0.2c-0.4-0.4-0.7-0.7-0.9-1l0.6-0.2l-1.2-0.2l0.2-1.1l6.5,1.1
l-0.2,1.1c-0.4,0.3-0.9,0.6-1.5,0.9c1,0.4,1.7,0.5,2.1,0.6l-0.8,1.4c-0.7-0.2-1.8-0.5-3.2-1.4c-1.8,0.4-3.1,0.2-3.8,0.1L239.5,54
z M247.7,52.5l-7.1-1.2l0.4-2.3l7.1,1.2L247.7,52.5z M248.3,46.7l-0.5,3l-6.3-1.1l0.5-3L248.3,46.7z M242.9,50.1l-0.7-0.1
l-0.1,0.6l0.7,0.1L242.9,50.1z M242.6,53.1c0.1,0.1,0.5,0.5,1.1,0.9c0.7-0.1,1-0.3,1.3-0.5L242.6,53.1z M246.5,48.3l-3.3-0.6
l-0.1,0.4l3.3,0.6L246.5,48.3z M246.7,47.3l-3.3-0.6l-0.1,0.4l3.3,0.6L246.7,47.3z M244.7,50.5l-0.7-0.1l-0.1,0.6l0.7,0.1
L244.7,50.5z M246.6,50.8l-0.7-0.1l-0.1,0.6l0.7,0.1L246.6,50.8z"/>
<path class="st1" d="M250.7,49.2l-1.1,6.3l6.3,1.1l1.1-6.3l1.5,0.3l-1.4,7.7l-9.2-1.6l1.4-7.7L250.7,49.2z M259,50.1l-4.3-0.8
l-0.1,0.6l2,0.4l-1,5.7l-5.3-0.9l1-5.7l2,0.4l0.1-0.6l-4.4-0.8l0.3-1.5l10,1.8L259,50.1z M252.6,53.1l-0.8-0.1l-0.2,1l0.8,0.1
L252.6,53.1z M253,51l-0.8-0.1l-0.2,0.9l0.8,0.1L253,51z M254.7,53.5l-0.8-0.1l-0.2,1l0.8,0.1L254.7,53.5z M255.1,51.4l-0.8-0.1
l-0.2,0.9l0.8,0.1L255.1,51.4z"/>
<path class="st1" d="M268.6,55c-0.6,0.5-1.4,0.9-2.1,1.2c0.5,1.5,1.3,2.3,1.6,2.7l-1.5,1c-1.4-1.9-2-4.3-1.9-6.7l-0.2,0
c-0.2,0.2-0.4,0.3-0.7,0.4c0.5,0.7,1.1,1.9,0.7,4c-0.1,0.3-0.4,2.2-1.9,1.9l-1.7-0.3l0-1.3c-1.2,0.3-2.1,0.4-2.6,0.5l-0.3-1.5
c2.4,0,4.2-0.5,5.2-1c0-0.1,0-0.2-0.1-0.5c-0.9,0.4-2.4,0.8-4.2,0.9l-0.3-1.4c2.2,0.1,3.6-0.3,4.2-0.5c-0.1-0.2-0.2-0.3-0.2-0.4
c-1.2,0.3-2.1,0.4-3.4,0.4l-0.3-1.4c1.5,0.2,2.5,0.1,3.5-0.3l-2.1-0.4l0.1-0.5l-1.1-0.2l0.4-2.5l3.9,0.7l0.1-0.7l1.6,0.3
l-0.1,0.7l3.9,0.7l-0.4,2.5l-1.2-0.2l-0.1,0.5l-1.4-0.2c0,0.7,0.1,1,0.1,1.3c0.6-0.3,1.1-0.6,1.6-1L268.6,55z M267.3,52.4
l0.1-0.5l-6.3-1.1l-0.1,0.5L267.3,52.4z M262.4,58.1c0.3,0.1,0.6,0.1,0.8-1c-0.3,0.1-0.9,0.5-2,0.8L262.4,58.1z"/>
<path class="st1" d="M272.4,56.9c-0.3,0.1-1.1,0.3-1.2,1c-0.1,0.8,0.9,1.1,2.4,1.3c1.6,0.3,2.4,0.3,2.9,0.3l-0.3,1.7
c-0.4,0-1.1-0.1-2.5-0.3c-2-0.3-2.8-0.7-3.4-1.2c-0.5-0.4-0.9-1.2-0.8-2.1c0.2-1.3,1.5-1.8,2.2-2L272.4,56.9z M275.4,58.3
c-0.8-1.4-1.2-3.4-1.2-3.5c-0.4-0.1-0.5-0.1-0.7-0.1l-3.7-0.7l0.3-1.6l3.8,0.7c0-0.5-0.1-0.8-0.1-1.6l1.8,0.2c0,0.8,0,1.2,0,1.7
c1.5,0.2,2.5,0.1,3,0.1v1.7c-0.9,0-1.7,0-2.7-0.1c0.1,0.6,0.4,1.5,1.1,2.7L275.4,58.3z"/>
<path class="st1" d="M284.7,53.6c-0.5,0.8-1.7,2.9-2,3.5c0.4-0.2,0.7-0.2,1.1-0.2c1.7,0.3,1.4,1.9,1.3,2.7l-0.1,0.7
c-0.1,0.4-0.1,0.8,0.4,0.9c0.2,0,0.7,0.1,1.1-1c0.3-0.7,0.5-1.3,0.6-2.1l1.5,0.8c-0.4,1.5-1.1,4.5-3.8,4
c-1.7-0.3-1.8-1.6-1.6-2.6l0.1-0.5c0.2-0.9,0.2-1.2-0.3-1.3c-0.7-0.1-1.2,0.5-1.7,1.3c-0.2,0.5-0.5,1.1-1,2.4l-1.6-0.9
c0.3-0.6,2.2-4.5,3.3-6.5c0.1-0.2,0.8-1.3,1-1.9L284.7,53.6z"/>
<path class="st1" d="M230.8,66.9c0.2,0.2,0.9,0.9,2.1,1.1c1.1,0.2,1.8-0.2,1.9-0.9c0.1-0.5-0.2-1.1-1.4-1.3l-1-0.2l0.3-1.5
l0.9,0.1c0.9,0.2,1.3-0.3,1.4-0.8c0.1-0.7-0.5-1-0.9-1.1c-0.9-0.2-1.7,0.2-2.2,0.7l-0.3-1.7c0.9-0.6,1.9-0.8,2.9-0.6
c1.7,0.3,2.6,1.5,2.4,2.9c-0.2,1.1-0.9,1.4-1.2,1.6c0.4,0.3,1.3,1,1,2.4c-0.2,1.3-1.4,2.6-4,2.1c-1.4-0.3-2.2-0.9-2.6-1.2
L230.8,66.9z"/>
<path class="st1" d="M238.6,63.7c1.6-0.2,3-0.9,4.1-2.1l1.9,0.5c-0.2,0.2-0.3,0.4-0.5,0.6l3.8,0.7l-0.2,1.4
c-1.4,1.5-2.6,2.1-3.7,2.6l3.8,0.7l-0.8,4.8l-7.3-1.3l0.5-3c-1,0.2-1.4,0.2-1.9,0.3l-0.4-1.8c2.1-0.1,3.1-0.3,3.9-0.6
c-0.4-0.6-0.8-1.1-1.2-1.5c-0.6,0.2-0.9,0.3-1.3,0.4L238.6,63.7z M245.9,69.3l-4.1-0.7l-0.3,1.7l4.1,0.7L245.9,69.3z M242.6,63.9
c-0.2,0.1-0.4,0.2-0.6,0.4c0.8,0.8,1.1,1.2,1.4,1.6c0.7-0.3,1.3-0.7,2.2-1.5L242.6,63.9z"/>
<path class="st1" d="M256.7,68.9c-1.9-0.2-5.9-0.2-6.2,1.4c-0.2,0.9,1,1.2,2.5,1.4c0.6,0.1,1.9,0.3,3.4,0.4l-0.3,1.8
c-0.6-0.1-1.5-0.2-3-0.4c-1.7-0.3-5-0.9-4.5-3.5c0.3-1.5,1.8-2.3,3.1-2.6c-0.1-0.3-0.2-0.6-0.2-1c0-0.7,0.2-1.7,0.4-2.6l1.8,0.3
c-0.1,0.4-0.1,0.7-0.3,1.4c-0.2,0.9-0.2,1.2-0.1,1.5c0.8-0.1,1.6-0.2,3.4-0.1L256.7,68.9z"/>
<path class="st1" d="M266.8,67.3l-1.4,7.8l-7.8-1.4L258,72l6,1.1l0.8-4.4l-5.9-1l0.3-1.7L266.8,67.3z"/>
<path class="st1" d="M276.7,71.2c-0.4,1.6-1.3,3.7-3.1,4.5c-1.4,0.7-3.4,0.8-4.9,0.6l-0.2-1.7c2.9,0.3,5,0,6-2.2l-6.5-1.1
l0.3-1.6L276.7,71.2z M276.5,68.5l-0.3,1.6l-7-1.2l0.3-1.6L276.5,68.5z"/>
<path class="st1" d="M277,76.2c1.1-0.8,1.8-2,2.1-3.3l1.5,0.4c-0.8,2.9-2.1,3.9-2.5,4.3L277,76.2z M282.2,78.7l-1.7-0.3l1-5.9
l-3.4-0.6l0.3-1.6l3.4,0.6l0.3-1.6l1.7,0.3l-0.3,1.6l3.3,0.6l-0.3,1.6l-3.3-0.6L282.2,78.7z M285.3,74c0,1.6,0.1,2.4,0.9,4
l-1.5,0.8c-0.8-1.3-1-2.6-0.9-4.9L285.3,74z M285.9,69c0.3,0.7,0.4,1.3,0.6,2.2l-1,0.2c-0.1-0.9-0.2-1.3-0.5-2.2L285.9,69z
M287.5,69.2c0.3,0.8,0.4,1.2,0.5,2.2l-1,0.2c-0.1-0.9-0.2-1.4-0.5-2.2L287.5,69.2z"/>
<path class="st1" d="M288.2,77.4l1.8,0.3l-0.3,1.8l-1.8-0.3L288.2,77.4z M291.2,70.8l-1.3,6.1l-1.4-0.2l0.9-6.2L291.2,70.8z"/>
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="216px" height="113px" viewBox="0 0 216 113" style="enable-background:new 0 0 216 113;" xml:space="preserve">
<g>
<path style="fill:#0050AA;" d="M42.86,46.21c-0.54,0.24-0.88,0.4-1.66,0.66v5.74c0,1.22-0.66,1.68-1.52,1.68h-2.9l-0.4-3.1h1.46
c0.46,0,0.52-0.12,0.52-0.5v-2.92c-0.62,0.2-0.96,0.28-1.88,0.5l-0.32-3.04c0.7-0.12,1.2-0.22,2.2-0.48v-3.4h-2.08v-2.82h2.08
v-3.24h2.84v3.24h1.62v2.82H41.2v2.58c0.68-0.22,1-0.34,1.62-0.58L42.86,46.21z M50.44,35.29v2.9h4.22v15.7H43.28v-15.7h4.24v-2.9
H50.44z M47.62,41.05h-1.64v3.6h1.64V41.05z M47.62,47.25h-1.64v3.82h1.64V47.25z M52,41.05h-1.7v3.6H52V41.05z M52,47.25h-1.7
v3.82H52V47.25z"/>
<path style="fill:#0050AA;" d="M73.98,51.05h1.58l-0.64,2.82h-9.38c-3.84,0-4.96-1.38-5.52-2.06c-0.72,0.82-1.78,1.8-2.94,2.52
L56,51.21c0.8-0.38,1.56-0.92,2.02-1.3v-4.38h-1.74v-2.82h4.66v5.86c0.18,0.64,0.48,1.68,2.32,2.22l-1.32-1.74
c0.62-0.12,1.66-0.34,3.14-0.98H61.5v-2.12h2.62v-0.98h-2.3v-1.92h2.3v-0.52h2.74v0.52h2.76v-0.52h2.72v0.52h2.36v1.92h-2.36v0.98
h2.86v2.12h-3.26c1.06,0.46,2.14,0.86,3.24,1.06L73.98,51.05z M61.58,38.81l-2,1.98c-0.78-1.06-2.02-2.34-3.2-3.24l2.1-2.1
c1.28,0.94,2.62,2.34,3.1,2.9v-0.24h3.4v-0.66h-3.54v-1.68h6.08v3.82h-3.38v0.58c0,0.22,0.02,0.38,0.34,0.38h0.78
c0.4,0,0.44-0.22,0.54-0.74l2.14,0.26c-0.1,0.84-0.26,2.14-1.4,2.14h-3.58c-0.84,0-1.38-0.32-1.38-1.38V38.81z M70.52,48.07h-4.3
l1.42,1.1c-1.5,1.06-3,1.66-3.38,1.8c0.62,0.08,1.3,0.08,1.94,0.08h6.84c-0.24-0.08-2.04-0.72-3.8-1.88L70.52,48.07z M66.86,44.97
v0.98h2.76v-0.98H66.86z M68.28,35.77h6.26v3.82h-3.68v0.56c0,0.2,0,0.4,0.46,0.4h1.26c0.38,0,0.42-0.26,0.48-0.76l2.24,0.3
c-0.08,0.66-0.24,2.12-1.46,2.12h-4.08c-1.34,0-1.4-1.06-1.4-1.18v-2.92H72v-0.66h-3.72V35.77z"/>
<path style="fill:#0050AA;" d="M94.16,40.09c-0.62-0.04-1.18-0.06-1.62-0.06c-0.66,0-1.68,0.04-2.4,0.26
c-2.84,0.84-6.04,3.78-6.04,6.6c0,1.88,1.5,2.98,6.62,2.98c0.94,0,1.4-0.04,1.8-0.06l-0.44,3.44c-2.38-0.02-4.34-0.06-6.46-0.6
c-4.22-1.06-4.82-4.02-4.82-5.56c0-2.72,1.76-5.04,4.28-6.74c-1.78,0.14-6.32,0.54-7.84,0.74l-0.18-3.44
c1.3-0.02,1.9-0.06,4.22-0.22c4.26-0.28,8.14-0.4,12.78-0.54L94.16,40.09z M90.1,42.07c0.9,1.1,1.52,2.22,2.24,3.74l-1.76,1.02
c-0.68-1.58-1.22-2.54-2.16-3.82L90.1,42.07z M92.84,40.79c0.94,1.12,1.6,2.28,2.32,3.7l-1.78,0.96c-0.74-1.58-1.18-2.4-2.24-3.78
L92.84,40.79z"/>
<path style="fill:#0050AA;" d="M101.28,36.33h3v16.08h-3.38V39.95l-2.84,1.98l-0.42-3.12L101.28,36.33z"/>
<path style="fill:#0050AA;" d="M110.4,50.25c-1.24-1.92-1.3-4.7-1.3-5.88c0-2.84,0.52-4.68,1.34-5.94
c1.04-1.64,2.76-2.42,4.52-2.42c1.74,0,3.48,0.76,4.54,2.44c1.2,1.88,1.32,4.52,1.32,5.92c0,2.34-0.34,4.4-1.3,5.9
c-1.34,2.1-3.36,2.46-4.56,2.46C113.74,52.73,111.74,52.37,110.4,50.25z M117.44,44.37c0-3.26-0.7-5.26-2.48-5.26
c-1.9,0-2.48,2.3-2.48,5.26c0,3.26,0.68,5.26,2.48,5.26C116.86,49.63,117.44,47.37,117.44,44.37z"/>
<path style="fill:#0050AA;" d="M122.04,40.15c2.78-0.9,5.28-2.56,6.86-5l3.58,0.3c-0.3,0.5-0.46,0.74-0.78,1.22h7.3v2.6
c-2.12,3.08-4.06,4.52-6,5.8h7.28v8.8h-13.8v-5.54c-1.82,0.66-2.46,0.86-3.46,1.16l-1.38-3.1c3.76-0.74,5.6-1.56,7.04-2.22
c-0.9-0.92-1.72-1.64-2.68-2.38c-1.06,0.6-1.58,0.84-2.34,1.18L122.04,40.15z M129.4,39.27c-0.38,0.34-0.6,0.52-0.94,0.82
c1.64,1.16,2.32,1.78,3.06,2.48c1.14-0.82,2.14-1.6,3.62-3.3H129.4z M137.22,47.87h-7.74v3.12h7.74V47.87z"/>
<path style="fill:#0050AA;" d="M149.38,45.89h-1.06v-0.44l-0.82,1.32c-0.26-0.3-0.32-0.38-0.78-1.12v8.64h-2.8v-6.16
c-0.5,1.4-1.02,2.18-1.4,2.78l-0.9-4.1c1.66-1.92,2.12-4.82,2.24-5.46h-1.9v-2.7h1.96v-3.3h2.8v3.3h1.5v2.7h-1.5v0.8
c0.34,0.62,1.06,1.52,1.6,2.02v-0.74h4.84v-0.88h-3.96v-2.06h3.96v-0.84h-4.6v-2.38h2.06c-0.4-1.1-0.56-1.4-0.72-1.68l2.92-0.32
c0.54,1,0.8,1.76,0.88,2h1.94c0.08-0.2,0.38-0.94,0.62-2.02l2.96,0.36c-0.1,0.28-0.34,0.92-0.72,1.66h2.04v2.38h-4.56v0.84h4.1
v2.06h-4.1v0.88h4.9v2.46h-1.66l1.88,1.44c-1.22,1.34-1.46,1.6-2.38,2.36c1.18,0.94,1.78,1.18,2.42,1.42L160,54.04
c-1.42-0.82-2.72-1.76-4.02-3.62v2.08c0,1.54-1,1.8-1.76,1.8h-2.72l-0.36-1.82c-1.74,0.92-2.58,1.24-3.08,1.44l-0.92-2.72
c0.58-0.18,2.6-0.76,4.92-1.96l0.42,2.22c0.38,0,0.68,0,0.68-0.58v-4.98h-2.96c0.84,0.62,1.32,1.08,2.12,1.92l-1.86,1.86
c-0.64-0.76-1.68-1.7-2.46-2.2L149.38,45.89z M155.98,46.33c0.16,0.38,0.5,0.96,1.04,1.64c1-0.86,1.46-1.46,1.9-2.08h-2.94V46.33z"
/>
<path style="fill:#0050AA;" d="M167.16,36.71c-0.22,1.16-0.78,4.28-0.78,9.2c0,4,0.36,6.2,0.54,7.14l-3.34,0.22
c-0.18-1.04-0.48-2.96-0.48-6.8c0-3.36,0.2-6.68,0.7-10L167.16,36.71z M172.32,45.45c-0.68,0.92-0.96,1.74-0.96,2.26
c0,1.3,1.48,1.46,3.24,1.46c0.62,0,3.04-0.04,4.76-0.24l0.06,3.24c-0.76,0.1-1.88,0.2-3.66,0.2c-4.24,0-7.34-0.6-7.34-4.16
c0-0.7,0.1-1.9,1.06-3.52L172.32,45.45z M179.04,37.83v3.12h-10.02v-3.12H179.04z"/>
<path style="fill:#0050AA;" d="M34.1,77.91l-1.16,3.5h-3.72l5.84-16.08h4.22l5.84,16.08H41.4l-1.16-3.5H34.1z M39.28,75.05
l-2.1-6.34l-2.12,6.34H39.28z"/>
<path style="fill:#0050AA;" d="M53.18,81.41v-6.9c0-0.8,0-2.52-1.58-2.52c-0.66,0-2.06,0.38-2.06,2.48v6.94H46.4V69.43h3v1.16
c0.42-0.52,1.2-1.48,3.04-1.48c1.88,0,2.58,1.1,2.96,1.68c0.48-0.54,1.48-1.68,3.62-1.68c1.12,0,2.86,0.4,3.6,1.96
c0.44,0.92,0.5,1.96,0.5,3.26v7.08h-3.14v-6.9c0-0.86,0-2.52-1.66-2.52c-1.7,0-2,1.66-2,2.62v6.8H53.18z"/>
<path style="fill:#0050AA;" d="M65.8,70.23c1.36-0.74,2.72-1.12,4.28-1.12c1.98,0,3.44,0.64,4.3,1.66
c0.62,0.74,0.88,1.66,0.88,3.12v4.48c0,1.62,0.2,2.44,0.46,3.04h-2.98c-0.12-0.28-0.2-0.54-0.22-1.08c-0.98,0.96-2.2,1.4-3.56,1.4
c-2.22,0-4.06-1.34-4.06-3.76c0-3.06,2.64-3.74,4.82-4.08c2.1-0.32,2.46-0.38,2.46-0.96c0-0.5-0.5-1.04-2-1.04
c-1.5,0-2.84,0.5-4.12,1.32L65.8,70.23z M72.24,75.75c-0.54,0.26-1.08,0.36-2.46,0.54c-1.24,0.16-1.96,0.56-1.96,1.56
c0,0.7,0.46,1.26,1.4,1.26c0.68,0,2-0.22,3.02-1.78V75.75z"/>
<path style="fill:#0050AA;" d="M86.5,69.43v2.9l-5.56,6.2h5.7v2.88h-9.66v-2.9l5.56-6.2h-5.42v-2.88H86.5z"/>
<path style="fill:#0050AA;" d="M93.66,69.11c3.18,0,5.94,2.42,5.94,6.3c0,3.9-2.76,6.32-5.94,6.32c-3.12,0-5.92-2.4-5.92-6.32
C87.74,71.51,90.52,69.11,93.66,69.11z M93.66,78.85c1.82,0,2.8-1.44,2.8-3.44c0-3.42-2.58-3.42-2.8-3.42
c-0.96,0-2.78,0.58-2.78,3.42C90.88,77.41,91.86,78.85,93.66,78.85z"/>
<path style="fill:#0050AA;" d="M101.32,81.41V69.43h3v1.16c0.3-0.38,1.2-1.48,3.2-1.48c2.1,0,3.16,1.26,3.5,1.96
c0.44,0.9,0.54,1.86,0.54,3.6v6.74h-3.14v-6.84c0-1.08-0.02-2.58-1.8-2.58c-0.34,0-2.16,0.08-2.16,2.58v6.84H101.32z"/>
<path style="fill:#0050AA;" d="M125.08,82.43l-3.32,0.22l-0.5-5.2l-6.98,0.66L114,75.09l6.96-0.66l-0.24-2.6l-6.12,0.6l-0.24-2.94
l6.06-0.6l-0.34-3.46l3.32-0.26l0.32,3.4l5.68-0.54l0.28,2.92l-5.66,0.56l0.24,2.62l6.8-0.64l0.22,3l-6.72,0.64L125.08,82.43z
M128.14,63.73c0.56,0.98,0.96,2.02,1.42,3.56l-1.68,0.66c-0.38-1.46-0.68-2.32-1.34-3.58L128.14,63.73z M131.22,63.71
c0.68,1.28,0.96,2.14,1.42,3.78l-1.7,0.66c-0.38-1.6-0.66-2.42-1.34-3.82L131.22,63.71z"/>
<path style="fill:#0050AA;" d="M150,66.41c-0.32,6.32-1.8,13.56-12.98,15.9l-1.42-2.98c7.96-1.48,10.06-5.16,10.76-9.76h-12.08
v-3.16H150z"/>
<path style="fill:#0050AA;" d="M165.26,77.25c-1.94-1.3-4.26-2.76-7.58-4.04v9.1h-3.44V65.25h3.44v4.62
c4.86,1.54,7.9,3.26,9.28,4.06L165.26,77.25z"/>
<path style="fill:#0050AA;" d="M187.12,70.69v2.68H184c0.88,0.8,1.76,1.5,3.46,2.26l-1.58,2.78c-0.84-0.46-1.3-0.74-2.02-1.28
c-0.42,4.86-0.9,6.14-2.96,6.14h-3.16l-0.6-2.9h2.44c0.3,0,0.72-0.02,0.9-0.48c0.14-0.38,0.32-1.68,0.34-2.5h-3.12
c-0.62,3.58-3.1,5.52-8.18,6.06l-1.16-2.76c4.2-0.2,5.9-1.64,6.24-3.3h-2.5v-0.6c-0.68,0.52-1.26,0.92-2.58,1.58l-1.6-2.62
c0.66-0.28,2.14-0.9,3.74-2.38h-3.58v-2.68h5.78c0.42-0.72,0.52-0.94,0.68-1.3h-5.7v-2.62h2.58c-0.12-0.24-0.52-1.06-1.12-1.86
l2.94-0.7c0.58,0.86,0.96,1.52,1.44,2.56h0.78c0.22-0.86,0.34-1.48,0.44-2.62l3.14,0.18c-0.14,0.68-0.24,1.24-0.56,2.44h1.84
c0.42-0.66,0.74-1.24,1.3-2.56l3.14,0.8c-0.4,0.78-0.58,1.12-1.02,1.76h2.66v2.62h-5.28c0.14,0.4,0.22,0.6,0.62,1.3H187.12z
M181.34,74.79c-0.48-0.56-0.7-0.84-1.12-1.42h-4.74c-0.3,0.42-0.52,0.7-1.14,1.42H181.34z M178.64,70.69
c-0.24-0.54-0.34-0.8-0.52-1.3h-0.5c-0.2,0.5-0.3,0.74-0.58,1.3H178.64z"/>
<path style="fill:#0050AA;" d="M10.5,97.43H4.18v2.68c0.42-0.12,0.98-0.28,1.84-0.28c2.98,0,5.64,1.94,5.64,5.32
c0,2.62-1.72,5.58-6.54,5.58c-1.86,0-3.46-0.4-5.12-1.22l0.84-3.1c1.96,1.22,3.78,1.22,4.26,1.22c2.7,0,3.18-1.56,3.18-2.44
c0-1.38-1.06-2.28-2.54-2.28c-0.24,0-1.28,0-2,0.82H0.96v-9.4h9.54V97.43z"/>
<path style="fill:#0050AA;" d="M17.16,106.89v3.34c0,1.94-1.12,2.6-3.5,2.64v-1.62c1.26-0.02,1.52-0.32,1.56-0.98h-1.56v-3.38
H17.16z"/>
<path style="fill:#0050AA;" d="M20.44,108.25c-1.24-1.92-1.3-4.7-1.3-5.88c0-2.84,0.52-4.68,1.34-5.94
c1.04-1.64,2.76-2.42,4.52-2.42c1.74,0,3.48,0.76,4.54,2.44c1.2,1.88,1.32,4.52,1.32,5.92c0,2.34-0.34,4.4-1.3,5.9
c-1.34,2.1-3.36,2.46-4.56,2.46C23.78,110.73,21.78,110.37,20.44,108.25z M27.48,102.37c0-3.26-0.7-5.26-2.48-5.26
c-1.9,0-2.48,2.3-2.48,5.26c0,3.26,0.68,5.26,2.48,5.26C26.9,107.63,27.48,105.37,27.48,102.37z"/>
<path style="fill:#0050AA;" d="M33.64,108.25c-1.24-1.92-1.3-4.7-1.3-5.88c0-2.84,0.52-4.68,1.34-5.94
c1.04-1.64,2.76-2.42,4.52-2.42c1.74,0,3.48,0.76,4.54,2.44c1.2,1.88,1.32,4.52,1.32,5.92c0,2.34-0.34,4.4-1.3,5.9
c-1.34,2.1-3.36,2.46-4.56,2.46C36.98,110.73,34.98,110.37,33.64,108.25z M40.68,102.37c0-3.26-0.7-5.26-2.48-5.26
c-1.9,0-2.48,2.3-2.48,5.26c0,3.26,0.68,5.26,2.48,5.26C40.1,107.63,40.68,105.37,40.68,102.37z"/>
<path style="fill:#0050AA;" d="M46.84,108.25c-1.24-1.92-1.3-4.7-1.3-5.88c0-2.84,0.52-4.68,1.34-5.94
c1.04-1.64,2.76-2.42,4.52-2.42c1.74,0,3.48,0.76,4.54,2.44c1.2,1.88,1.32,4.52,1.32,5.92c0,2.34-0.34,4.4-1.3,5.9
c-1.34,2.1-3.36,2.46-4.56,2.46C50.18,110.73,48.18,110.37,46.84,108.25z M53.88,102.37c0-3.26-0.7-5.26-2.48-5.26
c-1.9,0-2.48,2.3-2.48,5.26c0,3.26,0.68,5.26,2.48,5.26C53.3,107.63,53.88,105.37,53.88,102.37z"/>
<path style="fill:#0050AA;" d="M73.56,104.99H62.42v7.28h-3.08v-18.4h17.32v16.08c0,0.94-0.18,2.32-2.18,2.32h-3.74l-0.54-3.1h2.76
c0.58,0,0.6-0.32,0.6-0.62V104.99z M62.42,102.11h4.08v-5.3h-4.08V102.11z M69.48,102.11h4.08v-5.3h-4.08V102.11z"/>
<path style="fill:#0050AA;" d="M81.52,101.61c-0.42,0.4-0.76,0.68-1.42,1.2l-1.96-2.74c3.4-2.24,4.8-4.58,5.62-6.86l2.98,0.6
c-0.36,1-1.28,3.6-3.6,6.18h9.74c-1.52-1.8-2.7-3.88-3.58-6.08l2.98-0.72c1,2.3,2.56,4.94,5.56,6.98l-2,2.6
c-0.38-0.26-0.72-0.52-1.36-1.1c0,1.56-0.22,7.32-0.96,9.04c-0.42,0.94-0.98,1.6-2.56,1.6h-3.58l-0.6-3.02h2.9
c0.5,0,0.84-0.16,1.04-0.58c0.44-0.94,0.58-4.42,0.64-5.82h-3.7c-0.52,4.78-3.02,7.54-7.46,9.46l-1.76-2.84
c4.38-1.64,5.86-3.7,6.12-6.62h-3.04V101.61z"/>
<path style="fill:#0050AA;" d="M114.64,95.65v2.68h-8.18c-0.24,0.6-0.42,0.94-0.84,1.74c0.84-0.4,1.48-0.7,2.46-0.7
c1.88,0,2.62,0.9,3.06,1.86c0.64-0.24,2.72-1.04,4.56-1.52l0.58,2.96c-1.52,0.32-2.58,0.58-4.56,1.22c0.04,0.44,0.1,1.4,0.04,3.22
h-3c0.1-1.12,0.08-1.84,0.06-2.08c-0.9,0.44-2.22,1.1-2.22,2.18c0,1.22,1.46,1.28,3.54,1.28c1.54,0,3.48-0.06,5.02-0.26v3
c-2.98,0.08-3.6,0.08-4.3,0.08c-3,0-7.54-0.1-7.54-3.7c0-2.68,3.1-4.24,5.04-5.2c-0.26-0.46-0.76-0.6-1.26-0.6
c-1.16,0-2.74,0.96-3.6,2.16c-1.56,2.2-2.02,2.66-2.3,2.94l-2.14-2.18c1.34-1.36,3.02-3.2,4.24-6.4h-3.44v-2.68h4.24
c0.16-0.74,0.24-1.12,0.34-1.82l3.3,0.18c-0.2,0.92-0.26,1.18-0.4,1.64H114.64z"/>
<path style="fill:#0050AA;" d="M130.46,95.47l3.32,3.94c-0.56,2.88-1.46,5.32-3.32,7.32c-1.94,2.08-4.9,3.84-8.78,4.6l-1.44-3
c8.36-1.54,9.64-5.9,10.24-9.7h-11.5v-3.16H130.46z M137.26,95.43c0,1.5-1.22,2.72-2.72,2.72s-2.72-1.22-2.72-2.72
c0-1.52,1.22-2.72,2.72-2.72C136.02,92.71,137.26,93.91,137.26,95.43z M133.18,95.43c0,0.76,0.6,1.36,1.36,1.36
c0.72,0,1.36-0.58,1.36-1.36c0-0.78-0.64-1.36-1.36-1.36C133.78,94.07,133.18,94.69,133.18,95.43z"/>
<path style="fill:#0050AA;" d="M143.1,107.63c2.06-0.24,7.06-0.84,9.42-8.46l2.88,1.72c-3,7.96-8.1,10.12-15.7,10.3V94.61h3.4
V107.63z"/>
<path style="fill:#0050AA;" d="M164.54,106.67c0,1.14,0.22,1.24,1.64,1.24h4.52c1.2,0,2.24-0.12,3.06-0.26v3.16
c-1.04,0.12-1.9,0.18-2.98,0.18h-5.26c-4.22,0-4.22-2.76-4.22-3.98v-5.38l-3.84,0.3l-0.14-3.14l3.98-0.26v-4.26h3.24v4.06
l9.74-0.64c-0.38,4.56-2.22,7-5.78,8.8l-1.86-2.46c2.16-0.88,2.92-1.78,3.6-3.1l-5.7,0.44V106.67z M171.04,92.79
c0.8,1.24,1.16,2.12,1.76,3.74l-1.66,0.78c-0.48-1.58-0.86-2.46-1.66-3.8L171.04,92.79z M174.22,92.71
c0.76,1.28,1.06,2.1,1.62,3.74l-1.66,0.72c-0.46-1.6-0.78-2.4-1.54-3.78L174.22,92.71z"/>
<path style="fill:#0050AA;" d="M183.66,100.91c-2.02-1.34-3.76-2.18-6.24-3.04l1.42-2.72c1.1,0.32,3.58,1.06,6.5,2.86
L183.66,100.91z M177.8,107.71c6.72-0.58,11.5-2.9,13.8-11.7l2.8,1.94c-2.68,8.78-7.58,12.16-15.88,13.2L177.8,107.71z"/>
<path style="fill:#0050AA;" d="M208.74,106.25c-1.94-1.3-4.26-2.76-7.58-4.04v9.1h-3.44V94.25h3.44v4.62
c4.86,1.54,7.9,3.26,9.28,4.06L208.74,106.25z"/>
<path style="fill:#0050AA;" d="M216.02,94.33l-0.42,11.36h-2.72l-0.42-11.36H216.02z M212.56,107.17h3.36v3.24h-3.36V107.17z"/>
</g>
<g>
<g>
<path style="fill:#2FC5D9;" d="M92.98,15.77c-1.92-2.26-3.26-5.66-3.38-5.96c-0.72,0.02-1,0.02-1.28,0.02h-6.96V6.81l7.24,0.04
c-0.22-0.8-0.36-1.32-0.64-2.76l3.34-0.28c0.16,1.4,0.36,2.18,0.56,2.94c2.82-0.18,4.72-0.58,5.54-0.76l0.56,3.08
c-1.66,0.36-3.1,0.48-5.02,0.6c0.44,0.96,1.26,2.62,2.86,4.4L92.98,15.77z M87.14,14.17c-0.54,0.28-1.86,0.92-1.86,2.14
c0,1.52,2,1.64,4.82,1.64c3.06,0,4.46-0.18,5.44-0.32l-0.02,3.14c-0.68,0.06-2.14,0.16-4.68,0.16c-3.8,0-5.28-0.32-6.64-1.06
c-1.14-0.62-2.1-1.8-2.1-3.5c0-2.44,2.16-3.76,3.46-4.34L87.14,14.17z"/>
<path style="fill:#2FC5D9;" d="M104.88,7.41c-0.26,1.18-0.42,1.94-0.5,4.2c0.64-0.38,2.82-1.7,5.86-1.7c4.36,0,5.54,3,5.54,5.04
c0,5.22-5.06,6.04-9.7,6.04c-1.84,0-2.72-0.1-3.54-0.16l-0.38-3.08c0.8,0.08,2.38,0.26,4.08,0.26c5.04,0,6.22-1.48,6.22-3.14
c0-2.02-2.12-2.16-2.66-2.16c-2.02,0-4.28,0.86-5.48,2.22c0,0.32,0,0.4-0.02,0.56l-3.14-0.1c0.06-5.2,0.2-6.14,0.48-8.22
L104.88,7.41z M112.62,8.13c-2.06-0.84-4.96-1.42-8.68-1.66l0.56-2.94c1.9,0.06,5.24,0.2,8.9,1.26L112.62,8.13z"/>
<path style="fill:#2FC5D9;" d="M123.1,4.41c-0.22,1.16-0.78,4.28-0.78,9.2c0,4,0.36,6.2,0.54,7.14l-3.34,0.22
c-0.18-1.04-0.48-2.96-0.48-6.8c0-3.36,0.2-6.68,0.7-10L123.1,4.41z M128.26,13.15c-0.68,0.92-0.96,1.74-0.96,2.26
c0,1.3,1.48,1.46,3.24,1.46c0.62,0,3.04-0.04,4.76-0.24l0.06,3.24c-0.76,0.1-1.88,0.2-3.66,0.2c-4.24,0-7.34-0.6-7.34-4.16
c0-0.7,0.1-1.9,1.06-3.52L128.26,13.15z M134.98,5.53v3.12h-10.02V5.53H134.98z"/>
</g>
<line style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-miterlimit:10;" x1="61.93" y1="0.33" x2="69.86" y2="23.12"/>
<line style="fill:none;stroke:#2FC5D9;stroke-width:2;stroke-miterlimit:10;" x1="154.69" y1="0.33" x2="146.76" y2="23.12"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="985.66px" height="110.86px" viewBox="0 0 985.66 110.86" style="enable-background:new 0 0 985.66 110.86;"
xml:space="preserve">
<style type="text/css">
.st0{fill:#FFF100;}
.st1{fill:#FF0000;stroke:#FF0000;stroke-miterlimit:10;}
.st2{clip-path:url(#SVGID_00000136408672437472427270000009460237706833083039_);}
.st3{fill:#FF0000;}
.st4{clip-path:url(#SVGID_00000004508400950743141870000007803702762318464666_);}
</style>
<rect x="7.83" y="74.86" class="st0" width="970" height="36"/>
<g>
<g>
<path class="st1" d="M111.22,47.9c2.34-0.7,3.69-1.1,6.3-2l2.79-1.4l1.53,4.3l-2.43,1.4c-3.24,2.3-5.04,3.6-7.56,5.2
c-0.36,0.2-0.36,0.2-0.63,0.4v33.6c0,4.6-1.98,7-5.76,7c-2.25,0-5.76-1-10.44-3l-4.05-1l-0.45-4.9c2.34,0.2,5.4,0.4,7.47,0.4
c1.35,0,1.62-0.4,1.62-2v-23c-0.45,0.3-1.08,0.6-2.97,1.7l-3.6,2.6l-4.32-14.7l4.5-0.6c2.88-0.5,4.5-0.8,4.95-0.9
c0.45-0.1,0.72-0.2,1.44-0.3V29.3h-3.33c-2.16,0-3.15,0.1-5.94,0.5v-6.1c2.61,0.4,3.96,0.5,5.94,0.5h3.33v-14
c0-1.3-0.09-2.5-0.18-3.7l-0.27-2l-0.09-0.9h12.69c-0.45,3.8-0.54,4.5-0.54,6.6v14h2.79c2.25,0,3.24-0.1,5.94-0.5v6.1
c-3.06-0.4-3.51-0.5-5.94-0.5h-2.79V47.9z M123.28,58.5c-2.34,0.1-3.06,0.1-5.94,0.5v-6c1.98,0.4,3.24,0.4,5.94,0.4h15.84v-3.5
c0-1.4-0.09-2.5-0.18-3.7l-0.27-1.9l-0.09-1h12.87c-0.45,3.9-0.54,4.5-0.54,6.6v3.5h16.47c2.7,0,3.51,0,5.94-0.4v6
c-2.88-0.4-3.51-0.4-5.94-0.5h-14.94c4.23,7.7,10.89,13.9,19.26,17.7l4.32,1.6l-8.1,13l-3.06-2.9c-6.21-5.4-10.89-12.7-13.95-21.7
v23.6c0,2.2,0.09,2.6,0.54,6.6h-12.87l0.09-0.5l0.18-2c0.18-1.3,0.27-2.4,0.27-4.1V71c-5.31,7.3-11.79,13.5-19.53,18.6l-2.52,2.1
l-3.06-4l2.88-1.9c6.57-6.1,13.23-16.9,16.83-27.3H123.28z M172.15,15.5l-6.12,0.5c-9.45,1.1-32.13,2.5-43.65,2.6l-2.97,0.6
l-1.17-5.4h3.87c15.84-1.9,29.43-5.1,37.8-8.8l4.77-2.2L172.15,15.5z M126.7,24.1c2.52,3.4,3.78,5.2,8.55,12.4l2.79,3.9
l-11.25,5.8l-0.54-4.2c-1.71-8-2.52-11.3-3.78-15.7l-1.17-2.4l4.05-2.2L126.7,24.1z M142.9,21.3l1.53,2.3
c2.7,4.1,4.23,6.4,6.39,9.8l2.43,3.5l-11.7,5.1l-0.36-4.4c-0.54-4.7-1.44-9.4-2.61-13.7l-1.26-3.3l4.23-1.7L142.9,21.3z
M173.5,23.5l-3.24,4.6c-2.52,4.4-7.38,11.3-11.7,16.4l-1.71,2.6l-3.78-2.5l1.53-2.9c2.25-6.2,4.41-13.9,5.22-19.3l0.72-4.9
L173.5,23.5z"/>
<path class="st1" d="M251.98,10c3.33,0,4.68-0.1,7.47-0.4c-0.45,3.2-0.54,4.5-0.54,8.3v69.4c0,4.9-2.43,8-6.39,8
c-1.98,0-3.6-0.3-11.43-2.3c-1.08-0.3-1.44-0.4-2.79-0.7l-4.32-1l-0.81-5.4c3.15,0.4,8.37,0.7,11.16,0.7c1.89,0,2.34-0.6,2.34-2.8
V61h-18.54v24.5c0,2.2,0.09,2.8,0.54,6.6h-13.05c0.09-0.7,0.09-0.9,0.36-2.5c0.18-1.6,0.27-2.6,0.27-4.1V61h-16.83
c-1.08,13.8-6.03,25-15.03,33.9l-2.25,2.9l-3.69-3.2l2.43-2.9c4.41-8.7,6.39-19.8,6.39-36.4V17.9v-1.1c0-2.5-0.09-4.3-0.54-7.2
c2.7,0.3,4.14,0.4,7.47,0.4H251.98z M216.25,15.1h-16.56v17.6h16.56V15.1z M199.69,37.8v17.3v0.6v0.2h16.56V37.8H199.69z
M228.13,32.7h18.54V15.1h-18.54V32.7z M228.13,37.8v18.1h18.54V37.8H228.13z"/>
<path class="st1" d="M282.94,27.3c-1.53,0-3.06,0.2-5.04,0.6v-6.5c2.34,0.5,3.6,0.7,5.04,0.7h55.17c1.44,0,2.43-0.1,5.04-0.7v6.5
c-2.16-0.4-3.24-0.6-5.04-0.6h-21.33v51.1h26.73c1.89,0,3.15-0.2,5.04-0.8v6.8c-2.07-0.4-3.33-0.6-5.04-0.6h-65.97
c-1.53,0-3.06,0.2-5.04,0.6v-6.8c1.71,0.6,3.33,0.8,5.04,0.8h27V27.3H282.94z"/>
<path class="st1" d="M426.4,90.11c-2.43-0.1-3.06-0.1-3.6-0.1c-0.72,0-0.72,0-3.6,0.1c-7.38,0.4-15.93,0.6-26.64,0.6
c-15.03,0-19.44-0.9-23.31-4.6c-3.15-3-4.5-7.8-4.5-15.9V17c0-1.8-0.09-3.1-0.54-5.6h12.96c-0.54,3-0.63,3.9-0.63,5.6v23.9
c15.3-3,36-10.8,42.75-16l6.66,14.3c-3.6,0.6-4.05,0.7-8.64,1.9c-10.17,2.5-25.65,4.4-40.77,5.1v22.5c0,5.1,1.17,7.7,3.96,8.9
c2.34,1,4.59,1.2,16.65,1.2c9.9,0,17.37-0.2,24.48-0.8c1.62-0.1,2.97-0.3,4.77-0.8V90.11z M437.02,12.4c0,6.5-4.86,11.9-10.8,11.9
c-5.76,0-10.62-5.4-10.62-12c0-6.4,4.86-11.8,10.8-11.8C432.16,0.5,437.02,6,437.02,12.4z M419.38,12.4c0,4.2,3.15,7.7,7.02,7.7
c3.69,0,6.84-3.5,6.84-7.7c0-4.2-3.15-7.7-6.93-7.7S419.38,8.3,419.38,12.4z"/>
<path class="st1" d="M460.06,54.6C457.09,43.5,447.73,26,442.51,22l5.67-5.6c0.81,1.4,1.35,2.2,2.61,3.4
c7.92,8,15.48,17.6,20.61,26.2L460.06,54.6z M454.21,87.91c3.33,0,5.31-0.6,11.34-3.5c14.22-6.7,23.49-16.7,29.43-31.8
c3.69-9.3,7.02-25.1,7.02-33.3c0-0.8,0-1.7-0.18-3.2l13.86,2.6c-0.54,2-0.81,3.2-0.99,4.9c-4.68,40.3-20.43,60.1-54,68.3
c-2.07,0.5-3.6,1.1-4.5,1.7L454.21,87.91z"/>
<path class="st1" d="M598.3,54c-2.25-0.5-3.33-0.6-4.68-0.6h-63.9c-2.16,0-3.33,0.2-4.68,0.7V45c1.44,0.4,2.97,0.6,4.68,0.6h63.9
c1.17,0,2.7-0.2,4.68-0.6V54z"/>
<path class="st1" d="M617.38,93.01c0.36-2.3,0.54-3.7,0.54-5.6V15.2c0-1.7-0.18-3.2-0.54-5.6h12.96c-0.36,2.2-0.54,4-0.54,5.6
v22.3c14.13,3.1,27,8.3,35.73,14.5c3.6,2.6,4.32,3.2,5.13,3.7l-8.1,12.8c-7.38-9.4-21.24-20.2-32.76-25.5v44.4
c0,1.8,0.18,3.5,0.54,5.6H617.38z M657.7,11.3v16h-6.12v-16H657.7z M668.32,11.3v16h-6.12v-16H668.32z"/>
<path class="st1" d="M733.39,23.3c2.61,2.6,4.77,4.4,7.56,6.4c2.34-3.7,3.78-6.4,6.84-12.4l1.35-3.7l11.16,8.3l-3.69,2.5
c-2.79,2.4-7.11,5.6-11.07,8.1c3.33,1.9,7.56,3.7,11.52,4.7l4.86,1.1l-6.57,12.4l-4.23-2.5c-2.61-1.4-4.23-2.4-7.65-4.7l-0.81-0.1
c-1.62-0.2-2.61-0.3-4.59-0.3h-1.98v15.8h15.66c2.16,0,3.33-0.1,5.94-0.5v6.1l-0.9-0.1c-2.07-0.3-2.88-0.4-5.04-0.4h-15.66v15.7
c0,3.2,0.36,3.4,7.47,3.4c5.76,0,8.37-0.5,9-1.7c0.54-0.9,1.26-5.7,1.17-8.2l-0.09-4.5l5.4,1.6l-0.36,3.6
c0.27,3.5,0.27,6.2,0.27,12c-0.63,7.5-3.33,8.8-17.91,8.8c-8.46,0-11.52-0.5-13.68-2.1c-2.16-1.7-3.06-4.3-3.06-8.9V64h-9.09
c-2.07,16.7-11.7,26.9-30.15,31.9l-2.79,1.3l-2.25-5l3.51-1.1c11.7-5.9,17.82-14.3,19.62-27.1h-14.76c-2.16,0-3.15,0.1-5.94,0.5
v-6.1c2.61,0.4,3.96,0.5,5.94,0.5h15.12V43.1h-1.98c-2.07,0-3.15,0.1-5.31,0.4l-0.54,0.1c-3.69,2.4-8.28,4.8-12.87,6.7l-2.43,1.4
l-2.25-4.3l2.97-1.3c5.4-3.2,10.62-7.6,15.39-12.8c-2.61-4.1-6.3-9.3-9-12.5l-2.16-1.9l2.97-3.5l2.16,1.8
c4.23,2.5,8.46,5.2,12.51,8c2.79-4,5.13-8.3,6.93-12.7h-11.52c-2.16,0-3.06,0.1-5.94,0.5V6.9c2.79,0.4,3.96,0.5,5.94,0.5h18
c2.34,0,4.5-0.1,6.12-0.4c2.07,4.8,4.23,8.4,7.38,12.4c2.34-3.6,4.59-7.8,5.94-11.2l1.35-3.4l10.71,8.3l-3.33,2.2
c-2.25,2-6.3,5-10.35,7.4L733.39,23.3z M736.54,38c-6.12-5.4-12.15-14.4-15.48-23.1c-3.6,8.6-9.63,16.5-17.64,23.1H736.54z
M715.48,43.1v15.8h8.82V43.1H715.48z"/>
<path class="st1" d="M841.57,93.11c-16.29-9.9-25.38-22.1-30.15-40.7c-3.51,3.5-5.58,5.2-9.9,8.4v21.1c2.88-0.3,5.13-0.6,6.21-0.7
c3.6-0.3,4.68-0.4,10.26-1.2l3.51-1.1l1.08,5.4l-3.15,0.7c-10.35,3.7-23.31,7.4-37.98,10.9l-4.23,1.3l-4.14-13.4h4.41l4.05-0.3
l1.8-0.1l1.8-0.1l4.14-0.3V68.1c-5.13,2.6-10.8,4.9-17.28,7l-3.06,1.2l-2.34-4.8l3.87-1.2c10.44-5.3,19.53-12,27.09-19.9h-22.59
c-2.16,0-3.06,0.1-5.94,0.5v-6.1c2.79,0.4,3.96,0.5,5.94,0.5h28.44v-9.8h-20.07c-2.16,0-3.15,0.1-5.94,0.5v-6.1
c2.61,0.4,3.96,0.5,5.94,0.5h20.07v-9.2h-24.48c-2.16,0-3.06,0.1-5.94,0.5v-6.1c2.79,0.4,3.96,0.5,5.94,0.5h24.48v-5.9
c0-1.3-0.09-2.5-0.18-3.7l-0.27-2l-0.09-0.9h13.86l-0.09,1l-0.27,1.5c-0.18,1.9-0.27,2.6-0.27,4.1v5.9h25.11
c2.07,0,3.42-0.1,5.94-0.5v6.1l-0.99-0.1l-1.26-0.2c-0.99-0.1-2.16-0.2-3.69-0.2H816.1v9.2h20.52c2.07,0,3.42-0.1,5.94-0.5V36
l-0.99-0.1l-1.26-0.2c-0.99-0.1-2.16-0.2-3.69-0.2H816.1v9.8h29.07c2.07,0,3.42-0.1,5.94-0.5v6.1l-0.99-0.1l-1.26-0.2
c-0.99-0.1-2.16-0.2-3.69-0.2h-28.8c2.43,6.4,5.22,11.4,8.55,15.5c4.77-4,8.46-7.8,11.88-12.3l1.98-3.1l10.44,10.6l-3.87,1.7
c-5.4,2.9-9.45,4.7-16.56,7.1c4.68,4.2,10.44,7.6,18.99,11.1l4.95,1.2l-8.01,13.5L841.57,93.11z"/>
<path class="st1" d="M881.8,83.41c0,5.2-3.96,9.6-8.64,9.6s-8.64-4.4-8.64-9.6c0-5.2,4.05-9.6,8.64-9.6
C877.84,73.8,881.8,78.3,881.8,83.41z M876.76,64.2c0.63-1.2,1.53-3.4,1.98-5.2l11.07-45.7c0.54-2.1,0.9-4.1,1.17-6.8l16.2,7.4
c-0.9,1.3-1.71,2.9-3.24,5.9l-20.25,41.1c-0.99,1.9-1.98,4.2-2.43,5.7L876.76,64.2z"/>
</g>
<g>
<g>
<defs>
<circle id="SVGID_1_" cx="32.7" cy="50.37" r="32.7"/>
</defs>
<clipPath id="SVGID_00000119810490441671915110000017702082607715108534_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000119810490441671915110000017702082607715108534_);">
<path class="st3" d="M32.7,92.25c0-27.92-13.96-41.88-41.88-41.88c27.92,0,41.88-13.96,41.88-41.88
c0,27.92,13.96,41.88,41.88,41.88C46.66,50.37,32.7,64.33,32.7,92.25z"/>
</g>
</g>
<g>
<defs>
<circle id="SVGID_00000018215018760056387680000012909279420732334249_" cx="952.96" cy="50.37" r="32.7"/>
</defs>
<clipPath id="SVGID_00000165201723917588315620000003281325532715584902_">
<use xlink:href="#SVGID_00000018215018760056387680000012909279420732334249_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000165201723917588315620000003281325532715584902_);">
<path class="st3" d="M952.96,92.25c0-27.92-13.96-41.88-41.88-41.88c27.92,0,41.88-13.96,41.88-41.88
c0,27.92,13.96,41.88,41.88,41.88C966.92,50.37,952.96,64.33,952.96,92.25z"/>
</g>
</g>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="255.98px" height="28.59px" viewBox="0 0 255.98 28.59" style="enable-background:new 0 0 255.98 28.59;"
xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#2FC5D9;stroke-width:4;stroke-miterlimit:10;}
</style>
<path class="st0" d="M0,2h111.94l12.2,22.31c1.67,3.05,6.04,3.05,7.71,0L144.05,2h111.94"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<!doctype html>
<html lang="ja">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZYL01H9R82"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-ZYL01H9R82');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">
<title>温水洗浄便座 国内累計出荷数1億台達成記念 エピソードキャンペーン</title>
<meta name="description" content="">
<meta property="og:title" content="温水洗浄便座 国内累計出荷数1億台達成記念 エピソードキャンペーン">
<meta property="og:type" content="website">
<meta property="og:url" content="https://toilet-episode-cp.com">
<meta property="og:image" content="https://toilet-episode-cp.com/img/og.png">
<meta property="og:site_name" content="温水洗浄便座 国内累計出荷数1億台達成記念 エピソードキャンペーン">
<meta property="og:description" content="">
<meta name="twitter:card" content="summary_large_image">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lazyload@2.0.0-rc.2/lazyload.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/lightcase.css">
<link rel="stylesheet" href="./css/style.css?0928">
<link rel="shortcut icon" href="./img/favicon.ico">
<script type="text/javascript" async src="//platform.twitter.com/widgets.js"></script>
</head>
<body>
<header class="site-header">
<div class="header-content">
<p class="site-header-logo">
<a href="https://www.sanitary-net.com/">
<img src="./img/hl-syadan.svg" alt="一般社団法人" class="header-syadan">
<img src="./img/hl-jprestroom.svg" alt="日本レストルーム工業会" class="header-jprest">
</a>
</p>
<ol class="site-header-nav">
<li class="site-header-nav-item"><a href="#intro">漫画家さん紹介</a></li>
<li class="site-header-nav-item"><a href="#history">1億台達成への道のり</a></li>
<li class="site-header-nav-item twitter">
<a href="https://twitter.com/sanitary_promo" target="_blank"><img src="./img/icon-tw-w.svg"></a>
</li>
</ol>
</div>
<div class="menu-trigger"><span></span><span></span><span></span></div>
<div class="menu-bg"></div>
<div class="bg-trigger"></div>
</header>
<main class="site-main">
<header class="top-visual">
<p class="pre-ttl">
<img src="./img/winner/publication.svg" alt="採用エピソード発表!">
</p>
<div class="tv-box">
<h1 class="tv-logo"><img src="./img/tv-logo.png" alt="温水洗浄便座 国内累計出荷数 1億台達成記念 エピソードキャンペーン"></h1>
<img src="./img/tv-fukidashi-pc.svg" alt="あなたのエピソードを漫画化!!サイトで公開/SNSで人気の漫画家さん3名とコラボ!" class="spNone tv-fukidashi">
<img src="./img/tv-fukidashi-sp.svg" alt="あなたのエピソードを漫画化!!サイトで公開/SNSで人気の漫画家さん3名とコラボ!" class="spOnly tv-fukidashi">
<img src="./img/blank.png" data-src="./img/tv-koma1.jpg" alt="" class="tv-koma1 elemFadeIn delay-1 lazyload">
<img src="./img/blank.png" data-src="./img/tv-koma3.jpg" alt="" class="tv-koma3 elemFadeIn delay-3 lazyload">
</div>
<div class="cp-period">
<p class="cp-period-txt1">4コマ漫画化された</p>
<p class="cp-period-txt1">エピソードはこちら</p>
<p class="cp-period-txt2">
※エピソードの応募は終了しました。<span>たくさんのご応募ありがとうございました!</span>
</p>
</div>
</header>
<div class="winner">
<p class="winner-text">
たくさんのご応募ありがとうございました。厳正な選考の結果選ばれた6作品を、SNSで人気の3名の漫画家、加藤マユミさん・さわぐちけいすけさん・すれみさんにより、オリジナルの4コマ漫画として制作しました!<br>● 全6作品(エピソード)の公開は終了しました。引き続き、一部の作品(エピソード)を公開中です。
</p>
<ul class="winner-list">
<li class="winner-item item-kato">
<dl>
<dt>
<p>
温水洗浄便座<br>エピソード&#9312;
</p>
<p class="winner-name">
<span>Rumiiii</span> <small>さん</small>
</p>
</dt>
<dd>
<img class="lazyload" src="./img/blank.png" data-src="./img/winner/prize-manga-episode-thumb-kato1.png" alt="">
<a href="#winner1" data-rel="lightcase" class="episode-button">加藤マユミさんが<br>エピソードを漫画化</a>
</dd>
</dl>
<div id="winner1" style="display: none;">
<div class="episode-full">
<img src="./img/blank.png" data-src="./img/winner/prize-manga-episode-kato1.jpg" alt="" class="lazyload2">
</div>
</div>
</li>
<li class="winner-item item-sumire">
<dl>
<dt>
<p>
温水洗浄便座<br>エピソード&#9314;
</p>
<p class="winner-name">
<span>はしとも</span> <small>さん</small>
</p>
</dt>
<dd>
<img class="lazyload" src="./img/blank.png" data-src="./img/winner/prize-manga-episode-thumb-suremi1.png" alt="">
<a href="#winner3" data-rel="lightcase" class="episode-button">すれみさんが<br>エピソードを漫画化</a>
</dd>
</dl>
<div id="winner3" style="display: none;">
<div class="episode-full">
<img src="./img/blank.png" data-src="./img/winner/prize-manga-episode-suremi1.jpg" alt="" class="lazyload2">
</div>
</div>
</li>
<li class="winner-item item-kato">
<dl>
<dt>
<p>
温水洗浄便座<br>エピソード&#9315;
</p>
<p class="winner-name">
<span>六花</span> <small>さん</small>
</p>
</dt>
<dd>
<img class="lazyload" src="./img/blank.png" data-src="./img/winner/prize-manga-episode-thumb-kato2.png" alt="">
<a href="#winner4" data-rel="lightcase" class="episode-button">加藤マユミさんが<br>エピソードを漫画化</a>
</dd>
</dl>
<div id="winner4" style="display: none;">
<div class="episode-full">
<img src="./img/blank.png" data-src="./img/winner/prize-manga-episode-kato2.jpg" alt="" class="lazyload2">
</div>
</div>
</li>
<li class="winner-item item-sumire">
<dl>
<dt>
<p>
温水洗浄便座<br>エピソード&#9317;
</p>
<p class="winner-name">
<span>Obake NFT👻</span> <small>さん</small>
</p>
</dt>
<dd>
<img class="lazyload" src="./img/blank.png" data-src="./img/winner/prize-manga-episode-thumb-suremi2.png" alt="">
<a href="#winner6" data-rel="lightcase" class="episode-button">すれみさんが<br>エピソードを漫画化</a>
</dd>
</dl>
<div id="winner6" style="display: none;">
<div class="episode-full">
<img src="./img/blank.png" data-src="./img/winner/prize-manga-episode-suremi2.jpg" alt="" class="lazyload2">
</div>
</div>
</li>
</ul>
</div>
<section class="main-section section-wave" id="intro">
<div class="section-inner">
<header class="section-header">
<h2 class="section-header-ttl ttl-line-drop">
エピソードを4コマ漫画に<br class="spOnly">していただいた<br class="spNone">漫画家さん
</h2>
</header>
<div class="section-content">
<ol class="mangaka-list">
<li class="mangaka-item">
<div class="mangaka-image">
<img src="./img/blank.png" data-src="./img/manga-kato.jpg" alt="" class="lazyload">
</div>
<dl class="mangaka">
<dt>加藤マユミ<small>さん</small></dt>
<dd class="type">漫画家</dd>
<dd class="detail">
<p>現在、Twitter、pixivFANBOXにて『神童と猛獣』を連載中。「女子恋愛百科」にて単行本デビュー。</p>
<p>近著「おじさんと女子高生」「やせっぽちとふとっちょ」など</p>
</dd>
</dl>
<div class="episode-manga">
<img src="./img/blank.png" data-src="./img/manga-episode-thumb-kato.png" alt="" class="episode-thumb lazyload">
<a href="#episode-kato" data-rel="lightcase" class="episode-button">加藤マユミさんの<br>書き下ろしエピソード漫画</a>
</div>
<div id="episode-kato" style="display: none;">
<div class="episode-full">
<img src="./img/blank.png" data-src="./img/manga-episode-kato.jpg" alt="" class="lazyload2">
</div>
</div>
</li>
<li class="mangaka-item">
<div class="mangaka-image">
<img src="./img/blank.png" data-src="./img/manga-sawaguchi.jpg" alt="" class="lazyload">
</div>
<dl class="mangaka">
<dt><span class="mangaka-narrow">さわぐちけいすけ</span><small>さん</small></dt>
<dd class="type">漫画家 / イラストレーター</dd>
<dd class="detail">
<p>雑誌「日経ウーマン」にて漫画連載中。</p>
<p>近著「だからお前はダメなんだ」、「僕たちはもう帰りたい」 など。</p>
</dd>
</dl>
<div id="episode-sawaguchi" style="display: none;">
<div class="episode-full">
<img src="./img/blank.png" data-src="./img/manga-episode-sawaguchi.jpg" alt="" class="lazyload2">
</div>
</div>
</li>
<li class="mangaka-item drops">
<div class="mangaka-image">
<img src="./img/blank.png" data-src="./img/manga-sumire.jpg" alt="" class="lazyload">
</div>
<dl class="mangaka">
<dt>すれみ<small>さん</small></dt>
<dd class="type">漫画家 / イラストレーター</dd>
<dd class="detail">
<p>Twitterにてあるあるネタを中心に活動。メイク法なども女性から支持を集める。</p>
<p>著書「さよならブスメイク 自己流メイク卒業マニュアル」</p>
</dd>
</dl>
</li>
</ol>
</div>
</div>
</section>
<section class="main-section" id="history">
<div class="section-inner">
<header class="section-header">
<h2 class="section-header-ttl ttl-line-drop">
温水洗浄便座<br class="spOnly">1億台達成への道のり
</h2>
</header>
<div class="section-content sp-read-more">
<img src="./img/blank.png" data-src="./img/shower-image.jpg" alt="" class="spNone shower-image lazyload">
<p class="history-text">1964年に温水洗浄機能付便器、便座の輸入販売が開始されたことで、日本のトイレに「おしりを洗う」という大きな変化が生まれるきっかけとなりました。販売当初は、主に医療機関向けであったこともあり普及は進みませんでしたが、その後も、製品の国産化や各社における家庭への普及を目指した製品開発・改良、販売促進への取組みなどが続けられました。そんな中、1982年のテレビCM以降、次第に多くの人に認知されるようになり、本格的な普及が始まりました。当初、お茶の間にトイレのCMが流れることへ懐疑的な反応もありましたが、一度使うと手離せなくなるとの評判から次第にそのような反応も薄れ、暖かい便座やお湯でおしりを洗う爽快さは、これまでのトイレとは大きく異なる快適なものとして広く受け入れられるようになりました。</p>
<p class="history-text">当工業会の会員各社では、機能性・快適性・衛生性・省エネ性などのあらゆる面で消費者ニーズの反映や新たな提案などでたゆまぬ進化を図り、更なる普及に努めてまいりました。年度毎の出荷は増加を続け、2013年以降は400万台を超えています。一般世帯での普及率においても2022年現在では80%を超え、トイレの水洗化を終えた一般家庭には、ほぼすべてに普及したと推測されるまで定着しました。また、温水洗浄便座の快適性が評価されたことで、オフィスビルや商業施設、ホテル、駅舎といったパブリック用途においても温水洗浄便座の採用が進んでいます。</p>
</div>
<button class="spOnly btn-read-more">続きを読む</button>
</div>
</section>
<section class="main-section" id="toilet-culture">
<div class="section-inner">
<header class="section-header">
<h2 class="section-header-ttl ttl-line-drop">
日本のトイレ文化の必須アイテム
</h2>
</header>
<div class="section-content sp-read-more">
<p class="history-text">
2022年に当工業会が行った温水洗浄便座利用者を対象とした意識調査によると、今後も温水洗浄便座を継続して使いたいと考えている人は97%に達しており、また、温水洗浄便座のない生活に戻ることは「考えられない・無理だと思う・嫌だと思う」との回答も84%ありました。さらに、ご自宅以外(職場や学校、外出先など)での温水洗浄便座の使用状況についても「設置してあれば必ず使用している、使用することが多い」と回答した方が71%に上るなど、温水洗浄便座は、利用者にとって、なくてはならない存在になっていることがうかがえます。
</p>
<p class="history-text">
諸外国においても、近年、衛生性への関心の高まりから、欧米をはじめ、アジア、中東などのさまざまな国で需要が高まっており、世界の温水洗浄便座市場は年々成長しています。特に2020年度は北米を中心に需要が急増するなど、今後、さらなる普及が期待されます。
</p>
<p class="history-text">
当工業会では、今後も皆様に愛され続ける清潔・快適な温水洗浄便座を、日本のみならず諸外国にも広めていくことによって、より一層のトイレ文化の向上に貢献してまいります。
</p>
</div>
<button class="spOnly btn-read-more">続きを読む</button>
</div>
</section>
<section class="main-section section-wave" id="footstep">
<div class="section-inner">
<header class="section-header">
<h2 class="section-header-ttl ttl-line-drop">
温水洗浄便座の歩み
</h2>
</header>
<div class="section-content">
<img src="./img/blank.png" data-src="./img/footstep-pc.png" alt="" class="spNone lazyload">
<img src="./img/blank.png" data-src="./img/footstep-sp.png" alt="" class="spOnly lazyload">
</div>
</div>
</section>
<section class="main-section" id="survey">
<div class="section-inner">
<header class="section-header header-prize">
<h2 class="section-header-ttl ttl-line-drop">
みんなの温水洗浄便座<br class="pcNone"> 利用調査
</h2>
</header>
<div class="section-content">
<p class="survey-lead">
日本のトイレ文化をつくる必須アイテム「温水洗浄便座」。<br class="spNone pcNone">利用者は実際どう感じているのか?意識調査をしました。
</p>
<ul class="survey-list">
<li class="survey-item survey-1">
<dl>
<dt>温水洗浄便座の使用理由</dt>
<dd class="responsive-img">
<img src="./img/blank.png" data-pc-src="./img/survey-1-pc.svg" data-sp-src="./img/survey-1-sp.svg" alt="">
</dd>
</dl>
</li>
<li class="survey-item survey-2">
<dl>
<dt>初めて使用した時の感想</dt>
<dd>
<img src="./img/blank.png" data-src="./img/survey-2.svg" alt="" class="lazyload">
</dd>
</dl>
</li>
<li class="survey-item survey-3">
<dl>
<dt>外出先での使用状況</dt>
<dd>
<img src="./img/blank.png" data-src="./img/survey-3.svg" alt="" class="lazyload">
</dd>
</dl>
</li>
<li class="survey-item survey-4">
<dl>
<dt>外出先で温水洗浄便座が<br>なかった場合</dt>
<dd>
<img src="./img/blank.png" data-src="./img/survey-4.svg" alt="" class="lazyload">
</dd>
</dl>
</li>
<li class="survey-item survey-5">
<dl>
<dt>今後の使用意思</dt>
<dd>
<img src="./img/blank.png" data-src="./img/survey-5.svg" alt="" class="lazyload">
</dd>
</dl>
</li>
</ul>
<dl class="survey-notice">
<dt>調査方法</dt>
<dd>インターネットによる調査</dd>
<dt>調査対象</dt>
<dd>全国の温水洗浄便座利用者である10代~70代男女各年代150名 計2,100名</dd>
<dt>調査実施期間</dt>
<dd>2022年2月4日~ 2022年2月7日</dd>
</dl>
</div>
</div>
</section>
<section class="main-section section-wave" id="about">
<div class="section-inner">
<header class="section-header">
<h2 class="section-header-ttl ttl-line-drop">
一般社団法人 <br class="pcNone">日本レストルーム工業会<br class="pcNone">について
</h2>
</header>
<div class="section-content">
<p class="about-text">
(一社)日本レストルーム工業会は衛生器具(大便器や小便器)、温水洗浄便座などの製品を扱うトイレ設備のメーカーで構成された業界団体です。レストルーム業界の持続的な発展を通じて、世界中の人たちの生活文化の向上に貢献するという理念のもと、世界中の人たちに、安全で使いやすく環境にやさしい快適なレストルーム空間を提供いたします。
</p>
<div class="coop">
<p class="coop-ttl">《加入会社(2022年6月現在、50音順)》</p>
<ul class="coop-list">
<li class="coop-item">株式会社アイシン</li>
<li class="coop-item">アサヒ衛陶株式会社</li>
<li class="coop-item">SANEI株式会社</li>
<li class="coop-item">ジャニス工業株式会社</li>
<li class="coop-item">東芝ライフスタイル株式会社</li>
<li class="coop-item">TOTO株式会社</li>
<li class="coop-item">パナソニックホールディングス株式会社</li>
<li class="coop-item">株式会社LIXIL</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="footer-content">
<p class="footer-logo">
<a href="https://www.sanitary-net.com/">
<img src="./img/hl-syadan.svg" alt="一般社団法人" class="footer-syadan">
<img src="./img/hl-jprestroom.svg" alt="日本レストルーム工業会" class="footer-jprest">
</a>
</p>
<nav class="footer-nav spNone">
<ul class="footer-nav-list">
<li class="footer-nav-item"><a href="#intro">漫画家さん紹介</a></li>
<li class="footer-nav-item"><a href="#histor">1億台達成への道のり</a></li>
</ul>
</nav>
</div>
<div class="copyright">
<small>Copyright &copy; 一般社団法人日本レストルーム工業会 <span>All Rights Reserved.</span></small>
</div>
</footer>
<script src="./js/lightcase.js"></script>
<script src="./js/script.js?0721"></script>
</body>
</html>
/*
* Lightcase - jQuery Plugin
* The smart and flexible Lightbox Plugin.
*
* @author Cornel Boppart <cornel@bopp-art.com>
* @copyright Author
*
* @version 2.5.0 (11/03/2018)
*/
;
(function ($) {
'use strict';
var _self = {
cache: {},
support: {},
objects: {},
/**
* Initializes the plugin
*
* @param {object} options
* @return {object}
*/
init: function (options) {
return this.each(function () {
$(this).unbind('click.lightcase').bind('click.lightcase', function (event) {
event.preventDefault();
$(this).lightcase('start', options);
});
});
},
/**
* Starts the plugin
*
* @param {object} options
* @return {void}
*/
start: function (options) {
_self.origin = lightcase.origin = this;
_self.settings = lightcase.settings = $.extend(true, {
idPrefix: 'lightcase-',
classPrefix: 'lightcase-',
attrPrefix: 'lc-',
transition: 'elastic',
transitionOpen: null,
transitionClose: null,
transitionIn: null,
transitionOut: null,
cssTransitions: true,
speedIn: 250,
speedOut: 250,
width: null,
height: null,
maxWidth: 800,
maxHeight: 500,
forceWidth: false,
forceHeight: false,
liveResize: true,
fullScreenModeForMobile: true,
mobileMatchExpression: /(iphone|ipod|ipad|android|blackberry|symbian)/,
disableShrink: false,
fixedRatio: true,
shrinkFactor: .75,
overlayOpacity: .9,
slideshow: false,
slideshowAutoStart: true,
breakBeforeShow: false,
timeout: 5000,
swipe: true,
useKeys: true,
useCategories: true,
useAsCollection: false,
navigateEndless: true,
closeOnOverlayClick: true,
title: null,
caption: null,
showTitle: true,
showCaption: true,
showSequenceInfo: true,
inline: {
width: 'auto',
height: 'auto'
},
ajax: {
width: 'auto',
height: 'auto',
type: 'get',
dataType: 'html',
data: {}
},
iframe: {
width: 800,
height: 500,
frameborder: 0
},
flash: {
width: 400,
height: 205,
wmode: 'transparent'
},
video: {
width: 400,
height: 225,
poster: '',
preload: 'auto',
controls: true,
autobuffer: true,
autoplay: true,
loop: false
},
attr: 'data-rel',
href: null,
type: null,
typeMapping: {
'image': 'jpg,jpeg,gif,png,bmp',
'flash': 'swf',
'video': 'mp4,mov,ogv,ogg,webm',
'iframe': 'html,php',
'ajax': 'json,txt',
'inline': '#'
},
errorMessage: function () {
return '<p class="' + _self.settings.classPrefix + 'error">' + _self.settings.labels['errorMessage'] + '</p>';
},
labels: {
'errorMessage': 'Source could not be found...',
'sequenceInfo.of': ' of ',
'close': 'Close',
'navigator.prev': 'Prev',
'navigator.next': 'Next',
'navigator.play': 'Play',
'navigator.pause': 'Pause'
},
markup: function () {
_self.objects.body.append(
_self.objects.overlay = $('<div id="' + _self.settings.idPrefix + 'overlay"></div>'),
_self.objects.loading = $('<div id="' + _self.settings.idPrefix + 'loading" class="' + _self.settings.classPrefix + 'icon-spin"></div>'),
_self.objects.case = $('<div id="' + _self.settings.idPrefix + 'case" aria-hidden="true" role="dialog"></div>')
);
_self.objects.case.after(
_self.objects.close = $('<a href="#" class="' + _self.settings.classPrefix + 'icon-close"><span>' + _self.settings.labels['close'] + '</span></a>'),
_self.objects.nav = $('<div id="' + _self.settings.idPrefix + 'nav"></div>')
);
_self.objects.nav.append(
_self.objects.prev = $('<a href="#" class="' + _self.settings.classPrefix + 'icon-prev"><span>' + _self.settings.labels['navigator.prev'] + '</span></a>').hide(),
_self.objects.next = $('<a href="#" class="' + _self.settings.classPrefix + 'icon-next"><span>' + _self.settings.labels['navigator.next'] + '</span></a>').hide(),
_self.objects.play = $('<a href="#" class="' + _self.settings.classPrefix + 'icon-play"><span>' + _self.settings.labels['navigator.play'] + '</span></a>').hide(),
_self.objects.pause = $('<a href="#" class="' + _self.settings.classPrefix + 'icon-pause"><span>' + _self.settings.labels['navigator.pause'] + '</span></a>').hide()
);
_self.objects.case.append(
_self.objects.content = $('<div id="' + _self.settings.idPrefix + 'content"></div>'),
_self.objects.info = $('<div id="' + _self.settings.idPrefix + 'info"></div>')
);
_self.objects.content.append(
_self.objects.contentInner = $('<div class="' + _self.settings.classPrefix + 'contentInner"></div>')
);
_self.objects.info.append(
_self.objects.sequenceInfo = $('<div id="' + _self.settings.idPrefix + 'sequenceInfo"></div>'),
_self.objects.title = $('<h4 id="' + _self.settings.idPrefix + 'title"></h4>'),
_self.objects.caption = $('<p id="' + _self.settings.idPrefix + 'caption"></p>')
);
},
onInit: {},
onStart: {},
onBeforeCalculateDimensions: {},
onAfterCalculateDimensions: {},
onBeforeShow: {},
onFinish: {},
onResize: {},
onClose: {},
onCleanup: {}
},
options,
// Load options from data-lc-options attribute
_self.origin.data ? _self.origin.data('lc-options') : {});
_self.objects.document = $('html');
_self.objects.body = $('body');
// Call onInit hook functions
_self._callHooks(_self.settings.onInit);
_self.objectData = _self._setObjectData(this);
_self._addElements();
_self._open();
_self.dimensions = _self.getViewportDimensions();
},
/**
* Getter method for objects
*
* @param {string} name
* @return {object}
*/
get: function (name) {
return _self.objects[name];
},
/**
* Getter method for objectData
*
* @return {object}
*/
getObjectData: function () {
return _self.objectData;
},
/**
* Sets the object data
*
* @param {object} object
* @return {object} objectData
*/
_setObjectData: function (object) {
var $object = $(object),
objectData = {
this: $(object),
title: _self.settings.title || $object.attr(_self._prefixAttributeName('title')) || $object.attr('title'),
caption: _self.settings.caption || $object.attr(_self._prefixAttributeName('caption')) || $object.children('img').attr('alt'),
url: _self._determineUrl(),
requestType: _self.settings.ajax.type,
requestData: _self.settings.ajax.data,
requestDataType: _self.settings.ajax.dataType,
rel: $object.attr(_self._determineAttributeSelector()),
type: _self.settings.type || _self._verifyDataType(_self._determineUrl()),
isPartOfSequence: _self.settings.useAsCollection || _self._isPartOfSequence($object.attr(_self.settings.attr), ':'),
isPartOfSequenceWithSlideshow: _self._isPartOfSequence($object.attr(_self.settings.attr), ':slideshow'),
currentIndex: $(_self._determineAttributeSelector()).index($object),
sequenceLength: $(_self._determineAttributeSelector()).length
};
// Add sequence info to objectData
objectData.sequenceInfo = (objectData.currentIndex + 1) + _self.settings.labels['sequenceInfo.of'] + objectData.sequenceLength;
// Add next/prev index
objectData.prevIndex = objectData.currentIndex - 1;
objectData.nextIndex = objectData.currentIndex + 1;
return objectData;
},
/**
* Prefixes a data attribute name with defined name from 'settings.attrPrefix'
* to ensure more uniqueness for all lightcase related/used attributes.
*
* @param {string} name
* @return {string}
*/
_prefixAttributeName: function (name) {
return 'data-' + _self.settings.attrPrefix + name;
},
/**
* Determines the link target considering 'settings.href' and data attributes
* but also with a fallback to the default 'href' value.
*
* @return {string}
*/
_determineLinkTarget: function () {
return _self.settings.href || $(_self.origin).attr(_self._prefixAttributeName('href')) || $(_self.origin).attr('href');
},
/**
* Determines the attribute selector to use, depending on
* whether categorized collections are beeing used or not.
*
* @return {string} selector
*/
_determineAttributeSelector: function () {
var $origin = $(_self.origin),
selector = '';
if (typeof _self.cache.selector !== 'undefined') {
selector = _self.cache.selector;
} else if (_self.settings.useCategories === true && $origin.attr(_self._prefixAttributeName('categories'))) {
var categories = $origin.attr(_self._prefixAttributeName('categories')).split(' ');
$.each(categories, function (index, category) {
if (index > 0) {
selector += ',';
}
selector += '[' + _self._prefixAttributeName('categories') + '~="' + category + '"]';
});
} else {
selector = '[' + _self.settings.attr + '="' + $origin.attr(_self.settings.attr) + '"]';
}
_self.cache.selector = selector;
return selector;
},
/**
* Determines the correct resource according to the
* current viewport and density.
*
* @return {string} url
*/
_determineUrl: function () {
var dataUrl = _self._verifyDataUrl(_self._determineLinkTarget()),
width = 0,
density = 0,
supportLevel = '',
url;
$.each(dataUrl, function (index, src) {
switch (_self._verifyDataType(src.url)) {
case 'video':
var video = document.createElement('video'),
videoType = _self._verifyDataType(src.url) + '/' + _self._getFileUrlSuffix(src.url);
// Check if browser can play this type of video format
if (supportLevel !== 'probably' && supportLevel !== video.canPlayType(videoType) && video.canPlayType(videoType) !== '') {
supportLevel = video.canPlayType(videoType);
url = src.url;
}
break;
default:
if (
// Check density
_self._devicePixelRatio() >= src.density &&
src.density >= density &&
// Check viewport width
_self._matchMedia()('screen and (min-width:' + src.width + 'px)').matches &&
src.width >= width
) {
width = src.width;
density = src.density;
url = src.url;
}
break;
}
});
return url;
},
/**
* Normalizes an url and returns information about the resource path,
* the viewport width as well as density if defined.
*
* @param {string} url Path to resource in format of an url or srcset
* @return {object}
*/
_normalizeUrl: function (url) {
var srcExp = /^\d+$/;
return url.split(',').map(function (str) {
var src = {
width: 0,
density: 0
};
str.trim().split(/\s+/).forEach(function (url, i) {
if (i === 0) {
return src.url = url;
}
var value = url.substring(0, url.length - 1),
lastChar = url[url.length - 1],
intVal = parseInt(value, 10),
floatVal = parseFloat(value);
if (lastChar === 'w' && srcExp.test(value)) {
src.width = intVal;
} else if (lastChar === 'h' && srcExp.test(value)) {
src.height = intVal;
} else if (lastChar === 'x' && !isNaN(floatVal)) {
src.density = floatVal;
}
});
return src;
});
},
/**
* Verifies if the link is part of a sequence
*
* @param {string} rel
* @param {string} expression
* @return {boolean}
*/
_isPartOfSequence: function (rel, expression) {
var getSimilarLinks = $('[' + _self.settings.attr + '="' + rel + '"]'),
regexp = new RegExp(expression);
return (regexp.test(rel) && getSimilarLinks.length > 1);
},
/**
* Verifies if the slideshow should be enabled
*
* @return {boolean}
*/
isSlideshowEnabled: function () {
return (_self.objectData.isPartOfSequence && (_self.settings.slideshow === true || _self.objectData.isPartOfSequenceWithSlideshow === true));
},
/**
* Loads the new content to show
*
* @return {void}
*/
_loadContent: function () {
if (_self.cache.originalObject) {
_self._restoreObject();
}
_self._createObject();
},
/**
* Creates a new object
*
* @return {void}
*/
_createObject: function () {
var $object;
// Create object
switch (_self.objectData.type) {
case 'image':
$object = $(new Image());
$object.attr({
// The time expression is required to prevent the binding of an image load
'src': _self.objectData.url,
'alt': _self.objectData.title
});
break;
case 'inline':
$object = $('<div class="' + _self.settings.classPrefix + 'inlineWrap"></div>');
$object.html(_self._cloneObject($(_self.objectData.url)));
// Add custom attributes from _self.settings
$.each(_self.settings.inline, function (name, value) {
$object.attr(_self._prefixAttributeName(name), value);
});
break;
case 'ajax':
$object = $('<div class="' + _self.settings.classPrefix + 'inlineWrap"></div>');
// Add custom attributes from _self.settings
$.each(_self.settings.ajax, function (name, value) {
if (name !== 'data') {
$object.attr(_self._prefixAttributeName(name), value);
}
});
break;
case 'flash':
$object = $('<embed src="' + _self.objectData.url + '" type="application/x-shockwave-flash"></embed>');
// Add custom attributes from _self.settings
$.each(_self.settings.flash, function (name, value) {
$object.attr(name, value);
});
break;
case 'video':
$object = $('<video></video>');
$object.attr('src', _self.objectData.url);
// Add custom attributes from _self.settings
$.each(_self.settings.video, function (name, value) {
$object.attr(name, value);
});
break;
default:
$object = $('<iframe></iframe>');
$object.attr({
'src': _self.objectData.url
});
// Add custom attributes from _self.settings
$.each(_self.settings.iframe, function (name, value) {
$object.attr(name, value);
});
break;
}
_self._addObject($object);
_self._loadObject($object);
},
/**
* Adds the new object to the markup
*
* @param {object} $object
* @return {void}
*/
_addObject: function ($object) {
// Add object to content holder
_self.objects.contentInner.html($object);
// Start loading
_self._loading('start');
// Call onStart hook functions
_self._callHooks(_self.settings.onStart);
// Add sequenceInfo to the content holder or hide if its empty
if (_self.settings.showSequenceInfo === true && _self.objectData.isPartOfSequence) {
_self.objects.sequenceInfo.html(_self.objectData.sequenceInfo);
_self.objects.sequenceInfo.show();
} else {
_self.objects.sequenceInfo.empty();
_self.objects.sequenceInfo.hide();
}
// Add title to the content holder or hide if its empty
if (_self.settings.showTitle === true && _self.objectData.title !== undefined && _self.objectData.title !== '') {
_self.objects.title.html(_self.objectData.title);
_self.objects.title.show();
} else {
_self.objects.title.empty();
_self.objects.title.hide();
}
// Add caption to the content holder or hide if its empty
if (_self.settings.showCaption === true && _self.objectData.caption !== undefined && _self.objectData.caption !== '') {
_self.objects.caption.html(_self.objectData.caption);
_self.objects.caption.show();
} else {
_self.objects.caption.empty();
_self.objects.caption.hide();
}
},
/**
* Loads the new object
*
* @param {object} $object
* @return {void}
*/
_loadObject: function ($object) {
// Load the object
switch (_self.objectData.type) {
case 'inline':
if ($(_self.objectData.url)) {
_self._showContent($object);
} else {
_self.error();
}
break;
case 'ajax':
$.ajax(
$.extend({}, _self.settings.ajax, {
url: _self.objectData.url,
type: _self.objectData.requestType,
dataType: _self.objectData.requestDataType,
data: _self.objectData.requestData,
success: function (data, textStatus, jqXHR) {
// Check for X-Ajax-Location
if (jqXHR.getResponseHeader('X-Ajax-Location')) {
_self.objectData.url = jqXHR.getResponseHeader('X-Ajax-Location');
_self._loadObject($object);
} else {
// Unserialize if data is transferred as json
if (_self.objectData.requestDataType === 'json') {
_self.objectData.data = data;
} else {
$object.html(data);
}
_self._showContent($object);
}
},
error: function (jqXHR, textStatus, errorThrown) {
_self.error();
}
})
);
break;
case 'flash':
_self._showContent($object);
break;
case 'video':
if (typeof ($object.get(0).canPlayType) === 'function' || _self.objects.case.find('video').length === 0) {
_self._showContent($object);
} else {
_self.error();
}
break;
default:
if (_self.objectData.url) {
$object.on('load', function () {
_self._showContent($object);
});
$object.on('error', function () {
_self.error();
});
} else {
_self.error();
}
break;
}
},
/**
* Throws an error message if something went wrong
*
* @return {void}
*/
error: function () {
_self.objectData.type = 'error';
var $object = $('<div class="' + _self.settings.classPrefix + 'inlineWrap"></div>');
$object.html(_self.settings.errorMessage);
_self.objects.contentInner.html($object);
_self._showContent(_self.objects.contentInner);
},
/**
* Calculates the dimensions to fit content
*
* @param {object} $object
* @return {void}
*/
_calculateDimensions: function ($object) {
_self._cleanupDimensions();
if (!$object) return;
// Set default dimensions
var dimensions = {
ratio: 1,
objectWidth: $object.attr('width') ? $object.attr('width') : $object.attr(_self._prefixAttributeName('width')),
objectHeight: $object.attr('height') ? $object.attr('height') : $object.attr(_self._prefixAttributeName('height'))
};
if (!_self.settings.disableShrink) {
// Add calculated maximum width/height to dimensions
dimensions.maxWidth = parseInt(_self.dimensions.windowWidth * _self.settings.shrinkFactor);
dimensions.maxHeight = parseInt(_self.dimensions.windowHeight * _self.settings.shrinkFactor);
// If the auto calculated maxWidth/maxHeight greather than the user-defined one, use that.
if (dimensions.maxWidth > _self.settings.maxWidth) {
dimensions.maxWidth = _self.settings.maxWidth;
}
if (dimensions.maxHeight > _self.settings.maxHeight) {
dimensions.maxHeight = _self.settings.maxHeight;
}
// Calculate the difference between screen width/height and image width/height
dimensions.differenceWidthAsPercent = parseInt(100 / dimensions.maxWidth * dimensions.objectWidth);
dimensions.differenceHeightAsPercent = parseInt(100 / dimensions.maxHeight * dimensions.objectHeight);
switch (_self.objectData.type) {
case 'image':
case 'flash':
case 'video':
case 'iframe':
case 'ajax':
case 'inline':
if (_self.objectData.type === 'image' || _self.settings.fixedRatio === true) {
if (dimensions.differenceWidthAsPercent > 100 && dimensions.differenceWidthAsPercent > dimensions.differenceHeightAsPercent) {
dimensions.objectWidth = dimensions.maxWidth;
dimensions.objectHeight = parseInt(dimensions.objectHeight / dimensions.differenceWidthAsPercent * 100);
}
if (dimensions.differenceHeightAsPercent > 100 && dimensions.differenceHeightAsPercent > dimensions.differenceWidthAsPercent) {
dimensions.objectWidth = parseInt(dimensions.objectWidth / dimensions.differenceHeightAsPercent * 100);
dimensions.objectHeight = dimensions.maxHeight;
}
if (dimensions.differenceHeightAsPercent > 100 && dimensions.differenceWidthAsPercent < dimensions.differenceHeightAsPercent) {
dimensions.objectWidth = parseInt(dimensions.maxWidth / dimensions.differenceHeightAsPercent * dimensions.differenceWidthAsPercent);
dimensions.objectHeight = dimensions.maxHeight;
}
break;
}
case 'error':
if (!isNaN(dimensions.objectWidth) && dimensions.objectWidth > dimensions.maxWidth) {
dimensions.objectWidth = dimensions.maxWidth;
}
break;
default:
if ((isNaN(dimensions.objectWidth) || dimensions.objectWidth > dimensions.maxWidth) && !_self.settings.forceWidth) {
dimensions.objectWidth = dimensions.maxWidth;
}
if (((isNaN(dimensions.objectHeight) && dimensions.objectHeight !== 'auto') || dimensions.objectHeight > dimensions.maxHeight) && !_self.settings.forceHeight) {
dimensions.objectHeight = dimensions.maxHeight;
}
break;
}
}
if (_self.settings.forceWidth) {
try {
dimensions.objectWidth = _self.settings[_self.objectData.type].width;
} catch (e) {
dimensions.objectWidth = _self.settings.width || dimensions.objectWidth;
}
dimensions.maxWidth = null;
}
if ($object.attr(_self._prefixAttributeName('max-width'))) {
dimensions.maxWidth = $object.attr(_self._prefixAttributeName('max-width'));
}
if (_self.settings.forceHeight) {
try {
dimensions.objectHeight = _self.settings[_self.objectData.type].height;
} catch (e) {
dimensions.objectHeight = _self.settings.height || dimensions.objectHeight;
}
dimensions.maxHeight = null;
}
if ($object.attr(_self._prefixAttributeName('max-height'))) {
dimensions.maxHeight = $object.attr(_self._prefixAttributeName('max-height'));
}
_self._adjustDimensions($object, dimensions);
},
/**
* Adjusts the dimensions
*
* @param {object} $object
* @param {object} dimensions
* @return {void}
*/
_adjustDimensions: function ($object, dimensions) {
// Adjust width and height
$object.css({
'width': dimensions.objectWidth,
'height': dimensions.objectHeight,
'max-width': dimensions.maxWidth,
'max-height': dimensions.maxHeight
});
_self.objects.contentInner.css({
'width': $object.outerWidth(),
'height': $object.outerHeight(),
'max-width': '100%'
});
_self.objects.case.css({
'width': _self.objects.contentInner.outerWidth(),
'max-width': '100%'
});
// Adjust margin
_self.objects.case.css({
'margin-top': parseInt(-(_self.objects.case.outerHeight() / 2)),
'margin-left': parseInt(-(_self.objects.case.outerWidth() / 2))
});
},
/**
* Handles the _loading
*
* @param {string} process
* @return {void}
*/
_loading: function (process) {
if (process === 'start') {
_self.objects.case.addClass(_self.settings.classPrefix + 'loading');
_self.objects.loading.show();
} else if (process === 'end') {
_self.objects.case.removeClass(_self.settings.classPrefix + 'loading');
_self.objects.loading.hide();
}
},
/**
* Gets the client screen dimensions
*
* @return {object} dimensions
*/
getViewportDimensions: function () {
return {
windowWidth: $(window).innerWidth(),
windowHeight: $(window).innerHeight()
};
},
/**
* Verifies the url
*
* @param {string} dataUrl
* @return {object} dataUrl Clean url for processing content
*/
_verifyDataUrl: function (dataUrl) {
if (!dataUrl || dataUrl === undefined || dataUrl === '') {
return false;
}
if (dataUrl.indexOf('#') > -1) {
dataUrl = dataUrl.split('#');
dataUrl = '#' + dataUrl[dataUrl.length - 1];
}
return _self._normalizeUrl(dataUrl.toString());
},
//
/**
* Tries to get the (file) suffix of an url
*
* @param {string} url
* @return {string}
*/
_getFileUrlSuffix: function (url) {
var re = /(?:\.([^.]+))?$/;
return re.exec(url.toLowerCase())[1];
},
/**
* Verifies the data type of the content to load
*
* @param {string} url
* @return {string|boolean} Array key if expression matched, else false
*/
_verifyDataType: function (url) {
var typeMapping = _self.settings.typeMapping;
// Early abort if dataUrl couldn't be verified
if (!url) {
return false;
}
// Verify the dataType of url according to typeMapping which
// has been defined in settings.
for (var key in typeMapping) {
if (typeMapping.hasOwnProperty(key)) {
var suffixArr = typeMapping[key].split(',');
for (var i = 0; i < suffixArr.length; i++) {
var suffix = suffixArr[i].toLowerCase(),
regexp = new RegExp('\.(' + suffix + ')$', 'i'),
str = url.toLowerCase().split('?')[0].substr(-5);
if (regexp.test(str) === true || (key === 'inline' && (url.indexOf(suffix) > -1))) {
return key;
}
}
}
}
// If no expression matched, return 'iframe'.
return 'iframe';
},
/**
* Extends html markup with the essential tags
*
* @return {void}
*/
_addElements: function () {
if (typeof _self.objects.case !== 'undefined' && $('#' + _self.objects.case.attr('id')).length) {
return;
}
_self.settings.markup();
},
/**
* Shows the loaded content
*
* @param {object} $object
* @return {void}
*/
_showContent: function ($object) {
// Add data attribute with the object type
_self.objects.document.attr(_self._prefixAttributeName('type'), _self.objectData.type);
_self.cache.object = $object;
// Call onBeforeShow hook functions
_self._callHooks(_self.settings.onBeforeShow);
if (_self.settings.breakBeforeShow) return;
_self.show();
},
/**
* Starts the 'inTransition'
* @return {void}
*/
_startInTransition: function () {
switch (_self.transition.in()) {
case 'scrollTop':
case 'scrollRight':
case 'scrollBottom':
case 'scrollLeft':
case 'scrollHorizontal':
case 'scrollVertical':
_self.transition.scroll(_self.objects.case, 'in', _self.settings.speedIn);
_self.transition.fade(_self.objects.contentInner, 'in', _self.settings.speedIn);
break;
case 'elastic':
if (_self.objects.case.css('opacity') < 1) {
_self.transition.zoom(_self.objects.case, 'in', _self.settings.speedIn);
_self.transition.fade(_self.objects.contentInner, 'in', _self.settings.speedIn);
}
case 'fade':
case 'fadeInline':
_self.transition.fade(_self.objects.case, 'in', _self.settings.speedIn);
_self.transition.fade(_self.objects.contentInner, 'in', _self.settings.speedIn);
break;
default:
_self.transition.fade(_self.objects.case, 'in', 0);
break;
}
// End loading.
_self._loading('end');
_self.isBusy = false;
// Set index of the first item opened
if (!_self.cache.firstOpened) {
_self.cache.firstOpened = _self.objectData.this;
}
// Fade in the info with delay
_self.objects.info.hide();
setTimeout(function () {
_self.transition.fade(_self.objects.info, 'in', _self.settings.speedIn);
}, _self.settings.speedIn);
// Call onFinish hook functions
_self._callHooks(_self.settings.onFinish);
},
/**
* Processes the content to show
*
* @return {void}
*/
_processContent: function () {
_self.isBusy = true;
// Fade out the info at first
_self.transition.fade(_self.objects.info, 'out', 0);
switch (_self.settings.transitionOut) {
case 'scrollTop':
case 'scrollRight':
case 'scrollBottom':
case 'scrollLeft':
case 'scrollVertical':
case 'scrollHorizontal':
if (_self.objects.case.is(':hidden')) {
_self.transition.fade(_self.objects.contentInner, 'out', 0);
_self.transition.fade(_self.objects.case, 'out', 0, 0, function () {
_self._loadContent();
});
} else {
_self.transition.scroll(_self.objects.case, 'out', _self.settings.speedOut, function () {
_self._loadContent();
});
}
break;
case 'fade':
if (_self.objects.case.is(':hidden')) {
_self.transition.fade(_self.objects.case, 'out', 0, 0, function () {
_self._loadContent();
});
} else {
_self.transition.fade(_self.objects.case, 'out', _self.settings.speedOut, 0, function () {
_self._loadContent();
});
}
break;
case 'fadeInline':
case 'elastic':
if (_self.objects.case.is(':hidden')) {
_self.transition.fade(_self.objects.case, 'out', 0, 0, function () {
_self._loadContent();
});
} else {
_self.transition.fade(_self.objects.contentInner, 'out', _self.settings.speedOut, 0, function () {
_self._loadContent();
});
}
break;
default:
_self.transition.fade(_self.objects.case, 'out', 0, 0, function () {
_self._loadContent();
});
break;
}
},
/**
* Handles events for gallery buttons
*
* @return {void}
*/
_handleEvents: function () {
_self._unbindEvents();
_self.objects.nav.children().not(_self.objects.close).hide();
// If slideshow is enabled, show play/pause and start timeout.
if (_self.isSlideshowEnabled()) {
// Only start the timeout if slideshow autostart is enabled and slideshow is not pausing
if (
(_self.settings.slideshowAutoStart === true || _self.isSlideshowStarted) &&
!_self.objects.nav.hasClass(_self.settings.classPrefix + 'paused')
) {
_self._startTimeout();
} else {
_self._stopTimeout();
}
}
if (_self.settings.liveResize) {
_self._watchResizeInteraction();
}
_self.objects.close.click(function (event) {
event.preventDefault();
_self.close();
});
if (_self.settings.closeOnOverlayClick === true) {
_self.objects.overlay.css('cursor', 'pointer').click(function (event) {
event.preventDefault();
_self.close();
});
}
if (_self.settings.useKeys === true) {
_self._addKeyEvents();
}
if (_self.objectData.isPartOfSequence) {
_self.objects.nav.attr(_self._prefixAttributeName('ispartofsequence'), true);
_self.objects.nav.data('items', _self._setNavigation());
_self.objects.prev.click(function (event) {
event.preventDefault();
if (_self.settings.navigateEndless === true || !_self.item.isFirst()) {
_self.objects.prev.unbind('click');
_self.cache.action = 'prev';
_self.objects.nav.data('items').prev.click();
if (_self.isSlideshowEnabled()) {
_self._stopTimeout();
}
}
});
_self.objects.next.click(function (event) {
event.preventDefault();
if (_self.settings.navigateEndless === true || !_self.item.isLast()) {
_self.objects.next.unbind('click');
_self.cache.action = 'next';
_self.objects.nav.data('items').next.click();
if (_self.isSlideshowEnabled()) {
_self._stopTimeout();
}
}
});
if (_self.isSlideshowEnabled()) {
_self.objects.play.click(function (event) {
event.preventDefault();
_self._startTimeout();
});
_self.objects.pause.click(function (event) {
event.preventDefault();
_self._stopTimeout();
});
}
// Enable swiping if activated
if (_self.settings.swipe === true) {
if ($.isPlainObject($.event.special.swipeleft)) {
_self.objects.case.on('swipeleft', function (event) {
event.preventDefault();
_self.objects.next.click();
if (_self.isSlideshowEnabled()) {
_self._stopTimeout();
}
});
}
if ($.isPlainObject($.event.special.swiperight)) {
_self.objects.case.on('swiperight', function (event) {
event.preventDefault();
_self.objects.prev.click();
if (_self.isSlideshowEnabled()) {
_self._stopTimeout();
}
});
}
}
}
},
/**
* Adds the key events
*
* @return {void}
*/
_addKeyEvents: function () {
$(document).bind('keyup.lightcase', function (event) {
// Do nothing if lightcase is in process
if (_self.isBusy) {
return;
}
switch (event.keyCode) {
// Escape key
case 27:
_self.objects.close.click();
break;
// Backward key
case 37:
if (_self.objectData.isPartOfSequence) {
_self.objects.prev.click();
}
break;
// Forward key
case 39:
if (_self.objectData.isPartOfSequence) {
_self.objects.next.click();
}
break;
}
});
},
/**
* Starts the slideshow timeout
*
* @return {void}
*/
_startTimeout: function () {
_self.isSlideshowStarted = true;
_self.objects.play.hide();
_self.objects.pause.show();
_self.cache.action = 'next';
_self.objects.nav.removeClass(_self.settings.classPrefix + 'paused');
_self.timeout = setTimeout(function () {
_self.objects.nav.data('items').next.click();
}, _self.settings.timeout);
},
/**
* Stops the slideshow timeout
*
* @return {void}
*/
_stopTimeout: function () {
_self.objects.play.show();
_self.objects.pause.hide();
_self.objects.nav.addClass(_self.settings.classPrefix + 'paused');
clearTimeout(_self.timeout);
},
/**
* Sets the navigator buttons (prev/next)
*
* @return {object} items
*/
_setNavigation: function () {
var $links = $((_self.cache.selector || _self.settings.attr)),
sequenceLength = _self.objectData.sequenceLength - 1,
items = {
prev: $links.eq(_self.objectData.prevIndex),
next: $links.eq(_self.objectData.nextIndex)
};
if (_self.objectData.currentIndex > 0) {
_self.objects.prev.show();
} else {
items.prevItem = $links.eq(sequenceLength);
}
if (_self.objectData.nextIndex <= sequenceLength) {
_self.objects.next.show();
} else {
items.next = $links.eq(0);
}
if (_self.settings.navigateEndless === true) {
_self.objects.prev.show();
_self.objects.next.show();
}
return items;
},
/**
* Item information/status
*
*/
item: {
/**
* Verifies if the current item is first item.
*
* @return {boolean}
*/
isFirst: function () {
return (_self.objectData.currentIndex === 0);
},
/**
* Verifies if the current item is first item opened.
*
* @return {boolean}
*/
isFirstOpened: function () {
return _self.objectData.this.is(_self.cache.firstOpened);
},
/**
* Verifies if the current item is last item.
*
* @return {boolean}
*/
isLast: function () {
return (_self.objectData.currentIndex === (_self.objectData.sequenceLength - 1));
}
},
/**
* Clones the object for inline elements
*
* @param {object} $object
* @return {object} $clone
*/
_cloneObject: function ($object) {
var $clone = $object.clone(),
objectId = $object.attr('id');
// If element is hidden, cache the object and remove
if ($object.is(':hidden')) {
_self._cacheObjectData($object);
$object.attr('id', _self.settings.idPrefix + 'temp-' + objectId).empty();
} else {
// Prevent duplicated id's
$clone.removeAttr('id');
}
return $clone.show();
},
/**
* Verifies if it is a mobile device
*
* @return {boolean}
*/
isMobileDevice: function () {
var deviceAgent = navigator.userAgent.toLowerCase(),
agentId = deviceAgent.match(_self.settings.mobileMatchExpression);
return agentId ? true : false;
},
/**
* Verifies if css transitions are supported
*
* @return {string|boolean} The transition prefix if supported, else false.
*/
isTransitionSupported: function () {
var body = _self.objects.body.get(0),
isTransitionSupported = false,
transitionMapping = {
'transition': '',
'WebkitTransition': '-webkit-',
'MozTransition': '-moz-',
'OTransition': '-o-',
'MsTransition': '-ms-'
};
for (var key in transitionMapping) {
if (transitionMapping.hasOwnProperty(key) && key in body.style) {
_self.support.transition = transitionMapping[key];
isTransitionSupported = true;
}
}
return isTransitionSupported;
},
/**
* Transition types
*
*/
transition: {
/**
* Returns the correct transition type according to the status of interaction.
*
* @return {string} Transition type
*/
in: function () {
if (_self.settings.transitionOpen && !_self.cache.firstOpened) {
return _self.settings.transitionOpen;
}
return _self.settings.transitionIn;
},
/**
* Fades in/out the object
*
* @param {object} $object
* @param {string} type
* @param {number} speed
* @param {number} opacity
* @param {function} callback
* @return {void} Animates an object
*/
fade: function ($object, type, speed, opacity, callback) {
var isInTransition = type === 'in',
startTransition = {},
startOpacity = $object.css('opacity'),
endTransition = {},
endOpacity = opacity ? opacity : isInTransition ? 1 : 0;
if (!_self.isOpen && isInTransition) return;
startTransition['opacity'] = startOpacity;
endTransition['opacity'] = endOpacity;
$object.css(_self.support.transition + 'transition', 'none');
$object.css(startTransition).show();
// Css transition
if (_self.support.transitions) {
endTransition[_self.support.transition + 'transition'] = speed + 'ms ease';
setTimeout(function () {
$object.css(endTransition);
setTimeout(function () {
$object.css(_self.support.transition + 'transition', '');
if (callback && (_self.isOpen || !isInTransition)) {
callback();
}
}, speed);
}, 15);
} else {
// Fallback to js transition
$object.stop();
$object.animate(endTransition, speed, callback);
}
},
/**
* Scrolls in/out the object
*
* @param {object} $object
* @param {string} type
* @param {number} speed
* @param {function} callback
* @return {void} Animates an object
*/
scroll: function ($object, type, speed, callback) {
var isInTransition = type === 'in',
transition = isInTransition ? _self.settings.transitionIn : _self.settings.transitionOut,
direction = 'left',
startTransition = {},
startOpacity = isInTransition ? 0 : 1,
startOffset = isInTransition ? '-50%' : '50%',
endTransition = {},
endOpacity = isInTransition ? 1 : 0,
endOffset = isInTransition ? '50%' : '-50%';
if (!_self.isOpen && isInTransition) return;
switch (transition) {
case 'scrollTop':
direction = 'top';
break;
case 'scrollRight':
startOffset = isInTransition ? '150%' : '50%';
endOffset = isInTransition ? '50%' : '150%';
break;
case 'scrollBottom':
direction = 'top';
startOffset = isInTransition ? '150%' : '50%';
endOffset = isInTransition ? '50%' : '150%';
break;
case 'scrollHorizontal':
startOffset = isInTransition ? '150%' : '50%';
endOffset = isInTransition ? '50%' : '-50%';
break;
case 'scrollVertical':
direction = 'top';
startOffset = isInTransition ? '-50%' : '50%';
endOffset = isInTransition ? '50%' : '150%';
break;
}
if (_self.cache.action === 'prev') {
switch (transition) {
case 'scrollHorizontal':
startOffset = isInTransition ? '-50%' : '50%';
endOffset = isInTransition ? '50%' : '150%';
break;
case 'scrollVertical':
startOffset = isInTransition ? '150%' : '50%';
endOffset = isInTransition ? '50%' : '-50%';
break;
}
}
startTransition['opacity'] = startOpacity;
startTransition[direction] = startOffset;
endTransition['opacity'] = endOpacity;
endTransition[direction] = endOffset;
$object.css(_self.support.transition + 'transition', 'none');
$object.css(startTransition).show();
// Css transition
if (_self.support.transitions) {
endTransition[_self.support.transition + 'transition'] = speed + 'ms ease';
setTimeout(function () {
$object.css(endTransition);
setTimeout(function () {
$object.css(_self.support.transition + 'transition', '');
if (callback && (_self.isOpen || !isInTransition)) {
callback();
}
}, speed);
}, 15);
} else {
// Fallback to js transition
$object.stop();
$object.animate(endTransition, speed, callback);
}
},
/**
* Zooms in/out the object
*
* @param {object} $object
* @param {string} type
* @param {number} speed
* @param {function} callback
* @return {void} Animates an object
*/
zoom: function ($object, type, speed, callback) {
var isInTransition = type === 'in',
startTransition = {},
startOpacity = $object.css('opacity'),
startScale = isInTransition ? 'scale(0.75)' : 'scale(1)',
endTransition = {},
endOpacity = isInTransition ? 1 : 0,
endScale = isInTransition ? 'scale(1)' : 'scale(0.75)';
if (!_self.isOpen && isInTransition) return;
startTransition['opacity'] = startOpacity;
startTransition[_self.support.transition + 'transform'] = startScale;
endTransition['opacity'] = endOpacity;
$object.css(_self.support.transition + 'transition', 'none');
$object.css(startTransition).show();
// Css transition
if (_self.support.transitions) {
endTransition[_self.support.transition + 'transform'] = endScale;
endTransition[_self.support.transition + 'transition'] = speed + 'ms ease';
setTimeout(function () {
$object.css(endTransition);
setTimeout(function () {
$object.css(_self.support.transition + 'transform', '');
$object.css(_self.support.transition + 'transition', '');
if (callback && (_self.isOpen || !isInTransition)) {
callback();
}
}, speed);
}, 15);
} else {
// Fallback to js transition
$object.stop();
$object.animate(endTransition, speed, callback);
}
}
},
/**
* Calls all the registered functions of a specific hook
*
* @param {object} hooks
* @return {void}
*/
_callHooks: function (hooks) {
if (typeof (hooks) === 'object') {
$.each(hooks, function (index, hook) {
if (typeof (hook) === 'function') {
hook.call(_self.origin);
}
});
}
},
/**
* Caches the object data
*
* @param {object} $object
* @return {void}
*/
_cacheObjectData: function ($object) {
$.data($object, 'cache', {
id: $object.attr('id'),
content: $object.html()
});
_self.cache.originalObject = $object;
},
/**
* Restores the object from cache
*
* @return void
*/
_restoreObject: function () {
var $object = $('[id^="' + _self.settings.idPrefix + 'temp-"]');
$object.attr('id', $.data(_self.cache.originalObject, 'cache').id);
$object.html($.data(_self.cache.originalObject, 'cache').content);
},
/**
* Executes functions for a window resize.
* It stops an eventual timeout and recalculates dimensions.
*
* @param {object} dimensions
* @return {void}
*/
resize: function (event, dimensions) {
if (!_self.isOpen) return;
if (_self.isSlideshowEnabled()) {
_self._stopTimeout();
}
if (typeof dimensions === 'object' && dimensions !== null) {
if (dimensions.width) {
_self.cache.object.attr(
_self._prefixAttributeName('width'),
dimensions.width
);
}
if (dimensions.maxWidth) {
_self.cache.object.attr(
_self._prefixAttributeName('max-width'),
dimensions.maxWidth
);
}
if (dimensions.height) {
_self.cache.object.attr(
_self._prefixAttributeName('height'),
dimensions.height
);
}
if (dimensions.maxHeight) {
_self.cache.object.attr(
_self._prefixAttributeName('max-height'),
dimensions.maxHeight
);
}
}
_self.dimensions = _self.getViewportDimensions();
_self._calculateDimensions(_self.cache.object);
// Call onResize hook functions
_self._callHooks(_self.settings.onResize);
},
/**
* Watches for any resize interaction and caches the new sizes.
*
* @return {void}
*/
_watchResizeInteraction: function () {
$(window).resize(_self.resize);
},
/**
* Stop watching any resize interaction related to _self.
*
* @return {void}
*/
_unwatchResizeInteraction: function () {
$(window).off('resize', _self.resize);
},
/**
* Switches to the fullscreen mode
*
* @return {void}
*/
_switchToFullScreenMode: function () {
_self.settings.shrinkFactor = 1;
_self.settings.overlayOpacity = 1;
$('html').addClass(_self.settings.classPrefix + 'fullScreenMode');
},
/**
* Enters into the lightcase view
*
* @return {void}
*/
_open: function () {
_self.isOpen = true;
_self.support.transitions = _self.settings.cssTransitions ? _self.isTransitionSupported() : false;
_self.support.mobileDevice = _self.isMobileDevice();
if (_self.support.mobileDevice) {
$('html').addClass(_self.settings.classPrefix + 'isMobileDevice');
if (_self.settings.fullScreenModeForMobile) {
_self._switchToFullScreenMode();
}
}
if (!_self.settings.transitionIn) {
_self.settings.transitionIn = _self.settings.transition;
}
if (!_self.settings.transitionOut) {
_self.settings.transitionOut = _self.settings.transition;
}
switch (_self.transition.in()) {
case 'fade':
case 'fadeInline':
case 'elastic':
case 'scrollTop':
case 'scrollRight':
case 'scrollBottom':
case 'scrollLeft':
case 'scrollVertical':
case 'scrollHorizontal':
if (_self.objects.case.is(':hidden')) {
_self.objects.close.css('opacity', 0);
_self.objects.overlay.css('opacity', 0);
_self.objects.case.css('opacity', 0);
_self.objects.contentInner.css('opacity', 0);
}
_self.transition.fade(_self.objects.overlay, 'in', _self.settings.speedIn, _self.settings.overlayOpacity, function () {
_self.transition.fade(_self.objects.close, 'in', _self.settings.speedIn);
_self._handleEvents();
_self._processContent();
});
break;
default:
_self.transition.fade(_self.objects.overlay, 'in', 0, _self.settings.overlayOpacity, function () {
_self.transition.fade(_self.objects.close, 'in', 0);
_self._handleEvents();
_self._processContent();
});
break;
}
_self.objects.document.addClass(_self.settings.classPrefix + 'open');
_self.objects.case.attr('aria-hidden', 'false');
},
/**
* Shows the lightcase by starting the transition
*/
show: function () {
// Call onCalculateDimensions hook functions
_self._callHooks(_self.settings.onBeforeCalculateDimensions);
_self._calculateDimensions(_self.cache.object);
// Call onAfterCalculateDimensions hook functions
_self._callHooks(_self.settings.onAfterCalculateDimensions);
_self._startInTransition();
},
/**
* Escapes from the lightcase view
*
* @return {void}
*/
close: function () {
_self.isOpen = false;
if (_self.isSlideshowEnabled()) {
_self._stopTimeout();
_self.isSlideshowStarted = false;
_self.objects.nav.removeClass(_self.settings.classPrefix + 'paused');
}
_self.objects.loading.hide();
_self._unbindEvents();
_self._unwatchResizeInteraction();
$('html').removeClass(_self.settings.classPrefix + 'open');
_self.objects.case.attr('aria-hidden', 'true');
_self.objects.nav.children().hide();
_self.objects.close.hide();
// Call onClose hook functions
_self._callHooks(_self.settings.onClose);
// Fade out the info at first
_self.transition.fade(_self.objects.info, 'out', 0);
switch (_self.settings.transitionClose || _self.settings.transitionOut) {
case 'fade':
case 'fadeInline':
case 'scrollTop':
case 'scrollRight':
case 'scrollBottom':
case 'scrollLeft':
case 'scrollHorizontal':
case 'scrollVertical':
_self.transition.fade(_self.objects.case, 'out', _self.settings.speedOut, 0, function () {
_self.transition.fade(_self.objects.overlay, 'out', _self.settings.speedOut, 0, function () {
_self.cleanup();
});
});
break;
case 'elastic':
_self.transition.zoom(_self.objects.case, 'out', _self.settings.speedOut, function () {
_self.transition.fade(_self.objects.overlay, 'out', _self.settings.speedOut, 0, function () {
_self.cleanup();
});
});
break;
default:
_self.cleanup();
break;
}
},
/**
* Unbinds all given events
*
* @return {void}
*/
_unbindEvents: function () {
// Unbind overlay event
_self.objects.overlay.unbind('click');
// Unbind key events
$(document).unbind('keyup.lightcase');
// Unbind swipe events
_self.objects.case.unbind('swipeleft').unbind('swiperight');
// Unbind navigator events
_self.objects.prev.unbind('click');
_self.objects.next.unbind('click');
_self.objects.play.unbind('click');
_self.objects.pause.unbind('click');
// Unbind close event
_self.objects.close.unbind('click');
},
/**
* Cleans up the dimensions
*
* @return {void}
*/
_cleanupDimensions: function () {
var opacity = _self.objects.contentInner.css('opacity');
_self.objects.case.css({
'width': '',
'height': '',
'top': '',
'left': '',
'margin-top': '',
'margin-left': ''
});
_self.objects.contentInner.removeAttr('style').css('opacity', opacity);
_self.objects.contentInner.children().removeAttr('style');
},
/**
* Cleanup after aborting lightcase
*
* @return {void}
*/
cleanup: function () {
_self._cleanupDimensions();
_self.objects.loading.hide();
_self.objects.overlay.hide();
_self.objects.case.hide();
_self.objects.prev.hide();
_self.objects.next.hide();
_self.objects.play.hide();
_self.objects.pause.hide();
_self.objects.document.removeAttr(_self._prefixAttributeName('type'));
_self.objects.nav.removeAttr(_self._prefixAttributeName('ispartofsequence'));
_self.objects.contentInner.empty().hide();
_self.objects.info.children().empty();
if (_self.cache.originalObject) {
_self._restoreObject();
}
// Call onCleanup hook functions
_self._callHooks(_self.settings.onCleanup);
// Restore cache
_self.cache = {};
},
/**
* Returns the supported match media or undefined if the browser
* doesn't support match media.
*
* @return {mixed}
*/
_matchMedia: function () {
return window.matchMedia || window.msMatchMedia;
},
/**
* Returns the devicePixelRatio if supported. Else, it simply returns
* 1 as the default.
*
* @return {number}
*/
_devicePixelRatio: function () {
return window.devicePixelRatio || 1;
},
/**
* Checks if method is public
*
* @return {boolean}
*/
_isPublicMethod: function (method) {
return (typeof _self[method] === 'function' && method.charAt(0) !== '_');
},
/**
* Exports all public methods to be accessible, callable
* from global scope.
*
* @return {void}
*/
_export: function () {
window.lightcase = {};
$.each(_self, function (property) {
if (_self._isPublicMethod(property)) {
lightcase[property] = _self[property];
}
});
}
};
_self._export();
$.fn.lightcase = function (method) {
// Method calling logic (only public methods are applied)
if (_self._isPublicMethod(method)) {
return _self[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || !method) {
return _self.init.apply(this, arguments);
} else {
$.error('Method ' + method + ' does not exist on jQuery.lightcase');
}
};
})(jQuery);
jQuery(window).on('load', function () {
jQuery('.menu-trigger, .bg-trigger').on('click', function () {
jQuery('body').toggleClass('nav-active');
return false;
});
var scrollSpeed = 500;
var headerMargin = 10;
jQuery('a[href*="#"]').not('a[data-rel^=lightcase]').on('click', function () {
jQuery('body').removeClass('nav-active');
var hrefDoc = location.href.replace(/#.*/, '');
var hrefA = this.href.replace(/#.*/, '');
if (hrefDoc !== hrefA) {
return true;
}
var target = jQuery(this.hash);
var position = (target.length) ? target.offset().top - jQuery('header').height() - headerMargin : 0;
jQuery("html, body").stop().animate({
scrollTop: position
}, scrollSpeed, "swing");
return false;
});
jQuery('.btn-read-more').on('click', function () {
var parent = jQuery(this).parent();
var parentH = parent.height();
parent.css({
overflow: 'hidden',
height: parentH
});
console.log('parentH: ' + parentH);
var obj = jQuery(this).prev();
var curH = obj.height();
var autoH = obj.css('height', 'auto').height();
parent.css({
height: 'auto'
});
obj.addClass('open');
jQuery(this).addClass('open');
obj.height(curH).animate({
height: autoH
}, 300);
});
/* lightcase */
jQuery('a[data-rel^=lightcase]').lightcase({
maxWidth: 860,
maxHeight: 2000,
showCaption: false,
inline: {
width: 1400
},
shrinkFactor: .85,
});
/* lazyload */
var img_obj = jQuery('.lazyload');
lazyload(img_obj, {
rootMargin: "300px 0px"
});
/* lazyload2 */
jQuery('.lazyload2').each(function () {
jQuery(this).attr('src', jQuery(this).attr('data-src'));
});
/* clipboard copy */
jQuery('.clipboard-copy').on('click', function () {
var text = jQuery(this).text();
var textarea = jQuery('<textarea></textarea>');
// 繝�く繧ケ繝医お繝ェ繧「縺ォ譁�ォ�繧呈諺蜈・
textarea.text(text);
//縲€繝�く繧ケ繝医お繝ェ繧「繧呈諺蜈・
jQuery(this).append(textarea);
//縲€繝�く繧ケ繝医お繝ェ繧「繧帝∈謚�
textarea.select();
// 繧ウ繝斐�
document.execCommand('copy');
// 繝�く繧ケ繝医お繝ェ繧「縺ョ蜑企勁
textarea.remove();
// 繧「繝ゥ繝シ繝域枚縺ョ陦ィ遉コ
alert('縲�#貂ゥ豌エ萓ソ蠎ァ繧ィ繝斐た繝シ繝峨€阪r繧ッ繝ェ繝��繝懊�繝峨↓繧ウ繝斐�縺励∪縺励◆縲�');
});
/* top visual */
jQuery('.tv-box').addClass('loaded');
});
jQuery(window).on('load resize scroll', function () {
/* to-top */
var jQuerytoTop = jQuery('.to-top');
if (jQuery(window).scrollTop() > 300) {
jQuerytoTop.fadeIn();
} else {
jQuerytoTop.fadeOut();
}
if (window.matchMedia("(max-width: 599px)").matches) {
if (jQuery(document).height() - jQuery(window).height() - jQuery(window).scrollTop() <= jQuery('.site-footer').innerHeight()) {
jQuerytoTop.css({
'position': 'absolute',
'bottom': jQuery('.site-footer').innerHeight() + 20,
});
} else {
jQuerytoTop.css({
'position': '',
'bottom': '',
});
}
} else {
jQuerytoTop.css({
'position': '',
'bottom': '',
})
}
/* 逕サ髱「縺ォ陦ィ遉コ縺輔l縺溘i */
var elem = jQuery('.elemRtoL, .elemImgFadeIn, .elemSlideRtoL, .elemSlideLtoR, .elemFadeIn');
elem.each(function () {
var elemOffset = jQuery(this).offset().top;
var scrollPos = jQuery(window).scrollTop();
var wh = jQuery(window).height();
var whOffset = (window.matchMedia("(max-width: 599px)").matches) ? 0 : wh / 4;
if (scrollPos > elemOffset - wh + whOffset) {
jQuery(this).addClass('animated');
}
});
jQuery(window).on('scroll', function () {
var mv = jQuery(window).scrollTop() / 4;
jQuery('body').css({
//'background-position-x': -mv+'px',
'background-position-y': -mv + 'px'
});
});
});
jQuery(window).on('load resize', function () {
jQuery('.responsive-img img').each(function () {
if (window.matchMedia("(max-width: 599px)").matches) {
jQuery(this).attr('src', jQuery(this).attr('data-sp-src'));
} else {
jQuery(this).attr('src', jQuery(this).attr('data-pc-src'));
}
});
});
...@@ -113,8 +113,8 @@ ...@@ -113,8 +113,8 @@
<div id="main_area" class="clearfix"> <div id="main_area" class="clearfix">
<p id="bnr_area"> <p id="bnr_area">
<a href="https://sanitary-net-annex.com/contest/" target="_brank"><img src="/shared/images/4th_photocontest_pc.png" width="353" height="107" width="353" height="107" alt="水のある暮らし" /></a> <a href="https://sanitary-net-annex.com/contest/" target="_brank"><img src="/shared/images/4th_result_pc.png" width="353" height="107" width="353" height="107" alt="水のある暮らし" /></a>
<a href="https://www.sanitary-net.com/news/news1692"><img src="/shared/images/kodomo.png" width="353" height="107" alt="こどもみらい住宅支援事業" /></a></p> <a href="https://www.sanitary-net.com/news/news1692"><img src="/shared/images/kodomomirai.png" width="353" height="107" alt="こどもみらい住宅支援事業" /></a></p>
<div class="left"> <div class="left">
<div style="overflow: hidden; margin-bottom: 20px;"> <div style="overflow: hidden; margin-bottom: 20px;">
<div class="box_left"> <div class="box_left">
...@@ -190,6 +190,7 @@ ...@@ -190,6 +190,7 @@
<p><a href="https://ondankataisaku.env.go.jp/coolchoice/" target="_blank"><img src="https://www.sanitary-net.com/cms/wp-content/uploads/2018/11/bnr_coolchoice_top.jpg" alt="(一社)日本レストルーム工業会は「COOL CHOICE」に賛同しています" width="725" height="89" /></a></p> <p><a href="https://ondankataisaku.env.go.jp/coolchoice/" target="_blank"><img src="https://www.sanitary-net.com/cms/wp-content/uploads/2018/11/bnr_coolchoice_top.jpg" alt="(一社)日本レストルーム工業会は「COOL CHOICE」に賛同しています" width="725" height="89" /></a></p>
</div> </div>
<div class="right"> <div class="right">
<p><a href="/episode-cp/"><img src="images/banner/222_80.png" alt="トイレ操作系標準ピクトグラム" width="222" height="80" /></a></p>
<p><a href="/trend/pictogram/pictogram01.html"><img src="images/banner/banner_pictgram.jpg" alt="トイレ操作系標準ピクトグラム" width="222" height="80" /></a></p> <p><a href="/trend/pictogram/pictogram01.html"><img src="images/banner/banner_pictgram.jpg" alt="トイレ操作系標準ピクトグラム" width="222" height="80" /></a></p>
<p><a href="/trend/study.html"><img src="images/banner/banner_interview.png" alt="専門医に訊く(女性のための)温水洗浄便座の適切な使い方" width="222" height="80" /></a></p> <p><a href="/trend/study.html"><img src="images/banner/banner_interview.png" alt="専門医に訊く(女性のための)温水洗浄便座の適切な使い方" width="222" height="80" /></a></p>
<p><a href="/news/news1633"><img src="images/banner/banner_cyushouzei.gif" alt="中小企業税制改正に伴う対応" width="222" height="80" /></a></p> <p><a href="/news/news1633"><img src="images/banner/banner_cyushouzei.gif" alt="中小企業税制改正に伴う対応" width="222" height="80" /></a></p>
......
...@@ -210,8 +210,16 @@ function includeSideEn_pict() { ...@@ -210,8 +210,16 @@ function includeSideEn_pict() {
function includeShowcaseImage() { function includeShowcaseImage() {
showcaseimage = new Array(); showcaseimage = new Array();
showcaseimage[0] = "<img src='images/showcase01.jpg' alt='' width='1280' height='377' />";
showcaseimage[1] = "<img src='images/showcase02.jpg' alt='' width='1280' height='377' />";
showcaseimage[2] = "<img src='images/showcase03.jpg' alt='' width='1280' height='377' />";
showcaseimage[3] = "<img src='images/showcase04.jpg' alt='' width='1280' height='377' />";
showcaseimage[4] = "<img src='images/showcase05.jpg' alt='' width='1280' height='377' />";
n = Math.floor(Math.random() * showcaseimage.length);
document.write(showcaseimage[n]);
/* showcaseimage = new Array();
showcaseimage[0] = "<a href='https://toilet-episode-cp.com/' target='_blank'><img src='images/campaign_mv_pc_f.png' alt='' width='965' height='auto' class='mv_fade' /></a>"; showcaseimage[0] = "<a href='https://toilet-episode-cp.com/' target='_blank'><img src='images/campaign_mv_pc_f.png' alt='' width='965' height='auto' class='mv_fade' /></a>";
document.write(showcaseimage[0]); document.write(showcaseimage[0]);*/
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment