@charset "UTF-8";
/* reset */
audio:not([controls]) {
		display: none;
}

button {
		overflow: visible;
		-webkit-appearance: button;
}

details {
		display: block;
}

html {
		-ms-overflow-style: -ms-autohiding-scrollbar;
		overflow-y: scroll;
		-webkit-text-size-adjust: 100%;
}

html, body {
		width: 100%;
}

input {
		-webkit-border-radius: 0;
}

input[type="button"], input[type="reset"], input[type="submit"] {
		-webkit-appearance: button;
}

input[type="number"] {
		width: auto;
}

input[type="search"] {
		-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
		-webkit-appearance: none;
}

main {
		display: block;
}

pre {
		overflow: auto;
}

progress {
		display: inline-block;
}

small {
		font-size: var(--small-font-size, 75%);
}

summary {
		display: block;
}

svg:not(:root) {
		overflow: hidden;
}

template {
		display: none;
}

textarea {
		overflow: auto;
}

[hidden] {
		display: none;
}

*,
::before,
::after {
		box-sizing: inherit;
}

* {
		font-size: inherit;
		line-height: inherit;
}

::before,
::after {
		text-decoration: inherit;
		vertical-align: inherit;
}

*,
::before,
::after {
		border-style: solid;
		border-width: 0;
}

* {
		background-repeat: var(--background-repeat, no-repeat);
		margin: 0;
		padding: 0;
}

:root {
		background-color: var(--html-background-color, #ffffff);
		box-sizing: var(--html-box-sizing, border-box);
		color: var(--html-color, #000000);
		cursor: var(--html-cursor, default);
		font: var(--html-font-size, 100%)/var(--html-line-height, 1.5) var(--font-family, sans-serif);
		text-rendering: var(--html-text-rendering, optimizeLegibility);
}

a {
		text-decoration: var(--anchor-text-decoration, none);
}

audio,
canvas,
iframe,
img,
svg,
video {
		vertical-align: var(--media-element-vertical-align, middle);
}

button,
input,
select,
textarea {
		background-color: var(--form-element-background-color, transparent);
}

button,
input,
select,
textarea {
		color: inherit;
		font-family: inherit;
		font-style: inherit;
		font-weight: inherit;
}

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
		min-height: var(--form-element-min-height, 1.5em);
}

code,
kbd,
pre,
samp {
		font-family: var(--monospace-font-family, monospace), monospace;
}

nav ol,
nav ul {
		list-style: var(--nav-list-style, none);
}

select {
		-moz-appearance: none;
		-webkit-appearance: none;
}

select::-ms-expand {
		display: none;
}

select::-ms-value {
		color: currentColor;
}

table {
		border-collapse: var(--table-border-collapse, collapse);
		border-spacing: var(--table-border-spacing, 0);
}

textarea {
		resize: var(--textarea-resize, vertical);
}

::selection {
		background-color: var(--selection-background-color, #b3d4fc);
		color: var(--selection-background-color, #4c2b03);
		text-shadow: var(--selection-text-shadow, none);
}

[aria-busy="true"] {
		cursor: progress;
}

[aria-controls] {
		cursor: pointer;
}

[aria-disabled] {
		cursor: default;
}

[hidden][aria-hidden="false"] {
		clip: rect(0 0 0 0);
		display: inherit;
		position: absolute;
}

[hidden][aria-hidden="false"]:focus {
		clip: auto;
}

/* base */
:root {
		font-size: 20px;
}

body {
		width: 100%;
		margin: 0 auto;
		font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Osaka, "MS PGothic", arial, helvetica, sans-serif;
		font-feature-settings: "pwid" 1;
		-webkit-font-smoothing: subpixel-antialiased;
		-moz-osx-font-smoothing: unset;
		-webkit-text-size-adjust: 100%;
		text-rendering: optimizeLegibility;
		word-wrap: break-word;
		color: #293256;
		line-break: strict;
}

* {
		box-sizing: border-box;
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
}

img {
		vertical-align: top;
}

li {
		list-style: none;
}

a {
		text-decoration: none;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

ahover {
		opacity: .6;
}

h2 {
		font-size: 2rem;
		text-align: center;
		margin-bottom: 6%;
		white-space: nowrap;
}

:focus {
		outline: none;
		box-shadow: none;
}

::selection {
		background: rgba(244, 74, 79, 0.2);
}

/* IE11でsvg崩れ防止 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
		img[src$=".svg"] {
				width: 100%;
		}
}

/* layout */
.l-header {
		position: fixed;
		z-index: 100;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		display: block;
}

.l-main {
		display: block;
}

.l-footer {
		display: block;
		position: relative;
		overflow: hidden;
}

/* module */
.btn {
		white-space: nowrap;
		border: 2px solid #F34A4F;
		border-radius: 100px;
		text-align: center;
		margin: 0 auto;
		display: inline-block;
		color: #F34A4F;
		font-size: .8rem;
		font-weight: bold;
		letter-spacing: .8px;
		cursor: pointer;
		-webkit-transition: 0.2s;
		transition: 0.2s;
}

.btn:hover {
		opacity: .6;
}

.btn a {
		padding: 6px 60px;
		display: block;
		color: #F34A4F;
}

.free-regist {
		position: relative;
		display: block;
}

.free-regist::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 58%;
		max-height: 221px;
		background: #F2F4F7;
}

.free-regist__inner {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		font-size: 0;
		letter-spacing: -.4em;
		padding: 0 0 5%;
		border-bottom: 1px solid #C5C8D3;
}

.free-regist__inner__txt {
		position: relative;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 50%;
		margin-right: 7%;
		padding-left: 4%;
}

.free-regist__inner__txt h2 {
		padding: 8% 0 3%;
		margin: 0;
		text-align: left;
		font-size: 1.7rem;
}

.free-regist__inner__txt p {
		position: relative;
		z-index: 1;
		color: #737A93;
		font-size: .85rem;
		letter-spacing: -.05px;
		line-height: 1.75;
		white-space: nowrap;
}

.free-regist__inner > img {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 43%;
		margin-top: 2%;
}

.free-regist__inner__btn {
		position: absolute;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 100%;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		top: 75%;
		padding-left: 4%;
}

.free-regist__inner__btn a {
		position: relative;
		width: 320px;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		color: #fff;
		padding: 16px 0;
		font-size: 1rem;
}

.free-regist__inner__btn a a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.free-regist__inner__btn a:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

.contact-link {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
}

.contact-link h2 {
		margin-bottom: 3%;
}

.contact-link > p {
		width: 80%;
		margin: 0 auto;
		text-align: center;
		line-height: 1.75;
		font-size: 1rem;
		color: #737A93;
}

.contact-link > p span {
		color: #F34A4F;
		font-weight: bold;
}

.contact-link .btn {
		margin: 6% auto 0;
		font-size: .9rem;
		width: 280px;
		display: block;
}

.contact-link .btn a {
		padding: 8px 48px;
}

.pankuzu {
		border-top: 1px solid #C5C8D3;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 20px 40px;
		color: #737A93;
}

.pankuzu ul {
		font-size: 0;
		letter-spacing: -.4em;
}

.pankuzu ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		line-height: 1;
}

.pankuzu ul li a {
		vertical-align: top;
		display: inline-block;
		-webkit-transition: 0.2s;
		transition: 0.2s;
		color: #F34A4F;
}

.pankuzu ul li a:hover {
		opacity: .6;
}

.pankuzu ul li span {
		position: relative;
		display: inline-block;
		margin: 0 16px;
		width: 18px;
		height: 16px;
}

.pankuzu ul li span:before {
		content: "";
		position: absolute;
		top: 35%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(45deg);
		transform: translate(-50%, -50%) rotate(45deg);
		width: 50%;
		height: 2px;
		display: block;
		background: #737A93;
}

.pankuzu ul li span:after {
		content: "";
		position: absolute;
		top: 65%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(-45deg);
		transform: translate(-50%, -50%) rotate(-45deg);
		width: 50%;
		height: 2px;
		display: block;
		background: #737A93;
}

form {
		width: 90%;
		max-width: 960px;
		margin: 0 auto;
}

form input:hover, form select:hover, form textarea:hover {
		background: rgba(244, 74, 79, 0.05);
}

form > ul {
		font-size: 0;
		letter-spacing: -.4em;
}

form > ul > li {
		position: relative;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 47%;
		margin: 0 6% 4% 0;
}

form > ul > li:nth-of-type(even) {
		margin-right: 0;
}

form > ul > li > p {
		font-size: .8rem;
		color: #737A93;
}

form > ul > li > p > span {
		color: #F34A4F;
		font-weight: bold;
}

form > ul > li .eye {
		position: absolute;
		bottom: 2px;
		right: 0;
		width: 62px;
		height: 54px;
		padding: 22px 20px 16px;
		-webkit-transition: 0.4s;
		transition: 0.4s;
		cursor: pointer;
		background: #fff;
}

form > ul > li .eye:hover {
		background: #F2F4F7;
}

form > ul > li .eye span {
		position: relative;
		display: block;
}

form > ul > li .eye img {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		-webkit-transition: 0.2s;
		transition: 0.2s;
}

form > ul > li .eye img:nth-of-type(1) {
		top: 4px;
}

form > ul > li .eye .hide {
		opacity: 0;
}

form > ul > li input {
		display: block;
		width: 100%;
		padding: 12px 14px;
		border-bottom: 2px solid #293256;
		font-size: 1rem;
		box-shadow: none;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

form > ul > li input::placeholder {
		color: #C5C8D3;
}

form > ul > li input:-ms-input-placeholder {
		color: #C5C8D3;
}

form > ul > li input::-ms-input-placeholder {
		color: #C5C8D3;
}

form > ul > li input:focus {
		border: 0;
		border-bottom: 2px solid #F34A4F;
}

form > ul > li label {
		position: relative;
		display: block;
		width: 100%;
		font-size: 1rem;
}

form > ul > li label span {
		position: absolute;
		right: 14px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 20px;
		height: 11px;
		display: block;
		pointer-events: none;
}

form > ul > li label span:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
		width: 60%;
		height: 2px;
		display: block;
		background: #293256;
}

form > ul > li label span:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%) rotate(-45deg);
		transform: translateY(-50%) rotate(-45deg);
		width: 60%;
		height: 2px;
		display: block;
		background: #293256;
}

form > ul > li label select {
		width: 100%;
		padding: 12px 14px;
		border-bottom: 2px solid #293256;
		box-shadow: none;
		-webkit-transition: 0.4s;
		transition: 0.4s;
		cursor: pointer;
}

form > ul > li label select::placeholder {
		color: #C5C8D3;
}

form > ul > li label select:-ms-input-placeholder {
		color: #C5C8D3;
}

form > ul > li label select::-ms-input-placeholder {
		color: #C5C8D3;
}

form > ul > li label select:focus {
		border: 0;
		border-bottom: 2px solid #F34A4F;
}

form .textarea p {
		font-size: .8rem;
		color: #737A93;
}

form .textarea p > span {
		color: #F34A4F;
		font-weight: bold;
}

