@charset "UTF-8";


/***************************************************

	共通コンテンツ部

***************************************************/

@import url('https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Yusei+Magic&display=swap');

:root {
	--text: #181818;
	--color01: #fc7796;
	--color02: #e3001b;
}


html, body{margin:0; padding:0}

body{
	position: relative;
	background: #ffffff;
	font-size: 16px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	word-wrap: break-word;
	word-break: break-all;
}

.roboto{
	font-family: "Roboto", sans-serif;
}

.hachi-maru{
  font-family: "Hachi Maru Pop", cursive;
}

.yusei{
  font-family: "Yusei Magic", system-ui;
  font-weight: 400;
  font-style: normal;
}

a{
	color: #008cd6;
	transition: all 0.2s linear;
}

img{
	max-width: 100%;
	height: auto;
}

ul{
	list-style-type: none;
}

.pc-on{display: block;}
.sp-on{display: none;}

.wrapper{
	width: 1160px;
	margin: 0 auto;
}



/* --------- ヘッダー ---------- */

header{
	padding: 16px 0;
	background: rgba(252,119,150,1.0);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	transition: all 0.2s linear;
}

header.scroll{
	background: rgba(252,119,150,0.8);
}

header .wrapper{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

header .wrapper .logo{
	width: 280px;
}

header .wrapper .link{

}

header .wrapper .link ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

header .wrapper .link ul li{
	margin-left: 26px;
}

header .wrapper .link ul li a{
	display: inline-block;
	height: 32px;
	line-height: 32px;
	border-radius: 32px;
	background: #fff;
	padding: 0 32px 0 12px;
	font-size: 18px;
	font-weight: 500;
	color: #f75b81;
	text-decoration: none;
	position: relative;
}

header .wrapper .link ul li a::after{
	content: '';
    border: 4px solid transparent;
    border-top: 6px solid #f75b81;
    position: absolute;
    top: 50%;
	right: 12px;

}

footer{
	background: var(--color01);
	padding: 16px 0;
	text-align: center;
}

footer .copyright{
	font-size: 12px;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.05em;
}


main{
	padding-top: 95px;	
}

.kv_area{
	width: 100%;
	height: 460px;
	background: rgb(254,217,0);
	background: linear-gradient(56deg, rgba(254,234,0,1) 34%, rgba(255,192,0,1) 100%);
}

.kv_area .wrapper{
	position: relative;
	height: 100%;
}


.fukidashi01{
	width: 300px;
	transform-origin: center bottom;
    animation: fukidashi1 2s linear infinite;
    position: absolute;
    top: 30px;
    right: 390px;
}

@keyframes fukidashi1{
  0% , 100%{
      transform: rotate(-10deg);
  }
  50%{
      transform: rotate(0deg);
  }
}

.kv_area .zeronyan01{
	width: 470px;
	transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    position: absolute;
    top: 60px;
    right: 0;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(-15deg);
  }
  50%{
      transform: rotate(5deg);
  }
}

.kv_area .text_box{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    line-height: 1;
}

.kv_area .text_box .catch{
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 56px;
}

.kv_area .text_box .caption{
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 24px;
}

.kv_area .text_box .caption strong{
	font-size: 1.4em;
	font-weight: 700;
	position: relative;
}

.kv_area .text_box .caption strong[data-ruby]::before {
    content: attr(data-ruby);
    display: inline-block;
    font-size: 26px;
    font-weight: 900;
    color: #ff0000;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
    white-space: nowrap;
}

.kv_area .text_box .kv_logo{
	width: 460px;
}


#section01{
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url('../images/bg01.jpg');
	position: relative;
	padding: 80px 0 120px;
}

.webp #section01{
	background-image: url('../images/bg01.webp');
}

#section01::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	position: absolute;
	top: 0;
	left: 0;
}

#section01 .wrapper{
	position: relative;
	z-index: 2;
}

#section01 h2{
	line-height: 1;
	text-align: center;
	margin-bottom: 60px;
}

#section01 h2 strong{
	display: inline-block;
	font-size: 46px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	position: relative;
	z-index: 2;
}

#section01 h2 strong::after{
    content: 'WHATs';
    display: inline-block;
    font-size: 74px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(251, 223, 0, 0.6);
    position: absolute;
    top: -33px;
    left: -120px;
    z-index: -1;
    text-shadow: none;
    white-space: nowrap;
    transform: rotate(-15deg);
}


#section01 .catch{
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

