fieldset,
legend,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
	border: 1px solid #ccc;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
	outline: none;
	padding: 4px;
}

textarea {
	height: 100px;
	overflow: auto;
	width: 100%;
}

select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-position: right 8px center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding-right: 30px;
}

.select {
	background: #fff;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.select select {
	background: none;
	border: 1px solid #ccc;
	cursor: pointer;
	padding-right: 24px;
	text-overflow: "";
	width: 100%;
}

.select::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
	content: "";
	height: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 8px;
	top: 13px;
	width: 0;
}

/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
	display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
	color: #555;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 8px;
	padding: 10px 20px;
	position: relative;
	text-align: center;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	height: 16px;
	left: -8px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

/* fieldset */

fieldset {
	border: 1px solid #ccc;
	padding: 8px 16px;
}

legend {
	padding: 0 8px;
}

/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #efefef;
	border: 1px solid #999;
	border-radius: 0;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin: 0;
	padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

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

/* webkit */

/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
	display: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
	-moz-appearance: none;
	-webkit-appearance: textfield;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
	border-color: #666;
}

input[type="radio"] + span:hover,
input[type="checkbox"] + span:hover {
	color: #000;
}

input[type="radio"] + span:hover::before,
input[type="checkbox"] + span:hover::before {
	border-color: #000;
}

input[type="radio"] + span:hover::after,
input[type="checkbox"] + span:hover::after {
	background: #ccc;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* checked */

input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
	color: #3498db;
}

input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
	border-color: #3498db;
}

input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
	background: #3498db;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* radio */

input[type="radio"] + span::before,
input[type="radio"] + span:hover::after,
input[type="radio"]:checked + span::after {
	border-radius: 50%;
}

/* button */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
	background: #3498db;
	border-color: #3498db;
	color: #fff;
}

/* focus */

input:focus,
textarea:focus {
	border-color: #3498db;
}

input[type="submit"]:focus,
input[type=reset]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
	outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
	background: #eee;
	border-color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span,