form .textarea textarea {
		width: 100%;
		display: block;
		border: 2px solid #293256;
		border-radius: 12px;
		padding: 12px 14px;
		margin: 6px auto 12px;
		line-height: 1.75;
		font-size: .9rem;
		resize: none;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

form .textarea textarea::placeholder {
		color: #C5C8D3;
}

form .textarea textarea:-ms-input-placeholder {
		color: #C5C8D3;
}

form .textarea textarea::-ms-input-placeholder {
		color: #C5C8D3;
}

form .textarea textarea:focus {
		border: 2px solid #F34A4F;
}

form .poricy > p {
		margin-top: 4%;
		font-size: .8rem;
		color: #737A93;
}

form .poricy > p > span {
		color: #F34A4F;
		font-weight: bold;
}

form .poricy__txt {
		width: 100%;
		height: 240px;
		overflow-y: scroll;
		overflow-x: auto;
		display: block;
		border: 2px solid #293256;
		border-radius: 12px;
		padding: 12px 14px;
		margin: 6px auto 12px;
		line-height: 1.75;
		font-size: .85rem;
		cursor: s-resize;
}

form .poricy, form .poricy2 {
		margin-bottom: 22px;
}

form .poricy, form .poricy2, form .terms {
		display: block;
		text-align: left;
}

form .poricy label, form .poricy2 label, form .terms label {
		display: block;
		position: relative;
		padding-left: 27px;
		cursor: pointer;
		font-size: .8rem;
		margin: 0 auto;
}

form .poricy label input, form .poricy2 label input, form .terms label input {
		position: absolute;
		z-index: -1;
		opacity: 0;
}

form .poricy label p a, form .poricy2 label p a, form .terms label p a {
		color: #F34A4F;
		padding-bottom: 4px;
		border-bottom: 1px solid #F34A4F;
}

form .poricy label p a:hover, form .poricy2 label p a:hover, form .terms label p a:hover {
		opacity: .6;
}

form .poricy label p a img, form .poricy2 label p a img, form .terms label p a img {
		width: 16px;
		display: inline-block;
		margin: 3px 7px 0 5px;
}

form .poricy label span, form .poricy2 label span, form .terms label span {
		position: absolute;
		top: 2px;
		left: 0;
		height: 20px;
		width: 20px;
		border: 2px solid #293256;
		border-radius: 4px;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

form .poricy label span:after, form .poricy2 label span:after, form .terms label span:after {
		content: "";
		position: absolute;
		display: block;
		left: 5px;
		top: 1px;
		width: 7px;
		height: 11px;
		border: solid #fff;
		border-width: 0 2px 2px 0;
		-webkit-transition: 0.8s cubic-bezier(0.34, 2, 0.64, 1);
		transition: 0.8s cubic-bezier(0.34, 2, 0.64, 1);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
}

form .poricy label .checked, form .poricy2 label .checked, form .terms label .checked {
		border: 2px solid #F34A4F;
}

form .poricy label .checked:after, form .poricy2 label .checked:after, form .terms label .checked:after {
		border: solid #F34A4F;
		border-width: 0 2px 2px 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
}

form .submit-btn {
		width: 280px;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		font-size: 1.1rem;
		color: #fff;
		padding: 18px 0;
		margin: 6% auto 0;
		cursor: pointer;
}

form .submit-btn a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

form .submit-btn:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

/* theme */
.t-header {
		position: relative;
		width: 94%;
		max-width: 1600px;
		margin: 0 auto;
		padding: 32px 3%;
}

.t-header__svg1 {
		fill: #f34a4f;
}

.t-header__svg2 {
		fill: url(#logo-grade);
}

.t-header__svg3 {
		fill: url(#logo-grade-2);
}

.t-header > a {
		display: inline-block;
}

.t-header > a svg {
		width: 142px;
		max-height: 41.02px;
}

.t-header__menu {
		position: absolute;
		top: 32px;
		right: 0;
		width: 80%;
		display: block;
		text-align: right;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-header__menu ul li {
		margin-left: 3%;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
}

.t-header__menu ul li > a {
		padding: 8.5px 0;
		display: block;
		height: 100%;
		color: #293256;
		-webkit-transition: 0.5s;
		transition: 0.5s;
}

.t-header__menu ul li > a:hover {
		opacity: .4;
}

.t-header__menu ul li .t-header__menu__btn {
		margin-top: 5px;
		width: 130px;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.t-header__menu ul li .t-header__menu__btn a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.t-header__menu ul li .t-header__menu__btn:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

.t-header__menu ul .active > a {
		position: relative;
		color: #F34A4F;
}

.t-header .menu-trigger {
		position: absolute;
		top: 33px;
		right: 3%;
		width: 32px;
		height: 26px;
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		display: none;
}

.t-header .menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #293256;
		border-radius: 4px;
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
}

.t-header .menu-trigger span:nth-of-type(1) {
		top: 0;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
}

.t-header .menu-trigger span:nth-of-type(2) {
		top: 11px;
		transition: all .2s .2s;
		opacity: 1;
}

.t-header .menu-trigger span:nth-of-type(3) {
		bottom: 0;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
}

.t-header .menu-trigger.active1 span:nth-of-type(1) {
		-webkit-animation: active-menu-bar01 0.41s forwards;
		animation: active-menu-bar01 0.41s forwards;
}

.t-header .menu-trigger.active1 span:nth-of-type(2) {
		opacity: 1;
}

.t-header .menu-trigger.active1 span:nth-of-type(3) {
		-webkit-animation: active-menu-bar03 0.41s forwards;
		animation: active-menu-bar03 0.41s forwards;
}

.t-header .menu-trigger.active2 span:nth-of-type(1) {
		-webkit-animation: active-menu-bar11 0.41s forwards;
		animation: active-menu-bar11 0.41s forwards;
}

.t-header .menu-trigger.active2 span:nth-of-type(2) {
		opacity: 0;
}

.t-header .menu-trigger.active2 span:nth-of-type(3) {
		-webkit-animation: active-menu-bar13 0.41s forwards;
		animation: active-menu-bar13 0.41s forwards;
}

@-webkit-keyframes active-menu-bar01 {
		0% {
				-webkit-transform: translateY(11px) rotate(45deg);
		}
		50% {
				-webkit-transform: translateY(11px) rotate(0);
		}
		100% {
				-webkit-transform: translateY(0px) rotate(0);
		}
}

@keyframes active-menu-bar01 {
		0% {
				transform: translateY(11px) rotate(45deg);
		}
		50% {
				transform: translateY(11px) rotate(0);
		}
		100% {
				transform: translateY(0px) rotate(0);
		}
}

@-webkit-keyframes active-menu-bar03 {
		0% {
				-webkit-transform: translateY(-11px) rotate(-45deg);
		}
		50% {
				-webkit-transform: translateY(-11px) rotate(0);
		}
		100% {
				-webkit-transform: translateY(0) rotate(0);
		}
}

@keyframes active-menu-bar03 {
		0% {
				transform: translateY(-11px) rotate(-45deg);
		}
		50% {
				transform: translateY(-11px) rotate(0);
		}
		100% {
				transform: translateY(0) rotate(0);
		}
}

@-webkit-keyframes active-menu-bar11 {
		0% {
				-webkit-transform: translateY(0) rotate(0);
		}
		50% {
				-webkit-transform: translateY(11px) rotate(0);
		}
		100% {
				-webkit-transform: translateY(11px) rotate(45deg);
		}
}

@keyframes active-menu-bar11 {
		0% {
				transform: translateY(0) rotate(0);
		}
		50% {
				transform: translateY(11px) rotate(0);
		}
		100% {
				transform: translateY(11px) rotate(45deg);
		}
}

@-webkit-keyframes active-menu-bar13 {
		0% {
				-webkit-transform: translateY(0) rotate(0);
		}
		50% {
				-webkit-transform: translateY(-11px) rotate(0);
		}
		100% {
				-webkit-transform: translateY(-11px) rotate(-45deg);
		}
}

@keyframes active-menu-bar13 {
		0% {
				transform: translateY(0) rotate(0);
		}
		50% {
				transform: translateY(-11px) rotate(0);
		}
		100% {
				transform: translateY(-11px) rotate(-45deg);
		}
}

.t-top__matt-kun {
		position: relative;
		width: 100%;
		height: 100vh;
		min-height: 740px;
		display: block;
		overflow: hidden;
}

.t-top__matt-kun::before {
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 30%;
		display: block;
		background: #F7675E;
}

.t-top__matt-kun__bg {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 70%;
		width: 100%;
		-webkit-transition: 1s;
		transition: 1s;
}

.t-top__matt-kun__chara {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 52%;
		width: 980px;
		-webkit-transition: 1s;
		transition: 1s;
		opacity: 0;
}

.t-top__matt-kun__chara img {
		position: absolute;
		width: 100%;
		opacity: 0;
		max-width: none;
}

.t-top__matt-kun__chara::before {
		content: "";
		position: absolute;
		bottom: -36px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 235px;
		height: 103px;
		display: block;
		background: url(../img/top/top-chara-shadow.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100% 100%;
}

.t-top__matt-kun > ul {
		position: relative;
		width: 100%;
		height: 100%;
}

.t-top__matt-kun > ul > li:not(:first-child), .t-top__matt-kun > ul > li input[name="file-upload"] {
		display: none;
}

.t-top__matt-kun h1 {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		top: 18%;
		left: 0;
		font-size: 2.6rem;
		width: 100%;
		text-align: center;
		letter-spacing: -.8px;
		opacity: 0;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.t-top__matt-kun h1 span {
		opacity: 0;
}

.t-top__matt-kun h1 span:nth-of-type(8), .t-top__matt-kun h1 span:nth-of-type(9), .t-top__matt-kun h1 span:nth-of-type(10), .t-top__matt-kun h1 span:nth-of-type(11), .t-top__matt-kun h1 span:nth-of-type(12) {
		color: #F34A4F;
}

.t-top__matt-kun__profile {
		position: absolute;
		top: 75%;
		left: 50%;
		-webkit-transform: perspective(1000px) translate(180px, -50%) rotateX(-60deg);
		transform: perspective(1000px) translate(180px, -50%) rotateX(-60deg);
		-webkit-transition: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
		transition: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
		width: 38%;
		background: #fff;
		border-radius: 18px 18px 18px 0;
		width: 360px;
		padding: 22px 28px;
		color: #293256;
		opacity: 0;
}

.t-top__matt-kun__profile h3 {
		font-size: 1.5rem;
		margin-bottom: 10px;
}

.t-top__matt-kun__profile p {
		font-size: .8rem;
		line-height: 1.7;
}

.t-top__matt-kun__profileBtn {
		position: absolute;
		z-index: 1;
		top: 908px;
		left: 50%;
		-webkit-transform: translateX(110px);
		transform: translateX(110px);
		width: 34px;
		height: 34px;
		border-radius: 50%;
		color: #fff;
		border: 3px solid #fff;
}

.t-top__matt-kun__profileBtn img {
		height: 56%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
}

.t-top__matt-kun__txt-left {
		position: absolute;
		top: 30%;
		left: 50%;
		opacity: 0;
		transform-origin: -100px;
		transform-style: preserve-3d;
		-webkit-transform: perspective(1000px) translateX(-592px) rotateX(-90deg);
		transform: perspective(1000px) translateX(-592px) rotateX(-90deg);
		-webkit-transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
		transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
		width: 360px;
		font-size: .9rem;
		line-height: 1.7;
}

.t-top__matt-kun__txt-left > ul > li > p {
		width: 100%;
		padding: 22px 28px;
		border-radius: 20px 20px 0px 20px;
		box-shadow: 0 8px 21px -5px rgba(114, 121, 147, 0.4);
		background: #fff;
		letter-spacing: -.5px;
}

.t-top__matt-kun__txt-left > ul > li > p span {
		font-weight: bold;
		color: #F34A4F;
}

.t-top__matt-kun__txt-left > ul > li > p span a {
		color: #F34A4F;
		text-decoration: underline;
}

.t-top__matt-kun__txt-left > ul > li > p span a:hover {
		opacity: .6;
}

.t-top__matt-kun__txt-left > ul > li > div {
		width: 100%;
		padding: 22px 28px;
		border-radius: 20px 20px 0px 20px;
		box-shadow: 0 8px 21px -5px rgba(114, 121, 147, 0.4);
		background: #fff;
}

.t-top__matt-kun__txt-right {
		position: absolute;
		top: 30%;
		left: 50%;
		opacity: 0;
		transform-origin: -100px;
		transform-style: preserve-3d;
		-webkit-transform: perspective(1000px) translateX(229px) rotateX(-90deg);
		transform: perspective(1000px) translateX(229px) rotateX(-90deg);
		-webkit-transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
		transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
		width: 360px;
		font-size: .9rem;
		line-height: 1.7;
}

.t-top__matt-kun__txt-right > ul > li > p {
		width: 100%;
		padding: 22px 28px;
		border-radius: 20px 20px 20px 0px;
		box-shadow: 0 8px 21px -5px rgba(114, 121, 147, 0.4);
		background: #fff;
}

.t-top__matt-kun__txt-right > ul > li > p span {
		font-weight: bold;
		color: #F34A4F;
}

.t-top__matt-kun__txt-right > ul > li > p span a {
		color: #F34A4F;
		text-decoration: underline;
}

.t-top__matt-kun__txt-right > ul > li > p span a:hover {
		opacity: .6;
}

.t-top__matt-kun__txt-right > ul > li > div {
		width: 100%;
		padding: 22px 28px;
		border-radius: 20px 20px 0px 20px;
		box-shadow: 0 8px 21px -5px rgba(114, 121, 147, 0.4);
		background: #fff;
}

.t-top__matt-kun__link a {
		color: #F34A4F;
		font-size: .9rem;
		font-weight: bold;
		margin-top: 12px;
		display: block;
		text-decoration: underline;
}

.t-top__matt-kun__link a:hover {
		opacity: .6;
}

.t-top__matt-kun h4 {
		text-align: center;
		font-size: 1.1rem;
		margin-bottom: 18px;
}

.t-top__matt-kun .upload-voice {
		border-radius: 20px;
		margin-bottom: 20px;
		padding: 22px 20px 30px;
}

.t-top__matt-kun .upload-voice__area {
		position: relative;
		border: 2px dashed #C5C8D3;
		border-radius: 12px;
		padding: 16px 14px;
		color: #737A93;
		text-align: center;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun .upload-voice__area .err {
		position: absolute;
		top: 2px;
		left: 0;
		display: block;
		font-size: .75rem;
		font-weight: bold;
		color: #F34A4F;
		text-align: center;
		width: 100%;
}

.t-top__matt-kun .upload-voice__area__before > svg {
		width: 35%;
		margin: 15px auto 20px;
		display: block;
}

.t-top__matt-kun .upload-voice__area__before > svg path {
		fill: #c5c8d3;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun .upload-voice__area__before > p {
		line-height: 1.5;
		font-weight: bold;
		font-size: .8rem;
		margin: 16px auto 8px;
}

.t-top__matt-kun .upload-voice__area__before > span {
		width: 50%;
		position: relative;
		display: block;
		margin: 0 auto;
		font-size: .7rem;
		line-height: 1;
}

.t-top__matt-kun .upload-voice__area__before > span::before {
		content: "";
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		width: 30%;
		height: 1px;
		background: #737A93;
		display: block;
}

.t-top__matt-kun .upload-voice__area__before > span::after {
		content: "";
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
		width: 30%;
		height: 1px;
		background: #737A93;
		display: block;
}

.t-top__matt-kun .upload-voice__area__after1 {
		display: none;
}

.t-top__matt-kun .upload-voice__area__after1 p {
		font-weight: bold;
}

.t-top__matt-kun .upload-voice__area__after1 ul {
		font-size: .7rem;
		text-align: left;
		width: 92%;
		margin: 10px auto;
}

.t-top__matt-kun .upload-voice__area__after1 ul li {
		white-space: nowrap;
		overflow: hidden;
}

.t-top__matt-kun .upload-voice__area__after1 ul li span {
		font-weight: bold;
		display: inline-block;
}

.t-top__matt-kun .upload-voice__area__after1 ul li .err {
		color: #F34A4F;
}

.t-top__matt-kun .upload-voice__area__btn {
		width: 180px;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		padding: 10px 0;
		font-size: .8rem;
		margin: 15px auto;
		color: #fff;
		cursor: pointer;
}

.t-top__matt-kun .upload-voice__area__btn a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.t-top__matt-kun .upload-voice__area__btn:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

.t-top__matt-kun .upload-voice__area > p {
		line-height: 1.5;
		font-size: .6rem;
		opacity: .8;
}

.t-top__matt-kun .select-voice {
		border-radius: 20px;
		padding: 22px 20px;
}

.t-top__matt-kun .select-voice > ul {
		display: block;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__matt-kun .select-voice > ul > li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 22%;
		margin-right: 4%;
		text-align: center;
		color: #F34A4F;
		font-weight: bold;
		cursor: pointer;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		-webkit-transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.t-top__matt-kun .select-voice > ul > li:last-child {
		margin-right: 0;
}

.t-top__matt-kun .select-voice > ul > li > img {
		width: 100%;
		display: block;
		margin-bottom: 4px;
}

.t-top__matt-kun .select-voice > ul > li:hover {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: .8;
}

.t-top__matt-kun .recording {
		padding: 22px 0;
		border-radius: 20px;
}

.t-top__matt-kun .recording__img {
		position: relative;
		width: 100%;
		height: 229px;
		display: block;
		overflow: hidden;
}

.t-top__matt-kun .recording__img__anime {
		position: absolute;
		width: 1400px;
		height: 100%;
		-webkit-animation: 12s recording linear infinite;
		animation: 12s recording linear infinite;
}

.t-top__matt-kun .recording__img__anime img {
		display: inline-block;
		-webkit-animation: 4s recordingImg cubic-bezier(0.45, 0, 0.55, 1) infinite;
		animation: 4s recordingImg cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.t-top__matt-kun .progress-bar {
		position: relative;
		margin-top: 30px;
		width: 400px;
		height: 14px;
		overflow: hidden;
		background: rgba(0, 0, 0, 0.2);
		border-radius: 40px;
		box-shadow: 0 2px 9px -5px rgba(0, 0, 0, 0.5) inset;
}

.t-top__matt-kun .progress-bar span {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		height: 100%;
		width: 0%;
		box-shadow: -3px 0 11px 4px rgba(0, 0, 0, 0.45);
		border-radius: 40px;
		background: #fff;
		-webkit-transition: 0.6s ease-in-out;
		transition: 0.6s ease-in-out;
}

.t-top__matt-kun .emotion-txt {
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun .emotion-txt span {
		display: inline-block;
		margin: 0 4px;
		font-size: 1.2rem;
		font-weight: bold;
}

.t-top__matt-kun .emotion-txt1 {
		color: #FFB255;
}

.t-top__matt-kun .emotion-txt2 {
		color: #B56EF9;
}

.t-top__matt-kun .emotion-txt3 {
		color: #07D3AC;
}

.t-top__matt-kun .emotion-txt4 {
		color: #5C9DEA;
}

.t-top__matt-kun .emotion-txt5 {
		color: #F97878;
}

.t-top__matt-kun .question {
		position: relative;
		padding: 22px 0;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun .question h4 {
		font-size: 1rem;
}

.t-top__matt-kun .question > ul {
		border-top: 1px solid #FF9CA1;
		padding: 24px 28px 6px;
		text-align: center;
}

.t-top__matt-kun .question > ul > li:nth-of-type(1) span {
		width: 100%;
		display: block;
		padding: 16px 0;
		line-height: 1;
		border: 2px solid #C5C8D3;
		color: #737A93;
		border-radius: 8px;
		margin-bottom: 15px;
		-webkit-transition: 0.2s;
		transition: 0.2s;
}

.t-top__matt-kun .question > ul > li:nth-of-type(1) span:last-child {
		margin-bottom: 0;
}

.t-top__matt-kun .question > ul > li:nth-of-type(1) span:hover {
		border: 2px solid #F34A4F;
		color: #F34A4F;
}

.t-top__matt-kun .question > ul > li:nth-of-type(2) {
		display: none;
		text-align: left;
}

.t-top__matt-kun .question .share {
		position: absolute;
		bottom: -63px;
		left: 4%;
		width: 100%;
		font-size: 0;
		letter-spacing: -.4em;
		display: none;
}

.t-top__matt-kun .question .share li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 12%;
		margin-right: 4.5%;
		-webkit-transform: translate3d(0, 0, 0, 0);
		transform: translate3d(0, 0, 0, 0);
		-webkit-transition: 0.2s ease-in-out;
		transition: 0.2s ease-in-out;
}

.t-top__matt-kun .question .share li:last-child {
		margin-right: 0;
}

.t-top__matt-kun .question .share li a {
		display: block;
		border-radius: 50%;
		border: 2px solid #F34A4F;
		padding: 2px;
		background: #fff;
}

.t-top__matt-kun .question .share li a svg {
		display: block;
		width: 100%;
}

.t-top__matt-kun .question .share li a svg path {
		fill: #F34A4F;
}

.t-top__matt-kun .question .share li a svg .non-color {
		fill: #fff;
}

.t-top__matt-kun .question .share li:hover {
		opacity: .6;
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
}

.t-top__matt-kun .emotional-val {
		border-radius: 20px;
}

.t-top__matt-kun .emotional-val__table1 {
		margin: -4px auto 24px;
}

.t-top__matt-kun .emotional-val__table1 > ul {
		font-size: 0;
		letter-spacing: -.4em;
		margin: 0 auto;
		display: block;
}

.t-top__matt-kun .emotional-val__table1 > ul > li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) {
		width: 49%;
		padding-left: 12px 0 0 10%;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) img {
		width: 66%;
		display: block;
		margin: 6% auto 11px;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) p {
		font-size: .9rem;
		text-align: center;
		margin-top: 12px;
		line-height: 1;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) {
		width: 49%;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul {
		padding: 6px 0 6px 0;
		border-left: 1px solid #C5C8D3;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li {
		position: relative;
		display: block;
		height: 16px;
		margin: 0 0 13px 38px;
		width: 76%;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li:last-child {
		margin-bottom: 0;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li > span {
		width: 100%;
		height: 100%;
		border-radius: 40px;
		display: inline-block;
		vertical-align: top;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li .val-bar1 {
		background: #FFB255;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li .val-bar2 {
		background: #B56EF9;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li .val-bar3 {
		background: #07D3AC;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li .val-bar4 {
		background: #5C9DEA;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li .val-bar5 {
		background: #F97878;
}

.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li > p {
		position: absolute;
		top: 1px;
		left: -29px;
		font-size: .75rem;
		line-height: 1;
}

.t-top__matt-kun .emotional-val__table2 > ul {
		font-size: 0;
		letter-spacing: -.4em;
		width: 86%;
		margin: 0 auto 12px;
}

.t-top__matt-kun .emotional-val__table2 > ul > li {
		text-align: center;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 15.6%;
		margin-right: 5.5%;
}

.t-top__matt-kun .emotional-val__table2 > ul > li:last-child {
		margin-right: 0;
}

.t-top__matt-kun .emotional-val__table2 > ul > li img {
		width: 100%;
		display: block;
}

.t-top__matt-kun .emotional-val__table2 > ul > li p {
		margin-top: 10px;
		font-size: .8rem;
		line-height: 1;
		text-align: center;
}

.t-top__matt-kun .emotional-val h5 {
		font-size: .78rem;
		text-align: left;
		display: inline-block;
		margin: 0 0 6px 6px;
		line-height: 1;
}

.t-top__matt-kun .emotional-val .chart {
		display: block;
		width: 100%;
		height: 70px;
		border: 1px solid #C5C8D3;
		border-radius: 8px;
}

.t-top__matt-kun .emotional-val__volume {
		margin: 12px auto 8px;
}

.t-top__matt-kun__btn1 {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 86%;
		font-size: 1.3rem;
		font-weight: bold;
		color: #F34A4F;
		text-decoration: none;
		overflow: hidden;
		padding: 16px 90px;
		background: #fff;
		border-radius: 120px;
		box-shadow: 0 15px 33px 2px rgba(105, 23, 25, 0.5);
		cursor: pointer;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun__btn1::after {
		position: absolute;
		content: '';
		display: inline-block;
		top: -180px;
		left: 0;
		width: 20px;
		height: 100%;
		background-color: rgba(255, 233, 115, 0.6);
		opacity: 0;
		-webkit-animation: 2s topBtn1 cubic-bezier(0.32, 0, 0.67, 0) infinite;
		animation: 2s topBtn1 cubic-bezier(0.32, 0, 0.67, 0) infinite;
}

.t-top__matt-kun__btn1 span {
		position: relative;
		z-index: 100;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun__btn1:hover {
		-webkit-transform: translate(-50%, -57%);
		transform: translate(-50%, -57%);
		box-shadow: 0 20px 40px 2px rgba(105, 23, 25, 0.5);
}

.t-top__matt-kun__btn1:hover span {
		opacity: .7;
}

.t-top__matt-kun__btn2-1 {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 81%;
		left: 35%;
}

.t-top__matt-kun__btn2-2 {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 81%;
		left: 65%;
}

.t-top__matt-kun__btn3 {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 85%;
}

.t-top__matt-kun__btn2-1 p, .t-top__matt-kun__btn2-2 p, .t-top__matt-kun__btn3 p {
		font-size: .825rem;
		line-height: 1;
		color: #fff;
		text-align: center;
		margin-bottom: 24px;
		vertical-align: top;
}

.t-top__matt-kun__btn2-1 p a, .t-top__matt-kun__btn2-2 p a, .t-top__matt-kun__btn3 p a {
		font-weight: bold;
		color: #fff;
		text-decoration: underline;
		display: inline-block;
		margin: 0 4px;
}

.t-top__matt-kun__btn2-1 p a:hover, .t-top__matt-kun__btn2-2 p a:hover, .t-top__matt-kun__btn3 p a:hover {
		opacity: .4;
}

.t-top__matt-kun__btn3 p span {
		position: relative;
		display: inline-block;
		width: 22px;
		height: 22px;
		margin: -2px 6px 0 0;
		vertical-align: top;
		border-radius: 4px;
		border: 2px solid #fff;
		cursor: pointer;
		-webkit-transition: 0.2s linear;
		transition: 0.2s linear;
}

.t-top__matt-kun__btn3 p span:after {
		content: "";
		position: absolute;
		top: 43%;
		left: 50%;
		width: 12px;
		height: 7px;
		border-bottom: 2px solid #fff;
		border-left: 2px solid #fff;
		display: block;
		opacity: 0;
		box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
		-webkit-transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
		transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.t-top__matt-kun .poricy-btn:after {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%) rotate(-45deg);
		transform: translate(-50%, -50%) rotate(-45deg);
}

.t-top__matt-kun__btn2-1 span, .t-top__matt-kun__btn2-2 span {
		width: 380px;
		display: block;
		font-size: 1.2rem;
		font-weight: bold;
		text-align: center;
		color: #F34A4F;
		padding: 20px 0px;
		background: #fff;
		border-radius: 120px;
		box-shadow: 0 8px 21px -5px rgba(154, 38, 41, 0.5);
		cursor: pointer;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun__btn2-1 span:hover, .t-top__matt-kun__btn2-2 span:hover {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
		box-shadow: 0 26px 28px -10px rgba(154, 38, 41, 0.4);
}

.t-top__matt-kun__btn3 > span {
		min-width: 380px;
		display: block;
		font-size: 1.2rem;
		font-weight: bold;
		text-align: center;
		color: #F34A4F;
		padding: 20px 50px;
		background: #fff;
		border-radius: 120px;
		box-shadow: 0 8px 21px -5px rgba(154, 38, 41, 0.5);
		opacity: 0;
		cursor: default;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun__btn3 > span:hover {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
		box-shadow: 0 26px 28px -10px rgba(154, 38, 41, 0.4);
}

.t-top__matt-kun__btn4 {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 81%;
}

.t-top__matt-kun__btn4 p {
		font-size: 1.25rem;
		line-height: 1;
		color: #fff;
		text-align: center;
		margin-bottom: 16px;
}

.t-top__matt-kun__btn4 > span {
		position: relative;
		display: block;
		font-size: 1.2rem;
		font-weight: bold;
		text-align: center;
		color: #F34A4F;
		padding: 20px 50px;
		background: #fff;
		border-radius: 120px;
		box-shadow: 0 8px 21px -5px rgba(154, 38, 41, 0.5);
		cursor: pointer;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-top__matt-kun__btn4 > span:hover {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
		box-shadow: 0 26px 28px -10px rgba(154, 38, 41, 0.4);
}

.t-top__matt-kun__btn4 .num {
		display: none;
}

.t-top__matt-kun__btn4 .start {
		width: 224px;
		height: 76px;
}

.t-top__matt-kun__btn4 .start::after {
		content: "録音開始";
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		display: block;
		color: #F34A4F;
		text-align: center;
}

.t-top__matt-kun__btn4 .end {
		width: 76px;
		height: 76px;
		padding: 20px 0;
		margin: 0 auto;
}

.t-top__matt-kun__btn4 .end::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 34px;
		height: 34px;
		background: #F34A4F;
		border-radius: 4px;
		box-shadow: 2px 2px 2px 0px rgba(255, 255, 255, 0.2) inset, -2px -2px 2px 0px rgba(0, 0, 0, 0.2) inset;
}

.t-top__matt-kun__btn4 .end::before {
		content: "完了";
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: -76px;
		width: 70px;
		color: #fff;
		font-weight: 400;
		display: block;
		font-size: 1rem;
		line-height: 1;
		pointer-events: none;
}

.t-top__matt-kun__btn5-1 {
		display: none;
}

.t-top__matt-kun__btn5 {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 86%;
		font-size: 1.2rem;
		font-weight: bold;
		color: #F34A4F;
		padding: 20px 90px;
		background: #fff;
		border-radius: 120px;
		box-shadow: 0 8px 21px -5px rgba(154, 38, 41, 0.5);
		cursor: pointer;
		-webkit-transition: 0.4s;
		transition: 0.4s;
		display: none;
		opacity: 0;
}

.t-top__matt-kun__btn5:hover {
		-webkit-transform: translate(-50%, -57%);
		transform: translate(-50%, -57%);
		box-shadow: 0 26px 28px -10px rgba(154, 38, 41, 0.4);
}

.t-top__summary {
		width: 100%;
}

.t-top__summary ul {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		font-size: 0;
		letter-spacing: -.4em;
		width: 94%;
		padding: 44px 0;
}

.t-top__summary ul li {
		position: relative;
		width: 31.33333%;
		min-height: 190px;
		padding-right: 6%;
		padding-top: 6px;
		border-right: 2px solid #C5C8D3;
		margin-right: 6%;
		vertical-align: top;
		display: inline-block;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__summary ul li:last-child {
		width: 25.33333%;
		padding-right: 0;
		border-right: none;
		margin-right: 0;
}

.t-top__summary ul li > span {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		font-weight: bold;
		line-height: .98;
		width: 30%;
		color: #F28393;
		vertical-align: top;
		font-size: 1.8rem;
		border: 3px solid;
		text-align: center;
		border-radius: 8px;
		max-width: 52px;
		display: inline-block;
		padding: 6px 0;
		margin-right: 3%;
}

.t-top__summary ul li h3 {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		font-size: .95rem;
		width: 70%;
		line-height: 1.4;
		vertical-align: top;
		white-space: nowrap;
}

.t-top__summary ul li > p {
		letter-spacing: normal;
		font-size: .8rem;
		display: block;
		text-align: justify;
		margin-top: 24px;
}

.t-top__news {
		width: 100%;
		display: block;
		margin: 0 auto;
		padding: 5% 0 3%;
		background: #F2F4F7;
}

.t-top__news h2 {
		margin-bottom: 4%;
}

.t-top__news .category {
		background: #F34A4F;
		padding: 4px 14px 3px;
		line-height: 1;
		white-space: nowrap;
		display: inline-block;
		color: #fff;
		font-size: .625rem;
		font-weight: 600;
		border-radius: 4px;
		vertical-align: top;
}

.t-top__news .date {
		font-size: .7rem;
		display: inline-block;
		color: #737A93;
		vertical-align: top;
}

.t-top__news__new {
		width: 90%;
		max-width: 1046px;
		margin: 0 auto 5%;
		display: block;
}

.t-top__news__new ul {
		font-size: 0;
		letter-spacing: -.4em;
		width: 90%;
		max-width: 900px;
		margin: 0 auto;
}

.t-top__news__new ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 47%;
		margin-right: 6%;
		border-radius: 28px;
		box-shadow: 0 21px 28px -22px rgba(114, 121, 147, 0.6);
		vertical-align: top;
		overflow: hidden;
		background: #fff;
		-webkit-transition: 0.3s ease-out;
		transition: 0.3s ease-out;
}

.t-top__news__new ul li:last-child {
		margin-right: 0;
}

.t-top__news__new ul li:hover {
		-webkit-transform: translateY(-2%);
		transform: translateY(-2%);
		opacity: .6;
		box-shadow: 0 50px 40px -30px rgba(114, 121, 147, 0.4);
}

.t-top__news__new ul li:hover img {
		-webkit-transform: scale(1.16);
		transform: scale(1.16);
}

.t-top__news__new ul li a {
		color: #293256;
}

.t-top__news__new ul li .img {
		display: block;
		position: relative;
		width: 100%;
		height: 214px;
		overflow: hidden;
		border-bottom: 1px solid #dee0e7;
}

.t-top__news__new ul li .img:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-shadow: 0 -19px 23px -12px rgba(188, 191, 201, 0.4) inset;
}

.t-top__news__new ul li img {
		width: 100%;
		display: block;
		border-radius: 24px 24px 0 0;
		-webkit-transition: 1.5s ease-out;
		transition: 1.5s ease-out;
}

.t-top__news__new ul li .txt > p {
		position: relative;
		display: block;
		margin: 36px 34px 18px;
		height: 19px;
}

.t-top__news__new ul li .txt > p span:nth-of-type(2) {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
}

.t-top__news__new ul li .txt > h4 {
		margin: 0 34px;
		padding-bottom: 40px;
		min-height: 130px;
		font-size: .9rem;
		text-align: justify;
		line-height: 1.7;
}

.t-top__news__old {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto;
}

.t-top__news__old ul {
		display: block;
		border-top: 1px solid #C5C8D3;
		height: 200px;
		overflow: hidden;
		-webkit-transition: 0.4s cubic-bezier(0, 0.55, 0.45, 1);
		transition: 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}

.t-top__news__old ul li {
		border-bottom: 1px solid #C5C8D3;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__news__old ul li a {
		display: block;
		padding: 20px 2% 16px 3%;
		color: #293256;
		-webkit-transition: 0.2s ease-out;
		transition: 0.2s ease-out;
}

.t-top__news__old ul li a:hover {
		opacity: .4;
}

.t-top__news__old ul li span {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		margin-right: 26px;
}

.t-top__news__old ul li h4 {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 68%;
		display: inline-block;
		font-size: .9rem;
		line-height: 1.6;
		vertical-align: top;
		margin-top: -4px;
}

.t-top__news__old__more {
		margin: 30px auto 0;
		display: block;
		text-align: center;
}

.t-top__news__old__more .btn {
		vertical-align: top;
		padding: 6px 28px;
}

.t-top__news__old__more .btn span {
		position: relative;
		display: inline-block;
		width: 15px;
		height: 21px;
		margin-left: 34px;
		vertical-align: top;
}

.t-top__news__old__more .btn span::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
		width: 60%;
		height: 2px;
		display: block;
		background: #F34A4F;
}

.t-top__news__old__more .btn span::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%) rotate(-45deg);
		transform: translateY(-50%) rotate(-45deg);
		width: 60%;
		height: 2px;
		display: block;
		background: #F34A4F;
}

.t-top__overview {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 4% 4%;
		border-bottom: 1px solid #C5C8D3;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__overview__img {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		position: relative;
		width: 36%;
		margin-right: 5%;
		margin-top: 10px;
		vertical-align: top;
}

.t-top__overview__img img:nth-last-of-type(1) {
		position: relative;
		width: 100%;
}

.t-top__overview__img img:nth-last-of-type(2) {
		position: absolute;
		bottom: 0;
		right: 7%;
		width: 79%;
}

.t-top__overview__img img:nth-last-of-type(3) {
		position: absolute;
		bottom: 0;
		right: -8%;
		width: 91%;
}

.t-top__overview__txt {
		position: relative;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 59%;
		vertical-align: top;
		text-align: left;
}

.t-top__overview__txt h2 {
		font-size: 1.7rem;
		text-align: left;
		margin-bottom: 3%;
}

.t-top__overview__txt p {
		font-size: .9rem;
		line-height: 1.75;
		color: #737A93;
		letter-spacing: -.5px;
}

.t-top__overview__txt p span {
		color: #F34A4F;
		font-weight: bold;
}

.t-top__explain {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
}

.t-top__explain > p {
		width: 80%;
		margin: 0 auto;
		text-align: center;
		line-height: 1.75;
		font-size: 1rem;
		color: #737A93;
}

.t-top__explain > p span {
		color: #F34A4F;
		font-weight: bold;
}

.t-top__explain__sevice {
		width: 90%;
		max-width: 900px;
		margin: 5% auto;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__explain__sevice li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 47%;
		min-height: 530px;
		margin-right: 6%;
		vertical-align: top;
		border-radius: 28px;
		box-shadow: 0 12px 38px -14px rgba(114, 121, 147, 0.6);
		padding: 24px 0;
		font-size: .9rem;
		text-align: justify;
		line-height: 1.7;
}

.t-top__explain__sevice li:last-child {
		margin-right: 0;
}

.t-top__explain__sevice li h3 {
		text-align: center;
		font-size: 1.4rem;
}

.t-top__explain__sevice li h3 img {
		margin-right: 2%;
		width: 44px;
		display: inline-block;
}

.t-top__explain__sevice li > img {
		width: 80%;
		display: block;
		margin: 26px auto;
}

.t-top__explain__sevice li > p {
		color: #737A93;
		width: 80%;
		margin: 0 auto;
}

.t-top__explain__sevice .btn {
		margin: 8% auto 0;
		font-size: .9rem;
		width: 246px;
		display: block;
}

.t-top__explain__sevice .btn a {
		padding: 8px 78px;
}

.t-top__example {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
		border-bottom: 1px solid #C5C8D3;
}

.t-top__example ul {
		font-size: 0;
		letter-spacing: -.4em;
		width: 98%;
		padding: 0;
		margin: 0 auto;
}

.t-top__example ul li {
		position: relative;
		width: 32%;
		min-height: 480px;
		padding-right: 4%;
		padding-top: 12px;
		border-right: 1px solid #C5C8D3;
		margin-right: 4%;
		vertical-align: top;
		display: inline-block;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__example ul li:last-child {
		width: 28%;
		padding-right: 0;
		border-right: none;
		margin-right: 0;
}

.t-top__example ul li img {
		width: 68%;
		display: block;
		margin: 0 auto;
}

.t-top__example ul li h3 {
		font-size: 1.3rem;
		text-align: center;
		margin: 10% auto 19px;
		white-space: nowrap;
		letter-spacing: normal;
}

.t-top__example ul li p {
		text-align: justify;
		font-size: .9rem;
		color: #737A93;
		line-height: 1.68;
		letter-spacing: -.5px;
}

.t-top__example .btn {
		margin: 6% auto 0;
		font-size: .9rem;
		width: 246px;
		display: block;
}

.t-top__example .btn a {
		padding: 8px 78px;
}

.t-top__cost {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
}

.t-top__cost > p {
		width: 80%;
		margin: 0 auto;
		text-align: center;
		line-height: 1.75;
		font-size: 1rem;
		color: #737A93;
}

.t-top__cost > p span {
		color: #F34A4F;
		font-weight: bold;
}

.t-top__cost > ul {
		width: 90%;
		max-width: 900px;
		margin: 5% auto;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__cost > ul > li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 47%;
		min-height: 400px;
		margin-right: 6%;
		vertical-align: top;
		border-radius: 28px;
		box-shadow: 0 12px 38px -14px rgba(114, 121, 147, 0.6);
		font-size: .9rem;
		text-align: justify;
		line-height: 1.7;
}

.t-top__cost > ul > li:last-child {
		margin-right: 0;
}

.t-top__cost > ul > li h3 {
		text-align: center;
		font-size: 1.3rem;
		padding: 22px 0 20px;
		border-bottom: 1px solid #FF9CA1;
}

.t-top__cost > ul > li h3 img {
		margin-right: 8px;
		width: 42px;
		display: inline-block;
}

.t-top__cost > ul > li ul {
		padding: 0px 0% 14px;
}

.t-top__cost > ul > li ul li {
		padding: 11px 7.3%;
		border-bottom: 1px solid #C5C8D3;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__cost > ul > li ul li:last-child {
		border-bottom: none;
}

.t-top__cost > ul > li ul li > p {
		vertical-align: bottom;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 50%;
}

.t-top__cost > ul > li ul li > p:first-child {
		font-size: .8rem;
		color: #737A93;
}

.t-top__cost > ul > li ul li > p:last-child {
		font-size: 1.2rem;
		font-weight: bold;
		color: #293256;
}

.t-top__cost > ul > li ul li > p:last-child span {
		font-size: .8rem;
}

.t-top__cost > ul > li ul li .free {
		color: #F34A4F !important;
}

.t-top__cost .btn {
		margin: 8% auto 0;
		font-size: .9rem;
		width: 246px;
		display: block;
}

.t-top__cost .btn a {
		padding: 8px 78px;
}

.t-top__service {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
		border-bottom: 1px solid #C5C8D3;
}

.t-top__service > p {
		width: 80%;
		margin: 0 auto;
		text-align: center;
		line-height: 1.75;
		font-size: 1rem;
		color: #737A93;
}

.t-top__service > p span {
		color: #F34A4F;
		font-weight: bold;
}

.t-top__service ul {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		font-size: 0;
		letter-spacing: -.4em;
		margin: 5% auto 0;
		padding: 0 5% 2%;
}

.t-top__service li {
		position: relative;
		font-size: 0;
		letter-spacing: -.4em;
		overflow: hidden;
		border-radius: 32px;
		box-shadow: 0 12px 38px -14px rgba(114, 121, 147, 0.6);
		margin-bottom: 5%;
}

.t-top__service li:last-child {
		margin-bottom: 0;
}

.t-top__service li .img {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 50%;
		vertical-align: top;
		position: relative;
		overflow: hidden;
}

.t-top__service li .img > img {
		width: 100%;
		position: relative;
}

.t-top__service li .img > img:not(:first-child) {
		position: absolute;
}

.t-top__service li .img > span {
		position: absolute;
}

.t-top__service li .img > span img {
		width: 100%;
}

.t-top__service li .txt {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 50%;
		vertical-align: top;
		padding: 4% 50px;
}

.t-top__service li .txt h3 {
		font-size: 1.5rem;
}

.t-top__service li .txt > p {
		margin: 5% auto 10%;
		font-size: .9rem;
		line-height: 1.7;
		color: #737A93;
}

.t-top__service li .txt .btn {
		position: absolute;
		bottom: 8%;
		left: 54%;
		margin: 8% auto 0;
		font-size: .9rem;
}

.t-top__service li .txt .btn a {
		padding: 8px 48px;
}

.t-top__service li .txt .btn img {
		display: inline-block;
		margin: 4px 0 0 12px;
		width: 17px;
}

.t-top__service li:nth-of-type(1) .img > span {
		top: 42%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 116px;
		height: 116px;
		padding: 7px;
		background: #fff;
		border-radius: 25px;
		overflow: hidden;
		box-shadow: 0 7px 15px 4px rgba(46, 61, 115, 0.3);
}

.t-top__service li:nth-of-type(1) .img > img:nth-of-type(2) {
		top: 66%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 40%;
}

.t-top__service li:nth-of-type(2) .img > img:nth-of-type(2) {
		top: 76%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 58%;
}

.t-top__service li:nth-of-type(2) .img > img:nth-of-type(3) {
		bottom: 4%;
		left: 4%;
		width: 40%;
}

.t-top__question {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
		border-bottom: 1px solid #C5C8D3;
}

.t-top__question ul {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		margin: 5% auto 0;
		padding: 0 6% 2%;
}

.t-top__question ul li {
		position: relative;
		border-radius: 24px;
		box-shadow: 0 9px 18px -3px rgba(114, 121, 147, 0.4);
		margin-bottom: 2%;
		vertical-align: top;
		overflow: hidden;
}

.t-top__question ul li:last-child {
		margin-bottom: 0;
}

.t-top__question ul li .question {
		padding: 28px 3%;
		cursor: pointer;
}

.t-top__question ul li .question > img {
		display: inline-block;
		width: 23px;
		margin: 0 10px 0 0;
		vertical-align: top;
}

.t-top__question ul li .question > p {
		display: inline-block;
		font-size: .9rem;
		font-weight: bold;
		vertical-align: top;
		line-height: 1;
		margin-top: 3px;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
}

.t-top__question ul li .question .alw {
		position: absolute;
		top: 32px;
		right: 3%;
		width: 23px;
		height: 16px;
		display: block;
}

.t-top__question ul li .question .alw span {
		position: absolute;
		top: 50%;
		width: 59%;
		height: 3px;
		display: block;
		background: #F34A4F;
		-webkit-transition: 0.2s linear;
		transition: 0.2s linear;
}

.t-top__question ul li .question .alw span:nth-of-type(1) {
		left: 0;
}

.t-top__question ul li .question .alw span:nth-of-type(2) {
		right: 0;
}

.t-top__question ul li .answer {
		height: 0;
		color: #737A93;
		line-height: 1.7;
		opacity: 0;
		-webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
		transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.t-top__question ul li .answer p {
		border-top: 1px solid #FF9CA1;
		padding: 24px 3% 28px;
}

.t-top__question ul li .answer p a {
		color: #F34A4F;
		padding: 0 3px 2px;
		border-bottom: 1px solid #F34A4F;
}

.t-top__question ul li .answer p a:hover {
		opacity: .6;
}

.t-top__question .btn {
		margin: 4% auto 0;
		font-size: .9rem;
		width: 302px;
		display: block;
}

.t-top__question .btn a {
		padding: 8px 45px;
}

.t-top__patent {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 0;
}

.t-top__patent__inner {
		position: relative;
		display: block;
		margin: 5% auto 0;
		padding: 0 6% 2%;
		text-align: left;
}

.t-top__patent__inner > p {
		font-weight: bold;
		font-size: 1.05rem;
		margin: 20px 0;
}

.t-top__patent__inner > p:first-child {
		margin-top: 0;
}

.t-top__patent__inner ul {
		font-size: 0;
		letter-spacing: -.4em;
}

.t-top__patent__inner li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 48%;
		margin-right: 4%;
		border-radius: 16px;
		box-shadow: 0 9px 18px -3px rgba(114, 121, 147, 0.4);
		margin-bottom: 2%;
		vertical-align: top;
		padding: 23px 0 0;
		overflow: hidden;
}

.t-top__patent__inner li:nth-of-type(even) {
		margin-right: 0;
}

.t-top__patent__inner li p {
		position: relative;
		font-size: .9rem;
		min-height: 55px;
		line-height: 1.45;
		padding: 0 4%;
}

.t-top__patent__inner li span {
		padding: 8px 4% 20px;
		display: block;
		font-size: .8rem;
		color: #737A93;
}

.t-top__blog {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 4% 6%;
		border-bottom: 1px solid #C5C8D3;
}

.t-top__blog a {
		position: relative;
		width: 100%;
		height: 370px;
		overflow: hidden;
		border-radius: 24px;
		display: block;
}

.t-top__blog a > img {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		max-width: auto;
		width: auto;
		height: 106%;
		display: block;
		-webkit-transition: 1.5s linear;
		transition: 1.5s linear;
}

.t-top__blog a > span {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 88%;
		height: 75%;
		display: block;
		background: white;
		opacity: .9;
		border-radius: 19px;
		-webkit-transition: 0.2s ease-out;
		transition: 0.2s ease-out;
}

.t-top__blog a .txt {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 100%;
		display: block;
		text-align: center;
		-webkit-transition: 0.5s linear;
		transition: 0.5s linear;
}

.t-top__blog a .txt h2 {
		margin-bottom: 3%;
		color: #293256;
		line-height: 1;
}

.t-top__blog a .txt > p {
		width: 100%;
		line-height: 1.75;
		font-size: 1rem;
		color: #737A93;
}

.t-top__blog a .txt > p span {
		color: #F34A4F;
		font-weight: bold;
}

.t-top__blog a .txt .btn {
		margin: 45px auto 0;
		padding: 8px;
		font-size: .9rem;
		width: 280px;
		display: block;
}

.t-top__blog a .txt .btn img {
		vertical-align: top;
		display: inline-block;
		width: 16px;
		margin: 4px 0 0 12px;
}

.t-top__blog a:hover > img {
		top: 50%;
		height: 100%;
}

.t-top__blog a:hover > span {
		width: 101%;
		height: 101%;
		opacity: 0.75;
}

.t-top__blog a:hover .txt {
		top: 50%;
}

/* footer */
.up {
		position: fixed;
		z-index: 90;
		bottom: -54px;
		right: 3%;
		-webkit-transition: 0.7s 0.15s cubic-bezier(0.3, 1.7, 0.2, 1);
		transition: 0.7s 0.15s cubic-bezier(0.3, 1.7, 0.2, 1);
		border-radius: 50%;
		cursor: pointer;
}

.up span {
		position: relative;
		height: 54px;
		width: 54px;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.up span a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.up span:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

.up span:before, .up span:after {
		content: "";
		position: absolute;
		top: 49%;
		width: 32%;
		height: 3px;
		background: #fff;
		display: block;
		border-radius: 12px;
}

.up span:before {
		left: 24%;
		-webkit-transform: translateY(-50%) rotate(-45deg);
		transform: translateY(-50%) rotate(-45deg);
}

.up span:after {
		right: 24%;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
}

.upup {
		bottom: 3.6%;
}

.t-footer {
		display: block;
		background: #1E263F;
		color: #fff;
		overflow: hidden;
}

.t-footer a {
		color: #fff;
		-webkit-transition: 0.2s;
		transition: 0.2s;
}

.t-footer a:hover {
		opacity: .4;
}

.t-footer__top {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 65px 40px;
}

.t-footer__top > a {
		width: 100px;
		vertical-align: top;
		display: block;
		margin-top: -5px;
}

.t-footer__top > a img {
		width: 100px;
}

.t-footer__top > ul {
		font-size: 0;
		letter-spacing: -.4em;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 40px;
		width: 80%;
		text-align: right;
}

.t-footer__top li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		vertical-align: top;
		margin-left: 3%;
		text-align: right;
}

.t-footer__top li > a {
		display: block;
		padding: 4px 0;
}

.t-footer__top li .btn {
		border: 1px solid #fff;
		width: 130px;
}

.t-footer__top li .btn a {
		color: #fff;
		padding: 5px 0;
		display: block;
		text-align: center;
}

.t-footer__bottom {
		background: #1C253A;
		box-shadow: 0 11px 24px rgba(0, 0, 0, 0.2) inset;
		padding-top: 50px;
}

.t-footer__bottom ul {
		font-size: 0;
		letter-spacing: -.4em;
		text-align: center;
		margin-bottom: 60px;
}

.t-footer__bottom ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		padding-right: 13px;
		border-right: 1px solid #fff;
		margin: 0 13px 17px 0;
		font-size: .75rem;
}

.t-footer__bottom ul li:last-child {
		padding-right: 0;
		border-right: none;
		margin-right: 0;
}

.t-footer__bottom ul li img {
		display: inline-block;
		margin: 3px 0 0 2px;
		width: 15.2px;
		height: 15.2px;
}

.t-footer__bottom > p {
		text-align: center;
		font-size: .7rem;
		color: #737A93;
		padding-bottom: 30px;
}

/* 子ページタイトル */
.child-top {
		position: relative;
		width: 100%;
		display: block;
		height: 640px;
		background: #F2F4F7;
		overflow: hidden;
		box-shadow: 0 -17px 14px -9px rgba(0, 0, 0, 0.06) inset;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
		/* EPAとは？ */
}

.child-top__service, .child-top__cost, .child-top__scene, .child-top__faq, .child-top__contact, .child-top__regist, .child-top__sdgs, .child-top__privacy {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
}

.child-top__service > img, .child-top__cost > img, .child-top__scene > img, .child-top__faq > img, .child-top__contact > img, .child-top__regist > img, .child-top__sdgs > img {
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.child-top__service > img:nth-of-type(1), .child-top__cost > img:nth-of-type(1), .child-top__scene > img:nth-of-type(1), .child-top__faq > img:nth-of-type(1), .child-top__contact > img:nth-of-type(1), .child-top__regist > img:nth-of-type(1), .child-top__sdgs > img:nth-of-type(1) {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
}

.child-top__service > img:nth-of-type(2), .child-top__cost > img:nth-of-type(2), .child-top__scene > img:nth-of-type(2), .child-top__faq > img:nth-of-type(2), .child-top__contact > img:nth-of-type(2), .child-top__regist > img:nth-of-type(2), .child-top__sdgs > img:nth-of-type(2) {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
}

.child-top__service > img:nth-of-type(3), .child-top__cost > img:nth-of-type(3), .child-top__scene > img:nth-of-type(3), .child-top__faq > img:nth-of-type(3), .child-top__contact > img:nth-of-type(3), .child-top__regist > img:nth-of-type(3), .child-top__sdgs > img:nth-of-type(3) {
		position: absolute;
		bottom: 0;
		left: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 110%;
		max-width: 1920px;
}

.child-top__title {
		position: absolute;
		z-index: 10;
		top: 33%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		text-align: center;
		width: 90%;
		max-width: 500px;
}

.child-top__title img {
		height: 77px;
		width: auto;
		max-width: none;
		display: block;
		margin: 0 auto;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.child-top__title h1 {
		font-size: 2.4rem;
		margin: 5.5% auto 2.3%;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.child-top__title p {
		font-size: 1rem;
		line-height: 1.7;
		color: #737A93;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.g-child-top {
		position: relative;
		width: 100%;
		display: block;
		height: 316px;
		background: #F2F4F7;
		overflow: hidden;
		box-shadow: 0 -4px 10px 0px rgba(0, 0, 0, 0.05) inset;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.g-child-top__title {
		position: absolute;
		z-index: 10;
		top: 38%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		text-align: center;
		width: 90%;
		max-width: 500px;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.g-child-top__title img {
		height: 52px;
		width: auto;
		max-width: none;
		display: block;
		margin: 0 auto;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.g-child-top__title h1 {
		font-size: 2rem;
		margin: 5.5% auto 0;
		line-height: 1;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.g-child-top__title p {
		font-size: 1rem;
		line-height: 1.7;
		color: #737A93;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.t-service__info1, .t-service__info2 {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 92%;
		margin: 5% auto 2%;
}

.t-service__info1__img, .t-service__info2__img {
		max-width: 1100px;
		margin: 0 auto;
		border-radius: 32px;
		overflow: hidden;
		box-shadow: 0 13px 29px -8px rgba(52, 64, 102, 0.3);
		margin-bottom: 5%;
}

.t-service__info1__img img, .t-service__info2__img img {
		width: 100%;
}

.t-service__info1 p, .t-service__info2 p {
		text-align: center;
		font-size: 1.15rem;
		line-height: 1.9;
		font-weight: 400;
}

.t-service__info2 {
		margin-bottom: 4%;
}

.t-service__sample-code {
		border-top: 1px solid #C5C8D3;
		border-bottom: 1px solid #C5C8D3;
		padding: 3% 0;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
}

.t-service__sample-code__inner {
		position: relative;
		width: 94%;
		max-width: 1100px;
		margin: 0 auto;
		background: #293256;
		border-radius: 32px;
		box-shadow: 0 13px 29px -8px rgba(52, 64, 102, 0.3);
		overflow: hidden;
		color: #fff;
}

.t-service__sample-code__inner__left {
		position: absolute;
		z-index: 20;
		top: 0;
		left: 0;
		height: 100%;
		padding: 32px 0 0 32px;
		width: 178px;
		background: #344066;
}

.t-service__sample-code__inner__left img {
		width: 19px;
		margin-right: 6px;
		display: inline-block;
}

.t-service__sample-code__inner__left span {
		display: inline-block;
		vertical-align: top;
		line-height: 1;
		font-size: .9rem;
}

.t-service__sample-code__inner > ul {
		position: relative;
		z-index: 10;
		margin-left: 178px;
		padding-left: 0px;
		padding-right: 16px;
		width: 54px;
		box-shadow: 18px 0 27px -14px rgba(14, 19, 34, 0.4);
		text-align: right;
		letter-spacing: -.01rem;
		color: #526593;
		backgorund: #293256;
}

.t-service__sample-code__inner > p {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 232px;
		padding-left: 26px;
		padding-right: 20px;
		width: 650px;
		display: block;
		overflow-x: scroll;
}

.t-service__sample-code__inner > p .blue {
		color: #55C6FF;
}

.t-service__sample-code__inner > p .gray {
		color: #B3BBCE;
}

.t-service__sample-code__inner > p .orange {
		color: #FF9076;
}

.t-service__sample-code__inner > ul, .t-service__sample-code__inner > p {
		line-height: 1.9;
		font-size: .8rem;
		padding-top: 26px;
		padding-bottom: 26px;
}

.t-service__sample-code__inner__copy {
		position: absolute;
		z-index: 30;
		bottom: 30px;
		left: 30px;
		display: block;
		background: #fff;
		color: #293256;
		padding: 8px 24px;
		border-radius: 8px;
		box-shadow: 0 14px 29px -8px rgba(14, 19, 34, 0.7);
		font-size: .8rem;
		cursor: pointer;
		-webkit-transition: 0.4s;
		transition: 0.4s;
}

.t-service__sample-code__inner__copy:hover {
		-webkit-transform: translateY(2px);
		transform: translateY(2px);
		opacity: .6;
}

.t-service__sample-code__inner__copy-ok {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 232px;
		width: 650px;
		height: 100%;
		display: block;
		background: rgba(41, 50, 85, 0.8);
		display: none;
}

.t-service__sample-code__inner__copy-ok img {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 42%;
}

.t-service__sample-code__inner__copy-ok p {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 58%;
		font-size: 1.4rem;
		line-height: 1;
		color: #fff;
		font-weight: bold;
		text-shadow: 0 3px 3px #0e1322;
}

.t-service__feature {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		border-bottom: 1px solid #C5C8D3;
		padding: 3% 0;
}

.t-service__feature ul {
		font-size: 0;
		letter-spacing: -.4em;
}

.t-service__feature ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 50%;
		padding: 30px 8%;
		border-right: 1px solid #C5C8D3;
		text-align: center;
}

.t-service__feature ul li:last-child {
		border-right: 0;
}

.t-service__feature ul li img {
		width: 78%;
		margin: 0 auto 65px;
}

.t-service__feature ul li h3 {
		font-size: 1.4rem;
		margin-bottom: 28px;
		white-space: nowrap;
}

.t-service__feature ul li p {
		font-size: .95rem;
		line-height: 1.7;
		text-align: justify;
		color: #737A93;
}

.t-service__example {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		border-bottom: 1px solid #C5C8D3;
		padding: 3% 0;
}

.t-service__example ul {
		font-size: 0;
		letter-spacing: -.4em;
}

.t-service__example ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 33.33333%;
		padding: 30px 6%;
		border-right: 1px solid #C5C8D3;
		text-align: center;
}

.t-service__example ul li:last-child {
		border-right: 0;
}

.t-service__example ul li img {
		width: 100%;
		margin-bottom: 60px;
}

.t-service__example ul li h3 {
		font-size: 1.5rem;
}

.t-service__example .btn {
		margin: 8% auto 0;
		font-size: .9rem;
		width: 246px;
		display: block;
}

.t-service__example .btn a {
		padding: 8px 78px;
}

.t-service__cost {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		padding: 3% 6%;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-service__cost > img {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 51%;
		margin-right: 5%;
}

.t-service__cost__txt {
		position: relative;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 44%;
}

.t-service__cost__txt h3 {
		font-size: 1.7rem;
		margin-bottom: 6%;
}

.t-service__cost__txt p {
		font-size: .9rem;
		line-height: 1.75;
		color: #737A93;
}

.t-service__cost__txt .btn {
		margin-top: 16%;
		font-size: .9rem;
		width: 246px;
}

.t-service__cost__txt .btn a {
		padding: 8px 23%;
}

.t-cost__btn {
		width: 92%;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		font-size: 1rem;
		padding: 6px 0;
		margin: 24px auto 0;
}

.t-cost__btn a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.t-cost__btn:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

.t-cost__plan1, .t-cost__plan2 {
		width: 100%;
		margin: 5% auto 2%;
}

.t-cost__plan1 h3, .t-cost__plan2 h3 {
		font-size: 1.2rem;
		color: #fff;
		background: #293256;
		padding: 13px 0;
		text-align: center;
}

.t-cost__plan1 .person, .t-cost__plan2 .person {
		font-size: .6rem;
		color: #737A93;
		border: 1px solid #737A93;
		border-radius: 4px;
		padding: 3px 10px 4px;
		line-height: 1;
}

.t-cost__plan1 .cost, .t-cost__plan2 .cost {
		color: #293256;
		vertical-align: bottom;
		line-height: 1;
		text-align: center;
}

.t-cost__plan1 .cost span, .t-cost__plan2 .cost span {
		font-weight: bold;
}

.t-cost__plan1 h4, .t-cost__plan2 h4 {
		font-size: 1.1rem;
		text-align: center;
}

.t-cost__plan1 .plan-list, .t-cost__plan2 .plan-list {
		border-top: 1px solid #C5C8D3;
}

.t-cost__plan1 .plan-list > li, .t-cost__plan2 .plan-list > li {
		border-bottom: 1px solid #C5C8D3;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-cost__plan1 .plan-list > li > span, .t-cost__plan2 .plan-list > li > span {
		width: 50%;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		margin: 12px 0;
		line-height: 1;
		font-size: .8rem;
		text-align: left;
}

.t-cost__plan1 .plan-list > li > span:nth-of-type(1), .t-cost__plan2 .plan-list > li > span:nth-of-type(1) {
		border-right: 1px solid #C5C8D3;
		padding-left: 5%;
		color: #737A93;
}

.t-cost__plan1 .plan-list > li > span:nth-of-type(2), .t-cost__plan2 .plan-list > li > span:nth-of-type(2) {
		padding-left: 4%;
		font-weight: bold;
}

.t-cost__plan1__free, .t-cost__plan2__free {
		position: relative;
		width: 100%;
		margin: -1% auto 140px;
}

.t-cost__plan1__free:before, .t-cost__plan2__free:before {
		content: "";
		position: absolute;
		bottom: -20%;
		left: 0;
		width: 100%;
		height: 221px;
		display: block;
		background: #F2F4F7;
}

.t-cost__plan1__free__inner, .t-cost__plan2__free__inner {
		position: relative;
		width: 90%;
		max-width: 740px;
		margin: 0 auto;
		display: block;
		border-radius: 24px;
		box-shadow: 0 16px 29px -8px rgba(14, 19, 34, 0.2);
		overflow: hidden;
		background: #fff;
}

.t-cost__plan1__free__inner h3, .t-cost__plan2__free__inner h3 {
		background: #5EE5CB;
}

.t-cost__plan1__free__inner .cost, .t-cost__plan2__free__inner .cost {
		font-size: 1.4rem;
		margin: 22px auto;
}

.t-cost__plan1__free__inner .cost span, .t-cost__plan2__free__inner .cost span {
		font-size: 7rem;
		color: #22d6b3;
}

.t-cost__plan1__free__inner > ul, .t-cost__plan2__free__inner > ul {
		padding: 30px 36px;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-cost__plan1__free__inner > ul > li, .t-cost__plan2__free__inner > ul > li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 47%;
		margin-right: 6%;
}

.t-cost__plan1__free__inner > ul > li:last-child, .t-cost__plan2__free__inner > ul > li:last-child {
		margin-right: 0;
}

.t-cost__other {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		text-align: center;
		padding-bottom: 8%;
		border-bottom: 1px solid #C5C8D3;
}

.t-cost__other > ul {
		font-size: 0;
		letter-spacing: -.4em;
		width: 94%;
		margin: 0 auto 4%;
}

.t-cost__other > ul > li {
		position: relative;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 30.66667%;
		min-height: 600px;
		margin-right: 4%;
		border-radius: 24px;
		box-shadow: 0 16px 29px -8px rgba(14, 19, 34, 0.2);
		overflow: hidden;
		background: #fff;
}

.t-cost__other > ul > li:last-child {
		margin-right: 0;
}

.t-cost__other > ul > li > ul {
		padding: 24px;
}

.t-cost__other > ul > li > ul > li .cost {
		font-size: .9rem;
}

.t-cost__other > ul > li > ul > li .cost span {
		font-size: 3rem;
}

.t-cost__other > ul > li > ul > li h4 {
		font-size: .8rem;
		margin-bottom: 8px;
}

.t-cost__other > ul .plan-light h3 {
		background: #5C9DEA;
}

.t-cost__other > ul .plan-light .t-cost__btn {
		position: absolute;
		bottom: 24px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 80.03%;
}

.t-cost__other > ul .plan-light .t-cost__btn:hover {
		-webkit-transform: translate(-50%, -4%);
		transform: translate(-50%, -4%);
}

.t-cost__other > ul .plan-light > ul > li .cost {
		margin: 16px auto;
}

.t-cost__other > ul .plan-light > ul > li .cost span {
		color: #5C9DEA;
}

.t-cost__other > ul .plan-standard h3 {
		background: #FFC050;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul {
		margin: 14px auto 10px;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li {
		font-size: 0;
		letter-spacing: -.4em;
		border: 2px solid #FFC050;
		border-radius: 10px;
		margin-bottom: 10px;
		padding: 6px 4%;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:last-child {
		margin-bottom: 0;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li > p {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li > p:first-child {
		width: 56%;
		text-align: left;
		font-size: .7rem;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li > p:first-child span {
		display: block;
		font-weight: bold;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li > p:last-child {
		width: 44%;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) .cost {
		font-size: .7rem;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) .cost span {
		font-size: 3.2rem;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:nth-of-type(2) .cost, .t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:nth-of-type(3) .cost {
		font-size: .7rem;
}

.t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:nth-of-type(2) .cost span, .t-cost__other > ul .plan-standard > ul > li:nth-of-type(1) > ul > li:nth-of-type(3) .cost span {
		font-size: 2.1rem;
}

.t-cost__other > ul .plan-standard > ul > li .cost span {
		color: #FFC050;
}

.t-cost__other > ul .plan-premium h3 {
		background: #B56EF9;
}

.t-cost__other > ul .plan-premium .t-cost__btn {
		position: absolute;
		bottom: 24px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 80.03%;
}

.t-cost__other > ul .plan-premium .t-cost__btn:hover {
		-webkit-transform: translate(-50%, -4%);
		transform: translate(-50%, -4%);
}

.t-cost__other > ul .plan-premium > ul > li:nth-of-type(1) > p:nth-of-type(1) {
		font-size: 1.4rem;
		color: #B56EF9;
		font-weight: bold;
		margin: 10px auto 6px;
}

.t-cost__other > ul .plan-premium > ul > li:nth-of-type(1) > p:nth-of-type(2) {
		font-size: .75rem;
		margin-bottom: 16px;
}

.t-cost__other > ul .plan-premium > ul > li:nth-of-type(2) > p {
		margin-top: 8px;
}

.t-cost__plan2 {
		margin: 6% auto 0;
}

.t-scene {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 90%;
		margin: 5% auto 2%;
}

.t-scene h2 span {
		color: #F34A4F;
}

.t-scene__big {
		font-size: 0;
		letter-spacing: -.4em;
		margin: 0 auto 8%;
		width: 100%;
}

.t-scene__big > li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 46.5%;
		margin-right: 7%;
}

.t-scene__big > li:last-child {
		margin-right: 0;
}

.t-scene__big > li > img {
		width: 100%;
		border-radius: 24px;
}

.t-scene__big > li > h3 {
		font-size: 1.6rem;
		margin: 8% auto 4%;
		text-align: center;
}

.t-scene__big > li > p {
		font-size: 1rem;
		color: #737A93;
		line-height: 1.75;
		text-align: justify;
}

.t-scene__small {
		font-size: 0;
		letter-spacing: -.4em;
		margin-bottom: 2%;
}

.t-scene__small > li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 28.33333%;
		margin-right: 7.5%;
		margin-bottom: 5%;
		text-align: center;
}

.t-scene__small > li:nth-of-type(3), .t-scene__small > li:nth-of-type(6), .t-scene__small > li:nth-of-type(9), .t-scene__small > li:nth-of-type(12), .t-scene__small > li:nth-of-type(15) {
		margin-right: 0;
}

.t-scene__small > li > img {
		width: 41%;
}

.t-scene__small > li > h3 {
		font-size: 1.3rem;
		margin: 8% auto 5%;
}

.t-scene__small > li > p {
		font-size: .82rem;
		letter-spacing: -.5px;
		line-height: 1.6;
		color: #737A93;
		text-align: justify;
}

.t-scene > p {
		font-size: .875rem;
		text-align: center;
		margin-bottom: 8%;
		color: #737A93;
}

.t-faq {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 92%;
		margin: 5% auto 2%;
}

.t-faq .t-top__question {
		padding: 0;
		border-bottom: 0;
}

.t-contact {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 92%;
		margin: 5% auto 2%;
}

.t-contact h2 {
		margin-bottom: 8%;
}

.t-contact .errorMsg {
		text-align: center;
		font-size: 1.15rem;
		color: #F34A4F;
		position: absolute;
		top: 9.5%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
}

.t-contact__send {
		text-align: center;
		margin-top: -3%;
}

.t-contact__send > img {
		max-width: 140px;
		width: 36%;
		margin-bottom: 5%;
}

.t-contact__send__btn {
		width: 240px;
		display: block;
		border-radius: 60px;
		text-align: center;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .8px;
		text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
		box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
		background: #f7685f;
		background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
		background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
		-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		padding: 6px 0;
		margin: 6% auto 0;
}

.t-contact__send__btn a {
		display: block;
		color: #fff;
		border-radius: 60px;
		padding: 8px 0 9px;
		-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.t-contact__send__btn:hover {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
		opacity: .8;
}

.t-regist {
		position: relative;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 92%;
		margin: 5% auto 2%;
}

.t-regist h2 {
		margin-bottom: 8%;
}

.t-regist .errorMsg {
		text-align: center;
		font-size: 1.15rem;
		color: #F34A4F;
		position: absolute;
		top: 27%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		margin: 0;
}

.t-regist > p {
		margin: -3% auto 9%;
		text-align: center;
		font-size: .9rem;
		color: #737A93;
		line-height: 1.75;
}

.t-sdgs {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 100%;
		margin: 5% auto 2%;
}

.t-sdgs > img {
		display: block;
		width: 90%;
		max-width: 930px;
		margin: 0 auto;
		border-radius: 32px;
		overflow: hidden;
		box-shadow: 0 13px 29px -8px rgba(52, 64, 102, 0.3);
		margin-bottom: 5%;
}

.t-sdgs > p {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto 8%;
		line-height: 1.75;
		font-size: 1rem;
		text-align: justify;
}

.t-sdgs__inner {
		margin: 0 auto 9%;
		padding: 8% 0 0;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		border-top: 1px solid #C5C8D3;
}

.t-sdgs__inner__top h2 {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto 6%;
		white-space: normal;
}

.t-sdgs__inner__top p {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto 8%;
		line-height: 1.75;
		font-size: 1rem;
		text-align: justify;
		color: #737A93;
}

.t-sdgs__inner__bottom h2 {
		display: block;
		width: 90%;
		max-width: 1100px;
		margin: 0 auto 6%;
		white-space: normal;
}

.t-sdgs__inner__bottom ul {
		font-size: 0;
		letter-spacing: -.4em;
		width: 94%;
		margin: 0 auto 9%;
}

.t-sdgs__inner__bottom ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 23%;
		margin-right: 2.66667%;
}

.t-sdgs__inner__bottom ul li:last-child {
		margin-right: 0;
}

.t-sdgs__inner__bottom ul li:nth-of-type(1) > img {
		box-shadow: 0 15px 36px -9px rgba(27, 150, 58, 0.6);
}

.t-sdgs__inner__bottom ul li:nth-of-type(2) > img {
		box-shadow: 0 15px 36px -9px rgba(150, 10, 49, 0.6);
}

.t-sdgs__inner__bottom ul li:nth-of-type(3) > img {
		box-shadow: 0 15px 36px -9px rgba(236, 106, 6, 0.6);
}

.t-sdgs__inner__bottom ul li:nth-of-type(4) > img {
		box-shadow: 0 15px 36px -9px rgba(2, 48, 103, 0.6);
}

.t-sdgs__inner__bottom ul li > img {
		width: 100%;
		border-radius: 12px;
}

.t-sdgs__inner__bottom ul li h3 {
		margin: 12% auto 6%;
		padding: 0 4%;
		font-size: 1.05rem;
		text-align: center;
}

.t-sdgs__inner__bottom ul li p {
		width: 90%;
		margin: 0 auto;
		font-size: .8rem;
		line-height: 1.6;
		color: #737A93;
		text-align: justify;
}

.t-privacy, .t-privacy1, .t-privacy2, .t-privacy3 {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 100%;
		margin: 5% auto 2%;
}

.t-privacy .right, .t-privacy1 .right, .t-privacy2 .right, .t-privacy3 .right {
		text-align: right;
		font-size: .8rem;
		margin-bottom: 2%;
		padding: 0 5%;
}

.t-privacy .right:nth-of-type(2), .t-privacy1 .right:nth-of-type(2), .t-privacy2 .right:nth-of-type(2), .t-privacy3 .right:nth-of-type(2) {
		padding-bottom: 5%;
		margin-bottom: 5%;
		border-bottom: 1px solid #C5C8D3;
}

.t-privacy .right span, .t-privacy1 .right span, .t-privacy2 .right span, .t-privacy3 .right span {
		display: block;
		font-size: 1rem;
		color: #293256;
}

.t-privacy > p, .t-privacy .katakana, .t-privacy1 > p, .t-privacy1 .katakana, .t-privacy2 > p, .t-privacy2 .katakana, .t-privacy3 > p, .t-privacy3 .katakana {
		font-size: .8rem;
		line-height: 1.75;
		padding: 0 5% 5%;
		margin-bottom: 5%;
		border-bottom: 1px solid #C5C8D3;
}

.t-privacy > p:nth-last-of-type(1), .t-privacy .katakana:nth-last-of-type(1), .t-privacy1 > p:nth-last-of-type(1), .t-privacy1 .katakana:nth-last-of-type(1), .t-privacy2 > p:nth-last-of-type(1), .t-privacy2 .katakana:nth-last-of-type(1), .t-privacy3 > p:nth-last-of-type(1), .t-privacy3 .katakana:nth-last-of-type(1) {
		border: 0;
		padding-bottom: 0;
}

.t-privacy > p a, .t-privacy .katakana a, .t-privacy1 > p a, .t-privacy1 .katakana a, .t-privacy2 > p a, .t-privacy2 .katakana a, .t-privacy3 > p a, .t-privacy3 .katakana a {
		color: #F34A4F;
		text-decoration: underline;
}

.t-privacy .katakana__inner, .t-privacy1 .katakana__inner, .t-privacy2 .katakana__inner, .t-privacy3 .katakana__inner {
		display: block;
		padding-left: 45px;
}

.t-privacy .katakana__inner li, .t-privacy1 .katakana__inner li, .t-privacy2 .katakana__inner li, .t-privacy3 .katakana__inner li {
		display: list-item;
		list-style-type: katakana;
}

.t-privacy h3, .t-privacy1 h3, .t-privacy2 h3, .t-privacy3 h3 {
		font-size: 1.7rem;
		padding: 0 5%;
		margin-bottom: 3%;
}

.t-privacy > p:nth-of-type(1), .t-privacy1 > p:nth-of-type(1) {
		border: 0;
		margin-bottom: 0;
}

.t-privacy3 > p:nth-last-of-type(1) {
		padding: 0 5% 5%;
		margin-bottom: 5%;
		border-bottom: 1px solid #C5C8D3;
}

.t-privacy3__envir {
		font-size: .8rem;
		line-height: 1.75;
		padding: 0 5%;
		margin-bottom: 5%;
}

.t-privacy3__envir h4 {
		font-size: 1.3rem;
		margin: 2% 0 2%;
}

.t-privacy3__envir > ul {
		margin-bottom: 3.5%;
}

.t-privacy3__envir > ul > li {
		padding: 2% 2%;
		border-top: 1px solid #C5C8D3;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-privacy3__envir > ul > li:last-child {
		border-bottom: 1px solid #C5C8D3;
}

.t-privacy3__envir > ul > li > span {
		line-height: 1.75;
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		vertical-align: top;
}

.t-privacy3__envir > ul > li > span:first-child {
		width: 40%;
		padding-right: 6%;
		font-weight: bold;
}

.t-privacy3__envir > ul > li > span:last-child {
		width: 60%;
		color: #737A93;
}

.t-news {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		width: 90%;
		margin: 9% auto 9%;
}

.t-news__list {
		position: relative;
		display: block;
		width: 90%;
		margin: -3% auto 34px;
}

.t-news__list__sort {
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
		display: block;
		margin: 0 auto 8%;
}

.t-news__list__sort > p {
		text-align: center;
		margin-bottom: 2%;
		font-weight: bold;
		color: #C5C8D3;
		font-size: .9rem;
}

.t-news__list__sort > p svg {
		width: 17px;
		margin: -3.5px 2px 0 0;
}

.t-news__list__sort > p svg circle, .t-news__list__sort > p svg line {
		fill: none;
		stroke: #C5C8D3;
		stroke-miterlimit: 10;
		stroke-width: 90px;
}

.t-news__list__sort > p svg line {
		stroke-linecap: round;
}

.t-news__list__sort ul {
		width: 100%;
		display: block;
		background: #fff;
		border-radius: 50px;
		box-shadow: 0 13px 38px -12px rgba(114, 121, 147, 0.6);
		padding: 18px 15%;
		font-size: 0;
		letter-spacing: -.4em;
}

.t-news__list__sort ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 25%;
		text-align: center;
}

.t-news__list__sort ul li:last-child {
		margin-right: 0;
}

.t-news__list__sort ul li p {
		padding: 4px 8px;
		font-size: 1rem;
		border-radius: 40px;
		border: 2px solid #fff;
		-webkit-transition: 0.2s linear;
		transition: 0.2s linear;
		max-width: 160px;
		margin: 0 auto;
		cursor: pointer;
}

.t-news__list__sort ul li p:hover {
		opacity: .5;
		border-color: #cccfdb;
}

.t-news__list__sort ul .active p {
		color: #F34A4F;
		border: 2px solid #F34A4F;
		cursor: default;
}

.t-news__list__sort ul .active p:hover {
		opacity: 1;
		border-color: #F34A4F;
}

.t-news__list__inner ul {
		font-size: 0;
		letter-spacing: -.4em;
}

.t-news__list__inner ul li {
		display: inline-block;
		font-size: .8rem;
		letter-spacing: normal;
		vertical-align: top;
		width: 30%;
		margin-right: 5%;
		margin-bottom: 4%;
		border-radius: 20px;
		box-shadow: 0 13px 38px -12px rgba(114, 121, 147, 0.6);
		vertical-align: top;
		overflow: hidden;
		background: #fff;
		-webkit-transition: 0.3s ease-out;
		transition: 0.3s ease-out;
}

.t-news__list__inner ul li:nth-of-type(3), .t-news__list__inner ul li:nth-of-type(6), .t-news__list__inner ul li:nth-of-type(9), .t-news__list__inner ul li:nth-of-type(12), .t-news__list__inner ul li:nth-of-type(15), .t-news__list__inner ul li:nth-of-type(18), .t-news__list__inner ul li:nth-of-type(21), .t-news__list__inner ul li:nth-of-type(24), .t-news__list__inner ul li:nth-of-type(27), .t-news__list__inner ul li:nth-of-type(30), .t-news__list__inner ul li:nth-of-type(33), .t-news__list__inner ul li:nth-of-type(36) {
		margin-right: 0;
}

.t-news__list__inner ul li a {
		color: #293256;
}

.t-news__list__inner ul li .img {
		display: block;
		position: relative;
		width: 100%;
		overflow: hidden;
		border-bottom: 1px solid #dee0e7;
}

.t-news__list__inner ul li .img::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-shadow: 0 -19px 23px -12px rgba(188, 191, 201, 0.4) inset;
}

.t-news__list__inner ul li .img img {
		width: 100%;
		display: block;
		border-radius: 20px 20px 0 0;
		-webkit-transition: 1.5s ease-out;
		transition: 1.5s ease-out;
}

.t-news__list__inner ul li .txt {
		min-height: 153px;
		padding-bottom: 24px;
}

.t-news__list__inner ul li .txt > p {
		position: relative;
		display: block;
		margin: 26px auto 18px;
		height: 19px;
		width: 85%;
}

.t-news__list__inner ul li .txt > p .category {
		background: #F34A4F;
		padding: 4px 14px 3px;
		line-height: 1;
		white-space: nowrap;
		display: inline-block;
		color: #fff;
		font-size: .625rem;
		font-weight: 600;
		border-radius: 4px;
		vertical-align: top;
}

.t-news__list__inner ul li .txt > p .date {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
}

.t-news__list__inner ul li .txt h4 {
		font-size: .85rem;
		line-height: 1.7;
		width: 84%;
		margin: 0 auto;
}

.t-news__item {
		position: relative;
		display: block;
		width: 90%;
		margin: -3% auto 34px;
}

.t-news__item__category {
		position: relative;
		display: inline-block;
		padding: 7px 27px 7px 28px;
		background: #F34A4F;
		border-radius: 30px;
		color: #fff;
		line-height: 1;
		letter-spacing: .08rem;
		font-size: .7rem;
		font-weight: bold;
}

.t-news__item__date {
		position: relative;
		display: inline-block;
		margin-left: 12px;
		font-size: .85rem;
		line-height: 1;
		color: #737A93;
}

.t-news h2 {
		width: 90%;
		margin: 0 auto 6%;
		font-size: 1.65rem;
		text-align: left;
		white-space: normal;
}

.t-news__txt {
		width: 90%;
		margin: 0 auto;
		border-radius: 32px;
		background: #fff;
		box-shadow: 0 8px 30px -8px rgba(114, 121, 147, 0.5);
		padding: 6% 6%;
}

.t-news__txt > img {
		position: relative;
		width: 100%;
		display: block;
		margin: 0 auto 6%;
		border-radius: 24px;
		overflow: hidden;
}

.t-news__txt > h3 {
		font-size: 1.6rem;
		margin-bottom: 2%;
}

.t-news__txt > p {
		font-size: .95rem;
		line-height: 1.75;
		margin-bottom: 3%;
}

.t-news__txt > a {
		font-size: 1rem;
		display: inline-block;
		padding: 0 20px 0 0;
		color: #F34A4F;
		text-decoration: underline;
}

.t-news__txt > a:hover {
		opacity: .4;
}

.t-news__txt > span {
		display: block;
		width: 100%;
		height: 1px;
		background: #C5C8D3;
		margin-bottom: 3%;
}

/* state */
.l-header, .t-header, .t-header > a svg, .t-header__menu {
		-webkit-transition: 0.4s cubic-bezier(0.61, 1, 0.88, 1);
		transition: 0.4s cubic-bezier(0.61, 1, 0.88, 1);
}

.headerBlur {
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 0px 26px 0px rgba(0, 0, 0, 0.2);
}

.headerBlur .t-header {
		height: 76px;
		padding: 20px 3% !important;
}

.headerBlur .t-header > a svg {
		width: 110px !important;
}

.headerBlur .t-header__menu {
		top: 15px !important;
}

.headerBlur .t-header .menu-trigger {
		top: 22px !important;
}

.matt1 {
		top: 48%;
		width: 1060px;
}

.mattBg1 {
		top: 66%;
}

.t-top__matt-kun__chara .active {
		position: relative !important;
		opacity: 1 !important;
}

.profInfo {
		top: 68% !important;
		opacity: 1 !important;
		box-shadow: 0 8px 21px -5px rgba(154, 38, 41, 0.5);
		-webkit-transform: perspective(1000px) translate(180px, -50%) rotateX(0deg) !important;
		transform: perspective(1000px) translate(180px, -50%) rotateX(0deg) !important;
}

.mattList-left {
		top: 26% !important;
		opacity: 1 !important;
		-webkit-transform: perspective(1000px) translateX(-592px) rotateX(0deg) !important;
		transform: perspective(1000px) translateX(-592px) rotateX(0deg) !important;
}

.mattList-right {
		top: 26% !important;
		opacity: 1 !important;
		-webkit-transform: perspective(1000px) translateX(222px) rotateX(0deg) !important;
		transform: perspective(1000px) translateX(222px) rotateX(0deg) !important;
}

@keyframes recording {
		0% {
				-webkit-transform: translateX(0%);
				transform: translateX(0%);
		}
		100% {
				-webkit-transform: translateX(-49.75%);
				transform: translateX(-49.75%);
		}
}

@-webkit-keyframes recording {
		0% {
				-webkit-transform: translateX(0%);
				transform: translateX(0%);
		}
		100% {
				-webkit-transform: translateX(-49.75%);
				transform: translateX(-49.75%);
		}
}

@keyframes recordingImg {
		0% {
				-webkit-transform: scaleY(1);
				transform: scaleY(1);
				opacity: 1;
		}
		12.5% {
				-webkit-transform: scaleY(0.9);
				transform: scaleY(0.9);
				opacity: .7;
		}
		25% {
				-webkit-transform: scaleY(1);
				transform: scaleY(1);
				opacity: 1;
		}
		37.5% {
				-webkit-transform: scaleY(0.95);
				transform: scaleY(0.95);
				opacity: .6;
		}
		50% {
				-webkit-transform: scaleY(1);
				transform: scaleY(1);
				opacity: 1;
		}
		62.5% {
				-webkit-transform: scaleY(0.9);
				transform: scaleY(0.9);
				opacity: .7;
		}
		75% {
				-webkit-transform: scaleY(1);
				transform: scaleY(1);
				opacity: 1;
		}
		87.5% {
				-webkit-transform: scaleY(0.85);
				transform: scaleY(0.85);
				opacity: .6;
		}
		100% {
				-webkit-transform: scaleY(1);
				transform: scaleY(1);
				opacity: 1;
		}
}

@-webkit-keyframes topBtn1 {
		0% {
				-webkit-transform: scale(0) rotate(45deg);
				opacity: 0;
		}
		50% {
				-webkit-transform: scale(10) rotate(45deg);
				opacity: 1;
		}
		100% {
				-webkit-transform: scale(70) rotate(45deg);
				opacity: 0;
		}
}

@keyframes topBtn1 {
		0% {
				transform: scale(0) rotate(45deg);
				opacity: 0;
		}
		50% {
				transform: scale(10) rotate(45deg);
				opacity: 1;
		}
		100% {
				transform: scale(70) rotate(45deg);
				opacity: 0;
		}
}

@keyframes topBtn2 {
		0% {
				background: rgba(255, 255, 255, 0.2);
		}
		42.5% {
				background: #fff;
		}
		67.5% {
				background: #fff;
		}
		100% {
				background: rgba(255, 255, 255, 0.2);
		}
}

.newsBack {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
}

.btnAnime {
		-webkit-animation: .4s btnAnime linear;
		animation: .4s btnAnime linear;
}

@-webkit-keyframes btnAnime {
		0% {
				-webkit-transform: scale(1);
		}
		25% {
				-webkit-transform: scale(0.94);
		}
		100% {
				-webkit-transform: scale(1);
		}
}

@keyframes btnAnime {
		0% {
				transform: scale(1);
		}
		25% {
				transform: scale(0.94);
		}
		100% {
				transform: scale(1);
		}
}

.btnAnime2 {
		-webkit-animation: .5s btnAnime2 linear;
		animation: .5s btnAnime2 linear;
}

@-webkit-keyframes btnAnime2 {
		0% {
				-webkit-transform: scale(1);
		}
		25% {
				-webkit-transform: scale(0.98);
		}
		100% {
				-webkit-transform: scale(1);
		}
}

@keyframes btnAnime2 {
		0% {
				transform: scale(1);
		}
		25% {
				transform: scale(0.98);
		}
		100% {
				transform: scale(1);
		}
}

.alwAnime1 {
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
}

.alwAnime2 {
		-webkit-transform: translateY(-50%) rotate(-45deg);
		transform: translateY(-50%) rotate(-45deg);
}

.pb {
		padding-bottom: 28px !important;
}

.txtS {
		color: #737A93 !important;
		font-size: .8rem !important;
		opacity: .75;
}

@media screen and (max-height: 1100px) {
		.t-header {
				padding: 20px 0;
		}
		.t-header__menu {
				top: 20px;
		}
		.matt1 {
				top: 42% !important;
		}
		.mattList-left, .mattList-right {
				top: 23% !important;
		}
		.profInfo {
				top: 61% !important;
		}
		.t-top__matt-kun h1 {
				top: 16.5%;
				font-size: 2.05rem;
		}
		.t-top__matt-kun__txt-left, .t-top__matt-kun__txt-right {
				top: 26%;
		}
		.t-top__matt-kun__chara {
				top: 51%;
				width: 694px;
		}
		.t-top__matt-kun__profile {
				top: 68%;
		}
		.t-top__matt-kun__profileBtn {
				top: 67%;
		}
		.t-top__matt-kun .upload-voice__area {
				padding: 14px 10px;
		}
		.t-top__matt-kun .upload-voice__area__before > svg {
				width: 29%;
				margin: 6px auto 9px;
		}
		.t-top__matt-kun .upload-voice__area__before > p {
				margin: 12px auto 6px;
		}
		.t-top__matt-kun .upload-voice__area__btn {
				margin: 9px auto;
		}
		.t-top__matt-kun .select-voice > ul > li > img {
				width: 84%;
				margin: 0 auto 2px;
		}
		.t-top__matt-kun__btn1 {
				padding: 14px 47px;
				min-width: auto;
		}
		.t-top__matt-kun__btn3 {
				top: 90%;
		}
		.t-top__matt-kun__btn3 p {
				margin-bottom: 15px;
				font-size: .8rem;
		}
		.t-top__matt-kun__btn3 > span {
				padding: 14px 14px;
				min-width: auto;
				margin: 0 auto;
				width: 98%;
				font-size: 1rem;
		}
		.t-top__matt-kun__btn4 {
				top: 90%;
		}
		.t-top__matt-kun__btn4 p {
				font-size: 1.2rem;
		}
		.t-top__matt-kun__btn4 .start {
				padding: 14px 47px;
				width: 194px;
				height: 61px;
		}
		.t-top__matt-kun__btn4 .end {
				width: 61px;
				height: 61px;
		}
		.t-top__matt-kun__btn4 .end::after {
				width: 28px;
				height: 28px;
		}
		.t-top__matt-kun__btn5 {
				top: 90%;
				padding: 14px 47px;
		}
}

@media screen and (max-width: 1450px) {
		.child-top {
				height: 480px;
		}
		.child-top div:nth-of-type(1) img:last-child {
				width: 1350px;
		}
		.child-top__title img {
				height: 62px;
		}
		.child-top__title h1 {
				font-size: 2rem;
				margin: 4% auto 2%;
		}
		.child-top__title p {
				font-size: .85rem;
				line-height: 1.6;
				width: 70%;
				margin: 0 auto;
		}
		.child-top__title p br {
				display: none;
		}
		.child-top__title__faqTxt {
				width: 90% !important;
		}
		.child-top__title__faqTxt br {
				display: block !important;
		}
		.t-top__matt-kun__chara {
				width: 840px;
		}
		.t-top__matt-kun__txt-left {
				-webkit-transform: perspective(1000px) translateX(-532px) rotateX(-90deg);
				transform: perspective(1000px) translateX(-532px) rotateX(-90deg);
		}
		.t-top__matt-kun__txt-right {
				-webkit-transform: perspective(1000px) translateX(169px) rotateX(-90deg);
				transform: perspective(1000px) translateX(169px) rotateX(-90deg);
		}
		.t-top__matt-kun__profile {
				-webkit-transform: perspective(1000px) translate(160px, -50%) rotateX(-60deg);
				transform: perspective(1000px) translate(160px, -50%) rotateX(-60deg);
		}
		.mattList-left {
				-webkit-transform: perspective(1000px) translateX(-532px) rotateX(0deg) !important;
				transform: perspective(1000px) translateX(-532px) rotateX(0deg) !important;
		}
		.mattList-right {
				-webkit-transform: perspective(1000px) translateX(162px) rotateX(0deg) !important;
				transform: perspective(1000px) translateX(162px) rotateX(0deg) !important;
		}
		.matt1 {
				width: 900px;
		}
		.profInfo {
				-webkit-transform: perspective(1000px) translate(160px, -50%) rotateX(0deg) !important;
				transform: perspective(1000px) translate(160px, -50%) rotateX(0deg) !important;
		}
}

@media screen and (max-width: 1030px) {
		.child-top {
				height: 300px;
		}
		.child-top div:nth-of-type(1) img:last-child {
				width: 825px;
		}
		.child-top__title img {
				height: 46px;
		}
		.child-top__title h1 {
				font-size: 2.2rem;
				margin: 4% auto;
		}
		.child-top__title p {
				display: none;
		}
		.g-child-top {
				height: 240px;
		}
		.g-child-top__title {
				top: 66px;
		}
		.g-child-top__title img {
				height: 46px;
		}
		.g-child-top__title h1 {
				font-size: 2.2rem;
				margin: 4% auto;
		}
		:root {
				font-size: 17px;
		}
		.free-regist::before {
				height: 36%;
				max-height: none;
		}
		.free-regist__inner__txt {
				margin: 0 auto;
				padding: 0;
				width: 90%;
				display: block;
				text-align: center;
		}
		.free-regist__inner__txt h2 {
				padding: 6% 0 3%;
				text-align: center;
				white-space: unset;
		}
		.free-regist__inner__txt p {
				background: none;
				font-size: 1rem;
				white-space: unset;
		}
		.free-regist__inner > img {
				display: block;
				margin: 4% auto 0;
				width: 100%;
				max-width: 550px;
		}
		.free-regist__inner__btn {
				padding: 0;
				top: 77%;
				left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
		}
		.free-regist__inner__btn a {
				margin: 0 auto;
				font-size: 1.35rem;
		}
		.t-header {
				padding: 32px 3%;
				width: 100%;
		}
		.t-header__menu {
				width: 100%;
				text-align: center;
				-webkit-transition: 0.6s;
				transition: 0.6s;
				-webkit-transform: translateY(-100%);
				transform: translateY(-100%);
		}
		.t-header__menu > ul {
				opacity: 0;
				-webkit-transition: 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
				transition: 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
				position: absolute;
				top: 45%;
				left: 50%;
				-webkit-transform: translate(-50%, -100%);
				transform: translate(-50%, -100%);
				width: 90%;
				max-width: 400px;
		}
		.t-header__menu > ul > li {
				-webkit-transition: 1.3s cubic-bezier(0.34, 1.56, 0.64, 1);
				transition: 1.3s cubic-bezier(0.34, 1.56, 0.64, 1);
				display: block;
				margin: 0;
				font-size: 1.5rem;
		}
		.t-header__menu > ul > li:last-child {
				margin-top: 4%;
				border-top: 1px solid #C5C8D3;
		}
		.t-header__menu__btn {
				margin: 7% auto 0 !important;
				font-size: 1.4rem;
				width: 100% !important;
				max-width: 300px;
				padding: 4px;
		}
		.t-header .menu-trigger {
				display: block;
		}
		.headerBlur .t-header__menu {
				top: 0 !important;
		}
		.active-menu {
				position: fixed;
				top: 0 !important;
				right: 0;
				width: 100%;
				height: 100vh;
				background: rgba(255, 255, 255, 0.9);
				-webkit-transform: translateY(0%);
				transform: translateY(0%);
		}
		.active-menu > ul {
				opacity: 1;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
		}
		.matt1 {
				width: 800px !important;
		}
		.profInfo {
				top: 62% !important;
		}
		.t-top h1 {
				font-size: 2rem;
		}
		.t-top__matt-kun__chara {
				width: 720px;
		}
		.t-top__matt-kun__txt-left {
				width: 262px;
				-webkit-transform: perspective(1000px) translateX(-390px) rotateX(-90deg);
				transform: perspective(1000px) translateX(-390px) rotateX(-90deg);
		}
		.t-top__matt-kun__txt-left > ul > li > p {
				padding: 16px 20px;
				border-radius: 16px 16px 0 16px;
		}
		.t-top__matt-kun h4 {
				margin-bottom: 8px;
		}
		.t-top__matt-kun__txt-right {
				width: 262px;
				-webkit-transform: perspective(1000px) translateX(122px) rotateX(-90deg);
				transform: perspective(1000px) translateX(122px) rotateX(-90deg);
		}
		.t-top__matt-kun__txt-right > ul > li > div {
				padding: 14px 20px;
		}
		.t-top__matt-kun__profile {
				width: 262px;
				top: 70%;
				-webkit-transform: perspective(1000px) translate(122px, -50%) rotateX(-60deg);
				transform: perspective(1000px) translate(122px, -50%) rotateX(-60deg);
		}
		.t-top__matt-kun__profileBtn {
				left: 46.5%;
		}
		.t-top__matt-kun .upload-voice {
				padding: 14px 18px 18px;
				margin-bottom: 16px;
		}
		.t-top__matt-kun .select-voice {
				padding: 12px 18px 10px;
		}
		.t-top__matt-kun .recording__img {
				height: 182px;
		}
		.t-top__matt-kun .recording__img__anime img {
				height: 100%;
		}
		.t-top__matt-kun .question {
				padding: 14px 0;
				-webkit-transition: 0.4s;
				transition: 0.4s;
		}
		.t-top__matt-kun .question > ul {
				padding: 17px 14px 0px;
		}
		.t-top__matt-kun .question .share {
				bottom: -44px;
		}
		.t-top__matt-kun .emotional-val__table1 {
				margin: 0px auto 14px;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) img {
				width: 79%;
				margin-top: 10%;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li {
				margin: 0 0 9px 35px;
		}
		.t-top__matt-kun .emotional-val__table2 > ul {
				width: 100%;
				margin-bottom: 8px;
		}
		.t-top__matt-kun .emotional-val__table2 > ul > li p {
				margin-top: 5px;
		}
		.t-top__matt-kun__btn3 p {
				margin-bottom: 15px;
				font-size: .8rem;
		}
		.t-top__matt-kun__btn3 > span {
				padding: 14px 14px;
				min-width: auto;
				margin: 0 auto;
				width: 98%;
				font-size: 1rem;
		}
		.t-top__summary ul {
				padding: 0;
		}
		.t-top__summary ul li {
				width: 100%;
				min-height: auto;
				border: 0;
				border-bottom: 2px solid #C5C8D3;
				text-align: center;
				margin: 0 auto;
				padding: 13% 0% 11%;
				display: block;
		}
		.t-top__summary ul li:last-child {
				width: 100%;
				margin: 0 auto;
				padding: 13% 0% 11%;
				border: 0;
		}
		.t-top__summary ul li > span {
				font-size: 20rem;
				position: absolute;
				top: 50%;
				left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
				text-align: center;
				line-height: 1;
				width: auto;
				max-width: none;
				opacity: .2;
				font-weight: 900;
				border: 0;
		}
		.t-top__summary ul li h3 {
				position: relative;
				font-size: 1.8rem;
				text-align: center;
				width: 100%;
				display: block;
		}
		.t-top__summary ul li > p {
				position: relative;
				font-size: 1rem;
				line-height: 1.75;
				width: 100%;
				max-width: 420px;
				margin: 27px auto 0;
				text-align: center;
		}
		.t-top__news .category {
				font-size: .8rem;
				padding: 6px 20px 5px;
				border-radius: 20px;
		}
		.t-top__news .date {
				font-size: .95rem;
		}
		.t-top__news__new ul li {
				position: relative;
				display: block;
				margin: 0 auto 6% !important;
				width: 100%;
				max-width: 600px;
		}
		.t-top__news__new ul li .txt {
				position: absolute;
				bottom: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: rgba(255, 255, 255, 0.6);
		}
		.t-top__news__new ul li .txt > p {
				margin: 19% 6% 4%;
		}
		.t-top__news__new ul li .txt > h4 {
				font-size: 1.2rem;
				line-height: 1.5;
				padding-bottom: 40px;
				min-height: auto;
				margin: 0 6%;
		}
		.t-top__news__old ul li h4 {
				margin-top: 1%;
				font-size: 1.2rem;
				width: 100%;
		}
		.t-top__overview {
				padding: 10% 6%;
		}
		.t-top__overview__img {
				margin: 0 auto 6%;
				width: 90%;
				max-width: 500px;
				display: block;
		}
		.t-top__overview__txt {
				margin: 0 auto;
				width: 90%;
				max-width: 610px;
				display: block;
		}
		.t-top__overview__txt h2 {
				white-space: none;
				text-align: center;
		}
		.t-top__overview__txt p {
				font-size: 1.1rem;
		}
		.t-top__explain {
				padding: 10% 0;
				width: 90%;
				margin: 0 auto;
		}
		.t-top__explain > p {
				width: 90%;
				font-size: 1.1rem;
		}
		.t-top__explain__sevice {
				width: 100%;
				max-width: none;
				margin-top: 6%;
		}
		.t-top__explain__sevice > ul > li {
				min-height: 490px;
				width: 48%;
				margin-right: 4%;
		}
		.t-top__explain__sevice > ul > li:last-child {
				margin-right: 0;
		}
		.t-top__explain__sevice > ul > li > p {
				font-size: .95rem;
				line-height: 1.6;
		}
		.t-top__example {
				padding: 10% 0;
		}
		.t-top__example ul li {
				width: 100% !important;
				margin: 0 auto 10%;
				display: block;
				padding: 0;
				border: 0;
				min-height: auto;
		}
		.t-top__example ul li:last-child {
				margin-bottom: 0;
		}
		.t-top__example ul li img {
				width: 70%;
				max-width: 250px;
				display: block;
				margin: 0 auto;
		}
		.t-top__example ul li h3 {
				font-size: 1.6rem;
				margin: 5% auto 3%;
		}
		.t-top__example ul li p {
				max-width: 450px;
				width: 100%;
				margin: 0 auto;
				text-align: center;
				font-size: .95rem;
		}
		.t-top__cost {
				padding: 10% 0;
		}
		.t-top__cost > ul > li {
				min-height: 382px;
				width: 48%;
				margin-right: 4%;
		}
		.t-top__cost > ul > li:last-child {
				margin-right: 0;
		}
		.t-top__service li {
				width: 90%;
				max-width: 600px;
				margin: 0 auto 8%;
		}
		.t-top__service li:last-child {
				margin-bottom: 0;
		}
		.t-top__service li .img {
				display: block;
				width: 100%;
				height: 300px;
		}
		.t-top__service li .txt {
				display: block;
				width: 100%;
				padding: 30px 7%;
		}
		.t-top__service li .txt h3 {
				font-size: 1.6rem;
				text-align: center;
		}
		.t-top__service li .txt > p {
				margin: 3% auto 9%;
				font-size: .95rem;
		}
		.t-top__service li .txt .btn {
				position: relative;
				bottom: auto;
				left: auto;
				margin: 0 auto;
				display: block;
				width: 265px;
		}
		.t-top__service li .txt .btn img {
				margin-top: 1px;
		}
		.t-top__service li .txt .btn a {
				padding: 8px 12px;
		}
		.t-top__service li:nth-of-type(1) .img > img:nth-of-type(2) {
				top: 77%;
				width: 204px;
		}
		.t-top__service li:nth-of-type(1) .img > img > span {
				width: 108px;
				height: 108px;
				border-radius: 24px;
		}
		.t-top__service li:nth-of-type(2) .img > img:nth-of-type(2) {
				top: 38%;
				left: 3%;
				-webkit-transform: none;
				transform: none;
				width: 55%;
		}
		.t-top__service li:nth-of-type(2) .img > img:nth-of-type(3) {
				bottom: 6%;
		}
		.t-footer__top {
				display: none;
		}
		.mattList-left {
				-webkit-transform: perspective(1000px) translateX(-390px) rotateX(0deg) !important;
				transform: perspective(1000px) translateX(-390px) rotateX(0deg) !important;
		}
		.mattList-right {
				-webkit-transform: perspective(1000px) translateX(122px) rotateX(0deg) !important;
				transform: perspective(1000px) translateX(122px) rotateX(0deg) !important;
		}
		.profInfo {
				-webkit-transform: perspective(1000px) translate(122px, -50%) rotateX(0deg) !important;
				transform: perspective(1000px) translate(122px, -50%) rotateX(0deg) !important;
		}
		.t-service__sample-code__inner__copy-ok img, .t-service__sample-code__inner__copy-ok p {
				left: 43%;
		}
		.t-service__example ul li {
				padding: 18px 4%;
		}
		.t-service__cost {
				padding: 10% 6%;
		}
		.t-service__cost > img {
				margin: 0 auto 6%;
				width: 90%;
				max-width: 500px;
				display: block;
		}
		.t-service__cost__txt {
				margin: 0 auto;
				width: 90%;
				max-width: 610px;
				display: block;
		}
		.t-service__cost__txt h3 {
				white-space: normal;
				text-align: center;
		}
		.t-service__cost__txt > p {
				font-size: 1.1rem;
				text-align: center;
		}
		.t-service__cost__txt .btn {
				margin-top: 10%;
				margin: 10% auto 0;
				display: block;
		}
		.t-cost__plan1__free__inner, .t-cost__plan2__free__inner {
				max-width: 600px;
		}
		.t-cost__other > ul {
				width: 100%;
		}
		.t-cost__other > ul > li {
				width: 90%;
				max-width: 600px;
				margin: 0 auto 6%;
				display: block;
				min-height: auto;
		}
		.t-cost__other > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) {
				text-align: left;
		}
		.t-cost__other > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) .cost {
				margin: 63px auto 62px;
		}
		.t-cost__other > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) .cost span {
				font-size: 3.4rem;
		}
		.t-cost__other > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) h4 {
				margin: 0;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(1) {
				text-align: left;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) .cost span {
				font-size: 3.6rem !important;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(1) > ul > li:nth-of-type(2) .cost span, .t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(1) > ul > li:nth-of-type(3) .cost span {
				font-size: 2.5rem !important;
				letter-spacing: -2px;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(1) > ul > li p {
				font-size: .8rem !important;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(1) h4 {
				margin: 0;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(2) {
				padding-top: 35px;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(2) .t-cost__btn {
				margin-top: 82px;
		}
		.t-cost__other > ul > li:nth-of-type(3) > ul > li:nth-of-type(1) {
				text-align: left;
		}
		.t-cost__other > ul > li:nth-of-type(3) > ul > li:nth-of-type(1) p:nth-of-type(1) {
				font-size: 2.3rem;
				letter-spacing: -1px;
				margin: 48px auto 38px;
				text-align: center;
		}
		.t-cost__other > ul > li:nth-of-type(3) > ul > li:nth-of-type(1) p:nth-of-type(2) {
				margin-bottom: 19px;
		}
		.t-cost__other > ul > li:nth-of-type(3) > ul > li:nth-of-type(1) h4 {
				margin: 0;
				font-size: 1.1rem;
		}
		.t-cost__other > ul > li:last-child {
				margin: 0 auto 6%;
		}
		.t-cost__other > ul > li > ul {
				font-size: 0;
				letter-spacing: -.4em;
				padding: 30px 36px;
		}
		.t-cost__other > ul > li > ul > li {
				display: inline-block;
				font-size: .8rem;
				letter-spacing: normal;
				vertical-align: top;
				vertical-align: top;
				width: 47%;
				margin-right: 6%;
		}
		.t-cost__other > ul > li > ul > li:nth-of-type(2) {
				margin-right: 0;
		}
		.t-cost__other > ul > li > ul > li:nth-of-type(2) .t-cost__btn {
				position: relative;
				bottom: auto;
				left: auto;
				-webkit-transform: none;
				transform: none;
				width: 92%;
				margin: 24px auto 0;
		}
		.t-cost__other > ul > li > ul > li:nth-of-type(2) .t-cost__btn:hover {
				-webkit-transform: translateY(-6%);
				transform: translateY(-6%);
		}
		.t-cost__other > p {
				width: 90%;
				max-width: 500px;
				margin: 0 auto;
		}
		.t-cost__other > p br {
				display: none;
		}
		.t-sdgs__inner__bottom ul {
				width: 90%;
				margin: 0 auto 14%;
				max-width: 700px;
		}
		.t-sdgs__inner__bottom ul li {
				width: 47.5%;
				margin: 0 5% 6% 0;
		}
		.t-sdgs__inner__bottom ul li:nth-child(even) {
				margin-right: 0;
		}
		.t-sdgs__inner__bottom ul li:nth-last-of-type(1), .t-sdgs__inner__bottom ul li:nth-last-of-type(2) {
				margin-bottom: 0;
		}
		.t-sdgs__inner__bottom ul li h3 {
				font-size: 1.45rem;
				margin: 8% auto 4%;
		}
		.t-sdgs__inner__bottom ul li p {
				font-size: .95rem;
		}
}

@media screen and (max-width: 812px) {
		h2 {
				white-space: normal;
		}
		.free-regist__inner__txt h2 {
				font-size: 1.5rem;
		}
		.free-regist__inner__txt p {
				font-size: .9rem;
		}
		.free-regist__inner__txt p:before {
				width: auto;
				height: auto;
				background: none;
		}
		.matt1 {
				top: 4% !important;
				width: 100% !important;
		}
		.mattBg1 {
				top: 25% !important;
		}
		.t-top__matt-kun {
				min-height: 984px;
		}
		.t-top__matt-kun::before {
				height: 65%;
		}
		.t-top__matt-kun h1 {
				position: relative;
				top: auto;
				left: auto;
				-webkit-transform: none !important;
				transform: none !important;
				margin-bottom: 4%;
				font-size: 2rem;
		}
		.t-top__matt-kun h4 {
				font-size: 1.38rem;
				margin-bottom: 0;
		}
		.t-top__matt-kun__chara {
				width: 94%;
				top: 7%;
				-webkit-transform: translateX(-50%) !important;
				transform: translateX(-50%) !important;
		}
		.t-top__matt-kun__bg {
				top: 26%;
				-webkit-transform: translateX(-50%) !important;
				transform: translateX(-50%) !important;
		}
		.t-top__matt-kun__profileBtn, .t-top__matt-kun__profile {
				display: none;
		}
		.t-top__matt-kun > ul {
				margin-top: 0 !important;
		}
		.t-top__matt-kun > ul > li {
				position: absolute;
				bottom: 0;
				left: 50%;
				-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
				width: 100%;
				max-width: 700px;
				height: 52%;
				min-height: 550px;
				padding: 4% 6% 4%;
				border-radius: 20px 20px 0 0;
				background: white;
				box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
		}
		.t-top__matt-kun > ul > li:last-child > div:nth-of-type(1) {
				opacity: 1 !important;
		}
		.t-top__matt-kun > ul > li:last-child > div:nth-of-type(2) {
				position: absolute;
				top: 4% !important;
				left: 0 !important;
				display: none;
		}
		.t-top__matt-kun > ul > li:last-child .question {
				border: 0;
		}
		.t-top__matt-kun > ul > li:last-child .question h4 {
				font-size: 1.6rem;
				margin-bottom: 4%;
		}
		.t-top__matt-kun > ul > li:last-child .question > ul {
				padding: 6%;
		}
		.t-top__matt-kun > ul > li:last-child .question > ul li:first-child span {
				padding: 4%;
				margin-bottom: 4%;
		}
		.t-top__matt-kun > ul > li:last-child .question > ul li:last-child p {
				font-size: 1.2rem;
		}
		.t-top__matt-kun > ul > li:last-child .question .share {
				position: relative;
				bottom: auto;
				left: auto;
				margin: 0 auto;
				text-align: center;
		}
		.t-top__matt-kun > ul > li:last-child .question .share ul li {
				width: 44px;
				margin-right: 22px;
		}
		.t-top__matt-kun .emotional-val__table1 {
				margin: 30px auto;
				width: 100%;
				max-width: 374px;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) img {
				width: 58%;
				margin-top: 2%;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) p {
				font-size: 1.15rem;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul {
				padding: 6% 0;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li {
				margin: 0 0 7% 40px;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li:last-child {
				margin-bottom: 0;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li > p {
				top: 0;
				font-size: 1rem;
		}
		.t-top__matt-kun .emotional-val__table2 {
				margin: 10px auto;
				width: 100%;
				max-width: 374px;
		}
		.t-top__matt-kun .emotional-val__table2 > ul {
				margin-bottom: 0;
		}
		.t-top__matt-kun .emotional-val__table2 > ul > li p {
				margin-top: 8px;
				font-size: 1rem;
		}
		.t-top__matt-kun__txt-left {
				width: 100%;
				position: relative;
				top: auto !important;
				left: auto !important;
				-webkit-transform: none !important;
				transform: none !important;
		}
		.t-top__matt-kun__txt-left > ul > li > p, .t-top__matt-kun__txt-left > ul > li > div, .t-top__matt-kun__txt-left > ul > li > a {
				background: none !important;
				box-shadow: none !important;
				font-size: 1.1rem;
				padding: 0 4% 4% !important;
				line-height: 1.6 !important;
				display: block;
				margin: 0 auto;
				width: 100%;
				border-radius: 0 !important;
				border-bottom: 1px solid #C5C8D3;
		}
		.t-top__matt-kun__txt-left > ul > li > p br, .t-top__matt-kun__txt-left > ul > li > div br, .t-top__matt-kun__txt-left > ul > li > a br {
				display: none;
		}
		.t-top__matt-kun__txt-right {
				width: 100%;
				position: relative;
				top: auto !important;
				left: auto !important;
				-webkit-transform: none !important;
				transform: none !important;
		}
		.t-top__matt-kun__txt-right > ul > li > p, .t-top__matt-kun__txt-right > ul > li > div, .t-top__matt-kun__txt-right > ul > li > a {
				background: none !important;
				box-shadow: none !important;
				font-size: 1.2rem;
				padding: 4% 4% 0 !important;
				display: block;
				margin: 0 auto;
				width: 100%;
				border-radius: 0 !important;
		}
		.t-top__matt-kun__txt-right > ul > li > p br, .t-top__matt-kun__txt-right > ul > li > div br, .t-top__matt-kun__txt-right > ul > li > a br {
				display: none;
		}
		.t-top__matt-kun > ul > li:last-child {
				height: 90.5%;
				overflow-x: auto;
				overflow-y: scroll;
		}
		.t-top__matt-kun__btn1, .t-top__matt-kun__btn2, .t-top__matt-kun__btn5, .t-top__matt-kun__btn6 {
				padding: 16px 0;
				width: 320px;
				text-align: center;
				display: inline-block;
				color: #fff !important;
				width: 320px;
				display: block;
				border-radius: 60px;
				text-align: center;
				font-weight: bold;
				line-height: 1;
				letter-spacing: .8px;
				text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
				box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
				background: #f7685f;
				background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
				-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn1 a, .t-top__matt-kun__btn2 a, .t-top__matt-kun__btn5 a, .t-top__matt-kun__btn6 a {
				display: block;
				color: #fff;
				border-radius: 60px;
				padding: 8px 0 9px;
				-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn1:hover, .t-top__matt-kun__btn2:hover, .t-top__matt-kun__btn5:hover, .t-top__matt-kun__btn6:hover {
				-webkit-transform: translateY(-5%);
				transform: translateY(-5%);
				box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
				opacity: .8;
		}
		.t-top__matt-kun__btn1:hover, .t-top__matt-kun__btn2:hover, .t-top__matt-kun__btn5:hover, .t-top__matt-kun__btn6:hover {
				-webkit-transform: translate(-50%, -50%) !important;
				transform: translate(-50%, -50%) !important;
		}
		.t-top__matt-kun__btn3 {
				top: 88% !important;
		}
		.t-top__matt-kun__btn3 p {
				color: #293256;
		}
		.t-top__matt-kun__btn3 p span {
				border-color: #F34A4F !important;
		}
		.t-top__matt-kun__btn3 p span::after {
				box-shadow: none !important;
				border-color: #F34A4F !important;
		}
		.t-top__matt-kun__btn3 p a {
				color: #F34A4F;
		}
		.t-top__matt-kun__btn3 > span {
				padding: 16px 0;
				width: 340px;
				text-align: center;
				display: inline-block;
				color: #fff !important;
				width: 320px;
				display: block;
				border-radius: 60px;
				text-align: center;
				font-weight: bold;
				line-height: 1;
				letter-spacing: .8px;
				text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
				box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
				background: #f7685f;
				background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
				-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn3 > span a {
				display: block;
				color: #fff;
				border-radius: 60px;
				padding: 8px 0 9px;
				-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn3 > span:hover {
				-webkit-transform: translateY(-5%);
				transform: translateY(-5%);
				box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
				opacity: .8;
		}
		.t-top__matt-kun__btn3 > span:hover {
				-webkit-transform: translateY(-6%) !important;
				transform: translateY(-6%) !important;
		}
		.t-top__matt-kun__btn4 {
				top: 87%;
		}
		.t-top__matt-kun__btn4 p {
				color: #293256;
		}
		.t-top__matt-kun__btn4 > span {
				padding: 16px 0;
				width: 320px;
				text-align: center;
				display: inline-block;
				color: #fff !important;
				width: 320px;
				display: block;
				border-radius: 60px;
				text-align: center;
				font-weight: bold;
				line-height: 1;
				letter-spacing: .8px;
				text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
				box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
				background: #f7685f;
				background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
				-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn4 > span a {
				display: block;
				color: #fff;
				border-radius: 60px;
				padding: 8px 0 9px;
				-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn4 > span:hover {
				-webkit-transform: translateY(-5%);
				transform: translateY(-5%);
				box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
				opacity: .8;
		}
		.t-top__matt-kun__btn4 > span:hover {
				-webkit-transform: translate(0, 0) !important;
				transform: translate(0, 0) !important;
		}
		.t-top__matt-kun__btn4 .start {
				height: 54px;
				width: 200px;
		}
		.t-top__matt-kun__btn4 .start::after {
				color: #fff;
				top: 48%;
		}
		.t-top__matt-kun__btn4 .end {
				width: 54px;
				height: 54px;
				background: #fff !important;
				border: 2px solid #F34A4F;
		}
		.t-top__matt-kun__btn4 .end::after {
				width: 25px;
				height: 25px;
		}
		.t-top__matt-kun__btn4 .end:before {
				color: #F34A4F;
				right: -67px;
		}
		.t-top__matt-kun__btn5 {
				display: none;
				top: 88%;
				font-size: 1.3rem;
		}
		.t-top__matt-kun__btn5-1 {
				position: absolute;
				top: 90%;
				left: 50%;
				-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
				font-size: 1.3rem;
				padding: 16px 0;
				text-align: center;
				display: block;
				color: #fff !important;
				width: 140px;
				display: block;
				border-radius: 60px;
				text-align: center;
				font-weight: bold;
				line-height: 1;
				letter-spacing: .8px;
				text-shadow: 0 2px 5px rgba(244, 74, 79, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
				box-shadow: 0 6px 17px -7px rgba(244, 74, 79, 0.8);
				background: #f7685f;
				background: -moz-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: -webkit-linear-gradient(top, #f7685f 7%, #e54749 68%);
				background: linear-gradient(to bottom, #f7685f 7%, #e54749 68%);
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7685f', endColorstr='#e54749',GradientType=0 );
				-webkit-transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
				font-size: 1.3rem;
				margin: 0 auto;
				opacity: 0;
		}
		.t-top__matt-kun__btn5-1 a {
				display: block;
				color: #fff;
				border-radius: 60px;
				padding: 8px 0 9px;
				-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
				transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.t-top__matt-kun__btn5-1:hover {
				-webkit-transform: translateY(-5%);
				transform: translateY(-5%);
				box-shadow: 0 10px 20px -6px rgba(244, 74, 79, 0.6);
				opacity: .8;
		}
		.t-top__matt-kun__btn5-1:hover {
				-webkit-transform: translateX(-50%) !important;
				transform: translateX(-50%) !important;
		}
		.t-top__matt-kun .recording__img {
				height: 160px;
				margin: 20px auto 20px;
				width: 78%;
				max-width: 420px;
		}
		.t-top__matt-kun .progress-bar {
				background: rgba(0, 0, 0, 0.1);
		}
		.t-top__matt-kun .progress-bar span {
				background: #F34A4F;
		}
		.upload-voice {
				margin: 0 auto !important;
				padding: 3% 0 !important;
		}
		.upload-voice__area {
				border: 0 !important;
				padding: 0 !important;
		}
		.upload-voice__area > p {
				font-size: .8rem !important;
				position: absolute;
				top: -47px;
				left: 50%;
				-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
				width: 100%;
		}
		.upload-voice__area > p br {
				display: block !important;
		}
		.upload-voice__area__before {
				display: none !important;
		}
		.upload-voice__area__btn {
				margin: 50px auto 0 !important;
		}
		.select-voice {
				margin-top: -2% !important;
		}
		.select-voice > ul {
				width: 68%;
				max-width: 330px;
				margin: 2% auto 0;
		}
		.select-voice > ul > li > img {
				width: 80%;
		}
		.select-voice > ul > li > span {
				font-size: 1rem !important;
		}
		.t-service__sample-code__inner {
				border-radius: 22px;
		}
		.t-service__sample-code__inner__left {
				height: 43px;
				width: 100%;
				padding: 11px 0 0 20px;
				border-radius: 22px 22px 0 0;
		}
		.t-service__sample-code__inner > ul, .t-service__sample-code__inner > p {
				margin: 43px 0 0;
				padding: 9px 16px 17px 16px;
		}
		.t-service__sample-code__inner > p, .t-service__sample-code__inner__copy-ok {
				left: 43px;
				padding-left: 26px;
				padding-right: 20px;
				width: 90%;
		}
		.t-service__sample-code__inner__copy {
				left: auto;
				right: 30px;
		}
		.t-service__sample-code__inner__copy:hover {
				opacity: 1;
		}
		.t-service__sample-code__inner__copy-ok img, .t-service__sample-code__inner__copy-ok p {
				left: 50%;
		}
		.t-service__feature ul li h3 {
				white-space: normal;
		}
		.t-scene__small > li {
				width: 45%;
				margin-right: 10%;
				margin-bottom: 9%;
		}
		.t-scene__small > li:nth-of-type(3), .t-scene__small > li:nth-of-type(6), .t-scene__small > li:nth-of-type(9), .t-scene__small > li:nth-of-type(12), .t-scene__small > li:nth-of-type(15) {
				margin-right: 10%;
		}
		.t-scene__small > li:nth-child(even) {
				margin-right: 0;
		}
		.t-scene__small > li > p {
				font-size: 1rem;
		}
		select {
				border-radius: 0;
		}
}

@media screen and (max-width: 480px) {
		.l-header {
				background: rgba(255, 255, 255, 0.96);
				box-shadow: 0 0px 26px 0px rgba(0, 0, 0, 0.2);
				-webkit-backdrop-filter: blur(14px);
				backdrop-filter: blur(14px);
		}
		.t-header {
				height: auto !important;
				padding: 14px 0 16px !important;
		}
		.t-header > a {
				margin-left: 3%;
		}
		.t-header > a svg {
				width: 94px !important;
		}
		.t-header .menu-trigger {
				top: 17px;
				width: 26px;
				height: 22px;
		}
		.t-header .menu-trigger span:nth-of-type(2) {
				top: 9px;
		}
		.free-regist::before {
				height: 42%;
		}
		.free-regist__inner {
				padding: 0 0 17%;
		}
		.free-regist__inner__txt h2 {
				width: 96%;
				margin: 0 auto;
				padding: 8% 0 5%;
		}
		.free-regist__inner__txt p {
				width: 80%;
				margin: 0 auto;
		}
		.free-regist__inner > img {
				margin: 6% auto 0;
				width: 70%;
		}
		.free-regist__inner__btn {
				top: 87%;
		}
		.headerBlur .t-header {
				height: auto !important;
				padding: 15px 0 !important;
		}
		.headerBlur .t-header > a svg {
				width: 94px !important;
		}
		.headerBlur .t-header .menu-trigger {
				top: 15px !important;
		}
		@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
				.headerBlur {
						background: rgba(255, 255, 255, 0.6);
				}
		}
		@-webkit-keyframes active-menu-bar01 {
				0% {
						-webkit-transform: translateY(9px) rotate(45deg);
				}
				50% {
						-webkit-transform: translateY(9px) rotate(0);
				}
				100% {
						-webkit-transform: translateY(0px) rotate(0);
				}
		}
		@keyframes active-menu-bar01 {
				0% {
						transform: translateY(9px) rotate(45deg);
				}
				50% {
						transform: translateY(9px) rotate(0);
				}
				100% {
						transform: translateY(0px) rotate(0);
				}
		}
		@-webkit-keyframes active-menu-bar03 {
				0% {
						-webkit-transform: translateY(-9px) rotate(-45deg);
				}
				50% {
						-webkit-transform: translateY(-9px) rotate(0);
				}
				100% {
						-webkit-transform: translateY(0) rotate(0);
				}
		}
		@keyframes active-menu-bar03 {
				0% {
						transform: translateY(-9px) rotate(-45deg);
				}
				50% {
						transform: translateY(-9px) rotate(0);
				}
				100% {
						transform: translateY(0) rotate(0);
				}
		}
		@-webkit-keyframes active-menu-bar11 {
				0% {
						-webkit-transform: translateY(0) rotate(0);
				}
				50% {
						-webkit-transform: translateY(9px) rotate(0);
				}
				100% {
						-webkit-transform: translateY(9px) rotate(45deg);
				}
		}
		@keyframes active-menu-bar11 {
				0% {
						transform: translateY(0) rotate(0);
				}
				50% {
						transform: translateY(9px) rotate(0);
				}
				100% {
						transform: translateY(9px) rotate(45deg);
				}
		}
		@-webkit-keyframes active-menu-bar13 {
				0% {
						-webkit-transform: translateY(0) rotate(0);
				}
				50% {
						-webkit-transform: translateY(-9px) rotate(0);
				}
				100% {
						-webkit-transform: translateY(-9px) rotate(-45deg);
				}
		}
		@keyframes active-menu-bar13 {
				0% {
						transform: translateY(0) rotate(0);
				}
				50% {
						transform: translateY(-9px) rotate(0);
				}
				100% {
						transform: translateY(-9px) rotate(-45deg);
				}
		}
		.child-top {
				margin-top: 57px !important;
				height: 145px;
		}
		.child-top div:nth-of-type(1) img:nth-of-type(3) {
				width: 120%;
				opacity: .6;
		}
		.child-top div:nth-of-type(2) {
				top: 21%;
		}
		.child-top div:nth-of-type(2) img {
				height: 33px;
		}
		.child-top div:nth-of-type(2) h1 {
				font-size: 1.4rem;
				margin: 2% auto 0;
		}
		.contact-link {
				padding: 30px 0;
		}
		.matt1 {
				top: 8% !important;
		}
		.t-top__matt-kun {
				min-height: 635px;
		}
		.t-top__matt-kun:before {
				height: 67%;
		}
		.t-top__matt-kun__bg {
				top: 24%;
		}
		.t-top__matt-kun__chara {
				top: 9%;
		}
		.t-top__matt-kun h1 {
				top: 4px;
				-webkit-transform: none;
				transform: none;
				font-size: 1.4rem;
				width: 100%;
				left: 0;
				text-align: center;
				line-height: 1.25;
		}
		.t-top__matt-kun h4 {
				font-size: 1.225rem;
		}
		.t-top__matt-kun > ul > li {
				height: 60%;
				min-height: 386px;
				padding-top: 4%;
		}
		.t-top__matt-kun > ul > li:nth-of-type(1) > div:nth-of-type(3) p {
				font-size: .9rem;
		}
		.t-top__matt-kun > ul > li:nth-of-type(1) > div:nth-of-type(4) p {
				font-size: .9rem;
		}
		.t-top__matt-kun > ul > li:nth-of-type(2) > div:nth-of-type(1) p {
				font-size: .9rem;
		}
		.t-top__matt-kun > ul > li:nth-of-type(2) > div:nth-of-type(2) .select-voice > ul {
				width: 100%;
				max-width: 254px;
		}
		.t-top__matt-kun > ul > li:nth-of-type(2) > div:nth-of-type(2) .select-voice > ul > li span {
				font-size: .8rem !important;
				font-weight: normal;
		}
		.t-top__matt-kun > ul > li:last-child {
				height: 91%;
		}
		.t-top__matt-kun__btn1 {
				max-width: 90%;
		}
		.t-top__matt-kun__btn3 {
				position: relative;
				top: auto !important;
				left: auto !important;
				-webkit-transform: none !important;
				transform: none !important;
				margin-top: 12px;
		}
		.t-top__matt-kun__btn3 > span {
				width: 100%;
		}
		.t-top__matt-kun__btn4 {
				width: 88%;
				margin: 0 auto;
				top: 85%;
		}
		.t-top__matt-kun__btn4 .start {
				margin: 0 auto;
		}
		.t-top__matt-kun__btn5-1 {
				top: 87%;
				font-size: 1rem;
		}
		.t-top__matt-kun__btn5 {
				width: 90%;
				top: 88%;
		}
		.t-top__matt-kun .progress-bar {
				width: 100% !important;
		}
		.t-top__matt-kun .emotional-val h5 {
				margin-bottom: 0;
		}
		.t-top__matt-kun .emotional-val .chart {
				height: 53px;
		}
		.t-top__matt-kun .emotional-val__table1 {
				margin: 4px auto 15px;
		}
		.t-top__matt-kun .emotional-val__table1 img {
				width: 54% !important;
		}
		.t-top__matt-kun .emotional-val__table1 p {
				font-size: .9rem !important;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(1) img {
				margin-top: 4%;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul {
				padding: 4% 0;
		}
		.t-top__matt-kun .emotional-val__table1 > ul > li:nth-of-type(2) ul li {
				height: 13px;
				margin-bottom: 6%;
		}
		.t-top__matt-kun .emotional-val__table2 {
				width: 100%;
				margin: 0 auto -4px;
		}
		.t-top__matt-kun .emotional-val__table2 > ul > li {
				width: 12%;
				margin-right: 10%;
		}
		.t-top__matt-kun .emotional-val__table2 > ul > li:last-child {
				margin-right: 0;
		}
		.t-top__matt-kun .emotional-val__table2 > ul > li p {
				margin-top: 6px;
				font-size: .8rem;
		}
		.t-top__matt-kun .emotional-val__volume {
				margin: 0 auto;
		}
		.t-top__matt-kun .emotion-txt {
				font-size: .9rem;
				line-height: 1.3 !important;
		}
		.t-top__matt-kun .question h4 {
				font-size: 1.3rem !important;
		}
		.t-top__summary ul li h3 {
				white-space: normal;
		}
		.t-top__overview__txt h2 {
				white-space: normal;
				margin-bottom: 6%;
		}
		.t-top__blog {
				padding: 30px 6%;
		}
		.t-top__blog a {
				height: 230px;
				border-radius: 14px;
		}
		.t-top__blog a > img {
				height: 100% !important;
		}
		.t-top__blog a > span {
				width: 94% !important;
				height: 90% !important;
				border-radius: 12px;
				opacity: .9 !important;
		}
		.t-top__blog a .txt {
				width: 84%;
		}
		.t-top__blog a .txt > p {
				color: #293256;
		}
		.btn {
				max-width: 100%;
		}
		.t-top__matt-kun__txt-left, .mattList-left, .t-top__matt-kun__txt-right, .mattList-right {
				-webkit-transform: none;
				transform: none;
		}
		h2 {
				font-size: 1.6rem;
				width: 90%;
				margin: 0 auto;
		}
		.t-top__summary ul li > span {
				position: relative;
				font-size: 4rem;
				top: auto;
				left: auto;
				-webkit-transform: none !important;
				transform: none !important;
				opacity: 1;
				color: #F34A4F;
				display: block;
				margin: -6% auto 4%;
		}
		.t-top__summary ul li h3 {
				font-size: 1.3rem;
		}
		.t-top__summary ul li > p {
				width: 96%;
		}
		.t-top__news {
				margin: 6% auto 0;
				padding-bottom: 12%;
		}
		.t-top__news__new {
				margin: 6% auto;
		}
		.t-top__news__new ul {
				width: 100%;
		}
		.t-top__news__new ul li {
				margin-bottom: 10% !important;
				border-radius: 22px;
		}
		.t-top__news__new ul li .txt {
				background: rgba(255, 255, 255, 0.8);
		}
		.t-top__news__new ul li .txt > p {
				font-size: .74rem;
				margin: 14% 6% 6%;
		}
		.t-top__news__new ul li .txt > p span:nth-of-type(2) {
				font-size: .85rem;
		}
		.t-top__news__new ul li .txt > h4 {
				font-size: .9rem;
				padding-bottom: 7%;
				line-height: 1.35;
		}
		.t-top__news__old ul li h4 {
				font-size: 1rem;
		}
		.t-top__news .category {
				font-size: .75rem;
				padding: 5px 15px 4px;
		}
		.t-top__news .date {
				font-size: .85rem;
		}
		.t-top__explain h2 {
				margin-bottom: 6%;
		}
		.t-top__explain > p {
				text-align: left;
		}
		.t-top__explain > p br:nth-of-type(1), .t-top__explain > p br:nth-of-type(3) {
				display: none;
		}
		.t-top__explain__sevice > ul > li {
				width: 100%;
				display: block;
				margin: 0 0 6%;
				min-height: auto !important;
				padding: 30px 0;
		}
		.t-top__example h2 {
				margin-bottom: 6%;
		}
		.t-top__example ul li img {
				width: 38%;
		}
		.t-top__example ul li h3 {
				font-size: 1.4rem;
		}
		.t-top__cost > ul > li {
				min-height: auto;
				width: 100%;
				margin: 0 auto 6%;
		}
		.t-top__cost > ul > li ul li > p:first-child {
				margin-top: 7px;
		}
		.t-top__service li {
				width: 100%;
				border-radius: 22px;
		}
		.t-top__service li:nth-of-type(1) .img > span {
				top: 37%;
				width: 90px;
				height: 90px;
				border-radius: 18px;
		}
		.t-top__service li:nth-of-type(1) .img > img:nth-of-type(2) {
				top: 79%;
				width: 164px;
		}
		.t-top__service li .img {
				height: 200px;
		}
		.t-top__service li .txt p {
				font-size: .925rem;
				margin-bottom: 7%;
		}
		.t-top__question ul li {
				border-radius: 18px;
				margin-bottom: 6%;
				box-shadow: 0 4px 8px 0px rgba(114, 121, 147, 0.4);
		}
		.t-top__question ul li .question {
				padding: 17px 5% 40px;
				-webkit-transition: 0.4s;
				transition: 0.4s;
		}
		.t-top__question ul li .question > img {
				position: absolute;
				top: 17px;
				left: 15px;
				width: 18px;
				margin-right: 0;
		}
		.t-top__question ul li .question > p {
				width: 100%;
				padding-left: 23px;
				line-height: 1.35;
				margin-top: 0;
		}
		.t-top__question ul li .question .alw {
				top: auto;
				bottom: 12px;
				left: 50%;
				-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
				width: 25px;
				height: 13px;
		}
		.t-top__question ul li .question .alw span {
				width: 62%;
		}
		.t-top__question ul li .answer p {
				padding: 13px 5% 40px;
				font-size: .925rem;
		}
		.t-top__patent__inner li {
				width: 100%;
				margin: 0 0 6%;
		}
		.t-top__patent__inner li p {
				padding: 0 6%;
				min-height: auto;
		}
		.t-top__patent__inner li span {
				padding: 8px 6% 20px;
		}
		.t-footer__bottom ul {
				width: 210px;
				margin: 0 auto 17%;
				display: block;
		}
		.t-footer__bottom ul li {
				padding: 0 0 14px 0;
				margin: 0 0 14px 0;
				border: 0;
				border-bottom: 1px solid rgba(255, 255, 255, 0.08);
				display: block;
				font-size: .85rem;
		}
		.t-service__info1__img, .t-service__info2__img {
				width: 94%;
				margin: 7% auto 7%;
				border-radius: 12px;
		}
		.t-service__info1 p, .t-service__info2 p {
				width: 94%;
				margin: 0 auto 18%;
				line-height: 1.6;
				text-align: left;
				font-size: 1rem;
		}
		.t-service__info1 p br, .t-service__info2 p br {
				display: none;
		}
		.t-service__sample-code__inner {
				margin: 6% auto;
		}
		.t-service__sample-code__inner > ul, .t-service__sample-code__inner > p {
				line-height: 1.5;
				font-size: .75rem;
		}
		.t-service__sample-code__inner > ul {
				box-shadow: none;
		}
		.t-service__sample-code__inner > ul li {
				opacity: 0;
		}
		.t-service__sample-code__inner > p {
				z-index: 10;
				left: 0;
				width: 100%;
		}
		.t-service__sample-code__inner__copy {
				font-size: .9rem;
				padding: 10px 15px;
				border-radius: 6px;
				line-height: 1;
				bottom: 17px;
				right: 14px;
		}
		.t-service__sample-code__inner__copy-ok {
				z-index: 10;
				width: 100%;
				left: 0;
		}
		.t-service__feature ul {
				margin: 6% auto;
		}
		.t-service__feature ul li {
				width: 100%;
				display: block;
		}
		.t-service__example ul {
				margin: 6% auto;
		}
		.t-service__example ul li {
				width: 100%;
				display: block;
		}
		.t-service__example ul li img {
				width: 40%;
				margin-bottom: 6%;
		}
		.t-cost__plan1 h3, .t-cost__plan2 h3 {
				padding: 9px 0;
		}
		.t-cost__plan1__free, .t-cost__plan2__free {
				margin: 6% auto 8%;
		}
		.t-cost__plan1__free__inner > ul, .t-cost__plan2__free__inner > ul {
				padding: 6% 8%;
		}
		.t-cost__plan1__free__inner > ul > li, .t-cost__plan2__free__inner > ul > li {
				width: 100%;
				margin: 0 0 4%;
		}
		.t-cost__plan1__free__inner .cost, .t-cost__plan2__free__inner .cost {
				margin: 10px auto;
		}
		.t-cost__other > ul > li > ul {
				padding: 6% 8%;
		}
		.t-cost__other > ul > li > ul > li {
				width: 100%;
				margin: 0 0 4%;
		}
		.t-cost__other > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) .cost {
				margin: 20px auto;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(2) {
				padding-top: 0;
		}
		.t-cost__other > ul > li:nth-of-type(2) > ul > li:nth-of-type(2) .t-cost__btn {
				margin-top: 24px;
		}
		.t-cost__other > ul > li:nth-of-type(2) .cost {
				vertical-align: bottom !important;
		}
		.t-cost__other > ul > li:nth-of-type(2) .cost span {
				display: inline-block;
				margin-right: 3px;
		}
		.t-cost__other > ul > li:nth-of-type(3) > ul > li:nth-of-type(1) p:nth-of-type(1) {
				margin: 18px auto;
		}
		.t-cost__other > ul > li:nth-of-type(3) > ul > li:nth-of-type(1) p:nth-of-type(2) {
				text-align: center;
		}
		.t-scene__big {
				margin: 6% auto;
		}
		.t-scene__big > li {
				width: 100%;
				margin: 0 0 12%;
		}
		.t-scene__small > li {
				width: 100%;
				padding-bottom: 12%;
				margin: 0 0 11%;
				border-bottom: 1px solid #C5C8D3;
		}
		.t-scene__small > li:first-child {
				padding-top: 11%;
				border-top: 1px solid #C5C8D3;
		}
		.t-scene__small > li:last-child {
				margin-bottom: 6%;
		}
		.t-scene__small > li > img {
				width: 110px;
		}
		.t-scene__small > li > h3 {
				font-size: 1.5rem;
				margin: 7% auto 3%;
		}
		.t-scene__small > li > p {
				width: 80%;
				margin: 0 auto;
		}
		.t-faq .t-top__question ul {
				padding: 0;
				margin: 6% auto 12%;
		}
		form {
				width: 100%;
		}
		form > ul > li {
				width: 100%;
				margin-right: 0;
		}
		form > ul > li .eye {
				height: 49px;
		}
		form > ul > li .eye img {
				top: -4px;
		}
		form > ul > li .eye img:nth-of-type(1) {
				top: 0;
		}
		form .submit-btn {
				margin: 14% auto 10%;
		}
		.t-contact .errorMsg {
				width: 100%;
		}
		.t-sdgs > img {
				border-radius: 18px;
				margin: 6% auto;
		}
		.t-sdgs__inner__top p {
				color: #293256;
		}
		.t-sdgs__inner__bottom ul {
				margin-top: 10%;
		}
		.t-sdgs__inner__bottom ul li {
				width: 100%;
				margin: 0 0 16% !important;
		}
		.t-sdgs__inner__bottom ul li:last-child {
				margin: 0 !important;
		}
		.t-sdgs__inner__bottom ul li > img {
				width: 67%;
				margin: 0 auto;
				display: block;
		}
		.t-sdgs__inner__bottom ul li h3 {
				font-size: 1.2rem;
		}
		.g-child-top {
				margin-top: 57px !important;
				height: 145px;
		}
		.g-child-top__title {
				top: 23%;
		}
		.g-child-top__title img {
				height: 33px;
		}
		.g-child-top__title h1 {
				font-size: 1.4rem;
				line-height: 1.2;
				margin: 4% auto 0;
		}
		.t-privacy h3 {
				font-size: 1.3rem;
		}
		.pankuzu {
				padding: 4% 4%;
		}
		.pankuzu ul li span {
				margin: -1px 10px 0;
				width: 12px;
				height: 14px;
				vertical-align: top;
		}
		input, textarea {
				font-size: 16px !important;
		}
}