#section01 .catch::after{
	content: '';
	display: inline-block;
	width: 160px;
	height: 101px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20590.6%20377.4%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%232ea7e0%3B%20%7D%20.cls-2%20%7B%20fill%3A%20%23fff%3B%20%7D%20.cls-3%2C%20.cls-4%20%7B%20fill%3A%20%23e72d2d%3B%20%7D%20.cls-4%20%7B%20opacity%3A%20.5%3B%20%7D%20.cls-5%20%7B%20display%3A%20none%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_3%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_3%22%20class%3D%22cls-5%22%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M1098.3%2C164c2.3-2.7%2C30.5-5.1%2C34.1-1.4%2C3.6%2C3.7-1.6%2C43.1-11.3%2C44.3-21.8%2C2.8-28.1-36.7-22.8-42.9Z%22%2F%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M1321.3%2C150c4.1-.1%2C8.2.4%2C12%2C1.5%2C2.4.7%2C5.1%2C1.5%2C7.4%2C2.8%2C0%2C0%2C.1%2C0%2C.2.1%2C2.1%2C2.2%2C3.5%2C4.9%2C5.8%2C6.9%2C1.2%2C1%2C0%2C2.9%2C0%2C4.4%2C0%2C.5-.6.7-1.1.6-3.2-.9-6.4-.1-9.5-.4-5.5-.5-10.9.4-16.4-.1-1.2-.1-2.4.2-3.7.2-.7%2C0-.9.5-.8%2C1.1.3%2C3.3.5%2C6.5.1%2C9.8-.3%2C2.6.5%2C3.4%2C3.1%2C3.9%2C5.2%2C1.2%2C10.4%2C2.3%2C15.6%2C3.3%2C3.3.7%2C6.2%2C2.2%2C8.8%2C4.2%2C2.1%2C1.6%2C2.5%2C4.4%2C2.2%2C7-.2%2C1.5-1.2%2C2.9-3.3%2C2.4-1.4-.3-2.8.5-4.4.4-3.6-.2-7-2.1-10.7-1.2-1%2C.3-1.3.2-1%2C1.5.9%2C3.8%2C2.3%2C7.4%2C3.2%2C11.1%2C1.2%2C4.7%2C1.3%2C9.3%2C1%2C14-.3%2C5.4-1%2C10.9-1.5%2C16.3-.4%2C4.6-1.2%2C9.1-2.5%2C13.5-1.6%2C5.3-2.7%2C10.8-5.6%2C15.7-1.2%2C2.1-1.7%2C4.5-2.9%2C6.6-2.8%2C4.8-5.5%2C9.6-8.3%2C14.4-.4.6-.8%2C1.3-1.4%2C1.7-4.6%2C3.1-7%2C7.9-10.3%2C12.1-3.4%2C4.4-6.5%2C9-11%2C12.5-1.5%2C1.2-2.9%2C3-4.2%2C4.7-4.1%2C5.5-10%2C9.1-15.1%2C13.5-4.1%2C3.5-8.9%2C5.8-13.4%2C8.7-1.2.8-2.5%2C1.3-4.1%2C1.1-1.4-.2-2.7.4-3.7%2C1.4-.6.6-.8%2C1.2-.6%2C2%2C1%2C4.4%2C1.8%2C8.7.9%2C13.3-.6%2C2.8-.2%2C5.9-.7%2C8.7-.8%2C4.5%2C0%2C8.9-.3%2C13.3-.1%2C1.6-.3%2C3.1-.7%2C4.7-1.2%2C4.8-1.1%2C9.8-1.5%2C14.7-.5%2C5.8-1.2%2C11.5-2.8%2C17.1-1.4%2C4.9-2.5%2C10-5.2%2C14.4-1.3%2C2.1-2.5%2C4.2-4.3%2C5.9-1.8%2C1.7-2.6%2C4.2-4.4%2C5.9-.7.7-1.5%2C1.4-2.3%2C2.1-.9.8-1%2C1.8.2%2C2.3%2C2.5%2C1.1%2C3%2C3.5%2C4.1%2C5.6.1.2.1.6.3.8%2C1.4%2C1.8%2C1.1%2C3.4.4%2C5.5-.6%2C1.9-1.7%2C2.5-3.3%2C2.8-1%2C.2-2%2C.1-2.6-1.1-.2-.4-.6-.8-1-1-3.6-2-6.6-4.9-10-7.1-2.8-1.9-5.6-3.6-8.3-5.5-7-5.1-14.1-10-21-15.2-2.2-1.6-4.2-3.2-6.6-4.6-1.5-.9-3.1-1.2-4.7-1.7-5.1-1.7-10.4-1.2-15.6-2.2-2-.4-3.8.5-5.5%2C1.2-5.4%2C2.1-10.8%2C4.5-16.1%2C6.9-1.6.7-3%2C1.9-4.3%2C3.1-2.7%2C2.6-5.9%2C4.8-8%2C8-1.3%2C2-2.3%2C4.1-3.2%2C6.4-.6%2C1.4-1.8%2C2.4-2.9%2C3.4-1.3%2C1.2-2.5%2C2.5-3.1%2C4.2-.6%2C1.9-3.3%2C3.1-5.6%2C2.5-2-.5-1.8.4-1.3%2C1.6.1.4.3.8.6%2C1%2C1.2%2C1.2%2C1.6%2C2.1-.5%2C2.8-.6.2-.8.8-.6%2C1.4.4%2C2.1-.9%2C2.1-2.3%2C2-2.6-.3-4.9-1.2-7.1-2.5-6.2-3.5-11.5-8.1-16.8-12.8-3.6-3.1-7.4-5.9-10.6-9.4-4.2-4.5-8.9-8.6-12.2-14-1.8-2.9-3.2-6.2-5.7-8.7-1.3-1.3-1.5-3.3-2.7-4.7-1.7-1.9-2.9-2.4-5.2-1.3-1.7.8-3.3.8-5%2C.5-2.8-.5-5.5-.9-8.3-1.3-1.2-.2-2.4%2C0-3.7.1-3.5.4-6.9-.2-10.1-1.5-.4-.1-.8-.4-1.2-.3-4%2C1.2-7.6-.5-11.3-1.5-.6-.2-1.1-.5-1.8-.5-3.4.5-6.4-1.1-9.6-1.9-4-1-8-1.8-12.3-1.7-2.7%2C0-5.4-.6-7.9-1.9-1.4-.7-3-.9-4.5-1.4-1.3-.4-2.7-.8-3.3-2.2-.2-.3-.5-.6-.8-.5-3%2C.6-4.8-1.9-7.2-2.7-4.1-1.5-7.4-4.6-11.6-5.9-1.3-.4-1.9-1.7-3.2-2.2-5.1-2-9.7-5-13.9-8.2-4.6-3.6-9.9-6-14.1-10.1-1.3-1.2-3.2-2-4.8-3.1-2.2-1.4-4.3-2.9-6.1-4.9-2.3-2.4-5.4-3.6-7.9-5.9-3.9-3.7-8.2-6.9-11.9-10.8-4-4.3-8.5-8.2-11.7-13.1-3.9-5.9-9-10.8-12.6-16.9-2.6-4.5-5.4-9-7-14.1-.5-1.7-1.7-3.2-2.1-5-1.2-5.3-1.9-10.5-1.8-16%2C0-2.2-1.1-4.2-.5-6.5%2C1.3-4.4%2C1.3-9.3%2C4.7-12.9%2C0%2C0%2C.2-.2.3-.3.8-1.7%2C1.5-3.5%2C3.7-3.8%2C2.9-.3%2C5.5.3%2C8.1%2C1.7%2C5%2C2.8%2C8.5%2C7.4%2C12.9%2C11.1%2C1.1%2C1%2C1.9%2C2.4%2C2.7%2C3.6%2C1.4%2C1.9%2C3.5%2C3.2%2C4.6%2C5.1%2C3.5%2C6.2%2C9.6%2C10.2%2C13.7%2C15.9%2C3.4%2C4.8%2C8%2C8.6%2C12.6%2C12.2%2C4.6%2C3.7%2C9.6%2C6.8%2C14.3%2C10.4%2C1.6%2C1.2%2C3.6%2C2%2C5.4%2C3%2C5%2C2.5%2C9.1%2C6.3%2C14.2%2C8.7%2C3.6%2C1.7%2C6.9%2C4.3%2C10.7%2C5.6%2C8.1%2C2.9%2C15.2%2C7.8%2C23.5%2C10.1%2C9.9%2C2.8%2C19%2C7.7%2C28.5%2C11.7%2C3.3%2C1.4%2C6.6%2C2.5%2C9.5%2C4.8%2C1.9%2C1.5%2C3.3%2C3.5%2C4.8%2C5.3%2C1.8%2C2.3%2C3.8%2C4.5%2C5.7%2C6.8%2C1.2%2C1.5.8%2C2.5-1.1%2C3.1-2.4.6-4.2.6-6.1-1.7-3-3.7-7.8-4.8-12-6.9-5-2.5-10.5-4-15.6-6.3-5.2-2.3-10.9-3.6-16.2-5.6-4.5-1.7-8.9-3.4-13-5.9-3.7-2.2-7.9-3.5-11.8-5.3-5.6-2.5-10.5-6.1-15.8-9.1-5.5-3.1-10.7-6.6-15.9-10.2-2.5-1.7-5.2-3.3-7.4-5.5-1.9-1.9-4.3-3.1-6.3-4.9-1.4-1.3-2.8-2.4-4-4-1.8-2.3-4.2-4.2-6.2-6.4-2.6-3-5.6-5.7-7.9-9.1-1.4-2.1-3.2-4.1-5.3-5.7-2.1-1.7-3.7-4-5.5-6.1-2-2.5-3.7-5.2-5.8-7.6-1.1-1.3-2.4-2.2-3.9-3-2.3-1.3-3.3-1-4.7%2C1.3-2.3%2C3.8-2.6%2C8-1.9%2C12.3.4%2C2.9.6%2C5.9%2C1%2C8.8.6%2C3.8%2C1.2%2C7.8%2C3.1%2C11.2%2C2.6%2C4.8%2C5.1%2C9.6%2C8.4%2C14%2C1.7%2C2.2%2C3.8%2C4.2%2C5.4%2C6.4%2C2.9%2C3.9%2C6%2C7.6%2C9.4%2C11%2C5.7%2C5.6%2C12.1%2C10.5%2C18.5%2C15.2%2C4.2%2C3.1%2C8.5%2C5.9%2C12.8%2C8.9%2C5.3%2C3.7%2C10.3%2C8%2C16.1%2C10.8%2C8.1%2C3.9%2C15.6%2C8.7%2C23.8%2C12.2%2C4.3%2C1.8%2C8.3%2C4.3%2C12.9%2C5%2C2.8.4%2C5.6.5%2C8.3%2C1.1%2C6.1%2C1.3%2C12.3%2C2%2C18.3%2C3.5%2C6.2%2C1.6%2C12.6%2C2.3%2C19.1%2C2.7%2C5.5.3%2C10.8%2C1.7%2C16.3%2C1.8%2C1.9%2C0%2C3.7-.5%2C5.5-.5%2C1.2%2C0%2C1-.9.7-1.7-.7-1.8-1.4-3.6-2.2-5.3-2.2-4.9-3.6-10-5.5-15-.2-.6-.4-1.2-.8-1.7-5-6.5-10.4-12.5-16.2-18.2-1.4-1.3-2.9-2.4-4.7-3.2-2.5-1.1-4.8-2.5-7-4.2-1.4-1.1-3.2-1.1-4.6-2.1-1.5-1.2-3.1-2.3-3.9-4.1-.2-.5-.7-.8-1.1-1.1-6.3-4.4-13.2-8-19.1-13-3.8-3.2-7.5-6.6-11.3-9.8-2.6-2.2-5.2-4.5-8.1-6.3-1.2-.8-2.3-1.7-3.4-2.6-5.8-4.8-11.2-10-16.3-15.6-2.1-2.4-4.5-4.6-6.3-7.1-1.3-1.9-3.7-3.4-3.7-6.1%2C0-.4-.3-.6-.7-.7-1.3%2C0-2-1-2.5-1.9-1.4-2.8-3.6-4.7-5.5-7.1-1.3-1.6-1.6-3.7-2.7-5.4-3.2-5.2-6.3-10.6-8.9-16.1-2.1-4.6-3.7-9.4-4.6-14.4-.6-3.3-2-6.6-2.2-10-.1-3.2-1.1-6.6.9-9.7.8-1.3.7-3%2C1.1-4.5.4-1.8%2C1.2-3.4%2C2.7-4.5.5-.4%2C1.1-.8.8-1.5-1.3-3%2C1-4.3%2C2.7-5.9.3-.3.8-.6%2C1.1-.9%2C3.2-3.9%2C9.2-4.7%2C13.4-1.6%2C2.3%2C1.7%2C4.4%2C1.1%2C6.6.5%2C1-.3%2C1.3-1.2%2C1.1-2.2-.2-1.1-.7-1.8-1.9-1.8-2.3%2C0-4.7%2C0-7%2C.2-5.3.6-10.5-.2-15.7-.3-6.3-.2-13-5.7-14.4-11.7-.4-1.4%2C0-2.2%2C1.7-2.2%2C6.5-.2%2C13.1-.2%2C19.6%2C0%2C5.4%2C0%2C10.8-.6%2C16.3-1%2C2.4-.2%2C1.3-2.3%2C1.6-3.6.2-1.2-.8-1.4-1.8-1.3-3.6%2C0-7.1%2C0-10.6.8-1%2C.2-2%2C.4-2.9%2C1-.8.5-1.7.9-2.7.5-1.2-.5-1.8.9-2.8.9-2.4.1-3.8-1.2-5-2.9-1.9-2.7-4.4-5-5.7-8.2-.7-1.6-.4-2.5%2C1-3.4%2C4.1-2.6%2C8.8-3.2%2C13.5-3.7%2C4.1-.5%2C8.2.4%2C12.3%2C0%2C1.7-.1%2C3.1.9%2C4.8%2C1.1%2C1.2.1%2C2-.2%2C2.4-1.4%2C1.3-3.8%2C2.2-7.7%2C2.8-11.5.8-4.4%2C2.2-8.6%2C3.9-12.7%2C1.3-3.2%2C2.5-6.4%2C3.9-9.5%2C2.1-4.5%2C3.6-9.2%2C6.1-13.6%2C2.3-4%2C4.3-8.1%2C7.1-11.7%2C2.7-3.5%2C5.3-7.1%2C8.9-9.8%2C1.4-1%2C2.9-1.1%2C4.6-.3%2C3.9%2C2%2C6.7%2C5.2%2C9.4%2C8.4%2C2.2%2C2.6%2C1.7%2C5.3-.8%2C7.6-4.6%2C4.1-9.1%2C8.2-11.9%2C13.9-2.1%2C4.1-3.8%2C8.3-5.8%2C12.4-1.8%2C3.7-3%2C7.6-5%2C11.2-1.5%2C2.9-2.2%2C6-3.3%2C9.1-.7%2C2-1.2%2C4.1-1.8%2C6.1-.6%2C2.1-.1%2C2.7%2C1.9%2C3.5%2C2.6%2C1%2C5.5%2C1.2%2C8%2C2.5.9.5%2C1.9.9%2C2.6%2C1.6%2C2%2C2%2C4.1%2C3.9%2C6.7%2C5.4%2C1.7%2C1%2C1.9%2C3.3%2C2.9%2C5%2C.6%2C1-.6%2C1.8-1.7%2C1.3-1.2-.5-2.3-.7-3.4.2-.4.3-1.1.3-1.6.1-2.7-1.2-5.7-1.1-8.5-2.2-3-1.1-6.2-.8-9.3-.7-1.4%2C0-1.5%2C1.2-1.7%2C2.2-.3%2C1.1-.2%2C2.3%2C1%2C2.6%2C3%2C.8%2C4.7%2C3.3%2C7%2C5.1.3.3.7.7.8%2C1.2.7%2C2.7%2C3.5%2C3.5%2C5%2C5.4.2.3%2C1%2C.1%2C1.6%2C0%2C2.9-.2%2C5.7-.8%2C8.6-1.1%2C3.9-.3%2C6.8%2C1.4%2C9.4%2C3.9.8.8%2C1.5%2C1.7%2C2.7%2C2.2.7.3%2C1.2.8.6%2C1.6-.5.7-.5%2C1.2.1%2C1.7%2C1.1.9.2%2C1.3-.6%2C1.5-3.5.9-6.9%2C2.2-10.3%2C3.4-1.1.4-2.3.8-3.6.3-.3-.1-.7%2C0-1%2C0-5.8%2C2.7-12.3%2C3-18.4%2C4.8-3%2C.9-3.2.9-2.5%2C4%2C1.3%2C6.1%2C3%2C12.2%2C5.3%2C18%2C1.4%2C3.5%2C3.4%2C6.7%2C4.8%2C10.2%2C1.2%2C2.8%2C3.2%2C5.1%2C4.4%2C7.8.1.3.2.5.4.7%2C1.6%2C1.9%2C2.9%2C4%2C4.4%2C5.9%2C1.8%2C2.3%2C3.8%2C4.5%2C6%2C6.4%2C2.9%2C2.5%2C6%2C4.8%2C9.2%2C6.9%2C5.1%2C3.3%2C10.5%2C6.1%2C16%2C8.6%2C4.2%2C1.9%2C8.7%2C3.1%2C12.6%2C5.3%2C3.9%2C2.2%2C8.5%2C3%2C11.7%2C6.6.8.9%2C1.1%2C2%2C1.9%2C2.9.5.6-.3.9-.8%2C1-1.3.2-2.4.4-2.6%2C2.1%2C0%2C.6-.8.7-1.4.6-1.3-.2-2.6-.2-3.7-1-1.1-.7-2.1-.7-3.6-.4-1.7.4-3.8-.2-5.5-1-3.1-1.5-6.5-1.9-9.8-3.1-4.3-1.5-8.2-3.7-12.2-5.8-3.4-1.8-6.7-3.7-10-5.7-1.5-.9-2.7-2.1-4-3.3-5.1-4.4-9.6-9.4-14.2-14.5-2.6-2.9-5-5.9-6.8-9.2-2-3.6-4.5-7-6-10.9-.4-1.1-1-2-2.3-2.4-1.2-.3-1.9-1.1-2.4-2.4-.6-1.7-1.6-3.2-2.7-4.6-1.4-1.7-1.8-3.5-1.7-5.8%2C0-4.2-2-7.7-5-10.6-.5-.5-1.3-.7-1.9-.4-2.9%2C1.6-5.9%2C3-6.9%2C6.5-.4%2C1.4-.9%2C2.4-2.2%2C3.3-1.5%2C1-.8%2C2.9-1%2C4.4-.7%2C4.7%2C1.4%2C9%2C2.3%2C13.6%2C1.3%2C7%2C4.9%2C13%2C8.3%2C19%2C0%2C.1.1.2.2.4.9%2C4.4%2C4.3%2C7.3%2C6.7%2C10.8%2C2.8%2C4%2C5.9%2C7.7%2C9%2C11.4%2C2.2%2C2.6%2C4.5%2C5%2C7%2C7.3%2C4.3%2C3.8%2C9%2C7.1%2C13.2%2C11%2C3.4%2C3.1%2C7.3%2C5.5%2C10.6%2C8.6%2C1.2%2C1.2%2C2.6%2C2.2%2C3.7%2C3.4%2C3.2%2C3.4%2C7%2C6.3%2C10.8%2C8.8%2C4.9%2C3.3%2C9.9%2C6.7%2C15.5%2C9.1%2C4.6%2C2%2C8.4%2C4.9%2C11.8%2C8.9%2C3.2%2C3.7%2C6.9%2C7.1%2C10.5%2C10.6%2C2%2C1.9%2C3.9%2C3.8%2C5.1%2C6.3.5%2C1%2C1.6%2C1.4%2C2.3%2C2.3%2C2.6%2C3.7%2C5.4%2C7.2%2C8.4%2C10.5%2C1.1%2C1.3%2C2.1%2C2.6%2C2.3%2C4.5.1%2C1.1.8%2C2.2%2C1.4%2C3.2%2C2.4%2C4.8%2C5%2C9.6%2C6%2C15%2C.1.8.6%2C1.4%2C1%2C2%2C.4.5%2C1%2C1.1%2C1%2C1.7.2%2C2.8%2C2%2C4.9%2C2.8%2C7.4.9%2C2.7%2C2.8%2C4.7%2C4%2C7.1%2C2.8%2C5.6%2C6.2%2C10.8%2C10.4%2C15.4%2C4.1%2C4.5%2C8.3%2C9%2C13.2%2C12.8%2C1.6%2C1.2%2C3.1%2C2.7%2C4.5%2C4.2%2C1.8%2C2%2C4%2C3.5%2C6.4%2C4.7%2C2.4%2C1.2%2C4.8%2C2.4%2C6.5%2C4.5.5.6%2C1.2.9%2C1.8%2C1.3.4.3%2C1.1.7%2C1.5.1.5-.7%2C0-1.3-.7-1.7-2.7-2-2.7-3.4-2.3-6.7.8-6.5%2C4.7-11.5%2C7.2-17.1%2C2.2-4.8%2C6.2-8.4%2C10.4-11.7%2C1.2-.9%2C1.8-2.2%2C3-3%2C2.7-1.9%2C5.6-3.2%2C8.8-4.1%2C3.1-.8%2C6-2.3%2C8.8-3.8%2C4.9-2.6%2C9.9-3%2C15.3-2.5%2C5.5.5%2C10.8%2C1.5%2C15.9%2C3.7%2C5.5%2C2.3%2C10.1%2C6%2C14.8%2C9.5%2C5.3%2C3.8%2C10.3%2C8.2%2C15.9%2C11.6%2C3.1%2C1.9%2C6%2C3.9%2C9%2C5.9%2C1.5%2C1%2C2.5%2C0%2C3-1%2C3.4-6.2%2C6.8-12.4%2C9.3-19.2%2C1.1-3.1%2C2.5-6.2%2C3.5-9.4%2C1.8-5.6%2C2.3-11.3%2C2.9-17.1.5-4.9%2C1-9.8%2C1.3-14.7.2-5.1.5-10.3.7-15.4.2-3.9.3-7.8.7-11.7.2-2.2-.3-4.3%2C0-6.4%2C0-.7%2C0-1.4-.5-1.9-1.7-1.9-1-3.7.5-5.3.7-.8%2C1.3-1.4.2-2.4-.9-.8-.2-1.3.4-1.8%2C1.5-1.2%2C3.4-1.8%2C5-2.8%2C1.3-.7%2C2.5-1.4%2C3.4-2.5%2C1.9-2.2%2C4.8-2.7%2C7.1-4.3%2C2-1.4%2C3.9-2.7%2C5.7-4.3%2C4.5-3.8%2C8.9-7.6%2C13.4-11.4%2C4.2-3.6%2C7.7-7.8%2C11.6-11.7%2C2.8-2.8%2C4.9-6.2%2C7.3-9.3%2C2.3-2.9%2C4.4-6%2C6.6-8.9%2C3-3.7%2C5-8%2C7.4-12.1%2C1.7-2.9%2C3.4-5.9%2C5-8.9%2C1.8-3.5%2C3.2-7.2%2C4.3-11.1%2C1-3.6%2C1.9-7.2%2C3-10.8.9-2.7.8-5.8%2C1.1-8.7.5-4.7.9-9.4%2C1.3-14.1%2C0-.7.3-1.8-.6-2-.8-.2-1.2.9-1.4%2C1.5-.5%2C1.8-1.2%2C3.6-1.1%2C5.3.2%2C4.5-1.2%2C8.7-2.5%2C12.9-.9%2C3.1-3.2%2C5.8-4%2C9-1.4%2C5.4-4.3%2C10.1-7.3%2C14.6-2.6%2C4-4.7%2C8.4-9%2C11.3-1.4.9-2.3%2C2.9-3.7%2C4.2-3.1%2C2.8-6.5%2C4.9-10.2%2C6.6-3.2%2C1.4-6.4%2C2.8-9.3%2C4.8-1%2C.6-2.1.6-3.1%2C1.1-4.2%2C1.9-8.4%2C3.8-13%2C4.8-1.9.4-3.9-.3-5.7.6-1.3.7-2.8%2C1-4.2.7-2.2-.3-4.6-.4-6.1-2.7-.7-1-2-1.7-3.2-2.1-1.4-.4-2.1-1.7-3.3-2.3-.5-.2-.4-.8-.1-1.3.4-.6.9-1.2.8-2.1%2C0-.5.3-.7.7-.8%2C4-.8%2C7.5-3.3%2C11.4-4.5%2C2.9-.9%2C5.5-3.2%2C8.8-3%2C.3%2C0%2C.6%2C0%2C.8-.2%2C1.9-3%2C5.3-3.8%2C8.1-5.1%2C3.7-1.7%2C6.8-4.3%2C10.2-6.4%2C5.9-3.5%2C10.1-8.8%2C14.2-14.1%2C2.3-2.9%2C4.2-6.4%2C5.8-9.9.9-1.9%2C1.7-3.7%2C2.7-5.5%2C3.4-6.7%2C5.7-13.8%2C7.3-21.1.9-3.9%2C1.1-8%2C1.6-12%2C0-.5%2C0-1-.4-1.3-2.8-2.3-4.5-5.5-6.3-8.5-.8-1.3-1-2.8-1.4-4.3-.4-1.3%2C1.4-2.8%2C3.5-3%2C1.4-.1%2C2.7%2C0%2C4.1%2C0%2C1.3%2C0%2C1.8-.7%2C1.7-2-.1-2.6-.2-5.2-.2-7.8%2C0-1.5-.6-2.1-2-1.7-2.5.6-5.1.6-7.6%2C1.7-3%2C1.3-6.8%2C1.1-8.3-4-.2-.7-.7-1.2-1.2-1.7-1.6-1.7-2.3-3.8-3.1-6-.4-1.2.6-1.9%2C1.3-2.6.9-1%2C1.3-1.7-.6-1.9-1.9-.2-3.4-1.4-4.4-2.9-1.8-2.9-3.9-5.7-4.7-9.1-.2-.8%2C0-1.4.6-2%2C4.4-4.3%2C10-6.1%2C15.8-7.2%2C3.7-.7%2C7.2-1.8%2C10.8-2.8%2C1.1-.3%2C1.2-1.3%2C1-2.2-.9-5.1-1.4-10.2-3.1-15.1-.7-1.9-.6-3.8-1.3-5.7-1.1-3-2.6-5.7-4-8.5-3.4-6.7-7-13.2-11.2-19.3-1-1.5-2.2-2.9-3.7-3.8-4.7-2.7-5.9-7.5-7.6-12-.8-2.1-1.1-4.4-1.7-6.6-.7-2.3.1-3%2C2.5-2.8%2C3.3.4%2C5.5%2C2.5%2C7.7%2C4.5%2C3.3%2C3%2C6.5%2C6.2%2C9.1%2C9.9%2C1.3%2C1.9%2C3.2%2C3.8%2C4.6%2C5.6%2C3%2C3.9%2C6.2%2C7.8%2C7.7%2C12.6.7%2C2.1%2C2.3%2C3.8%2C3.5%2C5.7.7%2C1%2C1.4%2C2%2C1.4%2C3.3%2C0%2C1.8%2C1%2C3.4%2C1.9%2C4.7%2C1.8%2C2.5%2C1.6%2C5.4%2C2.5%2C8.1%2C1.1%2C3.3%2C2.2%2C6.8%2C3.1%2C10.2.6%2C2.4%2C1.4%2C4.7%2C1.9%2C7.1.3%2C1.3%2C1.1%2C1.5%2C2.3%2C1.5%2C5.1%2C0%2C10.2-.9%2C15.4-.5%2C1.9.2%2C3.4%2C1.4%2C5.2%2C1.7.6%2C0%2C1.2.4%2C1.8.5%2C2.1.5%2C4.1.8%2C5.4%2C3.1.8%2C1.5%2C1.7%2C3.3%2C3.6%2C4%2C.3.1.7.9.6%2C1.2-.2%2C1.2.1%2C2%2C1.1%2C2.8%2C1%2C.8.5%2C2.2-.8%2C2.5-1.4.3-2.7.7-4.2%2C0-3.5-1.4-7.3-.4-10.9-.7-4.8-.3-9.4%2C1.1-14.1%2C1.3-2.5%2C0-2.8.6-2.5%2C3.1%2C0%2C.5.2%2C1.1.2%2C1.6%2C0%2C3.1.5%2C3.5%2C3.6%2C3.4%2C1%2C0%2C2.1-.1%2C3.1-.2ZM1299.9%2C148.3c0-2.2-.4-2.7-2.5-2.1-3.6%2C1.1-7.2%2C2.3-10.7%2C3.5-.4.1-1.1.3-1%2C.9.1.7.9.5%2C1.4.5%2C3.3-.3%2C6.6-.8%2C10-.5%2C1.4.1%2C3-.3%2C2.7-2.3ZM944.6%2C197.5c.7.7%2C1.5.7%2C2.2.6.7%2C0%2C1.9%2C0%2C1.9-.8%2C0-1-1.1-.7-1.8-.6-.7.1-1.5-.1-2.2.7Z%22%2F%3E%20%3Cpath%20d%3D%22M1140.6%2C25.2c-5.5.1-12.1.4-18.6%2C1.3-7.5%2C1-15%2C1.7-22.4%2C2.8-6.1.9-11.9%2C2.8-17.7%2C4.5-4.6%2C1.4-9.4%2C2.5-13.8%2C4.5-5.2%2C2.3-11%2C3.3-15.5%2C7.1-2.1%2C1.8-4.5%2C1.3-6.8%2C0-1.3-.7-2.5-1.3-4-1.4-1.7%2C0-2.7-1.7-4.2-2.4-2.2-1-4.5-2.3-6.4-4-1.9-1.7-4.3-2.9-6.3-4.6-3.3-2.9-6.2-6.2-9-9.6-5.3-6.4-10.3-13-15.5-19.5-.4-.5-1-.8-1.2-1.3-1.7-3-4-1.8-5.8.5-2%2C2.6-3.4%2C5.5-4.9%2C8.3-2.6%2C4.8-4.9%2C9.7-6.7%2C14.9-1.1%2C3.3-2.9%2C6.5-2.9%2C10.1%2C0%2C1-.5%2C2.1-1.2%2C3-.3.4-.7.8-.7%2C1.2-.7%2C6-3.6%2C11.5-4.4%2C17.4-.6%2C3.8-2%2C7.5-2.5%2C11.4-.4%2C3.1-.2%2C6.1.6%2C9.1.2.8.5%2C1.6.5%2C2.4%2C0%2C1.1%2C1.5%2C2.3-.3%2C3.2-1.8%2C1-3.4%2C1.7-5.1-.1-2.4-2.4-4.3-5-5.5-8.1-.6-1.6-1.6-3-2.2-4.6-1.3-3.5-2-6.9-1.6-10.6.2-2.4-.3-4.7.2-7.2%2C1.1-4.9%2C2-9.9%2C3.2-14.8.9-3.8%2C2-7.5%2C3.2-11.2%2C1.2-3.8%2C2.5-7.6%2C3.9-11.4%2C1.9-5%2C3.9-9.9%2C5.9-14.8%2C2-5%2C4.4-10%2C8.3-14.1%2C1.2-1.2%2C2.2-2.6%2C3.3-3.9%2C1.3-1.4%2C2.7-1.6%2C4.2-.6.9.6%2C1.5.5%2C2.4.1%2C1.6-.6%2C3.1%2C0%2C4.3%2C1%2C2.6%2C2%2C5.5%2C3.7%2C7.8%2C6.2.7.8%2C1.7%2C1.6%2C2.4%2C2.5%2C4.2%2C5.3%2C7.7%2C11.1%2C12.2%2C16.2%2C2.8%2C3.3%2C5.2%2C7.1%2C7.9%2C10.4%2C3.7%2C4.6%2C8.9%2C7.4%2C13.5%2C10.9.8.6%2C1.5.4%2C2.2-.3%2C4.3-3.7%2C9.5-5.5%2C14.6-7.7%2C6-2.5%2C12.4-3.4%2C18.3-6%2C1.2-.6%2C2.6-1%2C3.9-1.3%2C7.6-1.5%2C15-4.4%2C22.9-4.7%2C6.6-.3%2C13-1.4%2C19.6-2%2C3.6-.3%2C7.2-.5%2C10.7-.9%2C4.6-.5%2C9.3-.7%2C13.9-.2%2C3.8.4%2C7.6.6%2C11.4.9%2C6.7.6%2C13.5.2%2C20.2.8%2C4.3.4%2C8.5-.4%2C12.7.6%2C1.4.3%2C2.5-.2%2C3.2-1.6%2C2.8-5.3%2C5.9-10.3%2C9.4-15.1%2C2.9-3.9%2C6-7.6%2C9-11.5%2C4.1-5.3%2C8.3-10.5%2C13.1-15.3%2C2.2-2.2%2C4.2-4.5%2C6.3-6.7%2C1.4-1.5%2C2.7-1.6%2C3.9%2C0%2C1.3%2C1.9%2C2.6%2C3.9%2C4.4%2C5.4.8.6.5%2C1.7%2C1%2C2.4.3.5.7%2C1%2C1.3.7.7-.4.2-1%2C0-1.4-1.7-3.2-1.8-6.6-1.1-10.1%2C0%2C0%2C0-.1%2C0-.2.5-1.1-.3-2.7%2C1.4-3.1%2C1.7-.4%2C2.2%2C1.3%2C3.2%2C2.2.8.7%2C1.4%2C1.7%2C2%2C2.6%2C1%2C1.6%2C2%2C3%2C3.4%2C4.3%2C2.5%2C2.3%2C3.3%2C5.6%2C4.5%2C8.6%2C1.3%2C3.2%2C2.5%2C6.4%2C3.2%2C9.7.9%2C4.1%2C3%2C7.9%2C3.1%2C12.2%2C0%2C1%2C.8%2C1.9%2C1.1%2C2.8%2C2.2%2C6.1%2C3.5%2C12.5%2C5.3%2C18.8%2C1.2%2C4.4%2C2%2C8.9%2C3%2C13.4%2C0%2C.3.3.6.2.8-2.2%2C3.6.7%2C7%2C.6%2C10.5%2C0%2C1.4.2%2C2.7.8%2C4.1.6%2C1.3-.4%2C3%2C0%2C4.6%2C0%2C.4-.4.6-.9.6-4-.1-6.5-1.2-7.8-5.4-1.1-3.4-1.6-6.9-2.9-10.2-1.6-4.5-2.3-9.2-3.8-13.7-1.3-3.6-2-7.4-2.9-11.1-1.3-5-2.5-10.1-3.9-15.1-1.7-6.1-3.7-12.2-5.5-18.4-.5-1.5-.9-2-2.3-.6-2.4%2C2.5-5.2%2C4.6-7.8%2C7-3.5%2C3.2-6.2%2C7.3-9.4%2C10.9-2.3%2C2.6-4.6%2C5.3-6.7%2C8-2.7%2C3.5-5.7%2C6.8-7.8%2C10.8-.7%2C1.3-2.1%2C2.4-2.4%2C3.8-.3%2C1.5%2C1.8%2C1.8%2C2.5%2C3.2%2C1.2%2C2.4%2C2.9%2C4.5%2C3.9%2C7%2C.5%2C1.4-.4%2C3.4-1.9%2C4-1.8.8-3.6.5-5.4.2-3-.5-6-.6-8.7%2C1.1-.4.2-.9.5-1.1.2-2.3-2.8-5.7-2.3-8.7-2.8-3.3-.5-6.7-.6-10-.5-6.8.1-13.5-.5-20.3-.9-5.5-.4-10.9-.7-17.5-.8Z%22%2F%3E%20%3Cpath%20d%3D%22M1110.9%2C151.9c3.9.3%2C7.4-.5%2C10.8-.1%2C3.2.3%2C6.5.1%2C9.5%2C1%2C3.4%2C1%2C7.5%2C1.2%2C9.5%2C5.1.6%2C1.1%2C2.6%2C15.7%2C1%2C25.7-1.7%2C10.1-4.1%2C20.8-7.9%2C25.8-1.7%2C2.2-3.7%2C3.1-5.8%2C5-2.6%2C2.4-11.3%2C2-15.1-.1s-8.1-5.1-14.3-15.6c-6.2-10.4-7.7-19.6-9.1-29.8-.5-3.5%2C0-7.1-.6-10.6-.2-1.5%2C1.1-2.1%2C2.2-2.7%2C4-1.8%2C8.3-2.4%2C12.5-3%2C2.6-.3%2C5.1-.5%2C7.3-.7ZM1128.6%2C166.1c-.2-.5-.2-.9-2.5-1.5s-5.1-1.6-10.5-1.6-8.6%2C1.6-11%2C2.2-3.2%2C1.8-3.1%2C3.8c.1%2C2.9.4%2C9.5%2C1.2%2C12.6s2.6%2C7.4%2C3.5%2C9.7c1%2C2.7%2C3.4%2C7.8%2C6.5%2C10.8%2C3.5%2C2.3%2C9.2%2C2.1%2C11-1.7%2C4.5-9.2%2C6.5-29.7%2C5-34.4Z%22%2F%3E%20%3Cpath%20d%3D%22M1216.5%2C118.7c-2-.3-3.9.7-6%2C.7-3.3%2C0-6.5-.6-9.7-.9-9.4-.9-18.6-3.1-28.1-2.6-.9%2C0-7.8.4-8.4.5-2%2C.5-3.5-.4-4.4-2.3-.8-1.7-1.8-3.4-2.8-5-2.3-3.5-2.2-6.7.6-9.8%2C3.8-4.1%2C8-7.9%2C13-10.3%2C4.8-2.3%2C9.4-5.3%2C14.4-6.8%2C3.9-1.2%2C19.8-4.1%2C22.7-3.7%2C2.8.3%2C5.4%2C0%2C8.1%2C0%2C2.3%2C0%2C4.3.3%2C6.2%2C1.7.7.5%2C1.5.9%2C2.4%2C1.2%2C1.1.3%2C1.8.9%2C2%2C2%2C.2%2C1.3%2C1.1%2C2.1%2C2.2%2C2.8%2C2.8%2C1.8%2C3.2%2C3.2%2C2.2%2C6.1-.5%2C1.4-1.4%2C2.1-2.8%2C1.9-2.1-.3-4.3.1-6.4-.7-1.6-.6-3.3.4-5%2C.4-5.6%2C0-11.2.9-16.7%2C1.7-2.3.4-4.6%2C1.7-6.8%2C2.7-1.3.6-2.5%2C1.5-3.9%2C1.6-.5%2C0-1.1.3-1.2%2C1%2C0%2C.7.6.8%2C1.2.9%2C1.8.4%2C3.6.8%2C5.5%2C1%2C3.5.5%2C7%2C.9%2C10.4%2C2%2C1.5.5%2C3%2C.2%2C4.6.9%2C2.5%2C1.2%2C3.6%2C3.7%2C5.2%2C5.6%2C1.2%2C1.5%2C2.4%2C3.3%2C3%2C5.3.6%2C1.9.7%2C2-1.5%2C1.9Z%22%2F%3E%20%3Cpath%20d%3D%22M1030.6%2C119.1c-2.3%2C0-4.6.4-6.7-1.1-.7-.5-1.3-.9-1.7-1.7-.9-2.2-2.2-4.2-3.6-6.1-1-1.4-1.8-3-1.2-4.8.7-1.9%2C2.4-2.3%2C4.2-2.4%2C5.1-.3%2C10.1.6%2C14.9%2C1.9%2C6.1%2C1.6%2C34.5%2C9.7%2C37.8%2C10.5%2C3.7.9%2C5.6%2C3.8%2C7.5%2C6.8.9%2C1.4%2C2.1%2C2.5%2C2.8%2C4%2C.4.8%2C1%2C1.4.6%2C2.3-.4.9-1.1%2C1.1-2%2C1.2-3.9.2-7.9.4-11.8.4-1.8%2C0-11.7%2C1.1-12.7%2C1.4-3.7%2C1.1-7.6%2C1.7-11.2%2C3.2-4.1%2C1.7-8.3%2C3.1-12.5%2C4.5-2.2.8-4%2C2.1-5.8%2C3.4-.9.6-1.8%2C1.2-2.8%2C1.6-1.2.4-2.3.8-2.8%2C2.1-.2.6-.8.9-1.5%2C1-1.5.2-3%2C.5-4.4.9-1%2C.2-2.3.2-3-.8-2.7-3.4-5.3-6.9-6.4-11.3-.2-.9-.2-1.5.5-2.2%2C3.7-4.1%2C8.4-6.6%2C13.6-8.5%2C4-1.4%2C7.8-3.3%2C11.8-4.6.4-.1.8-.4.6-.9-.1-.5-.6-.6-1-.6-1%2C0-2.1%2C0-3.1%2C0Z%22%2F%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M1230.2%2C201.4c-2.1%2C1-4.3%2C0-6.3-1.6-.3-.2-.7-.4-.9-.8-1.4-2.6-3.9-4.1-6.1-5.9-1.3-1-2.4-2.3-3.2-3.7-2.8-4.9-5.1-9.9-5.2-15.8%2C0-2-.6-3.9.2-6%2C2.1-5.9%2C11.2-12.5%2C17.5-12.1%2C4.6.3%2C8.8%2C2.1%2C12.9%2C4.3%2C5.4%2C2.9%2C8.5%2C8%2C11.3%2C12.9%2C4%2C6.9%2C4%2C11-2%2C18.7-1.8%2C2.3-4.1%2C4-6%2C6.2%2C0%2C.1-.2.2-.3.3-1%2C.7-10%2C3.4-11.8%2C3.4Z%22%2F%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M994.9%2C196.8c.5-3.1%2C1.2-6%2C3.2-8.8%2C2.9-4.1%2C6.8-5.6%2C11-7.2%2C3.6-1.3%2C6.8%2C0%2C9.9%2C1.4%2C2.7%2C1.2%2C5.1%2C3%2C7.7%2C4.5%2C1.1.6%2C1.6%2C1.7%2C2.4%2C2.5%2C2.5%2C2.4%2C5.4%2C4.4%2C7.8%2C6.9%2C4%2C4.3%2C5.6%2C11%2C2.2%2C16.4-1.8%2C2.9-4.7%2C4.8-6.2%2C7.9-.9%2C1.7-2.9%2C1.7-4.3%2C2.7-1.3%2C1-2.9%2C1.8-4.4%2C2.5-4%2C1.7-7.5.6-11-1.2-.4-.2-.9-.6-.8-1.1.3-1.5-.8-2.1-1.8-2.9-3.6-3.1-7.7-5.8-10.1-10-1.2-2-3.2-3.7-3.8-5.7-.8-2.4-2.1-4.9-1.9-7.7Z%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M847.8%2C42.5c-4.4.7-8.4.3-12.3-.4-.5%2C0-1-.3-1.2-.7-1.1-1.6-2.8-2.2-4.6-2.2-4.9-.2-9.1-2.1-13.3-4.5-3.5-2-6.6-4.2-9.4-7.1-1.2-1.3-3-2-4.2-3.4-3.6-4.3-6.6-9-7.6-14.4-1.4-7-1.6-14.2.5-21.1%2C1.3-4.4%2C3.4-8.4%2C5.8-12.4.7-1.2.9-2.7%2C2-3.9%2C2.9-3.2%2C6.6-5.2%2C10.6-6.4%2C3.1-.9%2C6-2.7%2C9.3-3%2C3.3-.4%2C6.6-.4%2C9.9.2%2C3.2.6%2C6.4.9%2C9.6%2C1.9%2C2.6.8%2C4.7%2C2.6%2C7.2%2C3.4%2C4.3%2C1.5%2C7.2%2C4.9%2C10.8%2C7.5%2C2.2%2C1.6%2C3.9%2C3.7%2C5.5%2C5.9.8%2C1.1.5%2C2.6%2C1.6%2C3.6.8.7%2C1.5%2C1.5%2C2%2C2.5%2C2.5%2C4.4%2C3.4%2C9.3%2C4.4%2C14.2%2C1.2%2C6.6.5%2C12.9-1.7%2C19.2-.6%2C1.6-1.7%2C3-2.4%2C4.6-1.1%2C2.4-3.1%2C4-4.5%2C6.2-1.6%2C2.6-4.3%2C4.2-6.8%2C6-3.5%2C2.6-7.4%2C3.5-11.1%2C4.5ZM859.2-4.7c-.5-1.9-.9-3.9-1.6-5.8-1.2-3.1-2.4-6.3-5.2-8.5-3.9-3-8.5-3.7-13.1-4.1-4.3-.4-8.6%2C0-12.8%2C1.5-3.4%2C1.3-6.7%2C2.7-9.4%2C5.2-.9.8-2%2C1.5-2.5%2C2.8-.8%2C2.1-1.9%2C4-2.7%2C6-2.7%2C6.7-3.7%2C13.4-2.6%2C20.5.2%2C1.6.6%2C3.2%2C1.6%2C4.6%2C1.2%2C1.6%2C2.4%2C3.2%2C3.6%2C4.7%2C1%2C1.2%2C2%2C2.6%2C3.6%2C3%2C3.6.9%2C7.3%2C1.5%2C10.9.9%2C3.4-.6%2C6.8.6%2C10.2-.2.5-.1%2C1%2C.1%2C1.3.5.7.8%2C1.5.8%2C2.4.3.6-.4%2C1.3-.7%2C1.9-1%2C6.9-3.2%2C10.9-9.2%2C13.3-16%2C1.6-4.5%2C2.1-9.5%2C1-14.5Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M917.7%2C13.7c-3.1.7-5-1.3-6.7-3.4-5.4-6.8-9.5-14.2-12.3-22.4-1.1-3.1-2.9-5.9-4.3-8.9-3.2-6.6-6-13.5-9.2-20.1-1.8-3.7-3-7.7-5-11.3-.7-1.3-1-2.8-1.1-4.3-.2-1.7.9-2.6%2C2.3-1.8%2C2.5%2C1.5%2C5.6%2C2.2%2C7.5%2C4.8.2.3.5.8.9.9%2C3.9.9%2C4.8%2C4.3%2C6.1%2C7.3.6%2C1.5%2C1.8%2C2.8%2C2.1%2C4.6.1.9%2C1.3%2C1%2C1.9.2%2C3.6-4.6%2C9-7%2C13-11%2C2.5-2.6%2C5.6-4.3%2C8.1-6.8%2C1.8-1.8%2C3.7-3.5%2C5.5-5.2%2C1.1-1.1%2C2.7-.8%2C3.5%2C0%2C1.7%2C1.8%2C4.3%2C2%2C5.9%2C3.7%2C1.5%2C1.6%2C3.7%2C2.3%2C4.6%2C4.6.7%2C1.9-.4%2C4.7-2.5%2C5.4-2.5.9-4.6%2C2.4-6.3%2C4.3-2.9%2C3.1-6%2C5.9-9.5%2C8.2-2.6%2C1.8-4.8%2C4-7%2C6.3-1.1%2C1.1-.4%2C1.4.6%2C1.5%2C3.4.2%2C6.7.5%2C10.1.5%2C3.7%2C0%2C7.5-.6%2C11.2-.8%2C7.5-.4%2C15.2-1.4%2C22.5%2C1.2%2C3.3%2C1.2%2C6.3%2C3.2%2C8.6%2C6%2C.5.6%2C1.1%2C1.2%2C1.9%2C1.7%2C1.6%2C1%2C1.6%2C2.7.4%2C4.1-2%2C2.5-4.7%2C2.2-7.2%2C1.9-4.4-.5-8.7-.8-13.1%2C0-4.4.8-9%2C.9-13.5%2C1.2-6%2C.3-12-.1-17.9-1.3-2.4-.5-4.8-.6-7.1-1.3-.7-.2-1.5-.4-2%2C.3-.5.6.1%2C1.1.4%2C1.6%2C1.6%2C3.7%2C3.1%2C7.5%2C4.9%2C11%2C1.5%2C2.9%2C2.8%2C5.9%2C4.2%2C8.9.6%2C1.3%2C2.2%2C1.5%2C2.7%2C3.2.5%2C1.9.2%2C3.7-1.7%2C4.5-.8.4-1.6.5-2.4.8Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M998.8-92.3c-1-4-1.3-8.2-1.8-12.5-.2-1.5-1.1-2.8-1.3-4.3-.1-1.4.2-2.3%2C1.6-2.5%2C4.1-.7%2C7.8%2C0%2C11.3%2C2.4.2.1.3.4.6.5%2C2.9.9%2C4.8%2C3.3%2C7.2%2C5%2C4%2C2.8%2C6.6%2C6.8%2C6.9%2C11.8.2%2C2.9-1.1%2C5.6-2.1%2C8.3-.9%2C2.3-2.4%2C4.5-3.1%2C6.7-.7%2C2.4-2.1%2C4.2-3.2%2C6.3-.7%2C1.3-1.8%2C2.4-3.4%2C2.3-1.6%2C0-2.9-.7-3.5-2.4%2C0-.2-.1-.4-.3-.5-3.8-2.4-4.3-6.7-5.9-10.4-1.5-3.4-2.8-6.8-3-10.8Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M1001.7-38.9c-.6-1.5-.2-2.8%2C1-3.7.5-.4.7-.9.5-1.5-.4-1.6.4-3.1.7-4.6.2-1%2C1.1-1.4%2C1.7-.6%2C1.2%2C1.5%2C3.1%2C1.5%2C4.6%2C2.4%2C2.7%2C1.6%2C5.3%2C3.3%2C7%2C6%2C.7%2C1%2C.7%2C2.1.4%2C3.3-.6%2C2.5-1.4%2C4.8-2.9%2C6.9-1%2C1.5-2.1%2C3.2-4.3%2C3.4-1%2C0-1.9-.1-2.5-.8-2.9-3.1-5.3-6.6-6.4-10.8Z%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M1239.3%2C6.9c-2.4-1-22.8%2C12.1-21.4%2C17.5.9%2C3.7%2C7.7%2C5.6%2C15%2C9%2C9.1%2C4.3%2C13.7%2C11.2%2C17.3%2C10.1%2C3.6-1.1-3.2-33.4-10.9-36.7Z%22%2F%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M1001.1%2C31.1c-9.1%2C3.7-15.6%2C32.2-13.4%2C40.1%2C2.2%2C7.9%2C12.6-2.2%2C20.1-7.9s14.9-8%2C16.4-12.2c1.6-4.2-17.4-22.3-23.1-19.9Z%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%3E%20%3Cpath%20class%3D%22cls-2%22%20d%3D%22M412.2%2C8l-40.1%2C40.5s-75.8-16.9-123.4%2C13.2l-45.6-38.2s-31%2C7.1-40.9%2C91.9c-21.4%2C18.9-40.4%2C46.9-50.3%2C72-9.9%2C25.1-2%2C85.4%2C25.9%2C99.3%2C27.9%2C13.9%2C39.7%2C27.1%2C73.9%2C22.8-5.9%2C23.2-3.1%2C39.7%2C2.8%2C48.7%2C5.9%2C9%2C17%2C25.5%2C51.7%2C10.2%2C7.6%2C6.3%2C27.5-1.9%2C33.9-10.6%2C9.1%2C12.1%2C21.6%2C13.8%2C43.6-6.3%2C13%2C3.9%2C20.1%2C11.4%2C40.5-7.5%2C27.1-4.7%2C51.9-6%2C69.6-2.4%2C17.7%2C3.6%2C22%2C8.7%2C18.9%2C15.8-3.1%2C7.1-.3%2C17.7%2C11.5%2C11s23.9-25.1%2C22.3-31.8-10.4-22.8-35-22.8-81.7%2C5.9-81.7%2C5.9c2-16.1%2C4.3-24.8-1.6-47.5%2C25.5%2C3.9%2C61.3%2C2.8%2C77-13.8%2C15.7-16.5%2C30.7-53.7%2C30.1-73.2s-3.8-61.6-43.3-96.1c-8.9-33.5-24.9-56.7-39.9-81Z%22%2F%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M252.1%2C344.3c0-4%2C.2-8%2C2-11.7.9-1.8%2C1.9-2.4%2C3.8-1.7%2C1.2.4%2C2.4%2C1%2C3.3%2C1.9%2C1.2%2C1.1%2C2.9%2C1%2C4.3%2C1.7%2C1.7.8%2C2.6%2C1.7%2C2.6%2C3.7%2C0%2C1.3.5%2C2.5-.1%2C3.8%2C0%2C.2%2C0%2C.4-.2.5-2%2C2.8-2.1%2C6.2-1.9%2C9.4.2%2C4.1%2C1.1%2C8.3%2C4.5%2C11.3.7.6%2C1.3.9%2C2.2.6%2C4.8-1.3%2C8.2-4.5%2C11.7-7.9%2C2.7-2.6%2C5-5.5%2C7.6-8.1%2C1.1-1%2C1.3-2.2%2C1-3.7-.2-.8-.3-1.5-.4-2.3%2C0-1.6%2C1.2-2.3%2C2.6-1.7%2C1.7.7%2C3.4%2C1.7%2C4.9%2C2.7.2.1.5.2.8.2%2C3.5.6%2C5.1%2C2.5%2C5.5%2C5.9.3%2C2.7%2C1.8%2C5%2C3.2%2C7.3.2.3.4.5.6.8%2C1.7%2C2.8%2C3.4%2C3.2%2C6.6%2C2%2C2.8-1.1%2C4.8-3.3%2C7.4-4.6%2C3.6-1.8%2C6.2-4.9%2C8.7-7.9%2C1.1-1.4%2C1.9-3.3%2C1.3-5.4-.3-1.2.5-1.3%2C1.3-1.1%2C1.7.4%2C3.2%2C1%2C4.7%2C2%2C0%2C0%2C.1.2.2.2%2C2.8.5%2C4.1%2C3%2C6%2C4.7%2C3.2%2C2.9%2C6.9%2C3%2C10.6%2C3.1%2C1.5%2C0%2C3-.7%2C4.3-1.3%2C1.9-.8%2C4-1.1%2C5.9-2%2C.3-.2.9-.2%2C1-.5.7-1.9%2C3-2.6%2C3.7-4.5.2-.4.5-.8.9-1%2C.7-.3%2C1.2-.9%2C1.4-1.6.2-.5.4-.8.9-1%2C.8-.3%2C1.3-.8%2C1.4-1.7%2C0-.1%2C0-.3.2-.4%2C3-2.9%2C3.4-6.9%2C4.8-10.5%2C1-2.7.6-5.5.9-8.3.2-2.3.2-4.7.5-7%2C.3-1.8.2-3.6-.1-5.4-.4-2.1-.2-4.2-.5-6.3-1-5.8-1.6-11.7-3.3-17.4-.2-.5-.1-1.1-.2-1.6%2C0-1.1.5-1.4%2C1.6-1.3%2C2.5.1%2C4.5%2C1.2%2C6.2%2C2.9.3.3.6.5%2C1.1.6%2C4.2.8%2C5.4%2C4%2C6%2C7.6.6%2C3.2%2C1.2%2C6.4%2C1.6%2C9.6.3%2C2.4.6%2C4.9.8%2C7.4.1%2C2%2C.4%2C4%2C0%2C6-.2.8.4%2C1.4%2C1.4%2C1.3.8%2C0%2C1.7-.2%2C2.5-.3%2C4.4-1.1%2C8.9-.4%2C13.3%2C0%2C3.9.4%2C7.7.4%2C11.6-.4%2C4.4-.9%2C8.7-1.8%2C13.3-2%2C3.1%2C0%2C6.3-.3%2C9.4-1%2C2-.4%2C4-.4%2C6%2C0%2C.4%2C0%2C.9.2%2C1.2%2C0%2C1.4-.6%2C2.8-.5%2C4.3-.5%2C4.5%2C0%2C9.1-.4%2C13.6-.2%2C4.4.2%2C8.7%2C1%2C13%2C2.1%2C4.1%2C1%2C7.2%2C3.4%2C10.6%2C5.5%2C2.9%2C1.8%2C5.1%2C4.6%2C7.6%2C6.9%2C2.8%2C2.6%2C4%2C6.1%2C6%2C9.1%2C2.3%2C3.5%2C2.7%2C7.4%2C2.1%2C11.5-.2%2C1.3-.7%2C2.5-1.4%2C3.5-1%2C1.4-2%2C2.9-3.1%2C4.4-.3.5-.7.9-.6%2C1.5%2C0%2C.2%2C0%2C.6-.2.6-1.5.5-1.7%2C2.3-2.9%2C3.2-1.3%2C1-1.9%2C2.6-3.3%2C3.4-.4.2-.3.8-.5%2C1.1-1%2C1.6-2%2C3.1-2.9%2C4.7-.6%2C1-1.7%2C1.8-2.2%2C2.9-.4%2C1-1.1%2C1.8-2.1%2C2.2-.3.1-.6.3-.8.6-1%2C1.9-3.1%2C2.1-4.7%2C3.2%2C0%2C0-.2.1-.3.1-4.5.2-9.2%2C1.5-13.1-2-.5-.5-1.2-.7-1.9-.8-1.7-.4-2.9-1.3-4-2.8-1.3-1.6-2.8-3.1-4.4-4.5-.9-.8-1.6-1.5-1.8-2.8-.2-1-.9-2-1.1-3.1-.2-.7-.2-1.3-.3-2-.4-2.9%2C1.2-4.7%2C3.1-6.3.9-.8%2C1.6-1.7%2C2.5-2.6.6-.7.4-1.2-.4-1.5-1.4-.5-2.8-1-4.3-1.1-3.1-.2-6.1-.9-9.1-1.3-.9-.1-1.8.3-2.7.3-3-.2-6-.2-8.9-1-1-.3-2.1-.3-3.1-.4-3.7-.5-7.3-1.2-11-1.6-1.8-.2-3.7%2C0-5.6.2-1.7%2C0-3.3%2C0-4.9%2C0-1.7%2C0-3.5.5-5.3.9-2.7.5-5.3%2C1-8%2C1.5-2.8.5-5.6%2C1-8.2%2C2.1-.9.4-1.8.4-2.6-.2-.9-.6-1.6-.5-2.5.3-2.2%2C2-4.1%2C4.3-5.6%2C6.9-.6%2C1.1-1.3%2C2.1-2.5%2C2.7-2%2C.9-3.8%2C2.2-6%2C2.8-1.2.3-2.3%2C1.3-3.4%2C2-.2.1-.5.4-.7.4-2.5-.4-4.4%2C1.4-6.8%2C1.5-2.7%2C0-4.7-1.3-7-2.2-3.1-1.3-5.6-3.2-7.9-5.6-.4-.4-.8-.8-1.3-1.1-.5-.3-1-.4-1.4%2C0-1.1%2C1.4-3.1%2C2-3.4%2C4.1%2C0%2C.1-.1.3-.2.4-2.1%2C1.8-3.6%2C4.2-5.9%2C5.8-2.1%2C1.5-4.5%2C2.7-6.6%2C4.1-1%2C.7-1.9%2C1.6-2.9%2C2.3-1.6%2C1.2-3.4%2C1.6-5.3%2C1.6-2.3%2C0-4.5%2C0-6.7-.9-2-.9-4.2-1.4-6.1-2.4-2.4-1.2-4.8-2.5-6.6-4.6-.1-.2-.3-.3-.5-.5-2.7-2.3-3.3-2.2-4.9%2C1.1-.2.4-.5.8-.8%2C1.1-.2.2-.6.3-.6.5-.8%2C2.2-3%2C3.2-4.6%2C4.6-2.1%2C2-4.7%2C3.5-7.7%2C4-1%2C.2-1.9.5-2.9.8-4%2C1.2-7.5.5-11.2-1.5-3.4-1.8-6.4-4-8.7-7.1-1.4-1.8-2.6-3.9-3.8-5.9-1.7-2.9-3.1-5.8-4-9.1-.8-3-1.1-6-1-9ZM407.1%2C325.2c-.8%2C0-1.8-.2-2.5%2C0-2.3%2C1-4.8.7-7.2%2C1.2-.8.2-1.3.6-1.5%2C1.3-.4%2C1.3-.4%2C2.6-.7%2C3.9-.3%2C1.3.2%2C1.8%2C1.6%2C1.6%2C4.6-.7%2C9.2-1.6%2C13.9-1.8%2C4.8-.2%2C9.7-1%2C14.5.3.3%2C0%2C.6%2C0%2C1%2C0%2C3.1.3%2C6.3.5%2C9.4%2C1.2%2C4.7%2C1.1%2C9.7.8%2C14.5%2C1.2%2C3.4.3%2C6.8.6%2C10.2%2C1.4%2C2.1.5%2C4.2%2C1%2C6.1%2C2.2%2C1.6%2C1%2C3.2%2C1.9%2C4.9%2C2.8%2C3.5%2C1.9%2C6.6%2C4.3%2C9.2%2C7.3.3.4.4.8.7%2C1.2.8%2C1.3%2C0%2C2.6%2C0%2C3.9.1%2C2-.6%2C3.7-2%2C5.1-.6.7-.7%2C1.2.3%2C1.5.9.3%2C1.4.7%2C1.7%2C1.6.2.8.8.8%2C1.4.4.4-.3.7-.7%2C1-1.1%2C1.2-1.9%2C2.9-3.5%2C2.9-6%2C0-.2.2-.4.3-.6%2C2.1-2.6%2C3.4-5.5%2C4.7-8.5.7-1.6%2C2.4-2.5%2C4.1-2.3%2C1.1.1%2C3.7-1.9%2C3.7-3.1%2C0-.9.4-1.6.8-2.3.3-.5.4-1%2C.3-1.6-.9-5.2-3.6-9.1-8.5-11.3-4.9-2.2-10.1-3.2-15.5-3.4-4.8-.3-9.6.7-14.5.3-4.4-.4-8.7.7-13%2C1-1.4%2C0-2.7.8-4%2C.7-1.8-.2-3.6%2C0-5.3.2-2.3.3-4.7.2-6.9.9-1.9.6-3.9%2C1.2-5.9%2C1.2-2.6%2C0-5.2-.5-7.8-.4-3.9.2-7.8-1-11.7-.2Z%22%2F%3E%20%3Cpath%20d%3D%22M116%2C214.5c.4%2C3.4%2C0%2C6.2-.4%2C9.2-.4%2C3-.3%2C6%2C.1%2C9%2C.1.9.8%2C1.3%2C1.5%2C1.1%2C1.4-.4%2C4.6-1.4%2C6.5-.9s4.5%2C2.6%2C2%2C5.4c-1.6%2C2-4.6%2C3.4-6%2C4.1s-2.1%2C1.6-1.4%2C3.6c.4%2C1%2C.6%2C1.9.7%2C2.9.2%2C2.1%2C1.3%2C3.9%2C2.2%2C5.8.8%2C1.8%2C1.3%2C3.7%2C2.4%2C5.4%2C1.7%2C2.6%2C2.5%2C5.7%2C4.6%2C8.2%2C1.7%2C2%2C2.8%2C4.5%2C4.5%2C6.4%2C1.6%2C1.8%2C3%2C3.8%2C4.9%2C5.3.3.2.6.5.8.8%2C2.7%2C3.4%2C6.2%2C5.8%2C9.2%2C8.8%2C3%2C2.9%2C6.6%2C5%2C9.9%2C7.4%2C1.6%2C1.1%2C3.2%2C2.1%2C5.1%2C2.5%2C1%2C.2%2C2.1.7%2C3%2C1.3.5.3%2C1.2.5%2C1.8.6%2C5.3.7%2C10.4%2C1.9%2C15.7%2C2.4%2C2.3.3%2C4.6%2C0%2C6.9.4.8.2%2C1.5-.6%2C2.4-.4%2C3.1.5%2C6.1.3%2C9.1-.7.9-.3%2C1.8-.3%2C2.7-.4.8%2C0%2C1.4-.2%2C2-.8.6-.7%2C1.4-.8%2C2.3-.7%2C1.3.2%2C2.4%2C0%2C3.5-.8.8-.6%2C1.7-.7%2C2.6-.5.4%2C0%2C.9.2%2C1.2%2C0%2C1.5-.6%2C3-.8%2C4.6-.7%2C1.3%2C0%2C2.2-1.3%2C3.5-1.4.8%2C0%2C1.5-.3%2C2.3-.2%2C1.4.3%2C2.8.3%2C4.1-.5.9-.5%2C1.8.3%2C2.7%2C0%2C2.7-1%2C5.7-.9%2C8.2-2.7.5-.3%2C1-.3%2C1.5%2C0%2C1.4%2C1%2C2.7%2C2%2C3.3%2C3.8.7%2C2.1.9%2C4%2C.5%2C6.1-.1.5-.4.7-.8.8-1.4.5-2.8%2C1.1-4.4%2C1.2-.5%2C0-.9.2-1.3.4-4.8%2C2.3-9.8%2C3.4-15.1%2C3.8-1.7.2-3.1%2C1.1-4.2%2C2.6-2%2C2.8-2.9%2C6-4.1%2C9.2-.7%2C1.8-.3%2C3.8-1.4%2C5.5-.1.2%2C0%2C.6%2C0%2C.8.7%2C2.6.3%2C5.3-.1%2C7.9%2C0%2C.3%2C0%2C.7%2C0%2C.9.8%2C2.2.9%2C4.5%2C1.2%2C6.8.5%2C3.9%2C1.9%2C7.5%2C4%2C10.6%2C1.4%2C2%2C2.4%2C4.3%2C4.1%2C6.2%2C1.1%2C1.2%2C2.3%2C2.4%2C4.1%2C2.6%2C1.5.2%2C3%2C.3%2C4.5.4.9%2C0%2C1.9%2C0%2C2.7-.5.8-.5%2C1.5-.5%2C2.3%2C0%2C.9.4%2C2%2C.3%2C3%2C.3%2C3%2C0%2C6.1-.1%2C9.1-.2%2C1.5%2C0%2C2.7.3%2C3.3%2C1.8%2C0%2C.1.1.3.2.3%2C1.8.5%2C2.5%2C2.3%2C3.9%2C3.3%2C1.5%2C1.1%2C1.3%2C1.5.7%2C3.2-.9%2C2.4-2.7%2C2.7-4.7%2C3.1-6%2C1.2-12.1%2C1.8-18.2%2C1.5-2.8-.2-5.6-.2-8.1-1.9-.1%2C0-.3-.2-.4-.2-3.1.2-5.3-2.1-7.4-3.6-2.3-1.6-4.7-3.6-5.8-6.5%2C0-.2-.2-.4-.3-.6-3.2-3.4-4.7-7.7-6.9-11.7-1.6-3-2.5-6.4-3.3-9.7-.8-3.1-1.1-6.3-1.2-9.4%2C0-3.7-.9-7.4%2C0-11.2.3-1.6.6-3.3.5-5%2C0-.9-.3-1.3-1.2-1.1-2.8.7-5.7.2-8.5.4-2.6.2-5.2%2C0-7.8-.3-3.2-.3-6.7%2C0-9.4-2.3-.3-.3-.8-.4-1.3-.5-1.1-.3-2.2-.7-3.1-1.5-1.5-1.4-3.8-1.4-5.5-2.4-1.3-.8-2.9-.9-4.1-1.7-.7-.5-1.8.2-2.6-.4-.8-.5-1.7-.8-2.1-1.9-.2-.5-.6-.8-1.2-.8-1.7%2C0-2.8-1-4-1.9-1.2-.9-2.8-1.3-4-2.4-1.2-1.2-2.2-2.3-4-2.9-1.1-.4-2.2-1.6-3-2.9-.7-1.1-2-1.8-3.1-2.5-.7-.4-1.3-.9-1.8-1.5-1-1.3-2.4-2.1-3.5-3.2-1.8-1.8-3.5-3.7-5.1-5.7-2-2.6-3.9-5.5-6-8-2-2.4-3.4-5.2-5.6-7.4-.6-.7-.5-1.7-1-2.5-2.9-4.8-5.7-9.8-7.8-15-.4-1-.8-1.5-1.8-1.6-4.5-.5-8%2C2.2-10.5%2C4.1s-7.5%2C5.6-10.3%2C7.2c-2.8%2C1.6-8.1%2C6.5-10.3%2C7.9s-6.3%2C1.1-8.5.5-4.2-4.3-4-6.5%2C2-4.9%2C5.1-7.8%2C8.6-5.4%2C10.6-6.3%2C9.3-3.4%2C12.8-4.5%2C7.5-2.4%2C11.2-3.7c1.9-.6%2C1.8-.8%2C1.7-2.6-.1-1.7-.3-3.4-.4-5.1%2C0%2C0%2C0%2C0%2C0-.1%2C0-3.1-1-4.1-4.1-3.8-1.3.1-3.6.2-6.1.3s-9.5%2C1.1-13.4%2C1.6-11.1%2C3.5-13.4%2C4.4-6.6%2C2.4-9.9%2C3.7c-1.5.6-2.2%2C1.9-2.9%2C3.2-1.5%2C2.5-4%2C2.8-5.9%2C2.4s-4.6-2.5-5.6-5.1.4-6.7%2C1.9-8.1c2.2-2%2C4.1-3.3%2C7.4-4.2s11.7-3.4%2C15.8-4c4.1-.6%2C13.5-2%2C19.1-2.2%2C5.6-.2%2C12.7.5%2C14%2C.9%2C1.5.4%2C2.5-.2%2C2.2-1.8-.3-1.7%2C0-3.4.3-5%2C.3-2-.1-4%2C.1-6%2C.3-2.1.6-4.2%2C1.7-6%2C0-.2.2-.4.2-.5-.5-2.6.9-4.8%2C1.3-7.2.2-1-.3-1.4-1.2-1.7-2.4-.8-9.4%2C0-7.3-.1s-6.7.8-8.6%2C1.4c-1.3.4-6.9%2C3.1-10%2C2.8-3-.3-6.1-1.7-6.3-5.2s3.8-7.7%2C8.6-8.4%2C13.3-.5%2C17.1-.4%2C6.2.6%2C9.3%2C1c1.3.1%2C2-.1%2C2.6-1.4%2C2.9-6.3%2C6.2-12.4%2C10-18.3%2C2.8-4.4%2C5.8-8.6%2C8.9-12.8%2C2.4-3.3%2C5.2-6.3%2C7.6-9.6%2C1.5-2%2C3.1-3.9%2C4.6-5.8%2C2.4-3.2%2C5.5-5.8%2C8.2-8.7.7-.7%2C1.3-.7%2C2.2-.3%2C1.7.7%2C3.5%2C1.2%2C4.7%2C2.7.4.4%2C1%2C.4%2C1.6.5%2C2.6.4%2C3.9%2C2.4%2C5.1%2C4.5.5.9-.4%2C1.9-.2%2C2.8.2%2C1.2-.3%2C1.7-1.2%2C2.3-2.9%2C2.2-5.9%2C4.3-8%2C7.3-2.5%2C3.8-5.7%2C7-8.4%2C10.7-3.1%2C4.3-6.3%2C8.4-9.4%2C12.7-1.8%2C2.4-3.4%2C5-5.1%2C7.5-1.9%2C2.8-2.8%2C6.2-4.8%2C9-.6.9-.2%2C1.7.7%2C1.9%2C1.3.3%2C2.7.8%2C3.9%2C1.4%2C2.2%2C1.1%2C4.4%2C2.5%2C5.7%2C4.8.5%2C1%2C0%2C2-.2%2C2.9-.2.7-.9.5-1.3.3-2.7-1.7-6.1-1.5-8.9-3-1.3-.7-3.9.3-4.2%2C1.7-.6%2C2.8-2.2%2C5.3-2.9%2C8.1-.7%2C2.6-1.2%2C5.2-1.6%2C7.9-.2%2C1.2-1%2C2.3-.7%2C3.2Z%22%2F%3E%20%3Cpath%20d%3D%22M466.6%2C177.7c6.2.5%2C10.9.8%2C15.5%2C1.3%2C1.2.1%2C2.4.6%2C3.7.6%2C1.6%2C0%2C2-.4%2C1.7-1.9-.3-1.5-.3-2.9.3-4.3.1-.3.2-.7.1-.9-1.2-3.6-1.1-7.3-1.7-11-.2-1.2-.7-1.5-1.8-1.2-1.4.5-3.5%2C1.1-6%2C2.1s-4.2%2C3.4-7.2%2C3.3-5.8-3.3-6.5-4.8-.9-4.7.1-6.4%2C3.3-3.3%2C6.3-4.2%2C7.3-2.4%2C8.9-2.4%2C3%2C0%2C3.3-1.1c.3-1.1%2C0-2.3-.5-3.3-.6-1.1-.9-2.3-1.2-3.5-.6-2.3-1.6-4.4-2.7-6.4-.2-.4-.4-.9-.6-1.4-.9-2.7-2.3-5.1-3.9-7.5-1-1.4-1.7-3-2.2-4.7-.2-.7-.5-1.4-1.1-1.7-1-.4-1.5-1.2-1.7-2.2-.4-2.3-2-3.7-3.6-5.2-1.4-1.4-2.8-2.7-3.6-4.5-.1-.3-.3-.6-.6-.8-3.8-1.9-5.3-5.8-7.8-8.9-1-1.3-.3-3.1-1-4.5-.2-.5-.3-1.1-.7-1.6-.3-.5-.7-1.1-.2-1.6.5-.6%2C1.2-.7%2C1.9-.4%2C1.2.5%2C2.3%2C1.1%2C3.4%2C1.8%2C1.2.8%2C2.3%2C1.6%2C3.6%2C2.2%2C2.1%2C1.1%2C3.9%2C2.4%2C4.7%2C4.8.2.7%2C1%2C1%2C1.4%2C1.4%2C3%2C3%2C5.3%2C6.5%2C8%2C9.8%2C2.6%2C3.1%2C4.7%2C6.6%2C6.7%2C10.1%2C2.6%2C4.4%2C5%2C8.9%2C7.1%2C13.5.9%2C2%2C2.1%2C3.8%2C2.8%2C6%2C.7%2C2.2%2C1.6%2C4.4%2C2.3%2C6.6.3%2C1%2C.8%2C1.3%2C1.7%2C1.2%2C3.7-.7%2C11.3-.8%2C15.9-.2s13%2C2.3%2C14.9%2C2.8c3.1.8%2C12.7%2C3.3%2C17.9%2C6.6s14.1%2C11.7%2C15.1%2C14.5.7%2C4.8-1.9%2C3.4-6.3-6-8.8-8-6.6-4.1-9.3-5.1-6.8-2.7-11.2-3.5-7.5-1-14.4-1.2-12%2C.6-13.5%2C1-2.6%2C1.2-2.4%2C2.6c.6%2C3.4%2C1.3%2C6.7%2C1.4%2C10.2%2C0%2C2.3.7%2C4.6.6%2C6.9%2C0%2C1.6.1%2C3%2C.4%2C4.6.2%2C1%2C.6%2C1.6%2C1.6%2C1.7%2C3.7.4%2C7.1%2C1.7%2C10.7%2C2.4%2C1.9.4%2C3.8%2C1.3%2C5.6%2C2.2%2C2.7%2C1.3%2C5.5%2C2.5%2C8.1%2C4.1%2C1.6%2C1%2C3.4%2C1.9%2C4.6%2C3.2%2C1.1%2C1.1%2C1.9%2C2.6%2C3%2C3.8.3.3.2.8-.1%2C1.1-1%2C.9-2.8%2C1.1-3.8.3-1.7-1.2-3.8-1.6-5.4-3-3.3%2C0-5.9-2.6-9.2-2.3-.5%2C0-1.1%2C0-1.6-.3-2.7-1.1-5.6-1.2-8.3-2.2-1.4-.5-3.1%2C0-4.6-.2-.6%2C0-1%2C.4-1.1%2C1-.2%2C1.2-.4%2C2.3-.2%2C3.5.4%2C1.9%2C0%2C3.8-.2%2C5.7-.3%2C1.8-.8%2C3.5-1%2C5.3-.1%2C1.3-.9%2C2.4-1%2C3.8-.2%2C2.9-.7%2C5.8-1.3%2C8.7-.2%2C1%2C.6%2C1.2%2C1.3%2C1.4%2C3.8%2C1.1%2C7.7%2C2.2%2C11.5%2C3.3%2C3.1.9%2C6.2%2C1.7%2C9.2%2C2.9%2C2.4%2C1%2C5.1%2C1.3%2C7.3%2C2.7%2C2.1%2C1.4%2C4.3%2C2.7%2C6%2C4.6.5.5.8%2C1.1.5%2C1.9-.3.7-1%2C.6-1.6.7-3.8.7-7.2-1.2-10.7-2.1-2-.5-4.2-.6-6.2-1.4-3.5-1.4-7.4-1.4-10.8-3.1-.4-.2-1-.2-1.5-.2-1.3%2C0-2.5-.2-3.7-.6-.3-.1-.6-.2-.9-.3-3.2-.8-5%2C.1-6%2C3.2-1.2%2C3.6-3.3%2C6.8-4.8%2C10.2-.3.6-.8%2C1-1.3%2C1.5-.9%2C1-1.6%2C2-2.2%2C3.3-.8%2C1.7-2%2C3.3-3.3%2C4.8-.2.2-.6.4-.7.7-.7%2C1.9-2.5%2C3-3.4%2C4.8-.5%2C1-1.5%2C1.4-2.2%2C2.2-2%2C2.3-3.5%2C4.9-5.8%2C6.8-2.7%2C2.1-5.2%2C4.3-8.5%2C5.6-2.3%2C1-4.5%2C2.2-6.9%2C3.1-2.1.8-4.3%2C1.6-6.5%2C2.3-2.4.8-4.7%2C1.8-7.2%2C2.3-4.1.9-8.2%2C1.8-12.5%2C1.6-4.9-.3-9.8-.9-14.6-1.7-4.1-.7-8.3-.2-12.4-1.4-.7-.2-1.6.1-2.4.2-1.9.2-3.6-.4-5.4-.8-1.2-.3-2.4-.4-3.7-.4-1.2%2C0-2.3-.2-3.3-1.1-.9-.8-2.1-.9-3.3-.9-2.6%2C0-4.7-1.4-6.9-2.5-.4-.2-.6-.5-.6-.9.2-1.3-.7-1.7-1.6-2.2-1.4-.8-3-1.4-4.3-2.4-.3-.2-.7-.6-.6-1%2C0-.5.6-.5%2C1-.7%2C2.9-1.3%2C5.7-.3%2C8.5.1%2C3.7.6%2C7.4%2C1%2C11%2C1.7%2C2.6.5%2C5.3%2C0%2C7.8.5%2C2.8.7%2C5.6.2%2C8.5.8%2C1.7.3%2C3.6.3%2C5.4.2%2C2.5%2C0%2C5%2C.3%2C7.4.2.6%2C0%2C1.2%2C0%2C1.8-.1%2C2.1-.4%2C4.3-.7%2C6.4-.7%2C2.1%2C0%2C3.9-1.3%2C6-1.3%2C2.7%2C0%2C4.8-1.6%2C7.2-2.6%2C4-1.6%2C7.9-3.3%2C11.5-5.6%2C3.4-2.1%2C7-4%2C9.8-6.8%2C1.1-1.1%2C1.8-2.5%2C2.9-3.6%2C1.2-1.2%2C2.3-2.4%2C3.5-3.6.7-.7%2C1-1.5%2C1.6-2.2%2C2.5-3.1%2C4.5-6.6%2C6.4-10.1.9-1.7%2C1.6-3.7%2C2.6-5.4.4-.7.7-1.4%2C1.3-1.9.4-.3.7-.7.4-1.3-.2-.5-.7-.7-1.2-.8-3.3-.3-6.3-1.4-9-3.4-.1-.1-.3-.2-.4-.3-1.4-2.3-4-3.5-5.3-5.9-.3-.6-.8-1-.3-1.7.5-.7%2C1.1-1.1%2C2-.9%2C1.5.4%2C3%2C.9%2C4.5%2C1.3%2C3.8%2C1.1%2C7.6%2C2.3%2C11.4%2C3.1%2C1.3.3%2C2%2C0%2C2.7-1.4%2C1.5-3.1%2C2.4-6.4%2C3.4-9.7%2C1.2-4.5%2C1.9-9%2C2-13.7%2C0-1.5-.5-1.8-1.9-2.1-2.2-.3-4.5-.3-6.6-.1-3.2.3-6.4%2C0-9.5%2C1.3-1.2.5-2.3%2C1.2-3.2%2C2.1-2%2C1.9-4.3%2C2.2-6.2.3-1-1-2.2-2-3.4-3-1.5-1.2-2.4-2.9-3.4-4.5-.3-.4-.3-.8%2C0-1.2%2C1.8-2%2C3.8-4.1%2C6.5-4.7%2C2.9-.7%2C5.9-1.7%2C7.4-1.4Z%22%2F%3E%20%3Cpath%20d%3D%22M200.9%2C17.3c1.1.1%2C2.2.2%2C3%2C1%2C.2.2.5.4.7.4%2C2.8%2C0%2C4.4%2C2.8%2C7%2C3.3.7.2.9%2C1%2C.8%2C1.7-.1.9.2%2C1.4%2C1.1%2C1.6.9.2%2C1.5.9%2C2.1%2C1.5%2C2%2C2.2%2C4%2C4.3%2C6%2C6.5%2C3.1%2C3.4%2C6.5%2C6.4%2C9.5%2C9.8%2C2.1%2C2.5%2C4.7%2C4.4%2C7.1%2C6.6%2C2.1%2C1.9%2C4%2C3.8%2C5.7%2C6%2C.4.5%2C1%2C.6%2C1.5.4.6-.2%2C1.2-.3%2C1.6-.7%2C1.9-1.7%2C4.2-2.5%2C6.3-3.6.9-.5%2C2-.8%2C3.1-1%2C2.3-.5%2C4.5-1.5%2C6.8-2.1%2C5.6-1.5%2C10.9-3.8%2C16.6-4.9%2C2.3-.4%2C4.7-1%2C7-1.4%2C3.8-.6%2C7.5-1.5%2C11.3-2%2C4.7-.7%2C9.3-.9%2C14-1.1%2C4.9-.2%2C9.7%2C0%2C14.6%2C0%2C5.9%2C0%2C11.8.5%2C17.7%2C1%2C3.7.3%2C7.3.9%2C10.9%2C1.5%2C2.9.5%2C5.9.8%2C8.8%2C1.2%2C1.2.2%2C2.2-.2%2C2.9-1.5.6-1.2%2C1.6-2.2%2C1.8-3.6%2C0-.5.6-.8%2C1-1.1%2C1.1-.7%2C2-1.6%2C2.8-2.6%2C1-1.3%2C2.5-2.2%2C3.7-3.4%2C1-1%2C2-2.2%2C3.3-2.9%2C0%2C0%2C0%2C0%2C0%2C0%2C.8-3%2C4-3.6%2C5.9-5.6%2C1.8-1.9%2C3.7-3.7%2C5.5-5.6.7-.8%2C1-2%2C2-2.7.5-.4%2C1.1-.8%2C1.7-1.2%2C1-.6%2C2.1-1.1%2C2.2-2.6%2C0-.3.3-.7.5-.9%2C2.6-2.3%2C4.3-5.4%2C6.8-7.9.7-.7%2C1.4-1.1%2C2.4-1.1.4%2C0%2C.7%2C0%2C1.1-.1%2C3.8-.8%2C6.4%2C1%2C8.8%2C3.6.4.5.8.9%2C1.4%2C1.1%2C1.8.9%2C2.9%2C2.3%2C3%2C4.4%2C0%2C1.6.8%2C3%2C1.5%2C4.3%2C1.3%2C2.5%2C2.2%2C5.2%2C3.5%2C7.7%2C1.5%2C2.7%2C3%2C5.4%2C4.2%2C8.3%2C1%2C2.3%2C2.3%2C4.6%2C3.4%2C6.9%2C1.1%2C2.3%2C2%2C4.7%2C3.1%2C7%2C.5%2C1%2C1.4%2C1.6%2C1.7%2C2.6%2C1.1%2C3.4%2C3.3%2C6.2%2C4.6%2C9.4.7%2C1.6.9%2C3.5%2C2%2C4.9-.4%2C3.2%2C2.5%2C4.8%2C3.4%2C7.4.2.6.5%2C1.1%2C0%2C1.6-.3.4-.2.9%2C0%2C1.3.5%2C1.1.4%2C2.2.3%2C3.4-.2%2C1.3-1.3%2C2.1-2.6%2C1.7-1-.3-2-.8-2.5-1.9-.6-1.2-1.3-2-2.6-2.5-1-.4-1.7-1.1-2-2.1-.8-2.4-2-4.6-2.9-7-.8-2-1.9-4-2.9-6-1.2-2.4-2.3-4.8-3.5-7.2-1-2-2.2-3.8-3.1-5.8-1-2.2-1.8-4.5-3-6.5-2.5-4-4.3-8.4-6.6-12.5-1.2-2.1-2.4-4.2-3.7-6.2-.6-1-1.1-1-2-.3-2.5%2C2-4.2%2C4.6-6.2%2C6.9-.5.5-.8%2C1.2-1.4%2C1.7-2.5%2C2.2-4.5%2C4.8-7%2C7-3.2%2C2.8-6.1%2C6-9.4%2C8.8-2.7%2C2.3-4.9%2C5.1-7.7%2C7.3-.6.5-.9%2C1.1-1%2C1.9-.4%2C2.1-1.6%2C3.3-3.7%2C3.1-3.6-.4-7.2%2C0-10.7-.7-2-.4-4%2C.5-6-.2-4-1.4-8.2-.8-12.4-1.1-7.1-.6-14.3-.7-21.5-.7-6.3%2C0-12.6.3-18.9%2C1.2-4.5.6-8.9%2C1.9-13.3%2C2.7-2.6.4-5.1%2C1.5-7.7%2C1.7-1.8.2-3.4%2C1.1-5.2%2C1.4-.8.2-1.6.7-2.5.4-.2%2C0-.6%2C0-.8.2-2.9%2C1.7-6.2%2C2.6-9.4%2C3.8-2.4.9-4.8%2C1.6-7%2C3.1-2.1%2C1.4-3.8%2C3.2-5.8%2C4.8-.9.7-2.3.7-3.4%2C0-2.2-1.3-4.1-3-5.7-5-.6-.8-1.7-1.2-2.5-1.9-2-1.8-3.7-4.1-5.9-5.5-2.6-1.7-4.7-3.9-7-5.9-.5-.5-1-1-1.3-1.6-.3-.5-.6-1-1.2-1.1-2.7-.7-3.9-3-5.7-4.8-1.3-1.3-2.8-2.4-4.2-3.6-1.3-.9-2.2-2.3-3.3-3.4%2C0%2C0-.2-.2-.2-.3-1.6-2.4-3.8-4.3-6-6.1-1.4-1.2-2.3-1-3.5.4-.3.4-.7.7-1.2%2C1-3.8%2C1.9-6.2%2C5.3-8.9%2C8.4-2.9%2C3.3-5.8%2C6.7-8%2C10.4-1.7%2C2.8-3.8%2C5.5-4.7%2C8.8-.3%2C1.3-1.3%2C2.4-1.9%2C3.6-2%2C3.8-3.5%2C7.8-4.5%2C12-.4%2C1.8-1.2%2C3.4-1.9%2C5-.8%2C1.7-1%2C3.5-1.2%2C5.3-.3%2C2.2-.9%2C4.4-1.4%2C6.6-.5%2C2.2-.8%2C4.4-.7%2C6.6%2C0%2C1.2%2C0%2C2.4.3%2C3.6.2%2C1.3-1.4%2C3.3-2.6%2C3.6-1.3.4-3.9-.7-4.5-2.1-.5-1-1.2-1.6-2.2-1.9-1.9-.6-2.8-1.9-3.2-3.8-.1-.6-.1-1.4-.5-1.8-1.3-1.5-1.1-3-.8-4.7.5-2.7.7-5.5%2C1.3-8.2%2C1-4%2C1.8-8.1%2C2.6-12.2%2C0-.3.2-.7.4-1%2C1.3-1.8%2C1.7-3.9%2C2.2-6%2C.2-.6.3-1.3.6-1.8%2C1.3-2.4%2C2.2-5%2C3.2-7.6.7-1.7%2C1.5-3.6%2C2.3-5.3%2C1-2.2%2C2.3-4.4%2C3.8-6.4.7-.9%2C1.3-1.8%2C1.4-2.9%2C0-1.4%2C1.1-2.2%2C1.9-3.1%2C1.9-2.3%2C3.4-4.9%2C5.3-7.2%2C2.3-2.7%2C4.6-5.6%2C7.3-7.8%2C3.3-2.6%2C7.1-4.6%2C11.2-5.7.4-.1.8%2C0%2C1.2-.1Z%22%2F%3E%20%3Cpath%20d%3D%22M218.9%2C177.8c-1.5%2C0-2.8.4-4.2.9-3.1%2C1-6.3%2C1.7-9.2%2C3.2-1.6.8-3.4%2C1.1-4.7%2C2.4-.4.4-1%2C.5-1.5.5-2%2C0-5.6-2.3-6.2-4.1-.5-1.4-1.3-2.5-2.2-3.6-.3-.4-.7-.9-1-1.3-.8-1.4-.6-2%2C.8-2.9%2C3-2%2C6.5-2.8%2C9.9-3.6%2C2.3-.5%2C4.6-1.4%2C7-1.5%2C1%2C0%2C1.9-.7%2C2.8-1%2C2.7-1%2C5.6-1.2%2C8.3-2.1.3-.1.8%2C0%2C.8-.6%2C0-.5-.4-.7-.8-.8-.3-.1-.7-.2-1.1-.2-5.2-.9-10.5-1.1-15.8-1.1-2%2C0-3.9-1-5.1-2.8-.6-1-1.3-2-2.2-2.8-1-.9-1.5-2.2-2-3.4-.5-1.1.3-2%2C1.7-2.1%2C3.1-.2%2C6.2.1%2C9.2.4%2C7.5.6%2C14.8%2C2.7%2C22.1%2C4.4%2C5.6%2C1.3%2C11.1%2C3%2C16.4%2C5.2%2C2.9%2C1.2%2C5.9%2C1.4%2C8.9%2C2.4%2C1.1.4%2C2.3.2%2C3.4%2C0%2C2.8-.7%2C5%2C.4%2C7.3%2C1.7.5.3%2C1%2C.7%2C1.6.7%2C1.7.3%2C2.3%2C1.6%2C2.9%2C2.9%2C0%2C.2.2.5%2C0%2C.7-.9%2C1.5-1.4%2C3.4-3.1%2C4.1-2.2.9-4.5%2C1.7-6.9%2C1.6-.3%2C0-.6%2C0-.8%2C0-.8-.3-1.5-.6-1.6.7%2C0%2C.3-.5.4-.8.5-1.9.3-3.5%2C1.5-5.2%2C2.1-2.5.8-4.5%2C2.7-6.9%2C3.6-2.5.9-4.6%2C2.4-6.6%2C3.9-3.5%2C2.5-7%2C5.3-8.7%2C9.5-.6%2C1.6-1.5%2C1.8-3.1%2C1-.2-.1-.5-.3-.7-.3-2.5%2C0-3.5-1.9-4.6-3.7-.3-.6-.7-1-1.3-1.4-2.2-1.7-2.6-4-1.4-6.5.9-1.8%2C2-3.3%2C3.4-4.6.4-.4.9-.8.9-1.6Z%22%2F%3E%20%3Cpath%20d%3D%22M383.9%2C130.1c.3%2C0%2C.7%2C0%2C1%2C0%2C5.3-1.6%2C10.5-1%2C15.9.3%2C2.5.6%2C4.6%2C1.9%2C7.1%2C2.5%2C2.9.8%2C5.7%2C2.5%2C7.9%2C4.9.8.9%2C1.5%2C1.8%2C1%2C3.1-.4.9-2.3%2C1.9-3.5%2C1.5-2-.7-4.1-.5-6.1-1-4.6-1.2-9.2-1-13.9-.4-3.1.3-6.2%2C1.3-9.4%2C1.2-.2%2C0-.5%2C0-.7.1-1.3%2C1.3-3.1%2C1.6-4.6%2C2.4-.3.2-.5.4-.5.8%2C0%2C.4.4.6.7.6%2C2.1%2C0%2C3.9%2C1.2%2C5.9%2C1.6%2C3%2C.7%2C5.8%2C1.7%2C8.7%2C2.9%2C4.1%2C1.6%2C8.1%2C3.2%2C12%2C5.3%2C2.4%2C1.3%2C4.8%2C2.7%2C6.9%2C4.5.5.4%2C1%2C.8%2C1%2C1.6%2C0%2C.6.5.8.9%2C1.1.8.6.8%2C1.2.1%2C1.9-.8.8-1.6%2C1.3-2.8%2C1.2-1.2%2C0-2.3-.2-3.4-.7-2.5-1.1-5.1-2-7.5-3.4-.4-.2-.8-.5-1.2-.6-2.7-.4-5-1.7-7.6-2.5-2-.6-4-1.2-6-1.7-2-.5-4.1-1.2-6.2-1.1-3.4.1-6.7-1.1-10.1-.6-.9.1-2.3-.3-2.5.8-.2%2C1%2C1.2%2C1%2C2%2C1.2%2C3.3%2C1%2C6.3%2C2.6%2C9.3%2C4.2%2C3.5%2C1.9%2C7.1%2C3.7%2C10.3%2C6.1%2C4.2%2C3.2%2C8.7%2C6.1%2C12.7%2C9.6%2C1.4%2C1.2%2C2.6%2C2.6%2C3.1%2C4.4.3%2C1.2-1.4%2C3.9-2.5%2C4.1-.3%2C0-.7%2C0-.9-.3-1.4-1.4-3.6-1.9-4.7-3.6-1.5-2.4-4-3.2-6.2-4.5-2.2-1.3-4.3-2.8-6.4-4.2-1-.6-2.2-.7-3.3-1.3-2.3-1.1-4.2-2.9-6.9-3.3-.8-.1-1.5-.6-2.2-1.1-1.2-.8-2.5-1.3-4-1.2-1.2%2C0-2.4-.2-3.4-.9-.8-.5-1.7-.7-2.6-.6-1.1.1-1.8-.4-2.6-1.1-1.4-1.2-1.9-3-3.4-4.2-1.4-1.1-2.3-2.6-2.9-4.3-.4-1.3-1.8-1.9-2.5-3-2.4-3.6-2.3-5.5.6-8.6%2C3-3.2%2C6.8-5.4%2C10.8-7%2C6-2.3%2C12.1-4.5%2C18.4-6%2C1.4-.3%2C2.9-.7%2C4.3-.7Z%22%2F%3E%20%3Cpath%20d%3D%22M331.2%2C221.8c-1.6%2C0-3-.3-4.2-1-1-.6-3.4-.2-3.9.7-.7%2C1.3-1.9%2C1.9-3.1%2C2.4-1.8.7-3.4%2C1.7-5.1%2C2.7-.3.2-.6.3-.9.3-3.2%2C0-6.2-.4-8.9-2.5-2.3-1.8-4.5-3.6-6.6-5.5-1.1-1-2.4-1-3.5%2C0-1.3%2C1.3-3.2%2C2-4.2%2C3.6-.9%2C1.5-2.2%2C2.8-3.1%2C4.3-.9%2C1.4-2.5%2C2.1-4.2%2C1.4-1.4-.5-2.4-1.5-3.2-2.7-1.3-2-2.5-4-3.5-6.1-.7-1.6-.6-3.4.5-4.8%2C3.1-3.9%2C7-6.9%2C10.4-10.4.4-.4%2C1-.7%2C1.6-.7%2C3%2C.3%2C5.8.7%2C8.2%2C2.8%2C2%2C1.8%2C4.5%2C2.8%2C6.5%2C4.6.2.2.4.2.5.4%2C1.2%2C2%2C2.6%2C1.4%2C4.2.6%2C2.3-1%2C4.2-2.6%2C6.3-3.9%2C1.3-.8%2C2.6-1.1%2C4.1-.8%2C3%2C.6%2C6%2C.7%2C8.9%2C2%2C2.5%2C1.1%2C4.6%2C2.6%2C6.5%2C4.5%2C1.6%2C1.6%2C1.5%2C3.9.7%2C5.9-.6%2C1.6-2.2%2C2.4-3.9%2C2.2Z%22%2F%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M172.5%2C216.4c4.4%2C0%2C8.4%2C1.2%2C11.9%2C4.1%2C1%2C.9%2C2.2%2C1.6%2C3.3%2C2.2%2C2.6%2C1.6%2C4.4%2C4%2C5.5%2C6.5%2C1.2%2C2.8%2C1.9%2C6%2C.7%2C9.1-2%2C5.2-5.5%2C9.3-9.9%2C12.6-1.9%2C1.4-3.9%2C1.3-6%2C.6-1.1-.3-1.2-1.5-1.9-2.1-2-1.9-4.2-3.6-6.8-4.6-1.4-.6-2.3-1.6-2.7-3.1-.2-.6-.4-1-.9-1.3-1.7-1-2.5-2.7-3.2-4.5-1.2-3-1.6-6.1-1.2-9.3.6-4.8%2C3.5-7.8%2C7.5-9.9%2C1.1-.6%2C2.5-.2%2C3.7-.5Z%22%2F%3E%20%3Cpath%20d%3D%22M209.1%2C137.9c1.9%2C0%2C3.6-.6%2C5.2-1.7.4-.3.8-.6%2C1.2-.7%2C3-.8%2C5.5-2.5%2C8.1-3.9%2C4.2-2.3%2C7.8-5.5%2C11.6-8.3%2C3-2.2%2C5.9-4.7%2C8.6-7.3%2C1.3-1.3%2C4.3-.9%2C5.8.1%2C1.7%2C1.2%2C3.1%2C2.8%2C5.1%2C3.6.7.3%2C1%2C.8%2C1.3%2C1.3%2C1.4%2C3%2C.6%2C6.4-2.6%2C7.9-2.2%2C1-4.3%2C2.4-6%2C4.3-.8.9-2.2%2C1.1-2.9%2C2.2-1.5%2C2-3.8%2C2.8-5.8%2C3.9-1.3.7-2.6%2C1.4-3.5%2C2.7-.5.7-1.2.9-2%2C1-1.2.1-2.2.6-3%2C1.5-1.4%2C1.5-3.4%2C1.8-5.1%2C2.6-1.4.7-3%2C1.1-4.6%2C1.1-.3%2C0-.7%2C0-.9.2-2%2C1.5-4.4%2C1.3-6.8%2C1.5-.2%2C0-.5%2C0-.7%2C0-1.9-1.1-4.2-1.2-6.2-2-.1%2C0-.3-.1-.3-.2-.8-1.6-2.3-2.5-3.4-3.8-.6-.7-1.2-1.3-2.2-1.5-.3%2C0-.6-.2-.9-.4-.4-.3-.8-.7-.7-1.2%2C0-.6.6-.8%2C1.1-.9%2C1.5-.2%2C3-.4%2C4.5-.6.4%2C0%2C.9%2C0%2C1.1-.3%2C1.1-1.3%2C2.6-1.2%2C4.1-1.2Z%22%2F%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M447.2%2C208.7c.5%2C3.3-2%2C5.8-4.5%2C8.3-1.6%2C1.5-3.4%2C2.6-5.5%2C3.2-.8.2-1.6.5-2.3%2C0-1.6-1.1-3.4-.8-5.1-.3-1.1.3-2%2C.2-3-.4-1.2-.7-2.4-1.3-3.7-1.9-.5-.2-.8-.6-1.1-1-.2-.3-.4-.7-.7-.9-2.7-1.4-3.9-4.1-5.5-6.4-2-2.8-3.6-6-3.6-9.6%2C0-1.4-.4-2.8.2-4.3%2C1.2-3.2%2C3.5-5%2C6.7-6%2C1.3-.4%2C2.6-1.1%2C4-1.4%2C4.8-1.1%2C9.2-.5%2C12.8%2C3%2C2.4%2C2.3%2C5.3%2C4.2%2C7.2%2C7%2C2.1%2C3.1%2C4.1%2C6.2%2C4%2C10.8Z%22%2F%3E%20%3Cpath%20d%3D%22M366.4%2C124.7c-.8-.1-1.7.2-2.7.5-4.5%2C1.1-9.1%2C1.3-13.6.4-1.1-.2-2.1-.2-3.2-.2-3.1%2C0-5.3-2.1-7.7-3.7-2.3-1.5-4.5-3.2-6.5-5.1-1.5-1.5-2.8-3.1-4.3-4.7-1.2-1.3-2.3-2.9-3.1-4.4-.9-2.1-2.2-4-2.9-6.2-.3-1.1%2C0-1.6%2C1.2-1.5%2C5.2.4%2C9%2C3%2C11.7%2C7.4%2C1%2C1.6%2C2.5%2C2.5%2C4%2C3.5%2C3.5%2C2.5%2C7.5%2C3.2%2C11.8%2C3.2%2C3.5%2C0%2C6.9-.7%2C10.4-.6%2C1.4%2C0%2C2.8-.5%2C4.2-.7%2C1.4-.2%2C2.7-.2%2C4.1-.2%2C2.9.2%2C4.5%2C2.2%2C6.1%2C4.2.6.8.5%2C1.9%2C1.6%2C2.6.5.3-.1%2C1-.5%2C1.4-.7.5-1.4%2C1-1.6%2C2%2C0%2C.2-.4.5-.6.5-2.8.5-5.4%2C1.8-8.6%2C1.7Z%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M410.2%2C43c-1.7-.6-15%2C9.4-13.8%2C13%2C.8%2C2.5%2C5.5%2C3.4%2C10.7%2C5.4%2C6.4%2C2.5%2C9.9%2C7%2C12.3%2C6.1s-3.8-22.6-9.2-24.5Z%22%2F%3E%20%3Cpath%20class%3D%22cls-4%22%20d%3D%22M204.1%2C56.2c-7.4%2C3-12.7%2C26.2-10.9%2C32.6%2C1.8%2C6.4%2C10.3-1.8%2C16.3-6.4%2C6.6-5.1%2C12.1-6.5%2C13.4-9.9s-14.1-18.1-18.8-16.2Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M89.7%2C82.1c-11.6-8.7-21.4-21.8-39.9-20.3-18.5%2C1.5-19.2%2C22.1-2.5%2C22.5s27.9-5.4%2C42.4-2.2Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M58.6%2C133.6c-14.5-.9-29.8-6.5-44.5%2C4.9s-3.9%2C29.1%2C10.2%2C20.2c14.2-8.9%2C20.4-19.9%2C34.3-25.1Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M525.9%2C87.9c14.5-.9%2C29.8-6.5%2C44.5%2C4.9s3.9%2C29.1-10.2%2C20.2c-14.2-8.9-20.4-19.9-34.3-25.1Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M484.1%2C36.6c9.8-10.7%2C44.5-30.1%2C63-28.6%2C36.3%2C2.9%2C28.8%2C33.3%2C12.8%2C28.6-32-9.4-62.2-5.9-75.8%2C0Z%22%2F%3E%20%3Cpath%20d%3D%22M70%2C131.7c-4.6-2.2-23-8.7-44.4-4.3-18.6%2C3.8-28.4%2C19.7-24.9%2C30.1s22.9%2C9.5%2C33.6%2C0%2C28-17.6%2C35.7-18.8c7.7-1.3%2C4.2-5%2C0-6.9ZM29%2C146.2c-4%2C2.3-14%2C8.5-16%2C5.2-1.2-2%2C4.2-8.4%2C9.1-10.7%2C4.9-2.3%2C16.4-3.6%2C20.7-3.6-5.2%2C2.1-9.8%2C6.8-13.8%2C9.1Z%22%2F%3E%20%3Cpath%20d%3D%22M90.5%2C76.1c-3.7-1.9-15.8-17.3-33.7-19.7-18-2.4-29.7%2C1.6-29.9%2C13.5-.2%2C12%2C13%2C21.6%2C24.8%2C20.6s20.9-5.6%2C39.4-5c13.5.5%2C1.4-8.4-.6-9.5ZM62.7%2C76.8c-4.1%2C0-11.8%2C1.2-16%2C.8s-5.8-4.4-5-7.5c.5-1.8%2C7.2-2.9%2C12.1-2.1%2C4.9.8%2C17.5%2C5.5%2C20.7%2C9.7-4.8-1.1-7.7-.8-11.8-.8Z%22%2F%3E%20%3Cpath%20d%3D%22M576.1%2C16.3c-8.1-12.6-27.1-19.7-51.4-13.1-24.4%2C6.6-34.1%2C19.4-46.9%2C32.7-6.7%2C7-3.4%2C13.7%2C8.1%2C8.6%2C11.5-5.2%2C28.8-8.7%2C41.2-8.7s19.4%2C9.6%2C36.9%2C7.6c10.7-1.3%2C20.3-14.4%2C12.2-27ZM563.7%2C23.5c-.7%2C4.1-9.9%2C7.5-20.9%2C5.7-11-1.8-29.9-4.5-47.5%2C1.1%2C3.8-3.4%2C31.3-16%2C47.7-16s21.4%2C5%2C20.7%2C9.2Z%22%2F%3E%20%3Cpath%20d%3D%22M568.5%2C84.5c-20-13.1-49.5-4.1-57.7-2.5-6.6%2C1.3-.3%2C7.8%2C11.6%2C11.7%2C11.9%2C3.9%2C19.9%2C17.1%2C28.4%2C23.6%2C8.4%2C6.5%2C29.5%2C5%2C37%2C0%2C7.5-5%2C.8-19.7-19.1-32.8ZM566.7%2C111.8c-6.8%2C0-11.5-6.9-17.3-11.4-5-3.8-9.5-8.5-18.5-12%2C7.5-1%2C23.9.6%2C30.8%2C5.5%2C7%2C5%2C19.7%2C17.9%2C5%2C17.9Z%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20class%3D%22cls-5%22%3E%20%3Cpath%20class%3D%22cls-2%22%20d%3D%22M454.5-38.5l-43.9%2C57.7s-93.7-15.7-149%2C19.6c0%2C0-23.9-13.9-54.1-48.1-30.2%2C30.2-29.2%2C71.9-25.3%2C98.1-17.8%2C33.2-37.7%2C83.5-31.7%2C120.4-15.4%2C1.5-29.7%2C5.1-28.2%2C28.7s25.8%2C50.5%2C46.6%2C69.4%2C60.9%2C43.6%2C70.3%2C57c-8.6.8-9.4%2C2.5-39.6-7.4s-71-36.2-90.7-54-27.8-40.8-37.7-32.7%2C2%2C43.1%2C5.9%2C49.6%2C37.7%2C43.1%2C66.4%2C60.5c28.7%2C17.3%2C82.8%2C32.7%2C120.4%2C30.2%2C11.4%2C21.3%2C43.7%2C56.4%2C52.4%2C54s17.6-41.1%2C46.3-44.6%2C55.8%2C28.3%2C65.9%2C28.2%2C23.3-36.9%2C26.1-106.5c32.7-11.3%2C53.2-41.1%2C67.1-64.9%2C13.9-23.8%2C29.2-82.3%2C2.5-83.3%2C1.5-29.7%2C1.5-106.1-38.6-138.3-3.5-35.7-21.8-91.6-30.9-93.6Z%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	position: absolute;
    top: 43px;
    right: 100px;
    z-index: -1;
}