input[type="checkbox"]:disabled + span {
	color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span::before,
input[type="checkbox"]:disabled + span::before {
	border-color: #ccc;
	cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

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

/* リキッドレイアウト対応 */

html {
	font-size: 4.26667vw;
}

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

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #323333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	position: relative;
	z-index: -9999;
}

/* Box sizing rules */

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video,
iframe,
object {
	border: none;
	height: auto;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

form {
	margin: 0;
	padding: 0;
}

label {
	display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}

input,
button,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

button,
select {
	text-transform: none;
}

select {
	cursor: pointer;
}

textarea {
	-ms-overflow-style: scrollbar;
	overflow: auto;
	resize: vertical;
}

dialog {
	background-color: inherit;
	border: solid;
	color: inherit;
	display: block;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

dialog:not([is-open]) {
	display: none;
}

summary {
	cursor: pointer;
	display: list-item;
}

/* Remove all animations and transitions for people that prefer not to see them */

body.no-scroll {
	overflow: hidden;
}

.drawer__icon {
	cursor: pointer;
	display: block;
	margin: auto 0;
	z-index: 100;
}

.drawer__icon-bars {
	height: 1.4375rem;
	position: relative;
	width: 1.78125rem;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
	background: #000;
	content: '';
	height: 0.09375rem;
	position: absolute;
	transition: all 0.3s ease;
	width: 100%;
}

.drawer__icon-bar1 {
	top: 0;
}

.drawer__icon-bar2 {
	top: 50%;
	transform: translateY(-50%);
}

.drawer__icon-bar3 {
	bottom: 0;
}

.drawer__icon.is-open .drawer__icon-bar1 {
	top: 50%;
	transform: translateY(-50%);
	transform: rotate(-45deg);
}

.drawer__icon.is-open .drawer__icon-bar2 {
	display: none;
}

.drawer__icon.is-open .drawer__icon-bar3 {
	top: 50%;
	transform: translateY(-50%);
	transform: rotate(45deg);
}

.drawer__menu {
	background-color: #fff;
	min-height: 400px;
	left: 0;
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: -140%;
	transition: 0.5s;
	width: 100%;
	z-index: 20;
}

.drawer__menu.active {
	top: 0;
}

.drawer__menu-container {
	margin: 0 auto;
	padding: 6.25rem 1.25rem;
	text-align: left;
	width: 100%;
}

.drawer__item-wrapper {
	position: relative;
}

.drawer__item-wrapper:not(:first-child) {
	margin-top: 3.125rem;
}

.drawer__item {
	font-size: 1.125rem;
	letter-spacing: 0.2em;
	padding: 0.5rem;
}

.l-footer {
	background-color: #000;
}

.l-footer__content {
	color: #fff;
	margin: 0 auto;
	padding: 1.875rem 4.0625rem 2.3125rem;
	text-align: center;
	width: 100%;
}

.l-footer__logo-wrapper,
.l-footer__app-wrapper {
	display: flex;
}

.l-footer__logo-wrapper {
	align-items: center;
	justify-content: center;
	padding-left: 0.125rem;
	position: relative;
}

.l-footer__logo {
	height: 2.8125rem;
	max-width: 18.75rem;
	width: 100%;
}

.l-footer__app {
	margin-top: 1.5625rem;
}

.l-footer__app-text {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0em;
}

.l-footer__app-wrapper {
	height: 2.3125rem;
	justify-content: center;
	margin-top: 0.625rem;
}

.l-footer__app-apple-link {
	margin-right: 0.625rem;
	max-width: 6.4375rem;
	width: 100%;
}

.l-footer__app-google-link {
	max-width: 8rem;
	width: 100%;
}

.l-footer__app-apple,
.l-footer__app-google {
	height: 100%;
}

.l-footer__nav {
	margin-top: 1rem;
}

.l-footer__nav-item {
	font-size: 0.875rem;
	letter-spacing: 0.15em;
	line-height: 2;
}

.l-footer__app-apple:hover,
.l-footer__app-google:hover,
.l-footer__nav-item-wrapper:hover{
	opacity: 0.7;
}

.l-header {
	background-color: #fff;
	height: 4.6875rem;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 50;
}

.l-header__content,
.l-header__logo-wrapper,
.l-header__right {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: auto 0;
}

.l-header__content {
	height: inherit;
	margin-left: 2rem;
	margin-right: 2rem;
}

.l-header__left {
	margin: auto 0;
}

.l-header__logo {
	height: 1.75rem;
	margin-right: 0.125rem;
	max-width: 9.375rem;
	width: 100%;
}

.l-header__right {
	display: none;
}

.l-header__nav {
	display: none;
}

.l-header__nav-list {
	display: flex;
}

.l-header__nav-item {
	font-weight: 700;
	letter-spacing: 0.05em;
}

.l-header__nav-item-wrapper:not(:last-child) {
	margin-right: 1rem;
}

.l-header__nav-item-wrapper:hover {
	opacity: 0.7;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 21.875rem;
	padding-left: 12.5px;
	padding-right: 12.5px;
	width: 100%;
}

.to-top {
	background: #fff;
	border-radius: 2px;
	bottom: 1.25rem;
	cursor: pointer;
	opacity: 0;
	position: fixed;
	right: 1.25rem;
	transition: all 0.3s ease 0s;
	z-index: 79;
}

.to-top__button {
	background: transparent;
	content: '';
	left: 50%;
	position: absolute;
	top: 61%;
	transform: translate(-50%, -50%) rotate(222deg);
}

.fadeIn {
	-webkit-animation-name: fadeInAnime;
	-webkit-animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	animation-name: fadeInAnime;
	opacity: 0;
}

.u-main-color {
	color: #57937d;
}

.u-font-bold {
	font-weight: 700;
}

.u-fontsize48 {
	font-size: 1.5rem;
}

.u-margintop01 {
	margin-top: -1.3125rem;
}

.p-top-concept__container {
	text-align: center;
}

.p-top-concept__text {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.p-top-concept__cross {
	font-size: 2rem;
	line-height: 1.1;
	opacity: 0.2;
}

.p-top-concept__images {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 1rem;
}

.p-top-concept__image {
	height: 9.375rem;
	max-width: 9.375rem;
	width: 100%;
}

.p-top-concept__image:nth-child(2n - 1) {
	margin-right: 1.5rem;
}

.p-top-concept__image:nth-child(n + 3) {
	margin-top: 1.5625rem;
}

.p-top-function__container {
	padding-bottom: 2.6875rem;
	width: 100%;
}

.p-top-function__title {
	font-size: 1.40625rem;
	text-align: center;
}

.p-top-function__content {
	margin-top: 1.0625rem;
}

.p-top-function__card {
	margin: 0 auto;
	max-width: 18.75rem;
	width: 100%;
}

.p-top-function__card:nth-child(2),
.p-top-function__card:nth-child(3) {
	margin-top: 1.25rem;
}

.p-top-function__card:nth-child(4) {
	margin-top: 1.5rem;
}

.p-top-function__card:nth-child(5) {
	margin-top: 1.3125rem;
}

.p-top-function__card:nth-child(6) {
	margin-top: 1.1875rem;
}

.p-top-function__image {
	height: 18.75rem;
	max-width: 18.75rem;
	width: 100%;
}

.p-top-function__body {
	margin-top: 0.875rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.p-top-function__name {
	font-size: 1.2rem;
	text-align: center;
	white-space: nowrap;
}

.p-top-function__text {
	font-size: 0.9375rem;
	letter-spacing: 0.058em;
	line-height: 1.5;
	margin-top: 1rem;
	text-align: left;
}

.p-top-function__button-wrapper {
	margin-top: 1.375rem;
}

.p-top-function__button {
	background-color: #e48a63;
	border-radius: 3.125rem;
	color: #fff;
	display: block;
	font-size: 1.125rem;
	height: 3.125rem;
	line-height: 2.7083;
	margin: 0 auto;
	max-width: 15.625rem;
	text-align: center;
	transition: all 0.3s ease;
	width: 100%;
}

.p-top-function__button:hover {
	background-color: #fff;
	border: 0.0625rem solid #e48a63;
	color: #e48a63;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.p-top-introduction__container {
	background-color: #efeeed;
	padding-top: 1.8125rem;
}

.p-top-introduction__lead {
	font-size: 1.125rem;
	letter-spacing: -0.03em;
	line-height: 1.8244;
	text-align: center;
}

.p-top-introduction__image-wrapper {
	margin-top: 1.625rem;
	text-align: center;
}

.p-top-introduction__image {
	max-width: 14.0625rem;
	width: 100%;
}

.p-top-mv {
	width: 100vw;
}

.p-top-mv__image-wrapper {
	height: 28rem;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.p-top-mv__image {
	-o-object-fit: cover;
	-o-object-position: 78% 100%;
	height: 110%;
	object-fit: cover;
	object-position: 78% 100%;
	width: 100%;
	margin-top: -50px;
}

.p-top-mv__lead {
	color: #fff;
    font-size: 1.78125rem;
    left: 50%;
    max-width: 40%;
    position: absolute;
    top: 4rem;
    transform: translateX(-50%);
    width: 100%;
}

.p-top-mv__app {
	left: 50%;
	position: absolute;
	top: 6%;
	transform: translateX(-50%);
	    min-width: 240px;
}

.p-top-mv__app-text {
	font-size: 0.84375rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	white-space: nowrap;
}

.p-top-mv__app-wrapper {
	display: flex;
	height: 2.3125rem;
	justify-content: center;
	margin-top: 0.6875rem;
}

.p-top-mv__app-apple-link {
	display: block;
	height: 2.1875rem;
	margin-right: 0.625rem;
	max-width: 6.4375rem;
	width: 100%;
}

.p-top-mv__app-google-link {
	display: block;
	height: 2.1875rem;
	max-width: 8.5rem;
	width: 100%;
}

.p-top-mv__app-apple,
.p-top-mv__app-google {
	height: 100%;
}

.p-top-mv__app-apple:hover,
.p-top-mv__app-google:hover {
	opacity: 0.7;
}

.p-top-thought__container {
	background-image: url(../images/common/thought−sp_01.jpg);
	background-position: top 20% right 85%;
	background-repeat: no-repeat;
	background-size: 150%;
	padding-bottom: 2.375rem;
	padding-top: 2.625rem;
	text-align: center;
	width: 100%;
	background-size: cover;
}

.p-top-thought__title {
	font-size: 1.3125rem;
}

.p-top-thought__text {
	font-size: 1rem;
	line-height: 2;
	margin-top: 1.1875rem;
}

.p-top-voice__container {
	margin: 0 auto;
	max-width: 23.125rem;
	padding-bottom: 2.9375rem;
	padding-top: 2.625rem;
	position: relative;
	width: 100%;
}

.p-top-voice__container::before {
	background-color: #3e3a39;
	content: '';
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%, 0);
	width: 100%;
}

.p-top-voice__title {
	font-size: 2.53125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.55;
	text-align: center;
}

.p-top-voice__lead {
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
}

.p-top-voice__content {
	margin-top: 2.625rem;
}

.p-top-voice__text {
	font-size: 0.9375rem;
	letter-spacing: 0.12em;
	line-height: 1.5;
	padding-left: 2.8125rem;
	padding-right: 2.375rem;
}

.p-top-voice__text:nth-child(n + 2) {
	margin-top: 2.5rem;
}

.p-top__p-top-mv {
	margin-top: 4.6875rem;
}

.p-top__p-top-concept {
	margin-top: 0.9375rem;
}

.p-top__p-top-introduction {
	margin-top: 1.125rem;
}

.p-top__p-top-thought {
	margin-top: 1.5625rem;
}

.p-top__p-top-function {
	margin-top: 2.8125rem;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	-webkit-animation-duration: 0.01ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media screen and (min-width: 375px) {

html {
	font-size: 16px;
}

.u-appear-sp {
	display: inline;
}

}

@media screen and (min-width: 550px) {

.u-hidden-tab {
	display: none;
}

.u-appear-pc {
	display: none;
}

.u-appear-tab {
	display: inline;
}

.p-top-thought__container {
	background-image: url(../images/common/thought_01.jpg);
	padding-bottom: 3.8125rem;
	padding-top: 3.5rem;
	    background-size: cover;
}

}

@media (min-width: 864px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 964px) {

.drawer__icon {
	display: none;
}

.drawer__menu {
	display: none;
}

.l-footer__content {
	padding: 3rem 4.0625rem 2.3125rem;
}

.l-footer__logo {
	height: 2.9375rem;
	max-width: 20.8125rem;
}

.l-footer__app {
	letter-spacing: -0.8em;
	margin-top: 1.25rem;
}

.l-footer__app-text {
	letter-spacing: 0em;
}

.l-footer__app-wrapper {
	margin-top: 1.625rem;
}

.l-footer__app-apple-link {
	height: 3.0625rem;
	margin-left: -0.75rem;
	margin-right: 0.25rem;
	max-width: 8.75rem;
}

.l-footer__app-google-link {
	height: 3.0625rem;
	margin-right: -1.5625rem;
	max-width: 10.25rem;
}

.l-footer__nav {
	margin-top: 1.875rem;
	padding-left: 0.625rem;
}

.l-footer__nav-item {
	font-size: 1.25rem;
	letter-spacing: 0.1em;
}

.l-footer__nav-list {
	display: flex;
	justify-content: center;
}

.l-footer__nav-item-wrapper:not(:last-child) {
	margin-right: 1.25rem;
}

.l-header {
	height: 7.8125rem;
}

.l-header__logo {
	height: 2.25rem;
	max-width: 12.5rem;
}

.l-header__right {
	display: flex;
}

.l-header__nav {
	display: block;
	margin-right: 0.25rem;
}

.l-header__nav-item {
	letter-spacing: 0.32em;
}

.l-header__nav-item-wrapper:not(:last-child) {
	margin-right: 1.5rem;
}

.l-inner {
	max-width: 964px;
	padding-left: 50px;
	padding-right: 50px;
}

.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	-webkit-animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	animation-name: fadeUpAnime;
	opacity: 0;
}

.u-hidden-pc {
	display: none;
}

.u-appear-pc {
	display: inline;
}

.p-top-concept__container {
	padding-bottom: 2.125rem;
	padding-right: 2.5rem;
}

.p-top-concept__words {
	display: flex;
	justify-content: space-between;
	padding-left: 2.5rem;
	padding-right: 2.1875rem;
}

.p-top-concept__text {
	font-size: 2rem;
}

.p-top-concept__cross {
	font-size: 2.5rem;
}

.p-top-concept__images {
	margin-top: 3.75rem;
}

.p-top-concept__image {
	height: 9.875rem;
	max-width: 9.875rem;
	width: 100%;
}

.p-top-concept__image:nth-child(2n - 1) {
	margin-right: 0;
}

.p-top-concept__image:nth-child(n + 3) {
	margin-top: 0;
}

.p-top-function__title {
	font-size: 1.75rem;
}

.p-top-function__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3.75rem;
	padding-left: 3rem;
	padding-right: 2.5rem;
}

.p-top-function__card {
	max-width: 15rem;
}

.p-top-function__card:nth-child(2),
.p-top-function__card:nth-child(3) {
	margin-top: 0;
}

.p-top-function__card:nth-child(4) {
	margin-top: 0;
}

.p-top-function__card:nth-child(5) {
	margin-top: 0;
}

.p-top-function__card:nth-child(6) {
	margin-top: 0;
}

.p-top-function__card:nth-child(n + 4) {
	margin-top: 3.375rem;
}

.p-top-function__image {
	height: 15rem;
	max-width: 15rem;
}

.p-top-function__body {
	padding-left: 0;
	padding-right: 0;
}

.p-top-function__name {
	font-weight:700;
	font-size: 1rem;
}

.p-top-function__text {
	font-size: 0.9rem;
letter-spacing: 0;
	margin-top: 0.5rem;
}

.p-top-function__button-wrapper {
	margin-top: 1.0625rem;
}

.p-top-function__button {
	border-radius: 1.5625rem;
	font-size: 1.125rem;
	height: 2.8125rem;
	line-height: 2.5;
	max-width: 14.6875rem;
}

.p-top-introduction__container {
	align-items: center;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	padding-top: 0;
}

.p-top-introduction__lead {
	font-size: 2rem;
	letter-spacing: -0.06em;
	line-height: 1.6;
	vertical-align: middle;
}

.p-top-introduction__image-wrapper {
	margin-right: 3.875rem;
}

.p-top-introduction__image {
	height: 21.875rem;
	max-width: 18.5625rem;
}

.p-top-mv__image-wrapper {
	height: 40.5625rem;
}

.p-top-mv__image {
	-o-object-position: 50% 50%;
	height: 101%;
	object-position: 50% 50%;
	margin-top: 0;
}

.p-top-mv__lead {
	max-width: 777px;
	top: 0;
	margin: 4.9375rem auto 0;
	display: block;
	transform: none;
	left: 0;
	right: 0;
}
.p-top-mv__lead .p-top-mv__logo{    max-width: 12.4375rem;}
.p-top-mv__app {
	left: 69.2%;
	top: 31.75rem;
}

.p-top-mv__app-text {
	font-size: 1.1125rem;
	letter-spacing: 0.2em;
	text-indent: 0.25rem;
}

.p-top-mv__app-apple-link {
	height: 3.625rem;
	margin-left: -2.1875rem;
	margin-right: 0.5rem;
	max-width: 10rem;
}

.p-top-mv__app-google-link {
	height: 3.625rem;
	margin-right: -1.5625rem;
	max-width: 11.5rem;
}

.p-top-thought__title {
	font-size: 1.75rem;
	letter-spacing: 0.02em;
}

.p-top-thought__text {
	font-size: 1.125rem;
	letter-spacing: 0;
	line-height: 1.6;
	margin-top: 1.75rem;
}

.p-top-voice__container {
	max-width: 46.875rem;
	padding-bottom: 3.75rem;
	padding-top: 3.3125rem;
}

.p-top-voice__title-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-around;
}

.p-top-voice__title {
	font-size: 2.375rem;
	letter-spacing: 0.02em;
	line-height: 1.5;
	padding-left: 1.875rem;
}

.p-top-voice__lead {
	display: flex;
	font-size: 1rem;
	letter-spacing: 0.115em;
	margin-right: 1.875rem;
	padding-left: 0.625rem;
	padding-top: 0.625rem;
	vertical-align: top;
}

.p-top-voice__lead > span {
	display: inline-block;
	font-size: 1.375rem;
	letter-spacing: 0.2em;
	position: relative;
	right: -0.5rem;
	top: -0.25rem;
}

.p-top-voice__content {
	margin-top: 3.0625rem;
}

.p-top-voice__text {
	font-size: 1rem;
	letter-spacing: 0.01em;
	line-height: 1.5;
	padding-left: 3.5625rem;
	padding-right: 2.75rem;
}

.p-top-voice__text:nth-child(n + 2) {
	margin-top: 3.4375rem;
}

.p-top__p-top-mv {
	margin-top: 7.8125rem;
}

.p-top__p-top-concept {
	margin-top: 3.75rem;
}

.p-top__p-top-introduction {
	margin-top: 2.125rem;
}

.p-top__p-top-thought {
	margin-top: 4rem;
}

.p-top__p-top-function {
	margin-top: 3.6875rem;
}

}

@media screen and (max-width: 549px) {

.u-appear-pc {
	display: none;
}

.u-appear-tab {
	display: none;
}
.p-top-concept__words{margin: 30px 0;}
.l-header__content{
	margin-left: 1rem;
    margin-right: 1rem;}
}

@media screen and (max-width: 374px) {

.u-appear-sp {
	display: none;
}

}

@-webkit-keyframes fadeInAnime {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fadeInAnime {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@-webkit-keyframes fadeUpAnime {

from {
	opacity: 0;
	transform: translateY(100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes fadeUpAnime {

from {
	opacity: 0;
	transform: translateY(100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