#section01 .catch p{
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

#section01 .catch p strong{
	font-size: 44px;
	font-weight: 900;
	color: #b5c3ff;
	margin: 0 0.2em;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
	position: relative;
}

#section01 .catch p strong[data-ruby]::before {
    content: attr(data-ruby);
    display: inline-block;
    font-size: 44px;
    font-weight: 900;
    color: #b5c3ff;
    position: absolute;
    top: -44px;
    left: 0;
    right: 0;
    margin: auto;
    white-space: nowrap;
}

#section01 .trouble_ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

#section01 .trouble_ul li{
	width: 220px;
	height: 220px;
	border-radius: 6px;
	margin: 0 14px;
	background: #fff;
	position: relative;
	box-shadow: 2px 2px 9px -5px #777777;
}

#section01 .trouble_ul li .cont{
    width: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

#section01 .trouble_ul li .cont .sub{
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

#section01 .trouble_ul li .cont .main{
	font-size: 20px;
	font-weight: 900;
	color: #7790fd;
	line-height: 1;
	margin-bottom: 8px;
}

#section01 .trouble_ul li .cont .icon{
	width: 120px;
	margin: 0 auto;
}

#section01 .troubl_copy{
	font-size: 20px;
	font-weight: 700;
	line-height: 2.0;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 80px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

#section01 .troubl_copy strong{
	font-size: 2.6em;
	font-weight: 900;
	color: #facb03;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

#section01 .logo01{
	width: 240px;
	margin: 0 auto 60px;
}

#section01 .function_block{
	
}

#section01 .function_block .b_title{
	text-align: center;
	margin-bottom: 60px;
}

#section01 .function_block .b_title strong{
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	position: relative;
	padding: 0.25em 1em;
	border-top: solid 2px black;
	border-bottom: solid 2px black;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

#section01 .function_block .b_title strong:before,
#section01 .function_block .b_title strong:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: calc(100% + 14px);
	background-color: black;
}

#section01 .function_block .b_title strong:before {
	left: 7px;
}

#section01 .function_block .b_title strong:after {
	right: 7px;
}

#section01 .function_block .function_ul{
	width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

#section01 .function_block .function_ul li{
	width: 32%;
	margin: 0 2% 25px 0;
	padding: 14px;
	border-radius: 6px;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 2px 2px 9px -5px #777777;
	position: relative;
}

#section01 .function_block .function_ul li::after{
	content: '';
	display: inline-block;
	width: 45px;
	height: 64px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20373.2%20529.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23929496%3B%20%7D%20.cls-2%20%7B%20fill%3A%20%23f4dc7e%3B%20%7D%20.cls-3%20%7B%20fill%3A%20%23f1ab43%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-2%22%20d%3D%22M265.5%2C277.9c8-13.2%2C16.3-25.1%2C20.8-40%2C1.2-3.9-1.1-8.2-4.8-9.7-2-.8-3.8-.8-5.5-.3%2C1.1-2%2C2.2-3.9%2C3.2-5.9%2C5.1-9.5-7.9-16.5-14.1-8.3-6.4%2C8.5-12.8%2C17-19%2C25.5%2C8.8-14.9%2C17.9-29.6%2C27.4-44%2C4.9-7.5-6.9-16.9-12.6-9.7-3.8%2C4.7-7.4%2C9.4-11.1%2C14.1%2C1.9-3.2%2C3.8-6.5%2C5.6-9.7%2C3.9-6.8-3-13.1-9.2-11.3%2C9.3-14.3%2C18.6-28.5%2C27.7-42.9%2C4.3-6.7-4.2-14.8-10.8-10.8-4.6%2C2.7-8.6%2C6.2-12%2C10.3-1.9-4.4-8-7-12-2.6-7.4%2C8.1-14.8%2C16.2-22%2C24.4%2C6.6-9.2%2C13.6-18.3%2C20.8-27%2C5.7-6.9-3.5-16.6-10-10-12.4%2C12.6-24.6%2C25.4-36.4%2C38.6%2C2.4-5.1%2C4.8-10.2%2C7.1-15.4.6-.7%2C1.2-1.5%2C1.8-2.2%2C5.5-6.8%2C10.5-13.8%2C15.6-20.8%2C4-5.5%2C9-10.6%2C10.6-17.5%2C1.6-6.9-6.7-12-12-7-2.3%2C2.2-4.5%2C4.6-6.5%2C7.1-2.3-2.7-6.7-4-9.6-1.9-3.3%2C2.5-6%2C5.5-8.4%2C8.8%2C0%2C0%2C0%2C0%2C0%2C0%2C.1-.2.2-.4.4-.6%2C4.3-7.4%2C9.3-14.1%2C11-22.6%2C1.5-7.5-6.8-12.3-12.6-7.3-5.2%2C4.5-7.7%2C12.2-10.1%2C18.4-2.8%2C7.5-6.9%2C14.2-11.5%2C20.7-5.4%2C7.5-11.1%2C14.7-17%2C21.9%2C4.2-6.2%2C8.3-12.4%2C12.4-18.6%2C4.5-7.1%2C9.8-13.8%2C13.9-21.1%2C2.2-4%2C4-8.2%2C4.5-12.8.5-4.4-.2-8.8%2C0-13.2.1-3.7-2.8-6.5-6.2-7.5-2.7-1.7-6.4-1.9-8.6.9-2.6%2C3.2-5.4%2C6.3-8.3%2C9.3-1.9-3.5-6.6-4.6-10.4-1.6-4.4%2C3.4-8.2%2C7.4-11.9%2C11.6.6-4-2.5-7.1-6.4-7.4-.7%2C0-1.5%2C0-2.2%2C0%2C.7-1.5%2C1.4-2.9%2C2.1-4.4%2C1.5-3.4.7-9.1-4-9.8-5.5-.8-9.7%2C1.1-14.1%2C4.5-4.1%2C3.1-8.1%2C5.9-12.4%2C8.7-2.2-2.7-6.9-3.9-10.1-1.1-2.1%2C1.8-4.2%2C3.7-6.2%2C5.6-2.3-2.7-7.2-2.6-9.9-.3-8.8%2C7.8-17.5%2C16.6-25%2C25.6-7.6%2C9.2-13.6%2C19.5-20.5%2C29.3-3.3%2C4.7%2C1.6%2C10.1%2C6.4%2C9.8-4.7%2C7-9%2C14.5-12.6%2C22.3-.6.4-1.1%2C1.1-1.2%2C2%2C0%2C.4-.1.7-.2%2C1.1-.3%2C2.3%2C1.6%2C4.5%2C3.6%2C4.8-6.3%2C9.1-12.8%2C17.9-16.4%2C28.6-2.3%2C6.7%2C6.3%2C10.2%2C10.9%2C6.3%2C5.9-5%2C11.2-10.8%2C16.3-16.7-3.3%2C6.1-6.4%2C12.6-10.8%2C18-2.2%2C2.8-4.5%2C5.4-5.7%2C8.8-.7%2C1.9-.9%2C4.3-1.5%2C6.5-.9%2C1.5-1.8%2C3-2.6%2C4.6-3.3%2C6.3%2C5.3%2C13.9%2C10.3%2C8%2C.6-.7%2C1.1-1.3%2C1.5-2-.7%2C2.9-1%2C5.9-.8%2C9%2C.3%2C3.8%2C3.4%2C6.5%2C6.7%2C6.7-2%2C5.1-3.5%2C10.3-4.1%2C15.7-.5%2C4.7%2C4.7%2C7.3%2C8.6%2C6.5%2C6-1.3%2C9.9-8.4%2C13.5-12.8%2C5.3-6.6%2C10.1-13.6%2C14.9-20.5%2C3.3-4.8%2C6.5-9.5%2C9.7-14.3-1.5%2C2.3-2.9%2C4.7-4.4%2C7-3.2%2C5.3-6.2%2C10.8-9.1%2C16.3-6.9%2C10.1-12.9%2C20.8-16.8%2C32.6-2.5%2C7.7%2C7.1%2C11.2%2C12.2%2C7.1%2C2.4-1.8%2C3.6-4.4%2C4.8-7.1%2C1.8-3.8%2C3.7-7.6%2C5.5-11.3%2C2.6-5.4%2C5.3-10.7%2C8.1-16%2C1.9-2.8%2C3.9-5.6%2C6-8.3%2C9.9-13.4%2C19.9-26.6%2C30.5-39.5%2C3.1-3.8%2C6.2-7.5%2C9.3-11.3-9%2C15.7-17.7%2C31.7-25.7%2C48-4%2C8.2-7.7%2C16.4-11.1%2C24.8-3%2C7.4-6.9%2C14.5-8.2%2C22.5-.3%2C2.1%2C0%2C3.8.8%2C5.2-.2.4-.3.8-.5%2C1.2-3.1%2C7.9%2C9%2C12.1%2C13.2%2C5.5%2C6.1-9.5%2C12-19.2%2C18-28.8-4.2%2C8.2-8.2%2C16.5-11.8%2C24.9-1.6%2C3.6-1%2C7.7%2C2.6%2C9.9%2C3.1%2C1.9%2C8.2.9%2C9.9-2.6%2C13.8-28.8%2C31.2-55.6%2C47.5-83%2C1.9-2.7%2C3.9-5.4%2C5.9-8.1-7.9%2C13.6-15.6%2C27.4-23.3%2C41.1-1.6%2C2.5-3.2%2C5-4.9%2C7.5-4.5%2C6.5-8.1%2C13-11%2C20.4-2.9%2C7.4%2C7.8%2C12%2C12.5%2C6.8-2.6%2C4.5-5%2C9.1-7%2C13.9%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0-.3.6-.5%2C1.2-.8%2C1.8-3.3%2C8.1%2C9.3%2C12.6%2C13.7%2C5.8%2C1.7-2.7%2C3.4-5.4%2C5.2-8.1-4.9%2C9.2-9.5%2C18.7-13.4%2C28.5-3.4%2C8.4%2C10.1%2C13.7%2C14.4%2C6.1%2C3.7-6.4%2C7.4-12.9%2C11-19.3-2.2%2C4.5-4.4%2C9.1-6.3%2C13.7%2C0%2C0%2C0%2C0%2C0%2C0h0c-.3.6-.5%2C1.3-.8%2C1.9-3.6%2C8.6%2C9.7%2C13.1%2C14.4%2C6.1%2C8.8-13.4%2C18-26.5%2C27.2-39.6-2.8%2C5.4-5.6%2C10.8-8.4%2C16.3-1.8%2C3.5-3.5%2C7-5.3%2C10.5-1.9%2C3.9-4.4%2C6.9-6.9%2C10.4-4.4%2C6.4-6.6%2C13.6-7.3%2C21.3-.5%2C5.7%2C4.9%2C8.5%2C9.6%2C7.7-1.2%2C6.7%2C7.5%2C11.8%2C13.1%2C7.8-2.8%2C5.3-5.5%2C10.6-8.2%2C16-1.8%2C3.8-1.4%2C8.2%2C2.2%2C10.9%2C3%2C2.3%2C8.5%2C2.7%2C11.1-.7%2C10.6-13.6%2C21.6-26.8%2C32.8-39.8-6.8%2C11.1-13.9%2C22.1-20.9%2C33-4.6%2C7.1%2C4.7%2C16.8%2C11.9%2C11.9%2C7.8-5.3%2C13.5-12.4%2C19.9-19.3%2C1-1.1%2C2-2.1%2C3-3.2-1.5%2C3.8-3%2C7.5-4.1%2C11.3-1.1%2C3.5.6%2C8.3%2C4.1%2C10%2C3.4%2C1.7%2C6%2C2.3%2C9.6%2C1%2C4.5-1.7%2C7.5-6%2C6.2-10.9-.2-.6-.4-1.1-.7-1.7%2C3.6-10%2C7.8-19.7%2C7.3-30.7-.2-4.8-3.9-8.7-8.8-8.8-1%2C0-2%2C0-3%2C.2%2C9.7-16.5%2C18.7-33.4%2C26.5-51%2C4-9.1-5.6-16.4-13.4-10.4-7.9%2C6.1-12.9%2C13.8-19.2%2C21.3-1.2%2C1.5-2.5%2C3-3.8%2C4.5.5-.9%2C1-1.7%2C1.5-2.6%2C8.4-14.2%2C16.9-28.4%2C25.5-42.5ZM98.2%2C93.4c2.8-1.9%2C5.8-3.5%2C8.8-5.1-2%2C3.2-4.1%2C6.3-6.3%2C9.4-10.3%2C10.3-19.4%2C21.8-28.9%2C32.8.5-1.7.9-3.4%2C1.4-5%2C5.2-8.2%2C10.3-16.4%2C15.5-24.6%2C3-2.7%2C6.2-5.3%2C9.5-7.5ZM48.3%2C212.6c4.8-6.6%2C9.9-13%2C15.1-19.2%2C1.9-2.3%2C3.9-4.6%2C5.8-6.9%2C4.9-5.1%2C9.9-10.2%2C14.9-15.3-.7%2C1-1.5%2C2.1-2.2%2C3.1-.7%2C1-1.5%2C2.1-2.2%2C3.1-6.9%2C7.9-13.6%2C15.8-20.2%2C24-4.4%2C5.5-8.8%2C11-13%2C16.7.6-1.8%2C1.1-3.7%2C1.7-5.5ZM149.7%2C267.1c2.8-4.5%2C5.7-9%2C8.6-13.4%2C2-2.9%2C4-5.8%2C6.1-8.7-4.5%2C7.2-8.9%2C14.3-13.3%2C21.5-3.6%2C5.9-7.4%2C11.6-11%2C17.5%2C3.2-5.6%2C6.4-11.2%2C9.6-16.9Z%22%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M292.5%2C466.6c5.8-7.8%2C3.3-18.2-5-23.1%2C1.9-1.9%2C3.6-4%2C4.7-6.3%2C3.9-7.9%2C1.1-17.3-6.7-21.5-.9-.5-1.9-.8-2.8-.9.2-.5.4-1%2C.5-1.5%2C1.2-4.3.2-8.8-2.3-12.4-1.2-1.8-2.8-3.5-4.6-4.6-1.4-.8-3.4-.9-4.6-1.7-8.3-5.5-16.5%2C7.8-8.1%2C13.1.8.5%2C5%2C1.8%2C5.2%2C2.1-.1-.2-2.7%2C2.4-3.3%2C2.8-3.7%2C3-8.6%2C5.3-12.8%2C7.4-10.7%2C5.4-23.7%2C7.5-35.2%2C10.5-12%2C3-23.3%2C4.8-35.6%2C3.6-2.8-.3-11.4%2C0-11.9-3.9-.2-1.7%2C2.2-4.9%2C3.3-5.9%2C1.8-1.6%2C4.6-1.5%2C6.8-2.4%2C2.3-.9%2C2.3-4.7.2-5.8-13.3-6.7-27.8%2C12.7-17.3%2C23.2-2.2.5-4.2%2C1.4-5.9%2C3.1-4.3%2C4.4-5.2%2C11.1-2.5%2C16.5%2C3.1%2C6.3%2C9%2C9.3%2C15.6%2C10.7-1.2%2C1.3-2.2%2C2.9-2.8%2C4.6-2.6%2C7.4%2C2%2C13.6%2C8.3%2C17.2%2C2%2C1.1%2C4.1%2C2%2C6.2%2C2.8-1.4%2C5.1-.9%2C11.3%2C1.5%2C14.8%2C4.2%2C6.4%2C12.7%2C8.1%2C19.8%2C8.8%2C6.6.7%2C13.4%2C0%2C20-1%2C.7%2C6.8%2C8.7%2C10%2C14.5%2C11.5%2C6.9%2C1.7%2C14.4%2C2.3%2C21-1.1%2C7.6-4%2C12.1-13.1%2C12.5-21.5%2C0-1.6-.2-2.9-.8-4%2C1.7-.9%2C3.4-1.8%2C5.1-2.8%2C6.2-3.8%2C13.3-6.5%2C16.4-13.5%2C2.6-6.1%2C5-12.4.6-18.1.2-.2.4-.4.5-.6ZM166.4%2C455.1c-1.9-1.3-3.2-4-1.6-6.2%2C1.4-2%2C5.4-1.6%2C7.5-1.8%2C1.5-.1%2C2.5-.9%2C3.2-1.9%2C3.4.6%2C6.9.9%2C10.2%2C1.2%2C9.1%2C1.1%2C18.2%2C0%2C27.2-1.6%2C18.6-3.3%2C37.3-7.2%2C54.1-16%2C2.1-1.1%2C4.4-2.4%2C6.5-3.8.2.5.4.9.7%2C1.4.8%2C1.3%2C1.7%2C2.8%2C2.8%2C3.7%2C0%2C0%2C.1.1.2.2%2C0%2C0%2C0%2C0%2C0%2C0-1.4.6-3%2C3-4.2%2C4-4.7%2C3.9-10.2%2C6.7-15.8%2C9-12.4%2C5.1-25.3%2C8.6-38.6%2C10.1-12.6%2C1.4-24.9%2C4.4-37.7%2C4.4-4.6%2C0-10.5%2C0-14.5-2.7ZM244.2%2C515.9c-1.2%2C0-6.4-.5-9.8-1.6%2C5.8-1.5%2C11.5-3.3%2C17.1-5.3.9-.3%2C1.7-.6%2C2.6-.9-.7%2C5.1-4.1%2C7.8-9.9%2C7.8ZM275.4%2C479.1c-1.4%2C1.2-3.7%2C2.2-5.3%2C3.2-2.3%2C1.5-4.5%2C3.1-6.8%2C4.5-8.9%2C5.3-19.8%2C8.8-29.7%2C11.9-9.7%2C3-20.1%2C6.1-30.3%2C5.7-3-.1-10.1-.2-11.3-3.8-.4-1.1%2C0-2.6%2C0-3.7%2C0%2C0%2C0%2C0%2C0-.1%2C9.5%2C1.2%2C19.4%2C0%2C28.6-1.9%2C8.5-1.8%2C16.6-5%2C25.2-6.5%2C4.3-.7%2C8.4-1.2%2C12.4-2.7%2C4.3-1.6%2C8.4-3.8%2C12.7-5.5%2C1.5-.6%2C3.1-1.3%2C4.8-2-.2.6-.6%2C1.1-.4%2C1.1ZM271.2%2C461.3c-5.1%2C2.9-10.6%2C5.1-15.8%2C7.7-5.6%2C2.9-11.8%2C3.3-17.8%2C4.9-5.8%2C1.6-11.3%2C3.7-17.1%2C5.4-9.6%2C2.7-19.9%2C4.8-29.8%2C3.4-2.8-.4-11.1-1.7-12.6-4.7-1.2-2.5%2C2.4-4%2C4.2-4.4%2C2.6-.6%2C4.2-.2%2C6.2-2.2.2-.2.4-.4.5-.6%2C6.9-.2%2C13.7-1.4%2C20.5-2.2%2C7.7-.9%2C15.5-1.1%2C23.2-2.3%2C14.2-2.3%2C29.6-6.8%2C42.3-14%2C.3%2C1.2.8%2C2.5%2C1.7%2C3.6%2C0%2C0%2C.3.4.7%2C1-2%2C.7-4.5%2C3.3-6.2%2C4.3Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M259.3%2C1.8c-3.9%2C3-3.9%2C7.1-5.4%2C11.4-1.5%2C4.6-4.6%2C8.6-6.3%2C13.1-1.9%2C5.1-3.2%2C10.5-5%2C15.6-1.4%2C4-3.5%2C7.7-3.4%2C12%2C0%2C2.4%2C1.9%2C4.1%2C4.2%2C4.2.4%2C0%2C.7%2C0%2C1.1%2C0%2C3.1.2%2C4.5-3%2C3.7-5.4%2C1.3-3%2C3.7-5.8%2C5.1-8.6%2C1.9-4%2C3.5-8.1%2C5.5-12.1%2C1.8-3.6%2C4.3-6.8%2C6.3-10.3%2C1.7-2.9%2C2.2-7.5%2C4.3-10%2C6-7.1-2.9-15.6-10.1-10.1Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M307.1%2C31.3c-1.1%2C1.7-3.1%2C2.9-4.5%2C4.2-2.2%2C2-4.2%2C4.2-6.3%2C6.3-3.9%2C4.1-7.5%2C8.6-10.9%2C13.1-3.2%2C4.1-6.4%2C8.1-9.7%2C12.1-2.7%2C3.2-4.8%2C6.4-4.9%2C10.7%2C0%2C4.9%2C6.9%2C4.6%2C7.4%2C0%2C.4-3.6%2C5.5-6.9%2C8-9.3%2C3.5-3.4%2C7-6.7%2C10.6-10%2C6.8-6%2C14.5-10.5%2C21.7-15.9%2C11.2-8.5-4.6-22.3-11.3-11.3Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M359.3%2C68.5c-1.4%2C1.1-3%2C1-4.7%2C1.6-2.5.8-4.9%2C2.1-7.2%2C3.3-5.4%2C2.8-10.9%2C5.5-16%2C8.7-4.4%2C2.8-8.9%2C5.7-13.1%2C8.8-3.2%2C2.4-7.4%2C6.8-11.6%2C7.1-3.6.3-4.9%2C5.9-.9%2C6.7%2C4.4.9%2C8.3-.5%2C12.2-2.5%2C5.4-2.8%2C10.7-5.3%2C16.5-7.4%2C6.3-2.4%2C12.8-4.3%2C19.3-6.3%2C5.9-1.8%2C11.9-.9%2C16.8-5.4%2C7.7-6.9-2.8-21-11.3-14.6Z%22%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M296.3%2C143.7c-5.6-15.2-13.4-31.3-25.1-42.7-12.7-12.4-27.4-23-43.1-31.2-7.8-4.1-15.6-8.4-23.9-11.4-8.6-3.1-17.8-5.1-26.8-6.3-19.1-2.7-38.3-.6-57.3%2C2.7-17.7%2C3.1-35.7%2C7.5-50.8%2C17.6-14.2%2C9.5-25.9%2C22.5-36%2C36.2-10.2%2C13.7-20.4%2C27.7-26.2%2C43.8C.9%2C169.6-.5%2C188.6.2%2C206.7c.7%2C18%2C2%2C36.4%2C8.2%2C53.5%2C12.5%2C34.1%2C43.1%2C57.2%2C74.3%2C73.3%2C8.5%2C4.4%2C16.4%2C9.8%2C25%2C14.1%2C7.6%2C3.9%2C16.2%2C6.9%2C23.2%2C11.7%2C6.7%2C4.6%2C11.7%2C11.5%2C16.9%2C17.5%2C2.5%2C2.9%2C5.3%2C5.6%2C7.4%2C8.8%2C2.4%2C3.6%2C4.2%2C7.6%2C6.4%2C11.3%2C2.1%2C3.6%2C4%2C7.1%2C5.9%2C10.8%2C1.3%2C2.6%2C3.9%2C5.7%2C5.5%2C8.7-1.6%2C2.6-2%2C6.1-.2%2C8.6%2C4.3%2C5.8%2C10.5%2C5.2%2C17%2C4.9%2C8.8-.5%2C17.4-1.2%2C26.1-2.5%2C9.3-1.4%2C17.7-3.3%2C26.6-6.4%2C8.3-2.9%2C16.7-5.3%2C23.5-10.9%2C6.8-5.5%2C11-11.7%2C7.9-20.8-2.7-8-6-15.3-5.8-23.9.2-9.5%2C1.5-18.6%2C2.3-28%2C.8-9.5%2C3.3-18.1%2C5.9-27.2%2C2.5-8.9%2C5.1-17.7%2C8.4-26.4%2C3.4-8.9%2C7.2-17.6%2C10-26.7%2C2.8-9.1%2C4.5-18.6%2C6.1-28%2C1.6-9.6%2C3.2-19.2%2C3.6-28.9.7-18.8-1.5-38.9-8-56.7ZM286%2C214.3c-2.7%2C17.8-6%2C35.1-12.5%2C52-6.4%2C16.6-12%2C33.1-16.8%2C50.3-2.5%2C8.8-3%2C17.9-3.8%2C27-.4%2C4-1.3%2C7.9-1.7%2C11.9-.4%2C4.2-.1%2C8.4-.2%2C12.6%2C0%2C8.2%2C2.7%2C16.1%2C5.6%2C23.7.2.7.6%2C2.5%2C1.1%2C3.5-.1-.9%2C2.3-1.2.3-.2-.1%2C0-.2.1-.3.2.1.2.2.5.3.6-.2-.2-.3-.4-.3-.6-.4.3-.8.7-1.2%2C1-3%2C2.5-5.7%2C4-9.4%2C5.4-15.4%2C5.7-30.8%2C10.4-47.4%2C10.8-3.9.1-7.8.6-11.6.8-.8%2C0-1.6%2C0-2.3.1-1.3%2C0-2.6-.3-2.7-.2-1.6-.7-3.3-.9-5.1-.4-.2-.4-.3-.7-.5-1.1-1.7-3.8-3.2-7.8-4.8-11.7-2.8-6.9-6.1-14.2-10.3-20.4-4-6-9.3-11.5-13.9-17.1-4.8-5.7-10-11-16.6-14.6-7.5-4.2-15.3-7.7-22.9-11.9-7.6-4.2-14.6-9.2-22.2-13.3-15-8.1-28.9-17.7-41.1-29.6-11.9-11.7-21.5-24.3-26.5-40.4-5.1-16.3-6-33.6-6.4-50.6-.4-17.1%2C1.6-35.4%2C8.6-51.2%2C6.4-14.2%2C16.2-27.4%2C25.8-39.6%2C9.7-12.3%2C21.1-24.4%2C35.1-31.8%2C15.1-8.1%2C32.5-11.4%2C49.3-13.6%2C17.7-2.3%2C35.7-2.4%2C53.1%2C1.8%2C16.3%2C3.9%2C30.8%2C11.6%2C45.1%2C20.2%2C7.2%2C4.3%2C13.2%2C9.9%2C19.7%2C15.2%2C5.9%2C4.9%2C11.9%2C9.7%2C16.3%2C16%2C8.9%2C12.7%2C15.4%2C27.8%2C18.6%2C43%2C3.5%2C16.8%2C4.3%2C35.1%2C1.7%2C52.1Z%22%2F%3E%20%3Cpolygon%20class%3D%22cls-3%22%20points%3D%22257.7%20395.4%20257.7%20395.4%20257.7%20395.4%20257.7%20395.4%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M237.1%2C407.3c-1-6-3.4-12.2-4.6-18.2-1.5-7.5-3-15.3-5.3-22.6-2.3-7.2-2.7-14.3-4.4-21.7-1.7-7.6-2.8-15.3-4.4-22.9-1.6-7.4-3.3-14.5-3.5-22.1-.2-7.8.2-15.7.5-23.5.5-15.6%2C6.1-29.5%2C10.9-44.1%2C4.5-13.8%2C5.1-28.9-3.3-40.8-6.5-9.4-20.7-14.6-31.2-8.8-4.6%2C2.6-7.8%2C6.7-10.2%2C11.4-2.6-.9-5.3-1.5-8-1.8-6.6-.8-14-.5-20%2C2.8-3.3%2C1.8-5.8%2C4.6-7.8%2C7.7-11.8-1.5-24.3%2C4.3-32.6%2C12.2-4.9%2C4.7-8.9%2C10-10.3%2C16.8-1.5%2C7.1-1.3%2C14.1%2C0%2C21.2%2C1.2%2C6.7%2C2.9%2C14.1%2C7.1%2C19.6%2C4.4%2C5.7%2C9.9%2C10.5%2C15.1%2C15.4%2C10.7%2C10%2C21.9%2C20.9%2C29.3%2C33.6%2C3.6%2C6.2%2C6.6%2C12.7%2C10.2%2C18.9%2C3.4%2C6%2C7.6%2C11.9%2C10.1%2C18.4%2C5%2C13%2C10.7%2C25.9%2C16.9%2C38.5%2C1.5%2C3%2C2.5%2C6.3%2C3.8%2C9.4%2C1.4%2C3.3%2C4.3%2C6.6%2C5.2%2C10%2C.7%2C2.9%2C4.9%2C2.2%2C5.1-.7.2-4.7-2.4-9.5-3.8-13.9-1.6-5.1-3.6-9.8-5.4-14.8-4-10.8-9-21.1-13.1-31.9-3.6-9.4-9.7-18.3-14.5-27.1-5.4-9.8-10.4-19.1-17.4-27.8-7.1-8.8-15-16.8-23-24.8-3.7-3.7-8.4-7.8-10.7-12.5-2.4-5-3.7-11.6-4.1-17.1-.4-5.1-.3-11.2%2C2.1-15.9%2C2.3-4.6%2C7.3-8.8%2C11.7-11.4%2C4-2.4%2C8.6-3.9%2C13.2-4.2-3.1%2C10.5-3.2%2C23.7%2C6.2%2C30.6%2C10.5%2C7.8%2C24.8-1.5%2C26.3-13.3%2C1.4-11-5.6-19.9-14.7-25%2C.2-.2.5-.4.7-.6%2C4.7-3.6%2C12.2-3.3%2C18.5-.9-.1.4-.2.9-.3%2C1.3-2.3%2C9.2-4.1%2C22.6%2C5.5%2C28.5%2C5.4%2C3.3%2C13.4%2C3.3%2C17.3-2.3%2C3.5-5%2C3.7-12.6%2C2.3-18.4-1.5-6.2-5-11.1-9.7-14.8%2C3.7-6.8%2C9.5-10.8%2C17.7-4.4%2C3.8%2C3%2C5.7%2C8.6%2C7.3%2C13%2C2%2C5.8%2C2.3%2C11.3.6%2C17.2-3.3%2C11.4-8.3%2C22.1-10.9%2C33.8-2.8%2C12.7-2.8%2C26.6-2.7%2C39.5%2C0%2C13.1%2C3.8%2C25.8%2C5.9%2C38.6%2C2.2%2C13.1%2C6.5%2C25.2%2C10%2C38%2C1.8%2C6.6%2C3%2C13.4%2C4.8%2C20%2C1.4%2C5.1%2C4.1%2C10.1%2C5.4%2C15.1%2C2%2C7.9%2C8.1%2C4.4%2C6.9-3.3ZM160.1%2C231.8c-1.5%2C3.5-5.6%2C4.6-7.6%2C1.2-2.3-3.9-2-10.2-.3-15.8%2C1.5.9%2C3%2C2%2C4.3%2C3.3%2C2.7%2C2.7%2C5.2%2C7.3%2C3.6%2C11.3ZM189.9%2C223.9c-.1.3-.2.5-.2.6-.5%2C0-1-.2-1-.3-1.1-1.8-1.2-3.9-1.1-6%2C0-1.5.2-3.1.5-4.9%2C2%2C3.1%2C3.2%2C7.2%2C1.9%2C10.6Z%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	position: absolute;
	top: -20px;
	right: -17px;
}


#section01 .function_block .function_ul li:nth-child(3n + 3){
	margin-right: 0;
}

#section01 .function_block .function_ul li:nth-child(4n + 5),
#section01 .function_block .function_ul li:nth-child(1){
	background: #fff9d4;
	color: #ff8b34;
}

#section01 .function_block .function_ul li:nth-child(4n + 6),
#section01 .function_block .function_ul li:nth-child(2){
	background: #ecffd3;
	color: #2e742d;
}

#section01 .function_block .function_ul li:nth-child(4n + 7),
#section01 .function_block .function_ul li:nth-child(3){
	background: #ffeaf2;
	color: #e678a1;
}

#section01 .function_block .function_ul li:nth-child(4n + 8),
#section01 .function_block .function_ul li:nth-child(4){
	background: #d9f5fc;
	color: #3962b7;
}

#section01 .function_block .function_ul li .title{
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-align: center;
	padding-bottom: 8px;
	margin-bottom: 10px;
	border-bottom: 1px solid #333;
	text-shadow: 2px 2px 2px rgba(255, 255, 255, 1);
}

#section01 .function_block .function_ul li .caption{
	font-size: 16px;
	font-weight: 500;
	color: #333;
	line-height: 1.75;
	letter-spacing: 0.05em;
	margin: 0 8px;
}

#section01 .function_block .sarani{
	font-size:36px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 40px;
}

#section01 .ad_features .flex{
	width: 980px;
	margin: 0 auto 30px;
	padding: 32px;
	border-radius: 8px;
	margin-bottom: 60px;
	background: linear-gradient(126deg, rgba(255,254,216,1) 0%, rgba(255,242,214,1) 100%);
	box-sizing: border-box;
	display: flex;
	flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
	box-shadow: 2px 2px 9px -5px #777777;
	position: relative;
}

#section01 .ad_features .flex::after{
    content: '';
    display: inline-block;
    width: 99px;
    height: 140px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20373.2%20529.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23929496%3B%20%7D%20.cls-2%20%7B%20fill%3A%20%23f4dc7e%3B%20%7D%20.cls-3%20%7B%20fill%3A%20%23f1ab43%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-2%22%20d%3D%22M265.5%2C277.9c8-13.2%2C16.3-25.1%2C20.8-40%2C1.2-3.9-1.1-8.2-4.8-9.7-2-.8-3.8-.8-5.5-.3%2C1.1-2%2C2.2-3.9%2C3.2-5.9%2C5.1-9.5-7.9-16.5-14.1-8.3-6.4%2C8.5-12.8%2C17-19%2C25.5%2C8.8-14.9%2C17.9-29.6%2C27.4-44%2C4.9-7.5-6.9-16.9-12.6-9.7-3.8%2C4.7-7.4%2C9.4-11.1%2C14.1%2C1.9-3.2%2C3.8-6.5%2C5.6-9.7%2C3.9-6.8-3-13.1-9.2-11.3%2C9.3-14.3%2C18.6-28.5%2C27.7-42.9%2C4.3-6.7-4.2-14.8-10.8-10.8-4.6%2C2.7-8.6%2C6.2-12%2C10.3-1.9-4.4-8-7-12-2.6-7.4%2C8.1-14.8%2C16.2-22%2C24.4%2C6.6-9.2%2C13.6-18.3%2C20.8-27%2C5.7-6.9-3.5-16.6-10-10-12.4%2C12.6-24.6%2C25.4-36.4%2C38.6%2C2.4-5.1%2C4.8-10.2%2C7.1-15.4.6-.7%2C1.2-1.5%2C1.8-2.2%2C5.5-6.8%2C10.5-13.8%2C15.6-20.8%2C4-5.5%2C9-10.6%2C10.6-17.5%2C1.6-6.9-6.7-12-12-7-2.3%2C2.2-4.5%2C4.6-6.5%2C7.1-2.3-2.7-6.7-4-9.6-1.9-3.3%2C2.5-6%2C5.5-8.4%2C8.8%2C0%2C0%2C0%2C0%2C0%2C0%2C.1-.2.2-.4.4-.6%2C4.3-7.4%2C9.3-14.1%2C11-22.6%2C1.5-7.5-6.8-12.3-12.6-7.3-5.2%2C4.5-7.7%2C12.2-10.1%2C18.4-2.8%2C7.5-6.9%2C14.2-11.5%2C20.7-5.4%2C7.5-11.1%2C14.7-17%2C21.9%2C4.2-6.2%2C8.3-12.4%2C12.4-18.6%2C4.5-7.1%2C9.8-13.8%2C13.9-21.1%2C2.2-4%2C4-8.2%2C4.5-12.8.5-4.4-.2-8.8%2C0-13.2.1-3.7-2.8-6.5-6.2-7.5-2.7-1.7-6.4-1.9-8.6.9-2.6%2C3.2-5.4%2C6.3-8.3%2C9.3-1.9-3.5-6.6-4.6-10.4-1.6-4.4%2C3.4-8.2%2C7.4-11.9%2C11.6.6-4-2.5-7.1-6.4-7.4-.7%2C0-1.5%2C0-2.2%2C0%2C.7-1.5%2C1.4-2.9%2C2.1-4.4%2C1.5-3.4.7-9.1-4-9.8-5.5-.8-9.7%2C1.1-14.1%2C4.5-4.1%2C3.1-8.1%2C5.9-12.4%2C8.7-2.2-2.7-6.9-3.9-10.1-1.1-2.1%2C1.8-4.2%2C3.7-6.2%2C5.6-2.3-2.7-7.2-2.6-9.9-.3-8.8%2C7.8-17.5%2C16.6-25%2C25.6-7.6%2C9.2-13.6%2C19.5-20.5%2C29.3-3.3%2C4.7%2C1.6%2C10.1%2C6.4%2C9.8-4.7%2C7-9%2C14.5-12.6%2C22.3-.6.4-1.1%2C1.1-1.2%2C2%2C0%2C.4-.1.7-.2%2C1.1-.3%2C2.3%2C1.6%2C4.5%2C3.6%2C4.8-6.3%2C9.1-12.8%2C17.9-16.4%2C28.6-2.3%2C6.7%2C6.3%2C10.2%2C10.9%2C6.3%2C5.9-5%2C11.2-10.8%2C16.3-16.7-3.3%2C6.1-6.4%2C12.6-10.8%2C18-2.2%2C2.8-4.5%2C5.4-5.7%2C8.8-.7%2C1.9-.9%2C4.3-1.5%2C6.5-.9%2C1.5-1.8%2C3-2.6%2C4.6-3.3%2C6.3%2C5.3%2C13.9%2C10.3%2C8%2C.6-.7%2C1.1-1.3%2C1.5-2-.7%2C2.9-1%2C5.9-.8%2C9%2C.3%2C3.8%2C3.4%2C6.5%2C6.7%2C6.7-2%2C5.1-3.5%2C10.3-4.1%2C15.7-.5%2C4.7%2C4.7%2C7.3%2C8.6%2C6.5%2C6-1.3%2C9.9-8.4%2C13.5-12.8%2C5.3-6.6%2C10.1-13.6%2C14.9-20.5%2C3.3-4.8%2C6.5-9.5%2C9.7-14.3-1.5%2C2.3-2.9%2C4.7-4.4%2C7-3.2%2C5.3-6.2%2C10.8-9.1%2C16.3-6.9%2C10.1-12.9%2C20.8-16.8%2C32.6-2.5%2C7.7%2C7.1%2C11.2%2C12.2%2C7.1%2C2.4-1.8%2C3.6-4.4%2C4.8-7.1%2C1.8-3.8%2C3.7-7.6%2C5.5-11.3%2C2.6-5.4%2C5.3-10.7%2C8.1-16%2C1.9-2.8%2C3.9-5.6%2C6-8.3%2C9.9-13.4%2C19.9-26.6%2C30.5-39.5%2C3.1-3.8%2C6.2-7.5%2C9.3-11.3-9%2C15.7-17.7%2C31.7-25.7%2C48-4%2C8.2-7.7%2C16.4-11.1%2C24.8-3%2C7.4-6.9%2C14.5-8.2%2C22.5-.3%2C2.1%2C0%2C3.8.8%2C5.2-.2.4-.3.8-.5%2C1.2-3.1%2C7.9%2C9%2C12.1%2C13.2%2C5.5%2C6.1-9.5%2C12-19.2%2C18-28.8-4.2%2C8.2-8.2%2C16.5-11.8%2C24.9-1.6%2C3.6-1%2C7.7%2C2.6%2C9.9%2C3.1%2C1.9%2C8.2.9%2C9.9-2.6%2C13.8-28.8%2C31.2-55.6%2C47.5-83%2C1.9-2.7%2C3.9-5.4%2C5.9-8.1-7.9%2C13.6-15.6%2C27.4-23.3%2C41.1-1.6%2C2.5-3.2%2C5-4.9%2C7.5-4.5%2C6.5-8.1%2C13-11%2C20.4-2.9%2C7.4%2C7.8%2C12%2C12.5%2C6.8-2.6%2C4.5-5%2C9.1-7%2C13.9%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0-.3.6-.5%2C1.2-.8%2C1.8-3.3%2C8.1%2C9.3%2C12.6%2C13.7%2C5.8%2C1.7-2.7%2C3.4-5.4%2C5.2-8.1-4.9%2C9.2-9.5%2C18.7-13.4%2C28.5-3.4%2C8.4%2C10.1%2C13.7%2C14.4%2C6.1%2C3.7-6.4%2C7.4-12.9%2C11-19.3-2.2%2C4.5-4.4%2C9.1-6.3%2C13.7%2C0%2C0%2C0%2C0%2C0%2C0h0c-.3.6-.5%2C1.3-.8%2C1.9-3.6%2C8.6%2C9.7%2C13.1%2C14.4%2C6.1%2C8.8-13.4%2C18-26.5%2C27.2-39.6-2.8%2C5.4-5.6%2C10.8-8.4%2C16.3-1.8%2C3.5-3.5%2C7-5.3%2C10.5-1.9%2C3.9-4.4%2C6.9-6.9%2C10.4-4.4%2C6.4-6.6%2C13.6-7.3%2C21.3-.5%2C5.7%2C4.9%2C8.5%2C9.6%2C7.7-1.2%2C6.7%2C7.5%2C11.8%2C13.1%2C7.8-2.8%2C5.3-5.5%2C10.6-8.2%2C16-1.8%2C3.8-1.4%2C8.2%2C2.2%2C10.9%2C3%2C2.3%2C8.5%2C2.7%2C11.1-.7%2C10.6-13.6%2C21.6-26.8%2C32.8-39.8-6.8%2C11.1-13.9%2C22.1-20.9%2C33-4.6%2C7.1%2C4.7%2C16.8%2C11.9%2C11.9%2C7.8-5.3%2C13.5-12.4%2C19.9-19.3%2C1-1.1%2C2-2.1%2C3-3.2-1.5%2C3.8-3%2C7.5-4.1%2C11.3-1.1%2C3.5.6%2C8.3%2C4.1%2C10%2C3.4%2C1.7%2C6%2C2.3%2C9.6%2C1%2C4.5-1.7%2C7.5-6%2C6.2-10.9-.2-.6-.4-1.1-.7-1.7%2C3.6-10%2C7.8-19.7%2C7.3-30.7-.2-4.8-3.9-8.7-8.8-8.8-1%2C0-2%2C0-3%2C.2%2C9.7-16.5%2C18.7-33.4%2C26.5-51%2C4-9.1-5.6-16.4-13.4-10.4-7.9%2C6.1-12.9%2C13.8-19.2%2C21.3-1.2%2C1.5-2.5%2C3-3.8%2C4.5.5-.9%2C1-1.7%2C1.5-2.6%2C8.4-14.2%2C16.9-28.4%2C25.5-42.5ZM98.2%2C93.4c2.8-1.9%2C5.8-3.5%2C8.8-5.1-2%2C3.2-4.1%2C6.3-6.3%2C9.4-10.3%2C10.3-19.4%2C21.8-28.9%2C32.8.5-1.7.9-3.4%2C1.4-5%2C5.2-8.2%2C10.3-16.4%2C15.5-24.6%2C3-2.7%2C6.2-5.3%2C9.5-7.5ZM48.3%2C212.6c4.8-6.6%2C9.9-13%2C15.1-19.2%2C1.9-2.3%2C3.9-4.6%2C5.8-6.9%2C4.9-5.1%2C9.9-10.2%2C14.9-15.3-.7%2C1-1.5%2C2.1-2.2%2C3.1-.7%2C1-1.5%2C2.1-2.2%2C3.1-6.9%2C7.9-13.6%2C15.8-20.2%2C24-4.4%2C5.5-8.8%2C11-13%2C16.7.6-1.8%2C1.1-3.7%2C1.7-5.5ZM149.7%2C267.1c2.8-4.5%2C5.7-9%2C8.6-13.4%2C2-2.9%2C4-5.8%2C6.1-8.7-4.5%2C7.2-8.9%2C14.3-13.3%2C21.5-3.6%2C5.9-7.4%2C11.6-11%2C17.5%2C3.2-5.6%2C6.4-11.2%2C9.6-16.9Z%22%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M292.5%2C466.6c5.8-7.8%2C3.3-18.2-5-23.1%2C1.9-1.9%2C3.6-4%2C4.7-6.3%2C3.9-7.9%2C1.1-17.3-6.7-21.5-.9-.5-1.9-.8-2.8-.9.2-.5.4-1%2C.5-1.5%2C1.2-4.3.2-8.8-2.3-12.4-1.2-1.8-2.8-3.5-4.6-4.6-1.4-.8-3.4-.9-4.6-1.7-8.3-5.5-16.5%2C7.8-8.1%2C13.1.8.5%2C5%2C1.8%2C5.2%2C2.1-.1-.2-2.7%2C2.4-3.3%2C2.8-3.7%2C3-8.6%2C5.3-12.8%2C7.4-10.7%2C5.4-23.7%2C7.5-35.2%2C10.5-12%2C3-23.3%2C4.8-35.6%2C3.6-2.8-.3-11.4%2C0-11.9-3.9-.2-1.7%2C2.2-4.9%2C3.3-5.9%2C1.8-1.6%2C4.6-1.5%2C6.8-2.4%2C2.3-.9%2C2.3-4.7.2-5.8-13.3-6.7-27.8%2C12.7-17.3%2C23.2-2.2.5-4.2%2C1.4-5.9%2C3.1-4.3%2C4.4-5.2%2C11.1-2.5%2C16.5%2C3.1%2C6.3%2C9%2C9.3%2C15.6%2C10.7-1.2%2C1.3-2.2%2C2.9-2.8%2C4.6-2.6%2C7.4%2C2%2C13.6%2C8.3%2C17.2%2C2%2C1.1%2C4.1%2C2%2C6.2%2C2.8-1.4%2C5.1-.9%2C11.3%2C1.5%2C14.8%2C4.2%2C6.4%2C12.7%2C8.1%2C19.8%2C8.8%2C6.6.7%2C13.4%2C0%2C20-1%2C.7%2C6.8%2C8.7%2C10%2C14.5%2C11.5%2C6.9%2C1.7%2C14.4%2C2.3%2C21-1.1%2C7.6-4%2C12.1-13.1%2C12.5-21.5%2C0-1.6-.2-2.9-.8-4%2C1.7-.9%2C3.4-1.8%2C5.1-2.8%2C6.2-3.8%2C13.3-6.5%2C16.4-13.5%2C2.6-6.1%2C5-12.4.6-18.1.2-.2.4-.4.5-.6ZM166.4%2C455.1c-1.9-1.3-3.2-4-1.6-6.2%2C1.4-2%2C5.4-1.6%2C7.5-1.8%2C1.5-.1%2C2.5-.9%2C3.2-1.9%2C3.4.6%2C6.9.9%2C10.2%2C1.2%2C9.1%2C1.1%2C18.2%2C0%2C27.2-1.6%2C18.6-3.3%2C37.3-7.2%2C54.1-16%2C2.1-1.1%2C4.4-2.4%2C6.5-3.8.2.5.4.9.7%2C1.4.8%2C1.3%2C1.7%2C2.8%2C2.8%2C3.7%2C0%2C0%2C.1.1.2.2%2C0%2C0%2C0%2C0%2C0%2C0-1.4.6-3%2C3-4.2%2C4-4.7%2C3.9-10.2%2C6.7-15.8%2C9-12.4%2C5.1-25.3%2C8.6-38.6%2C10.1-12.6%2C1.4-24.9%2C4.4-37.7%2C4.4-4.6%2C0-10.5%2C0-14.5-2.7ZM244.2%2C515.9c-1.2%2C0-6.4-.5-9.8-1.6%2C5.8-1.5%2C11.5-3.3%2C17.1-5.3.9-.3%2C1.7-.6%2C2.6-.9-.7%2C5.1-4.1%2C7.8-9.9%2C7.8ZM275.4%2C479.1c-1.4%2C1.2-3.7%2C2.2-5.3%2C3.2-2.3%2C1.5-4.5%2C3.1-6.8%2C4.5-8.9%2C5.3-19.8%2C8.8-29.7%2C11.9-9.7%2C3-20.1%2C6.1-30.3%2C5.7-3-.1-10.1-.2-11.3-3.8-.4-1.1%2C0-2.6%2C0-3.7%2C0%2C0%2C0%2C0%2C0-.1%2C9.5%2C1.2%2C19.4%2C0%2C28.6-1.9%2C8.5-1.8%2C16.6-5%2C25.2-6.5%2C4.3-.7%2C8.4-1.2%2C12.4-2.7%2C4.3-1.6%2C8.4-3.8%2C12.7-5.5%2C1.5-.6%2C3.1-1.3%2C4.8-2-.2.6-.6%2C1.1-.4%2C1.1ZM271.2%2C461.3c-5.1%2C2.9-10.6%2C5.1-15.8%2C7.7-5.6%2C2.9-11.8%2C3.3-17.8%2C4.9-5.8%2C1.6-11.3%2C3.7-17.1%2C5.4-9.6%2C2.7-19.9%2C4.8-29.8%2C3.4-2.8-.4-11.1-1.7-12.6-4.7-1.2-2.5%2C2.4-4%2C4.2-4.4%2C2.6-.6%2C4.2-.2%2C6.2-2.2.2-.2.4-.4.5-.6%2C6.9-.2%2C13.7-1.4%2C20.5-2.2%2C7.7-.9%2C15.5-1.1%2C23.2-2.3%2C14.2-2.3%2C29.6-6.8%2C42.3-14%2C.3%2C1.2.8%2C2.5%2C1.7%2C3.6%2C0%2C0%2C.3.4.7%2C1-2%2C.7-4.5%2C3.3-6.2%2C4.3Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M259.3%2C1.8c-3.9%2C3-3.9%2C7.1-5.4%2C11.4-1.5%2C4.6-4.6%2C8.6-6.3%2C13.1-1.9%2C5.1-3.2%2C10.5-5%2C15.6-1.4%2C4-3.5%2C7.7-3.4%2C12%2C0%2C2.4%2C1.9%2C4.1%2C4.2%2C4.2.4%2C0%2C.7%2C0%2C1.1%2C0%2C3.1.2%2C4.5-3%2C3.7-5.4%2C1.3-3%2C3.7-5.8%2C5.1-8.6%2C1.9-4%2C3.5-8.1%2C5.5-12.1%2C1.8-3.6%2C4.3-6.8%2C6.3-10.3%2C1.7-2.9%2C2.2-7.5%2C4.3-10%2C6-7.1-2.9-15.6-10.1-10.1Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M307.1%2C31.3c-1.1%2C1.7-3.1%2C2.9-4.5%2C4.2-2.2%2C2-4.2%2C4.2-6.3%2C6.3-3.9%2C4.1-7.5%2C8.6-10.9%2C13.1-3.2%2C4.1-6.4%2C8.1-9.7%2C12.1-2.7%2C3.2-4.8%2C6.4-4.9%2C10.7%2C0%2C4.9%2C6.9%2C4.6%2C7.4%2C0%2C.4-3.6%2C5.5-6.9%2C8-9.3%2C3.5-3.4%2C7-6.7%2C10.6-10%2C6.8-6%2C14.5-10.5%2C21.7-15.9%2C11.2-8.5-4.6-22.3-11.3-11.3Z%22%2F%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M359.3%2C68.5c-1.4%2C1.1-3%2C1-4.7%2C1.6-2.5.8-4.9%2C2.1-7.2%2C3.3-5.4%2C2.8-10.9%2C5.5-16%2C8.7-4.4%2C2.8-8.9%2C5.7-13.1%2C8.8-3.2%2C2.4-7.4%2C6.8-11.6%2C7.1-3.6.3-4.9%2C5.9-.9%2C6.7%2C4.4.9%2C8.3-.5%2C12.2-2.5%2C5.4-2.8%2C10.7-5.3%2C16.5-7.4%2C6.3-2.4%2C12.8-4.3%2C19.3-6.3%2C5.9-1.8%2C11.9-.9%2C16.8-5.4%2C7.7-6.9-2.8-21-11.3-14.6Z%22%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M296.3%2C143.7c-5.6-15.2-13.4-31.3-25.1-42.7-12.7-12.4-27.4-23-43.1-31.2-7.8-4.1-15.6-8.4-23.9-11.4-8.6-3.1-17.8-5.1-26.8-6.3-19.1-2.7-38.3-.6-57.3%2C2.7-17.7%2C3.1-35.7%2C7.5-50.8%2C17.6-14.2%2C9.5-25.9%2C22.5-36%2C36.2-10.2%2C13.7-20.4%2C27.7-26.2%2C43.8C.9%2C169.6-.5%2C188.6.2%2C206.7c.7%2C18%2C2%2C36.4%2C8.2%2C53.5%2C12.5%2C34.1%2C43.1%2C57.2%2C74.3%2C73.3%2C8.5%2C4.4%2C16.4%2C9.8%2C25%2C14.1%2C7.6%2C3.9%2C16.2%2C6.9%2C23.2%2C11.7%2C6.7%2C4.6%2C11.7%2C11.5%2C16.9%2C17.5%2C2.5%2C2.9%2C5.3%2C5.6%2C7.4%2C8.8%2C2.4%2C3.6%2C4.2%2C7.6%2C6.4%2C11.3%2C2.1%2C3.6%2C4%2C7.1%2C5.9%2C10.8%2C1.3%2C2.6%2C3.9%2C5.7%2C5.5%2C8.7-1.6%2C2.6-2%2C6.1-.2%2C8.6%2C4.3%2C5.8%2C10.5%2C5.2%2C17%2C4.9%2C8.8-.5%2C17.4-1.2%2C26.1-2.5%2C9.3-1.4%2C17.7-3.3%2C26.6-6.4%2C8.3-2.9%2C16.7-5.3%2C23.5-10.9%2C6.8-5.5%2C11-11.7%2C7.9-20.8-2.7-8-6-15.3-5.8-23.9.2-9.5%2C1.5-18.6%2C2.3-28%2C.8-9.5%2C3.3-18.1%2C5.9-27.2%2C2.5-8.9%2C5.1-17.7%2C8.4-26.4%2C3.4-8.9%2C7.2-17.6%2C10-26.7%2C2.8-9.1%2C4.5-18.6%2C6.1-28%2C1.6-9.6%2C3.2-19.2%2C3.6-28.9.7-18.8-1.5-38.9-8-56.7ZM286%2C214.3c-2.7%2C17.8-6%2C35.1-12.5%2C52-6.4%2C16.6-12%2C33.1-16.8%2C50.3-2.5%2C8.8-3%2C17.9-3.8%2C27-.4%2C4-1.3%2C7.9-1.7%2C11.9-.4%2C4.2-.1%2C8.4-.2%2C12.6%2C0%2C8.2%2C2.7%2C16.1%2C5.6%2C23.7.2.7.6%2C2.5%2C1.1%2C3.5-.1-.9%2C2.3-1.2.3-.2-.1%2C0-.2.1-.3.2.1.2.2.5.3.6-.2-.2-.3-.4-.3-.6-.4.3-.8.7-1.2%2C1-3%2C2.5-5.7%2C4-9.4%2C5.4-15.4%2C5.7-30.8%2C10.4-47.4%2C10.8-3.9.1-7.8.6-11.6.8-.8%2C0-1.6%2C0-2.3.1-1.3%2C0-2.6-.3-2.7-.2-1.6-.7-3.3-.9-5.1-.4-.2-.4-.3-.7-.5-1.1-1.7-3.8-3.2-7.8-4.8-11.7-2.8-6.9-6.1-14.2-10.3-20.4-4-6-9.3-11.5-13.9-17.1-4.8-5.7-10-11-16.6-14.6-7.5-4.2-15.3-7.7-22.9-11.9-7.6-4.2-14.6-9.2-22.2-13.3-15-8.1-28.9-17.7-41.1-29.6-11.9-11.7-21.5-24.3-26.5-40.4-5.1-16.3-6-33.6-6.4-50.6-.4-17.1%2C1.6-35.4%2C8.6-51.2%2C6.4-14.2%2C16.2-27.4%2C25.8-39.6%2C9.7-12.3%2C21.1-24.4%2C35.1-31.8%2C15.1-8.1%2C32.5-11.4%2C49.3-13.6%2C17.7-2.3%2C35.7-2.4%2C53.1%2C1.8%2C16.3%2C3.9%2C30.8%2C11.6%2C45.1%2C20.2%2C7.2%2C4.3%2C13.2%2C9.9%2C19.7%2C15.2%2C5.9%2C4.9%2C11.9%2C9.7%2C16.3%2C16%2C8.9%2C12.7%2C15.4%2C27.8%2C18.6%2C43%2C3.5%2C16.8%2C4.3%2C35.1%2C1.7%2C52.1Z%22%2F%3E%20%3Cpolygon%20class%3D%22cls-3%22%20points%3D%22257.7%20395.4%20257.7%20395.4%20257.7%20395.4%20257.7%20395.4%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cpath%20class%3D%22cls-3%22%20d%3D%22M237.1%2C407.3c-1-6-3.4-12.2-4.6-18.2-1.5-7.5-3-15.3-5.3-22.6-2.3-7.2-2.7-14.3-4.4-21.7-1.7-7.6-2.8-15.3-4.4-22.9-1.6-7.4-3.3-14.5-3.5-22.1-.2-7.8.2-15.7.5-23.5.5-15.6%2C6.1-29.5%2C10.9-44.1%2C4.5-13.8%2C5.1-28.9-3.3-40.8-6.5-9.4-20.7-14.6-31.2-8.8-4.6%2C2.6-7.8%2C6.7-10.2%2C11.4-2.6-.9-5.3-1.5-8-1.8-6.6-.8-14-.5-20%2C2.8-3.3%2C1.8-5.8%2C4.6-7.8%2C7.7-11.8-1.5-24.3%2C4.3-32.6%2C12.2-4.9%2C4.7-8.9%2C10-10.3%2C16.8-1.5%2C7.1-1.3%2C14.1%2C0%2C21.2%2C1.2%2C6.7%2C2.9%2C14.1%2C7.1%2C19.6%2C4.4%2C5.7%2C9.9%2C10.5%2C15.1%2C15.4%2C10.7%2C10%2C21.9%2C20.9%2C29.3%2C33.6%2C3.6%2C6.2%2C6.6%2C12.7%2C10.2%2C18.9%2C3.4%2C6%2C7.6%2C11.9%2C10.1%2C18.4%2C5%2C13%2C10.7%2C25.9%2C16.9%2C38.5%2C1.5%2C3%2C2.5%2C6.3%2C3.8%2C9.4%2C1.4%2C3.3%2C4.3%2C6.6%2C5.2%2C10%2C.7%2C2.9%2C4.9%2C2.2%2C5.1-.7.2-4.7-2.4-9.5-3.8-13.9-1.6-5.1-3.6-9.8-5.4-14.8-4-10.8-9-21.1-13.1-31.9-3.6-9.4-9.7-18.3-14.5-27.1-5.4-9.8-10.4-19.1-17.4-27.8-7.1-8.8-15-16.8-23-24.8-3.7-3.7-8.4-7.8-10.7-12.5-2.4-5-3.7-11.6-4.1-17.1-.4-5.1-.3-11.2%2C2.1-15.9%2C2.3-4.6%2C7.3-8.8%2C11.7-11.4%2C4-2.4%2C8.6-3.9%2C13.2-4.2-3.1%2C10.5-3.2%2C23.7%2C6.2%2C30.6%2C10.5%2C7.8%2C24.8-1.5%2C26.3-13.3%2C1.4-11-5.6-19.9-14.7-25%2C.2-.2.5-.4.7-.6%2C4.7-3.6%2C12.2-3.3%2C18.5-.9-.1.4-.2.9-.3%2C1.3-2.3%2C9.2-4.1%2C22.6%2C5.5%2C28.5%2C5.4%2C3.3%2C13.4%2C3.3%2C17.3-2.3%2C3.5-5%2C3.7-12.6%2C2.3-18.4-1.5-6.2-5-11.1-9.7-14.8%2C3.7-6.8%2C9.5-10.8%2C17.7-4.4%2C3.8%2C3%2C5.7%2C8.6%2C7.3%2C13%2C2%2C5.8%2C2.3%2C11.3.6%2C17.2-3.3%2C11.4-8.3%2C22.1-10.9%2C33.8-2.8%2C12.7-2.8%2C26.6-2.7%2C39.5%2C0%2C13.1%2C3.8%2C25.8%2C5.9%2C38.6%2C2.2%2C13.1%2C6.5%2C25.2%2C10%2C38%2C1.8%2C6.6%2C3%2C13.4%2C4.8%2C20%2C1.4%2C5.1%2C4.1%2C10.1%2C5.4%2C15.1%2C2%2C7.9%2C8.1%2C4.4%2C6.9-3.3ZM160.1%2C231.8c-1.5%2C3.5-5.6%2C4.6-7.6%2C1.2-2.3-3.9-2-10.2-.3-15.8%2C1.5.9%2C3%2C2%2C4.3%2C3.3%2C2.7%2C2.7%2C5.2%2C7.3%2C3.6%2C11.3ZM189.9%2C223.9c-.1.3-.2.5-.2.6-.5%2C0-1-.2-1-.3-1.1-1.8-1.2-3.9-1.1-6%2C0-1.5.2-3.1.5-4.9%2C2%2C3.1%2C3.2%2C7.2%2C1.9%2C10.6Z%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 10px;
    right: 24px;
    transform: rotate(15deg);
}

#section01 .ad_features .flex .text_block{
	width: calc(100% - 330px);
	padding-left: 40px;
	box-sizing: border-box;
}

#section01 .ad_features .flex .text_block .sub{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 14px;
}

#section01 .ad_features .flex .text_block .sub strong{
	font-size: 1.6em;
	font-weight: 700;
	color: #ff0000;
	margin: 0 0.1em;
}

#section01 .ad_features .flex .text_block .ad_title{
	font-size: 44px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.2em;
	color: #fa8603;
    text-shadow: 2px 2px 3px rgba(159, 159, 159, 0.7);
	margin-bottom: 30px;
}

#section01 .ad_features .flex .text_block .caption{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

#section01 .ad_features .flex .image_box{
	width: 330px;
}

#section01 .ad_features .catch_block{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

#section01 .ad_features .catch_block .ad_logo{
	width: 320px;
}

#section01 .ad_features .catch_block p{
	font-size: 16px;
	font-weight: 700;
	margin-left: 18px;
}

#section01 .option{
	text-align: center;
	margin-bottom: 60px;
}

#section01 .option p{
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

#section01 .option p strong{
	font-size: 1.4em;
	font-weight: 900;
	color: #facb03;
	margin: 0 0.2em;
	text-shadow: 2px 2px 5px rgba(101, 101, 101, 0.7);
}

#section01 .option .option_link{
	text-align: center;
}

#section01 .option .option_link a{
	display: inline-block;
	height: 64px;
	line-height: 64px;
	border-radius: 64px;
	background: #fff;
	border: 2px solid #facb03;
	padding: 0 48px 0 24px;
	font-size: 18px;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.05em;
	text-decoration: none;
	position: relative;
}

#section01 .option .option_link a:hover{
	opacity: 0.8;
}

#section01 .option .option_link a::after{
	content: '';
    border: 8px solid transparent;
    border-top: 13px solid #facb03;
    position: absolute;
    top: 42%;
    right: 18px;
}



#section02{
    padding: 80px 0 120px;
}

#section02 .wrapper{
	position: relative;
	z-index: 2;
}

#section02 .wrapper .flex{
	display: table;
    width: 980px;
    margin: 0 auto;
}

#section02 .wrapper .flex .text_box,
#section02 .wrapper .flex .image_box{
	display: table-cell;
	vertical-align: top;
}

#section02 .wrapper .flex .text_box{
	width: calc(100% - 380px);
	padding-right: 40px;
	box-sizing: border-box;
}

#section02 .wrapper .flex .image_box{
	width: 380px;
	position: relative;
}

#section02 .wrapper .flex .image_box .image_wrapp{
    position: sticky;
    top: 140px;
}

#section02 h2{
	line-height: 1;
	text-align: left;
	margin-bottom: 60px;
}

#section02 h2 strong{
	display: inline-block;
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 2;
}

#section02 h2 strong::after{
    content: 'CONCEPT';
    display: inline-block;
    font-size: 74px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(251, 223, 0, 0.6);
    position: absolute;
    top: -43px;
    right: -220px;
    z-index: -1;
    text-shadow: none;
    white-space: nowrap;
}

#section02 .wrapper .flex .text_box ul li{
	margin-bottom: 34px;
}

#section02 .wrapper .flex .text_box ul li:last-child{
	margin-bottom: 0;
}

#section02 .wrapper .flex .text_box ul li strong{
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
}

#section02 .wrapper .flex .text_box ul li p{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
	margin-bottom: 1em;
}

#section02 .wrapper .flex .text_box ul li p:last-of-type{
	margin-bottom: 0;
}

#section02 .wrapper .concept_catch{
	font-size: 30px;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
	margin-top: 60px;
}



#section03{
	background: var(--color01);
	padding: 80px 0 120px;
}

#section03 .wrapper{
	position: relative;
	z-index: 2;
}

#section03 h2{
	line-height: 1;
	text-align: center;
	margin-bottom: 60px;
}

#section03 h2 strong{
	display: inline-block;
	font-size: 46px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	position: relative;
	z-index: 2;
}

#section03 h2 strong::after{
    content: 'PRICE';
    display: inline-block;
    font-size: 74px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(251, 223, 0, 0.6);
    position: absolute;
    top: -33px;
    left: -120px;
    z-index: -1;
    text-shadow: none;
    white-space: nowrap;
    transform: rotate(-15deg);
}

#section03 .price_box{
	width: 980px;
	padding: 24px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
	border-radius: 6px;
	display: flex;
	flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

#section03 .price_box .image_box{
	width: 300px;
}

#section03 .price_box .text_box{
	width: calc(100% - 300px);
	padding-left: 40px;
	box-sizing: border-box;
}

#section03 .price_box .text_box .sub{
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 14px;
}

#section03 .price_box .text_box .main{
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 18px;
}

#section03 .price_box .text_box .main strong{
	font-size: 2.0em;
	font-weight: 900;
	color: #ff0000;
	margin: 0 0.2em;
}

#section03 .price_box .text_box .main strong span{
	font-size: 0.6em;
	font-weight: 900;
	margin-left: 0.1em;
	color: #181818;
}

#section03 .price_box .text_box .note li{
	font-size: 13px;
	font-weight: 500;
	padding-left: 1.2em;
	margin-bottom: 4px;
	position: relative;
}

#section03 .price_box .text_box .note li:last-child{
	margin-bottom: 0;
}

#section03 .price_box .text_box .note li::before{
	content: '※';
	display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}



#section04{
	padding: 80px 0 120px;
}

#section04 .wrapper{
	position: relative;
	z-index: 2;
}

#section04 h2{
	line-height: 1;
	text-align: center;
	margin-bottom: 60px;
}

#section04 h2 strong{
	display: inline-block;
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 2;
}

#section04 h2 strong::after{
    content: 'OPTION';
    display: inline-block;
    font-size: 74px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(251, 223, 0, 0.6);
    position: absolute;
	top: -43px;
    left: -60px;
    z-index: -1;
    text-shadow: none;
    white-space: nowrap;
}

#section04 .option_head{
	text-align: center;
	margin: 100px 0 90px;
	line-height: 1;
}

#section04 .option_head .catch{
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 38px;
}

#section04 .option_head .zl_logo{
	width: 600px;
	margin: 0 auto 30px;
}

#section04 .option_head .name{
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.05em;
}

#section04 .option_head .name strong{
	font-size: 2.0em;
	font-weight: 700;
	color: #205c99;
}

#section04 .option_cont{
	width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
	position: relative;
}

#section04 .option_cont .image_box{
	width: 360px;
}

#section04 .option_cont .image_box .image_wrapp{
	width: 100%;
}

#section04 .option_cont .image_box .icon{
    width: 240px;
    position: absolute;
    bottom: 0;
    right: 30px;
    animation-name: bounce;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: center bottom;
}

@keyframes bounce {
    0%   { transform: scale(1.0, 1.0) translate(0%, 0%); } /* 初期状態 */
    30%  { transform: scale(1.3, 0.5) translate(0%, 0%); } /* 地面に着地し、その変動で潰れだす */
    40%  { transform: scale(1.0, 1.0) translate(0%, 0%); } /* 潰れた反動で一瞬元に戻る */
    50%  { transform: scale(0.8, 1.3) translate(0%, -20%); } /* 潰れた反動で縦に伸び、その勢いでバウンド開始 */
    60%  { transform: scale(1.0, 1.0) translate(0%, -40%); } /* 潰れた反動が終り、空中で元に戻る */
    100% { transform: scale(1.0, 1.0) translate(0%, 0%); } /* 初期状態に戻る */
}

#section04 .option_cont .text_box{
	width: calc(100% - 360px);
}

#section04 .option_cont .text_box .op_title{
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 24px;
	padding-left: 18px;
	border-left: 6px solid #205c99;
}

#section04 .option_cont .text_box .option_ul01{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

#section04 .option_cont .text_box .option_ul01 li{
	width: 180px;
	height: 180px;
	text-align: center;
	margin: 0 16px 18px 0;
	border-radius: 8px;
	box-shadow: 5px 5px 9px 1px rgba(255, 255, 255, 0.3) inset, -5px -5px 9px 1px rgba(0, 0, 0, 0.3) inset;
	background: #ccc;
	position: relative;
}

#section04 .option_cont .text_box .option_ul01 li:nth-child(1){
	background: #f87796;
}

#section04 .option_cont .text_box .option_ul01 li:nth-child(2){
	background: #009245;
}

#section04 .option_cont .text_box .option_ul01 li:nth-child(3){
	background: #205c99;
}

#section04 .option_cont .text_box .option_ul01 li:nth-child(4){
	background: #93278f;
}

#section04 .option_cont .text_box .option_ul01 li:nth-child(5){
	background: #d57001;
}

#section04 .option_cont .text_box .option_ul01 li .wrapp{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

#section04 .option_cont .text_box .in_text{
	margin-right: 40px;
}

#section04 .option_cont .text_box .in_text .kizuna_code .title,
#section04 .option_cont .text_box .in_text .sub_title{
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 24px;
	padding-left: 1.8em;
	position: relative;
}

#section04 .option_cont .text_box .in_text .kizuna_code .title::before,
#section04 .option_cont .text_box .in_text .sub_title::before{
	content: '';
	display: inline-block;
	width: 27px;
	height: 25px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size; contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2012%2011.3%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%231f5891%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M7.9%2C10.2c-1.2%2C1.7-3.6%2C1.3-5.6-.2C.3%2C8.6-.7%2C6.4.5%2C4.8c1.2-1.7%2C3.9-1.8%2C5.9-.3%2C2%2C1.5%2C2.7%2C4.1%2C1.4%2C5.7h0Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M3.9%2C1.7c0%2C.8-.8%2C1.2-1.6%2C1.2-.8%2C0-1.4-.6-1.4-1.5C1%2C.5%2C1.7%2C0%2C2.5%2C0c.8%2C0%2C1.4.8%2C1.3%2C1.7h0Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M7.6%2C2.4c-.3.9-1.2%2C1.1-2.1.8-.9-.3-1.4-1.1-1.1-2%2C.3-.9%2C1.3-1.4%2C2.2-1.1.9.3%2C1.3%2C1.3%2C1%2C2.2h0Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M9.9%2C6.2c-.8.3-1%2C1.1-.6%2C1.9.3.8%2C1%2C1.2%2C1.8.9s1.2-1.2.8-2c-.3-.8-1.2-1.1-2-.8h0Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.1%2C2.8c-.8.6-.7%2C1.5-.2%2C2.2s1.4%2C1%2C2.2.5.9-1.6.4-2.4-1.6-.9-2.4-.3h0Z%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	position: absolute;
    top: 0;
    left: 0;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01{
	margin: 0 0 40px 40px;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 16px;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li:last-child{
    margin-bottom: 0;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li .item{
	width: 160px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.05em;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li .cont{
	width: calc(100% - 160px);
	font-size: 14px;
	font-weight: 500;
}

#section04 .option_cont .text_box .in_text .kizuna_code .caption{
	margin-left: 40px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

#section04 .option_other_catch{
	font-size: 30px;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
    margin-top: 60px;
}



#section05{
    padding: 80px 0 120px;
	background: rgb(255,254,224);
	background: linear-gradient(135deg, rgba(255,254,224,1) 0%, rgba(249,247,185,1) 100%);
}

#section05 .wrapper{
	position: relative;
	z-index: 2;
}

#section05 .wrapper .flex{
	display: table;
    width: 980px;
    margin: 0 auto;
}

#section05 .wrapper .flex .cont,
#section05 .wrapper .flex .item{
	display: table-cell;
	vertical-align: top;
}

#section05 .wrapper .flex .item{
	width: 400px;
	padding-right: 40px;
	box-sizing: border-box;
}

#section05 .wrapper .flex .item .caption{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

#section05 .wrapper .flex .cont{
	width: calc(100% - 400px);
	position: relative;
}

#section05 h2{
	line-height: 1;
	text-align: left;
	margin-bottom: 60px;
}

#section05 h2 strong{
	display: inline-block;
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 2;
}

#section05 h2 strong::after{
    content: 'ABOUT';
    display: inline-block;
    font-size: 74px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(251, 223, 0, 0.6);
    position: absolute;
    top: -43px;
    right: -220px;
    z-index: -1;
    text-shadow: none;
    white-space: nowrap;
}

#section05 .wrapper .flex .cont .about_ul{

}

#section05 .wrapper .flex .cont .about_ul > li{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #e4e4e4;
}

#section05 .wrapper .flex .cont .about_ul > li:first-child{
    border-top: 1px solid #e4e4e4;
}

#section05 .wrapper .flex .cont .about_ul > li .title{
	width: 200px;
	font-size: 14px;
	font-weight: 500;
	color: #858585;
	letter-spacing: 0.05em;
}

#section05 .wrapper .flex .cont .about_ul > li .data{
	width: calc(100% - 200px);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-left: 1px solid #e4e4e4;
	padding-left: 20px;
	box-sizing: border-box;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay{

}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li{
	margin-bottom: 8px;
	font-weight: 500;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li:last-child{
	margin-bottom: 0;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li small{
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding-left: 1.2em;
	position: relative;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li small::before{
	content: '※';
	display: inline-block;
	position: absolute;
    top: 0;
    left: 0;
}



#section06{
    padding: 80px 0 120px;
}

#section06 .wrapper{
	position: relative;
	z-index: 2;
}

#section06 .h2_wrapp{
	width: 480px;
	margin: 0 auto 60px;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

#section06 h2{
	width: calc(100% - 160px);
	line-height: 1;
	text-align: left;
	margin-bottom: 0;
	padding-top: 45px;
}

#section06 h2 strong{
	display: inline-block;
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 2;
}

#section06 h2 strong::after{
    content: 'CONTACT';
    display: inline-block;
    font-size: 74px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(251, 223, 0, 0.6);
    position: absolute;
    top: -45px;
    left: -80px;
    z-index: -1;
    text-shadow: none;
    white-space: nowrap;
    transform: rotate(-8deg);
}

#section06 .h2_wrapp .icon{
	width: 160px;
	position: relative;
    z-index: 3;
}

#section06 .caption{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.75;
	text-align: center;
	margin-bottom: 60px;
}

#section06 .form_wrapp{
	width: 760px;
	margin: 0 auto;
}

#section06 .form_wrapp .form_ul{
	margin-bottom: 30px;
}

#section06 .form_wrapp .form_ul > li{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 22px;
}

#section06 .form_wrapp .form_ul > li:last-child{
    margin-bottom: 0;
}

#section06 .form_wrapp .form_ul > li .item{
	width: 200px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
	padding-top: 14px;
}

#section06 .form_wrapp .form_ul > li.required .item::after{
	content: '必須';
	display: inline-block;
	background: #ff0000;
	height: 16px;
	line-height: 16px;
	padding: 0 8px;
	border-radius: 4px;
	font-size: 10px;
	color: #fff;
	position: absolute;
	top: 19px;
    right: 20px;
}

#section06 .form_wrapp .form_ul > li:first-child{
	margin-bottom: 35px;
}

#section06 .form_wrapp .form_ul > li:first-child .item{
	padding: 0;
}

#section06 .form_wrapp .form_ul > li:first-child.required:first-child .item::after{
	top: 5px;
}

#section06 .form_wrapp .form_ul > li .cont{
	width: calc(100% - 200px);
}

#section06 .form_wrapp .form_ul > li .cont ul.radio{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li{
	font-size: 18px;
	font-weight: 700;
	margin-right: 22px;
	position: relative;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li:last-child{
	margin-right: 0;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label{
	display: inline-block;
	padding-left: 32px;
	position: relative;
	cursor: pointer;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label input{
	display: none;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label::before{
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 1px solid #181818;
	border-radius: 50%;
	position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label:has(input:checked)::after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #f87796;
	border-radius: 50%;
	position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
}

textarea,
input[type="text"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#section06 .form_wrapp .form_ul > li .cont textarea,
#section06 .form_wrapp .form_ul > li .cont input[type="text"]{
	width: 100%;
	border: 1px solid #181818;
	padding: 14px;
	font-size: 16px;
	border-radius: 4px;
	box-sizing: border-box;
}

#section06 .form_wrapp .form_ul > li .cont textarea:focus,
#section06 .form_wrapp .form_ul > li .cont input[type="text"]:focus{
	background: #feedf1;
	border: 1px solid #f87796;
}

::placeholder{
	color: #dadada;
}

#section06 .form_wrapp .note{
	text-align: center;
	margin-bottom: 40px;
}

#section06 .form_wrapp .note p{
	display: inline-block;
	text-align: left;
	font-size: 13px;
	font-weight: 500;
	color: #ff0000;
	padding-left: 1.2em;
	position: relative;
}

#section06 .form_wrapp .note p::before{
	content: '※';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

#section06 .form_wrapp .submit ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

#section06 .form_wrapp .submit ul li{
	margin: 0 14px;
}

#section06 .form_wrapp .submit ul li input[type="submit"]{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 200px;
	height: 68px;
	line-height: 68px;
	background: var(--color01);
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
	border-radius: 6px;
	border: 1px solid #f87796;
    cursor: pointer;
}

#section06 .form_wrapp .submit ul li input[type="reset"]{
	width: 160px;
	height: 48px;
	line-height: 48px;
	border-radius: 6px;
}



.a_trigger .wrapper{
	opacity: 0;
	/*transform: translateX(0);*/
}

.a_trigger.active .wrapper{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

#section02.a_trigger.active .wrapper{
	animation-name: fadeinLeft;
}

#section03.a_trigger.active .wrapper{
	animation-name: fadeinRight;
}


@keyframes fadein{
  0% {
     opacity: 0;
     transform: translateX(0);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

@keyframes fadeinLeft {
  0% {
     opacity: 0;
     transform: translateX(-60px);
  }
  100% {
     opacity: 1;
     transform: translateX(0px);
  }
}

@keyframes fadeinRight {
  0% {
     opacity: 0;
     transform: translateX(60px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}


#page-top{
	width: 70px;
	position: fixed;
	bottom: 40px;
	right: 30px;
	cursor: pointer;
	transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    z-index: 999;
}



.thanks_cont{
	margin: 80px 0 150px;
	text-align: center;
}

.thanks_cont .icon{
	width: 300px;
	margin: 0 auto 40px;
}

.thanks_cont .main{
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 60px;
}

.thanks_cont .sub{
	margin-bottom: 60px;
}

.thanks_cont .sub p{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 1em;
}

.thanks_cont .sub p:last-of-type{
	margin-bottom: 0;
}

.thanks_cont .home_link{
	width: 280px;
	margin: 0 auto;
}

.thanks_cont .home_link a{
    display: block;
    height: 64px;
    line-height: 64px;
    border-radius: 64px;
    background: #fff;
    border: 2px solid #facb03;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    position: relative;
}

.thanks_cont .home_link a::after {
    content: '';
    border: 8px solid transparent;
    border-right: 13px solid #facb03;
    position: absolute;
    top: 42%;
    left: 18px;
}

.thanks_cont .home_link a:hover{
	opacity: 0.8;
}

.zeronyan_pr{
	width: 500px;
	margin: 60px auto 0;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.zeronyan_pr .image{
	width: 200px;
}

.zeronyan_pr .text{
	width: calc(100% - 200px);
	padding-left: 30px;
	box-sizing: border-box;
	font-weight: 500;
}

.zeronyan_pr .text strong{
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.05em;
}





/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1280px){


body{
	font-size: 1.25vw;
}

.wrapper{
	width: 90.625vw;
}

/* --------- ヘッダー ---------- */

header{
	padding: 1.25vw 0;
}

header .wrapper .logo{
	width: 21.875vw;
}

header .wrapper .link ul li{
	margin-left: 2.03125vw;
}

header .wrapper .link ul li a{
	height: 2.5vw;
	line-height: 2.5vw;
	border-radius: 2.5vw;
	padding: 0 2.5vw 0 0.9375vw;
	font-size: 1.40625vw;
}

header .wrapper .link ul li a::after{
    border: 0.3125vw solid transparent;
    border-top: 0.46875vw solid #f75b81;
	right: 0.9375vw;

}

footer{
	padding: 1.25vw 0;
}

footer .copyright{
	font-size: 0.9375vw;
}


main{
	padding-top: 7.421875vw;	
}

.kv_area{
	height: 35.9375vw;
}


.fukidashi01{
	width: 23.4375vw;
    top: 2.34375vw;
    right: 30.46875vw;
}

.kv_area .zeronyan01{
	width: 36.71875vw;
    top: 4.6875vw;
}

.kv_area .text_box .catch{
    font-size: 2.109375vw;
    margin-bottom: 4.375vw;
}

.kv_area .text_box .caption{
	font-size: 1.484375vw;
	margin-bottom: 1.875vw;
}

.kv_area .text_box .caption strong[data-ruby]::before {
    font-size: 2.03125vw;
    top: -1.171875vw;
}

.kv_area .text_box .kv_logo{
	width: 35.9375vw;
}


#section01{
	padding: 6.25vw 0 9.375vw;
}

#section01 h2{
	margin-bottom: 4.6875vw;
}

#section01 h2 strong{
	font-size: 3.59375vw;
	text-shadow: 0.15625vw 0.15625vw 0.390625vw rgba(0, 0, 0, 0.7);
}

#section01 h2 strong::after{
    font-size: 5.78125vw;
    top: -2.578125vw;
    left: -9.375vw;
}

#section01 .catch::after{
	width: 12.5vw;
	height: 7.890625vw;
    top: 3.359375vw;
    right: 7.8125vw;
}

#section01 .catch{
	margin-bottom: 4.6875vw;
}

#section01 .catch p{
	font-size: 1.875vw;
}

#section01 .catch p strong{
	font-size: 3.4375vw;
	text-shadow: 0.15625vw 0.15625vw 0.15625vw rgba(0, 0, 0, 0.7);
}

#section01 .catch p strong[data-ruby]::before {
    font-size: 3.4375vw;
    top: -3.4375vw;
}

#section01 .trouble_ul{
    margin-bottom: 4.6875vw;
}

#section01 .trouble_ul li{
	width: 17.1875vw;
	height: 17.1875vw;
	border-radius: 0.46875vw;
	margin: 0 1.09375vw;
	box-shadow: 0.15625vw 0.15625vw 0.703125vw -0.390625vw #777777;
}

#section01 .trouble_ul li .cont{
    width: 14.0625vw;
}

#section01 .trouble_ul li .cont .sub{
	font-size: 1.25vw;
	margin-bottom: 0.625vw;
}

#section01 .trouble_ul li .cont .main{
	font-size: 1.5625vw;
	margin-bottom: 0.625vw;
}

#section01 .trouble_ul li .cont .icon{
	width: 9.375vw;
}

#section01 .troubl_copy{
	font-size: 1.5625vw;
	margin-bottom: 6.25vw;
	text-shadow: 1px 1px 0.15625vw rgba(255, 255, 255, 0.7);
}

#section01 .troubl_copy strong{
	text-shadow: 0.15625vw 0.15625vw 0.390625vw rgba(0, 0, 0, 0.7);
}

#section01 .logo01{
	width: 18.75vw;
	margin: 0 auto 4.6875vw;
}

#section01 .function_block .b_title{
	margin-bottom: 4.6875vw;
}

#section01 .function_block .b_title strong{
	font-size: 1.71875vw;
	border-top: solid 0.15625vw black;
	border-bottom: solid 0.15625vw black;
	text-shadow: 1px 1px 0.15625vw rgba(255, 255, 255, 0.9);
}

#section01 .function_block .b_title strong:before,
#section01 .function_block .b_title strong:after {
	top: -0.546875vw;
	width: 0.15625vw;
	height: calc(100% + 1.09375vw);
}

#section01 .function_block .b_title strong:before {
	left: 0.546875vw;
}

#section01 .function_block .b_title strong:after {
	right: 0.546875vw;
}

#section01 .function_block .function_ul{
	width: 76.5625vw;
    margin-bottom: 2.34375vw;
}

#section01 .function_block .function_ul li{
	margin: 0 2% 1.953125vw 0;
	padding: 1.09375vw;
	border-radius: 0.46875vw;
	box-shadow: 0.15625vw 0.15625vw 0.703125vw -0.390625vw #777777;
}

#section01 .function_block .function_ul li::after{
	width: 3.515625vw;
	height: 5vw;
	top: -1.5625vw;
	right: -1.328125vw;
}

#section01 .function_block .function_ul li .title{
	font-size: 1.875vw;
	padding-bottom: 0.625vw;
	margin-bottom: 0.78125vw;
	text-shadow: 0.15625vw 0.15625vw 0.15625vw rgba(255, 255, 255, 1);
}

#section01 .function_block .function_ul li .caption{
	font-size: 1.25vw;
	margin: 0 0.625vw;
}

#section01 .function_block .sarani{
	font-size: 2.8125vw;
	margin-bottom: 3.125vw;
}

#section01 .ad_features .flex{
	width: 76.5625vw;
	margin: 0 auto 2.34375vw;
	padding: 2.5vw;
	border-radius: 0.625vw;
	margin-bottom: 4.6875vw;
	box-shadow: 0.15625vw 0.15625vw 0.703125vw -0.390625vw #777777;
}

#section01 .ad_features .flex::after{
    width: 7.734375vw;
    height: 10.9375vw;
    top: 0.78125vw;
    right: 1.875vw;
}

#section01 .ad_features .flex .text_block{
	width: calc(100% - 25.78125vw);
	padding-left: 3.125vw;
}

#section01 .ad_features .flex .text_block .sub{
	font-size: 1.875vw;
	margin-bottom: 1.09375vw;
}

#section01 .ad_features .flex .text_block .ad_title{
	font-size: 3.4375vw;
    text-shadow: 0.15625vw 0.15625vw 0.234375vw rgba(159, 159, 159, 0.7);
	margin-bottom: 2.34375vw;
}

#section01 .ad_features .flex .text_block .caption{
	font-size: 1.25vw;
}

#section01 .ad_features .flex .image_box{
	width: 25.78125vw;
}

#section01 .ad_features .catch_block .ad_logo{
	width: 25vw;
}

#section01 .ad_features .catch_block p{
	font-size: 1.25vw;
	margin-left: 1.40625vw;
}

#section01 .option{
	margin-bottom: 4.6875vw;
}

#section01 .option p{
	font-size: 1.875vw;
	margin-bottom: 1.5625vw;
}

#section01 .option p strong{
	text-shadow: 0.15625vw 0.15625vw 0.390625vw rgba(101, 101, 101, 0.7);
}

#section01 .option .option_link a{
	height: 5vw;
	line-height: 5vw;
	border-radius: 5vw;
	border: 0.15625vw solid #facb03;
	padding: 0 3.75vw 0 1.875vw;
	font-size: 1.40625vw;
}

#section01 .option .option_link a::after{
    border: 0.625vw solid transparent;
    border-top: 1.015625vw solid #facb03;
    right: 1.40625vw;
}



#section02{
    padding: 6.25vw 0 9.375vw;
}

#section02 .wrapper .flex{
    width: 76.5625vw;
}

#section02 .wrapper .flex .text_box{
	width: calc(100% - 29.6875vw);
	padding-right: 3.125vw;
}

#section02 .wrapper .flex .image_box{
	width: 29.6875vw;
}

#section02 .wrapper .flex .image_box .image_wrapp{
    top: 10.9375vw;
}

#section02 h2{
	margin-bottom: 4.6875vw;
}

#section02 h2 strong{
	font-size: 3.59375vw;
}

#section02 h2 strong::after{
    font-size: 5.78125vw;
    top: -3.359375vw;
    right: -17.1875vw;
}

#section02 .wrapper .flex .text_box ul li{
	margin-bottom: 2.65625vw;
}

#section02 .wrapper .flex .text_box ul li strong{
	font-size: 1.875vw;
	margin-bottom: 0.9375vw;
}

#section02 .wrapper .flex .text_box ul li p{
	font-size: 1.25vw;
}

#section02 .wrapper .concept_catch{
	font-size: 2.34375vw;
	margin-top: 4.6875vw;
}



#section03{
	padding: 6.25vw 0 9.375vw;
}

#section03 h2{
	margin-bottom: 4.6875vw;
}

#section03 h2 strong{
	font-size: 3.59375vw;
	text-shadow: 0.15625vw 0.15625vw 0.390625vw rgba(0, 0, 0, 0.7);
}

#section03 h2 strong::after{
    font-size: 5.78125vw;
    top: -2.578125vw;
    left: -9.375vw;
}

#section03 .price_box{
	width: 76.5625vw;
	padding: 1.875vw;
	border-radius: 0.46875vw;
}

#section03 .price_box .image_box{
	width: 23.4375vw;
}

#section03 .price_box .text_box{
	width: calc(100% - 23.4375vw);
	padding-left: 3.125vw;
}

#section03 .price_box .text_box .sub{
	font-size: 1.5625vw;
	margin-bottom: 1.09375vw;
}

#section03 .price_box .text_box .main{
	font-size: 1.5625vw;
	margin-bottom: 1.40625vw;
}

#section03 .price_box .text_box .note li{
	font-size: 1.015625vw;
	margin-bottom: 0.3125vw;
}



#section04{
	padding: 6.25vw 0 9.375vw;
}

#section04 h2{
	margin-bottom: 4.6875vw;
}

#section04 h2 strong{
	font-size: 3.59375vw;
}

#section04 h2 strong::after{
    font-size: 5.78125vw;
	top: -3.359375vw;
    left: -4.6875vw;
}

#section04 .option_head{
	margin: 7.8125vw 0 7.03125vw;
}

#section04 .option_head .catch{
	font-size: 1.71875vw;
	margin-bottom: 2.96875vw;
}

#section04 .option_head .zl_logo{
	width: 46.875vw;
	margin: 0 auto 2.34375vw;
}

#section04 .option_head .name{
	font-size: 1.40625vw;
}

#section04 .option_cont{
	width: 76.5625vw;
}

#section04 .option_cont .image_box{
	width: 28.125vw;
}

#section04 .option_cont .image_box .icon{
    width: 18.75vw;
    right: 2.34375vw;
}

#section04 .option_cont .text_box{
	width: calc(100% - 28.125vw);
}

#section04 .option_cont .text_box .op_title{
	font-size: 2.03125vw;
	margin-bottom: 1.875vw;
	padding-left: 1.40625vw;
	border-left: 0.46875vw solid #205c99;
}

#section04 .option_cont .text_box .option_ul01{
    margin-bottom: 2.34375vw;
}

#section04 .option_cont .text_box .option_ul01 li{
	width: 14.0625vw;
	height: 14.0625vw;
	margin: 0 1.25vw 1.40625vw 0;
	border-radius: 0.625vw;
	box-shadow: 0.390625vw 0.390625vw 0.703125vw 1px rgba(255, 255, 255, 0.3) inset, -0.390625vw -0.390625vw 0.703125vw 1px rgba(0, 0, 0, 0.3) inset;
}

#section04 .option_cont .text_box .option_ul01 li .wrapp{
    font-size: 1.25vw;
}

#section04 .option_cont .text_box .in_text{
	margin-right: 3.125vw;
}

#section04 .option_cont .text_box .in_text .kizuna_code .title,
#section04 .option_cont .text_box .in_text .sub_title{
	font-size: 1.71875vw;
	margin-bottom: 1.875vw;
}

#section04 .option_cont .text_box .in_text .kizuna_code .title::before,
#section04 .option_cont .text_box .in_text .sub_title::before{
	width: 2.109375vw;
	height: 1.953125vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01{
	margin: 0 0 3.125vw 3.125vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li{
    margin-bottom: 1.25vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li .item{
	width: 12.5vw;
	font-size: 1.25vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li .cont{
	width: calc(100% - 12.5vw);
	font-size: 1.09375vw;
}

#section04 .option_cont .text_box .in_text .kizuna_code .caption{
	margin-left: 3.125vw;
	font-size: 1.09375vw;
}

#section04 .option_other_catch{
	font-size: 2.34375vw;
	margin-top: 4.6875vw;
}



#section05{
    padding: 6.25vw 0 9.375vw;
}

#section05 .wrapper .flex{
    width: 76.5625vw;
}

#section05 .wrapper .flex .item{
	width: 31.25vw;
	padding-right: 3.125vw;
}

#section05 .wrapper .flex .item .caption{
	font-size: 1.25vw;
}

#section05 .wrapper .flex .cont{
	width: calc(100% - 31.25vw);
}

#section05 h2{
	margin-bottom: 4.6875vw;
}

#section05 h2 strong{
	font-size: 3.59375vw;
}

#section05 h2 strong::after{
    font-size: 5.78125vw;
    top: -3.359375vw;
    right: -17.1875vw;
}

#section05 .wrapper .flex .cont .about_ul > li{
    padding: 1.09375vw 0;
}

#section05 .wrapper .flex .cont .about_ul > li .title{
	width: 15.625vw;
	font-size: 1.09375vw;
}

#section05 .wrapper .flex .cont .about_ul > li .data{
	width: calc(100% - 15.625vw);
	font-size: 1.171875vw;
	padding-left: 1.5625vw;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li{
	margin-bottom: 0.625vw;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li small{
	font-size: 0.9375vw;
}



#section06{
    padding: 6.25vw 0 9.375vw;
}

#section06 .h2_wrapp{
	width: 37.5vw;
	margin: 0 auto 4.6875vw;
}

#section06 h2{
	width: calc(100% - 12.5vw);
	padding-top: 3.515625vw;
}

#section06 h2 strong{
	font-size: 3.59375vw;
}

#section06 h2 strong::after{
    font-size: 5.78125vw;
    top: -3.515625vw;
    left: -6.25vw;
}

#section06 .h2_wrapp .icon{
	width: 12.5vw;
}

#section06 .caption{
	font-size: 1.40625vw;
	margin-bottom: 4.6875vw;
}

#section06 .form_wrapp{
	width: 59.375vw;
}

#section06 .form_wrapp .form_ul{
	margin-bottom: 2.34375vw;
}

#section06 .form_wrapp .form_ul > li{
    margin-bottom: 1.71875vw;
}

#section06 .form_wrapp .form_ul > li .item{
	width: 15.625vw;
	font-size: 1.25vw;
	padding-top: 1.09375vw;
}

#section06 .form_wrapp .form_ul > li.required .item::after{
	height: 1.25vw;
	line-height: 1.25vw;
	padding: 0 0.625vw;
	border-radius: 0.3125vw;
	font-size: 0.78125vw;
	top: 1.484375vw;
    right: 1.5625vw;
}

#section06 .form_wrapp .form_ul > li:first-child{
	margin-bottom: 2.734375vw;
}

#section06 .form_wrapp .form_ul > li:first-child.required:first-child .item::after{
	top: 0.390625vw;
}

#section06 .form_wrapp .form_ul > li .cont{
	width: calc(100% - 15.625vw);
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li{
	font-size: 1.40625vw;
	margin-right: 1.71875vw;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label{
	padding-left: 2.5vw;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label::before{
	width: 1.71875vw;
	height: 1.71875vw;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label:has(input:checked)::after{
	width: 1.09375vw;
	height: 1.09375vw;
    left: 0.390625vw;
}

#section06 .form_wrapp .form_ul > li .cont textarea,
#section06 .form_wrapp .form_ul > li .cont input[type="text"]{
	padding: 1.09375vw;
	font-size: 1.25vw;
	border-radius: 0.3125vw;
}

#section06 .form_wrapp .note{
	margin-bottom: 3.125vw;
}

#section06 .form_wrapp .note p{
	font-size: 1.015625vw;
}

#section06 .form_wrapp .submit ul li{
	margin: 0 1.09375vw;
}

#section06 .form_wrapp .submit ul li input[type="submit"]{
	width: 15.625vw;
	height: 5.3125vw;
	line-height: 5.3125vw;
	font-size: 2.03125vw;
	border-radius: 0.46875vw;
}

#section06 .form_wrapp .submit ul li input[type="reset"]{
	width: 12.5vw;
	height: 3.75vw;
	line-height: 3.75vw;
	border-radius: 0.46875vw;
}



#page-top{
	width: 5.46875vw;
	bottom: 3.125vw;
	right: 2.34375vw;
}



.thanks_cont{
	margin: 6.25vw 0 11.71875vw;
}

.thanks_cont .icon{
	width: 23.4375vw;
	margin: 0 auto 3.125vw;
}

.thanks_cont .main{
	font-size: 1.875vw;
	margin-bottom: 4.6875vw;
}

.thanks_cont .sub{
	margin-bottom: 4.6875vw;
}

.thanks_cont .sub p{
	font-size: 1.25vw;
}

.thanks_cont .home_link{
	width: 21.875vw;
}

.thanks_cont .home_link a{
    height: 5vw;
    line-height: 5vw;
    border-radius: 5vw;
    border: 0.15625vw solid #facb03;
    font-size: 1.40625vw;
}

.thanks_cont .home_link a::after {
    border: 0.625vw solid transparent;
    border-right: 1.015625vw solid #facb03;
    left: 1.40625vw;
}



.zeronyan_pr{
	width: 39.0625vw;
	margin: 4.6875vw auto 0;
}

.zeronyan_pr .image{
	width: 15.625vw;
}

.zeronyan_pr .text{
	width: calc(100% - 15.625vw);
	padding-left: 2.34375vw;
}

.zeronyan_pr .text strong{
	font-size: 2.5vw;
}




}


/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

body{
	font-size: 3.589744vw;
	line-height: 1.5;
}

.pc-on{display: none;}
.sp-on{display: block;}

.wrapper{
	width: auto;
}



/* --------- ヘッダー ---------- */

header{
	padding: 0;
	height: 22.666667vw;
}

header .wrapper{
	display: block;
}

header .wrapper .logo{
	width: 64vw;
	position: absolute;
	top: 50%;
	left: 5.333333vw;
	transform: translate(0, -50%);
}

header .nav_btn{
	width: 13.333333vw;
	height: 13.333333vw;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 5.333333vw;
	transform: translate(0, -50%);
	z-index: 10;
}

header .btn_wrapp{
	width: 6.4vw;
	height: 4.8vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.2s linear;
}

header .btn_wrapp span{
	display: block;
	width: 100%;
	height: 0.533333vw;
	background: rgba(252, 119, 150, 1.0);
	position: absolute;
	left: 0;
	transition: all 0.2s linear;
}

header .btn_wrapp span:nth-of-type(1){
	top: 0;
}

header .btn_wrapp span:nth-of-type(2){
	top: 2.4vw;
}

header .btn_wrapp span:nth-of-type(3){
	top: 4.8vw;
}

header .open .btn_wrapp span:nth-of-type(1){
	top: 2.4vw;
	transform: rotate(45deg);
}

header .open .btn_wrapp span:nth-of-type(2){
	display: none;
}

header .open .btn_wrapp span:nth-of-type(3){
	top: 2.4vw;
	transform: rotate(-45deg);
}


.g_nav_wrapp {
	position: fixed;
	top: 22.666667vw;
	left: 0;
	right: 0;
	height: auto;
	overflow-x: scroll;
}

header .wrapper .link ul{
	display: block;
	background: #fff;
	padding: 3.733333vw;
}

header .wrapper .link ul li{
	margin: 0 0 3.733333vw;
}

header .wrapper .link ul li:last-child{
	margin-botom: 0;
}

header .wrapper .link ul li a{
	display: block;
	height: auto;
	line-height: 1;
	border-radius: 0;
	background: #fff;
	padding: 4.266667vw 3.733333vw;
	font-size: 5.866667vw;
}

header .wrapper .link ul li a::after{
	content: '';
    border: 2.133333vw solid transparent;
    border-top: 2.666667vw solid #f75b81;
    position: absolute;
    top: 50%;
	right: 3.2vw;
	transform: translate(0, -50%);

}

footer{
	background: var(--color01);
	padding: 4.266667vw 0;
	text-align: center;
}

footer .copyright{
	font-size: 2.666667vw;
}


main{
	padding-top: 22.666667vw;	
}

.kv_area{
	height: calc(100dvh - 22.666667vw);
	overflow: hidden;
}

.fukidashi01{
	width: 56vw;
	top: unset;
	right: unset;
	bottom: 45.333333vw;
	left: 5.333333vw;
}

.kv_area .zeronyan01{
	width: 69.333333vw;
    top: unset;
    bottom: 8vw;
    right: 0;
}

.kv_area .text_box{
    top: 7%;
    left: 0;
    right: 0;
    transform: translate(0, 0);
}

.kv_area .text_box .catch{
    font-size: 5.333333vw;
    text-align: center;
    margin-bottom: 9.6vw;
}

.kv_area .text_box .caption{
	font-size: 3.733333vw;
    text-align: center;
	margin-bottom: 6.4vw;
}

.kv_area .text_box .caption strong[data-ruby]::before {
    font-size: 5.066667vw;
    top: -3.466667vw;
}

.kv_area .text_box .kv_logo{
	width: 80%;
	margin: 0 auto;
}


#section01{
	padding: 16vw 0 26.666667vw;
	overflow: hidden;
}

#section01::after{
	background: linear-gradient(180deg, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
}

#section01 h2{
	margin-bottom: 10.666667vw;
}

#section01 h2 strong{
	font-size: 8vw;
	text-shadow: 0.533333vw 0.533333vw 1.333333vw rgba(0, 0, 0, 0.7);
}

#section01 h2 strong::after{
    font-size: 14.4vw;;
    top: -8vw;
    left: -8vw;
	transform: rotate(0deg);
}

#section01 .catch::after{
	width: 26.666667vw;
	height: 17.066667vw;
	top: 29.866667vw;
	right: 6.133333vw;
}

#section01 .catch{
	text-align: center;
	margin-bottom: 10.666667vw;
}

#section01 .catch p{
	font-size: 4.8vw;
	line-height: 1.8;
}

#section01 .catch p strong{
	font-size: 9.333333vw;
	text-shadow: 0.533333vw 0.533333vw 0.533333vw rgba(0, 0, 0, 0.7);
}

#section01 .catch p strong[data-ruby]::before {
    font-size: 9.333333vw;
    top: -9.066667vw;
}

#section01 .trouble_ul{
	flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 5.333333vw 10.666667vw;
}

#section01 .trouble_ul li{
	width: 48%;
	height: 58.666667vw;
	border-radius: 1.6vw;
	padding: 3.2vw;
	box-sizing: border-box;
	margin: 0 0 4.8vw;
	box-shadow: 0.533333vw 0.533333vw 2.4vw -1.333333vw #777777;
}

#section01 .trouble_ul li .cont{
    width: auto;
	position: static;
    transform: translate(0, 0);
}

#section01 .trouble_ul li .cont .sub{
	font-size: 3.733333vw;
	margin-bottom: 2.666667vw;
}

#section01 .trouble_ul li .cont .main{
	font-size: 4.266667vw;
	margin-bottom: 2.666667vw;
}

#section01 .trouble_ul li .cont .icon{
	width: auto;
}

#section01 .troubl_copy{
	font-size: 4.266667vw;
	margin-bottom: 16vw;
	text-shadow: 1px 1px 0.533333vw rgba(255, 255, 255, 0.7);
}

#section01 .troubl_copy strong{
	font-size: 1.8em;
	text-shadow: 0.533333vw 0.533333vw 1.333333vw rgba(0, 0, 0, 0.7);
}

#section01 .logo01{
	width: 64vw;
	margin: 0 auto 16vw;
}

#section01 .function_block .b_title{
	margin-bottom: 10.666667vw;
}

#section01 .function_block .b_title strong{
	font-size: 5.333333vw;
	border-top: solid 0.533333vw black;
	border-bottom: solid 0.533333vw black;
	text-shadow: 1px 1px 0.533333vw rgba(255, 255, 255, 0.9);
}

#section01 .function_block .b_title strong:before,
#section01 .function_block .b_title strong:after {
	top: -1.866667vw;
	width: 0.533333vw;
	height: calc(100% + 3.733333vw);
}

#section01 .function_block .b_title strong:before {
	left: 1.866667vw;
}

#section01 .function_block .b_title strong:after {
	right: 1.866667vw;
}

#section01 .function_block .function_ul{
	width: auto;
	margin: 0 5.333333vw;
	justify-content: space-between;
    margin-bottom: 8vw;
}

#section01 .function_block .function_ul li{
	width: 48%;
	height: 64vw !important;
	margin: 0 0 7.466667vw;
	padding: 3.2vw;
	border-radius: 6px;
	box-shadow: 2px 2px 9px -5px #777777;
	position: relative;
}

#section01 .function_block .function_ul li::after{
	width: 12vw;
	height: 17.066667vw;
	top: -5.333333vw;
	right: -4.533333vw;
}

#section01 .function_block .function_ul li .title{
	font-size: 4.533333vw;
	letter-spacing: 0.05em;
	padding-bottom: 2.133333vw;
	margin-bottom: 2.666667vw;
	text-shadow: 0.533333vw 0.533333vw 0.533333vw rgba(255, 255, 255, 1);
}

#section01 .function_block .function_ul li .caption{
	font-size: 3.733333vw;
	margin: 0;
}

#section01 .function_block .sarani{
	font-size: 9.6vw;
	margin-bottom: 10.666667vw;
}

#section01 .ad_features .flex{
	width: auto;
	margin: 0 5.333333vw 8vw;
	padding: 3.733333vw;
	border-radius: 1.6vw;
	margin-bottom: 10.666667vw;
	display: block;
	box-shadow: 0.533333vw 0.533333vw 2.4vw -1.333333vw #777777;
}

#section01 .ad_features .flex::after{
    width: 13.333333vw;
    height: 18.933333vw;
    top: 3.733333vw;
    right: 3.2vw;
}

#section01 .ad_features .flex .text_block{
	width: auto;
	padding-left: 0;
	margin-bottom: 4.8vw;
}

#section01 .ad_features .flex .text_block .sub{
	font-size: 6.4vw;
	line-height: 1.2;
	margin-bottom: 6.4vw;
}

#section01 .ad_features .flex .text_block .ad_title{
	font-size: 10.133333vw;
    text-shadow: 0.533333vw 0.533333vw 0.8vw rgba(159, 159, 159, 0.7);
	margin-bottom: 8vw;
}

#section01 .ad_features .flex .text_block .caption{
	font-size: 4.266667vw;
}

#section01 .ad_features .flex .image_box{
	width: auto;
	padding: 4.8vw;
}

#section01 .ad_features .catch_block{
	display: block;
	margin: 0 5.333333vw;
}

#section01 .ad_features .catch_block .ad_logo{
	width: 64vw;
	margin: 0 auto 3.2vw;
}

#section01 .ad_features .catch_block p{
	font-size: 3.733333vw;
	text-align: center;
	margin-left: 0;
}

#section01 .option{
	margin-bottom: 10.666667vw;
}

#section01 .option p{
	font-size: 5.333333vw;
	margin-bottom: 5.333333vw;
}

#section01 .option p strong{
	text-shadow: 0.533333vw 0.533333vw 1.333333vw rgba(101, 101, 101, 0.7);
}

#section01 .option .option_link a{
	height: 15.466667vw;
	line-height: 15.466667vw;
	border-radius: 15.466667vw;
	border: 0.533333vw solid #facb03;
	padding: 0 12.8vw 0 6.4vw;
	font-size: 4.266667vw;
}

#section01 .option .option_link a:hover{
	opacity: 1;
}

#section01 .option .option_link a::after{
    border: 1.866667vw solid transparent;
    border-top: 2.933333vw solid #facb03;
    right: 4.8vw;
}



#section02{
    padding: 16vw 0 26.666667vw;
}

#section02 .wrapper .flex{
	display: block;
    width: auto;
    margin: 0 5.333333vw;
}

#section02 .wrapper .flex .text_box,
#section02 .wrapper .flex .image_box{
	display: block;
}

#section02 .wrapper .flex .text_box{
	width: auto;
	padding-right: 0;
}

#section02 .wrapper .flex .image_box{
	width: auto;
}

#section02 .wrapper .flex .image_box .image_wrapp{
    position: relative;
    top: 0;
}

#section02 h2{
	margin-bottom: 10.666667vw;
}

#section02 h2 strong{
	font-size: 8vw;
}

#section02 h2 strong::after{
	font-size: 14.4vw;
	top: -8vw;
	left: -8vw;
}

#section02 .wrapper .flex .text_box ul li{
	margin-bottom: 9.066667vw;
}

#section02 .wrapper .flex .text_box ul li strong{
	font-size: 5.333333vw;
	margin-bottom: 3.2vw;
}

#section02 .wrapper .flex .text_box ul li p{
	font-size: 4.266667vw;
}


#section02 .wrapper .concept_catch{
	font-size: 4.8vw;
	margin-top: 8vw;
}



#section03{
	padding: 16vw 0 26.666667vw;
}

#section03 h2{
	margin-bottom: 10.666667vw;
}

#section03 h2 strong{
	font-size: 8vw;
	text-shadow: 0.533333vw 0.533333vw 1.333333vw rgba(0, 0, 0, 0.7);
}

#section03 h2 strong::after{
	font-size: 14.4vw;
	top: -8vw;
	left: -8vw;
	transform: rotate(0deg);
}

#section03 .price_box{
	width: auto;
	margin: 0 5.333333vw;
	padding: 3.2vw;
	border-radius: 1.066667vw;
	display: block;
}

#section03 .price_box .image_box{
	width: auto;
	padding: 3.733333vw;
}

#section03 .price_box .text_box{
	width: auto;
	padding-left: 0;
	margin-bottom: 5.333333vw;
}

#section03 .price_box .text_box .sub{
	font-size: 4.8vw;
	line-height: 1.75;
	margin-bottom: 3.2vw;
	text-align: center;
}

#section03 .price_box .text_box .main{
	font-size: 4.8vw;
	line-height: 1.75;
	margin-bottom: 4.8vw;
	text-align: center;
}

#section03 .price_box .text_box .note li{
	font-size: 3.2vw;
	margin-bottom: 1.066667vw;
}



#section04{
	padding: 16vw 0 26.666667vw;
}

#section04 h2{
	margin-bottom: 10.666667vw;
}

#section04 h2 strong{
	font-size: 8vw;
	line-height: 1.4;
}

#section04 h2 strong::after{
    font-size: 14.4vw;
	top: -7.466667vw;
    left: -10.666667vw;
}

#section04 .option_head{
	margin: 10.666667vw 0;
}

#section04 .option_head .catch{
	font-size: 4.266667vw;
	line-height: 1.5;
	margin-bottom: 4.8vw;
}

#section04 .option_head .zl_logo{
	width: 80%;
	margin: 0 auto 30px;
}

#section04 .option_head .name{
	font-size: 4.266667vw;
	line-height: 1.5;
}

#section04 .option_head .name strong{
	font-size: 1.6em;
}

#section04 .option_cont{
	width: auto;
	margin: 0 5.333333vw;
	display: block;
}

#section04 .option_cont .image_box{
	width: auto;
}

#section04 .option_cont .image_box .icon{
    width: 24vw;
    bottom: 10.666667vw;
    right: 2.666667vw;
}

#section04 .option_cont .text_box{
	width: auto;
	margin-bottom: 8vw;
}

#section04 .option_cont .text_box .op_title{
	font-size: 5.333333vw;
	margin-bottom: 6.4vw;
	padding-left: 3.2vw;
	border-left: 1.6vw solid #205c99;
}

#section04 .option_cont .text_box .option_ul01{
	display: block;
    margin-bottom: 10.666667vw;
}

#section04 .option_cont .text_box .option_ul01 li{
	width: auto;
	height: auto;
	margin: 0 0 4.8vw;
	border-radius: 1.6vw;
	box-shadow: 1.333333vw 1.333333vw 2.4vw 1px rgba(255, 255, 255, 0.3) inset, -1.333333vw -1.333333vw 2.4vw 1px rgba(0, 0, 0, 0.3) inset;
}

#section04 .option_cont .text_box .option_ul01 li .wrapp{
    position: static;
    transform: translate(-0, 0);
    font-size: 4.266667vw;
    padding: 3.733333vw;
}

#section04 .option_cont .text_box .in_text{
	margin-right: 0;
}

#section04 .option_cont .text_box .in_text .kizuna_code .title,
#section04 .option_cont .text_box .in_text .sub_title{
	font-size: 4.8vw;
	margin-bottom: 6.4vw;
}

#section04 .option_cont .text_box .in_text .kizuna_code .title::before,
#section04 .option_cont .text_box .in_text .sub_title::before{
	width: 6.133333vw;
	height: 5.866667vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01{
	margin: 0 0 8vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li{
	display: block;
    margin-bottom: 4.266667vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li:last-child{
    margin-bottom: 0;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li .item{
	width: auto;
	font-size: 4.266667vw;
	margin-bottom: 2.133333vw;
}

#section04 .option_cont .text_box .in_text .live_assist_ul01 li .cont{
	width: auto;
	font-size: 3.733333vw;
}

#section04 .option_cont .text_box .in_text .kizuna_code .caption{
	margin-left: 0;
	font-size: 3.733333vw;
}

#section04 .option_other_catch{
	font-size: 4.8vw;
	margin-top: 8vw;
}




#section05{
    padding: 16vw 0 26.666667vw;
}

#section05 .wrapper .flex{
	display: block;
    width: auto;
    margin: 0 5.333333vw;
}

#section05 .wrapper .flex .cont,
#section05 .wrapper .flex .item{
	display: block;
}

#section05 .wrapper .flex .item{
	width: auto;
	padding-right: 0;
}

#section05 .wrapper .flex .item .caption{
	font-size: 4.266667vw;
	margin-bottom: 6.4vw;
}

#section05 .wrapper .flex .cont{
	width: auto;
	position: relative;
}

#section05 h2{
	margin-bottom: 10.666667vw;
}

#section05 h2 strong{
	font-size: 8vw;
}

#section05 h2 strong::after{
	font-size: 14.4vw;
	top: -8vw;
	left: -8vw;
}

#section05 .wrapper .flex .cont .about_ul > li{
	display: block;
    padding: 3.2vw 2.133333vw;
}

#section05 .wrapper .flex .cont .about_ul > li .title{
	width: auto;
	font-size: 3.466667vw;
	margin-bottom: 1.6vw;
}

#section05 .wrapper .flex .cont .about_ul > li .data{
	width: auto;
	font-size: 3.733333vw;
	border-left: none;
	padding-left: 0;
}

#section05 .wrapper .flex .cont .about_ul > li .data .pay li{
	margin-bottom: 1.6vw;
}


#section05 .wrapper .flex .cont .about_ul > li .data .pay li small{
	font-size: 3.2vw;
}




#section06{
    padding: 16vw 0 26.666667vw;
}

#section06 .h2_wrapp{
	width: auto;
	margin: 0 auto 10.666667vw;
	display: block;
}

#section06 h2{
	width: auto;
	text-align: center;
	padding-top: 0;
}

#section06 h2 strong{
	font-size: 8vw;
}

#section06 h2 strong::after{
    font-size: 14.4vw;
    top: -9.333333vw;
    left: -10.666667vw;
    transform: rotate(-8deg);
}

#section06 .h2_wrapp .icon{
	width: 29.333333vw;
	margin: 6.4vw auto 0
}

#section06 .caption{
	font-size: 4.266667vw;
	margin-bottom: 10.666667vw;
}

#section06 .form_wrapp{
	width: auto;
	margin: 0 5.333333vw;
}

#section06 .form_wrapp .form_ul{
	margin-bottom: 8vw;
}

#section06 .form_wrapp .form_ul > li{
	display: block;
    margin-bottom: 5.333333vw;
}

#section06 .form_wrapp .form_ul > li .item{
	width: auto;
	font-size: 3.733333vw;
	padding-top: 0;
	margin-bottom: 2.133333vw;
}

#section06 .form_wrapp .form_ul > li.required .item::after{
	height: 3.733333vw;
	line-height: 3.733333vw;
	padding: 0 1.6vw;
	border-radius: 1.066667vw;
	font-size: 2.133333vw;
	top: 1.333333vw;
    right: 0;
}

#section06 .form_wrapp .form_ul > li:first-child{
	margin-bottom: 2.133333vw;
}

#section06 .form_wrapp .form_ul > li:first-child .item{
	padding: 0;
}

#section06 .form_wrapp .form_ul > li:first-child.required:first-child .item::after{
	top: 1.333333vw;
}

#section06 .form_wrapp .form_ul > li .cont{
	width: auto;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio{
	flex-wrap: wrap;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li{
	font-size: 4.266667vw;
	margin: 0 5.866667vw 4.266667vw 0;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label{
	padding-left: 7.466667vw;
}
#section06 .form_wrapp .form_ul > li .cont ul.radio li label::before{
	width: 5.333333vw;
	height: 5.333333vw;
}

#section06 .form_wrapp .form_ul > li .cont ul.radio li label:has(input:checked)::after{
	width: 3.2vw;
	height: 3.2vw;
    left: 1.333333vw;
}

#section06 .form_wrapp .form_ul > li .cont textarea,
#section06 .form_wrapp .form_ul > li .cont input[type="text"]{
	padding: 3.2vw;
	font-size: 4.266667vw;
	border-radius: 1.066667vw;
}

#section06 .form_wrapp .note{
	margin-bottom: 10.666667vw;
}

#section06 .form_wrapp .note p{
	font-size: 3.2vw;
}

#section06 .form_wrapp .submit ul{
	flex-direction: column-reverse;
}

#section06 .form_wrapp .submit ul li{
	margin: 0 0 4.8vw;
}

#section06 .form_wrapp .submit ul li:first-child{
	margin-bottom: 0;
}

#section06 .form_wrapp .submit ul li input[type="submit"]{
	width: 69.333333vw;
	height: 18.133333vw;
	line-height: 18.133333vw;
	font-size: 5.866667vw;
	border-radius: 1.6vw;
}

#section06 .form_wrapp .submit ul li input[type="reset"]{
	width: 42.666667vw;
	height: 12.8vw;
	line-height: 12.8vw;
	border-radius: 1.6vw;
}


#page-top{
	width: 10.666667vw;
	bottom: 10.666667vw;
	right: 5.333333vw;
}


.thanks_cont{
	margin: 10.666667vw 5.333333vw 26.666667vw;
}

.thanks_cont .icon{
	width: 42.666667vw;
	margin: 0 auto 8vw;
}

.thanks_cont .main{
	font-size: 5.333333vw;
	margin-bottom: 10.666667vw;
}

.thanks_cont .sub{
	margin-bottom: 10.666667vw;
}

.thanks_cont .sub p{
	font-size: 4.266667vw;
}

.thanks_cont .home_link{
	width: 74.666667vw;
}

.thanks_cont .home_link a{
	height: 15.466667vw;
	line-height: 15.466667vw;
	border-radius: 15.466667vw;
	border: 0.533333vw solid #facb03;
	font-size: 4.266667vw;
}

.thanks_cont .home_link a::after {
	border: 1.866667vw solid transparent;
	border-right: 2.933333vw solid #facb03;
	left: 4.8vw;
}

.thanks_cont .home_link a:hover{
	opacity: 1;
}



.zeronyan_pr{
	width: auto;
	margin: 10.666667vw auto 0;
	display: block;
}

.zeronyan_pr .image{
	width: 37.333333vw;
	margin: 0 auto 4.8vw;
}

.zeronyan_pr .text{
	width: auto;
	padding-left: 0;
	text-align: center;
}

.zeronyan_pr .text strong{
	font-size: 4.8vw;
}



}


