@charset "UTF-8";
/*————————————————————————————————————————————

Theme name  :
Author      :
Version     :    1.0.0

※   このCSSファイルはstyle.scssによって、作成されました。
    CSSファイルをPure CSSで編集したい場合は、shame.cssを、
    Sassで編集する場合は、style.scssを更新してください。

———————————*/
/*————————————————————————————————————————————

フォント - vw

———————————*/
/*————————————————————————————————————————————

フォント - rem

———————————*/
/* CSS reset
--------------------------------------------------------------------------------------------------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
}

fieldset, img, abbr, acronym {
	border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}

strong {
	font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	font-weight: normal;
}

/* for IE6 */
* {
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
* html body, *:first-child + html body {
	font-size: 82%;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
	padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	        text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
	font: inherit;
	border: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		        animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		        animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		        transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
a {
	text-decoration: none;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*————————————————————————————————————————————

ベーススタイル定義

———————————*/
/*————————————————————————————————————————————

共通のベーススタイル

———————————*/
html {
	font-size: 17px;
}
@media screen and (max-width: 520px) {
	html {
		font-size: 14px;
	}
}

body {
	font-family: "Kosugi Maru", sans-serif;
	color: #5D6878;
	line-height: 1.75;
	letter-spacing: 2px;
}
body ::-webkit-scrollbar { /* Chrome, Safari 対応 */
	display: none;
}
body *::-webkit-scrollbar { /* Chrome, Safari 対応 */
	display: none;
}

.root-wrap {
	overflow: hidden;
}

a {
	color: inherit;
}

.inner {
	width: 90%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

.section {
	padding: 100px 0;
}
@media screen and (max-width: 800px) {
	.section {
		padding: 50px 0;
	}
}
.section._withbg {
	background: #F6FBFC;
}

.trigger {
	opacity: 0;
	-webkit-transform: translateY(4rem);
	        transform: translateY(4rem);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.trigger.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

/*————————————————————————————————————————————

フォント指定

———————————*/
/*
英フォント
———————————*/
/*————————————————————————————————————————————

BreakPoint

———————————*/
@media screen and (max-width: 520px) {
	.pc_only {
		display: none !important;
	}
}
@media screen and (max-width: 1024px) {
	.sp_only {
		display: none !important;
	}
}
/*————————————————————————————————————————————

Default Animation

———————————*/
/*————————————————————————————————————————————
ぼかしフェードインアップ
———————————*/
@-webkit-keyframes blur {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10%);
		        transform: translateY(10%);
		-webkit-filter: blur(10px);
		        filter: blur(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
@keyframes blur {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10%);
		        transform: translateY(10%);
		-webkit-filter: blur(10px);
		        filter: blur(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
/*————————————————————————————————————————————
ぼかしフェードイン
———————————*/
@-webkit-keyframes scroll {
	0% {
		opacity: 0;
		-webkit-filter: blur(10px);
		        filter: blur(10px);
	}
	100% {
		opacity: 1;
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
@keyframes scroll {
	0% {
		opacity: 0;
		-webkit-filter: blur(10px);
		        filter: blur(10px);
	}
	100% {
		opacity: 1;
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
/*————————————————————————————————————————————

———————————*/
@-webkit-keyframes scroll-line {
	0% {
		height: 0;
	}
	100% {
		height: 135px;
	}
}
@keyframes scroll-line {
	0% {
		height: 0;
	}
	100% {
		height: 135px;
	}
}
/*————————————————————————————————————————————

———————————*/
@-webkit-keyframes LineAnimation {
	0% {
		height: 0;
	}
	30% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	70% {
		height: 100%;
		top: 20px;
	}
	85% {
		height: 100%;
	}
	100% {
		height: 100%;
		top: 100%;
	}
}
@keyframes LineAnimation {
	0% {
		height: 0;
	}
	30% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	70% {
		height: 100%;
		top: 20px;
	}
	85% {
		height: 100%;
	}
	100% {
		height: 100%;
		top: 100%;
	}
}
/*————————————————————————————————————————————

———————————*/
@-webkit-keyframes loading-bg {
	0% {
		width: 100%;
		height: 100%;
	}
	90% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		display: none;
	}
}
@keyframes loading-bg {
	0% {
		width: 100%;
		height: 100%;
	}
	90% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		display: none;
	}
}
/*————————————————————————————————————————————

———————————*/
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
/*————————————————————————————————————————————

———————————*/
@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 0;
	}
}
@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 0;
	}
}
/*————————————————————————————————————————————
フェードイン
———————————*/
@-webkit-keyframes FadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes FadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*————————————————————————————————————————————
フェードアウト
———————————*/
@-webkit-keyframes FadeOut {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		visibility: hidden;
		display: none;
	}
}
@keyframes FadeOut {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		visibility: hidden;
		display: none;
	}
}
/*————————————————————————————————————————————

Header

———————————*/
.globalHead {
	width: 100%;
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 10;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (max-width: 800px) {
	.globalHead {
		top: 40px;
	}
}
.globalHead .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	max-width: inherit;
}
@media screen and (max-width: 800px) {
	.globalHead.is-fixed .p-hamburger {
		position: fixed;
		top: 40px;
		background: #95A0B2;
		border-radius: 50%;
	}
}

.langList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 1rem;
}
.langList .langItem {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: "Poppins", sans-serif;
	color: #000;
	font-weight: bold;
	z-index: 11;
}
.langList .langItem:not(:first-child):before {
	content: "/";
	display: inline-block;
	margin: 0 5px;
}
.is-drawerActive .langList .langItem {
	color: #FFCA0A;
}

.globalNav {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	background: #fff;
	padding: 150px 7rem 0;
	-webkit-transform: translateX(100%);
	        transform: translateX(100%);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.globalNav .item {
	color: #000;
}
.globalNav .item:not(:first-child) {
	margin-top: 2rem;
}
.is-drawerActive .globalNav {
	-webkit-transform: translateX(0%);
	        transform: translateX(0%);
	opacity: 1;
}

/*————————————————————————————————————————————

HUMBURGER

———————————*/
.c-button {
	position: relative;
	display: inline-block;
	text-decoration: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.p-hamburger {
	position: relative;
	width: 50px;
	height: 50px;
	background: none;
	outline: none;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 11;
}
@media screen and (max-width: 800px) {
	.p-hamburger {
		width: 44px;
		height: 44px;
	}
}

.p-hamburger__line {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 50px;
	height: 2px;
	background-color: transparent;
	-webkit-transition: inherit;
	transition: inherit;
}
@media screen and (max-width: 800px) {
	.p-hamburger__line {
		width: 27px;
	}
}

.p-hamburger__line::before,
.p-hamburger__line::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
	-webkit-transition: inherit;
	transition: inherit;
}

.p-hamburger__line::before {
	top: -7px;
}
@media screen and (max-width: 800px) {
	.p-hamburger__line::before {
		top: -5px;
	}
}

.p-hamburger__line::after {
	top: 7px;
}
@media screen and (max-width: 800px) {
	.p-hamburger__line::after {
		top: 5px;
	}
}

.p-hamburger[aria-expanded=true] .p-hamburger__line {
	background-color: transparent;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
	top: 0;
	background-color: #000;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
	-webkit-transform: rotate(15deg);
	        transform: rotate(15deg);
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
	-webkit-transform: rotate(-15deg);
	        transform: rotate(-15deg);
}

.u-visuallyHidden {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	margin: -1px;
}

/*————————————————————————————————————————————

Footer

———————————*/
.globalFoot {
	background: #FFCA0A;
	padding: 3rem 0 1rem;
}
.globalFoot .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #000;
}
.globalFoot .logo {
	width: 210px;
}
.globalFoot .logo img {
	width: 100%;
	height: auto;
}
.globalFoot .address {
	margin-top: 3rem;
}
.globalFoot .addressList .title,
.globalFoot .addressList .data {
	text-align: center;
}
.globalFoot .addressList .title:not(:first-child),
.globalFoot .addressList .data:not(:first-child) {
	margin-top: 0.5rem;
}
.globalFoot .contactBtn {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.copyRight {
	margin-top: 5rem;
}

/*————————————————————————————————————————————

MODAL

———————————*/
.modal-bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	background: rgba(17, 15, 16, 0.8);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.35s ease;
	transition: 0.35s ease;
}
.modal-bg._on {
	opacity: 1;
	-webkit-transition: 0.35s ease;
	transition: 0.35s ease;
}

.modal-container {
	width: 100%;
	height: 100vh;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	z-index: 10001;
	pointer-events: none;
}
.modal-container .scroll-y-content {
	height: 100vh;
	padding: 8rem 2rem 55vh 2rem;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal-container .scroll-y-content::-webkit-scrollbar {
	display: none;
}
.modal-container .modal-wrap {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	z-index: 10002;
	position: relative;
	pointer-events: none;
	opacity: 0;
	-webkit-transform: translateY(20px);
	        transform: translateY(20px);
	-webkit-transition: 0.35s ease 0s;
	transition: 0.35s ease 0s;
}
.modal-container .modal-wrap .close {
	width: 50px;
	height: 50px;
	color: #fff;
	background: #00D9A7;
	border-radius: 50%;
	position: absolute;
	top: 2rem;
	right: 2rem;
	left: inherit;
	cursor: pointer;
}
.modal-container .modal-wrap .close::after, .modal-container .modal-wrap .close::before {
	width: 50%;
	height: 2px;
	background: #fff;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.modal-container .modal-wrap .close::before {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.modal-container .modal-wrap > .inner {
	margin: 0 auto;
}
.modal-container .modal-wrap .text {
	margin-bottom: 2rem;
}
.modal-container .modal-wrap .text span {
	font-weight: 700;
}
.modal-container .modal-wrap .btn-wrap {
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #242424;
}
.modal-container .modal-wrap .btn-wrap button {
	width: calc((100% - 2rem) / 2);
}
.modal-container .modal-wrap .btn-wrap button {
	text-align: center;
	line-height: 1rem;
	padding: 1rem;
	border-radius: 50px;
	cursor: pointer;
}
.modal-container .modal-close-ovl {
	content: "";
	z-index: 10000;
	cursor: pointer;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.modal-container._on {
	pointer-events: auto;
}
.modal-container._on .modal-wrap {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	pointer-events: auto;
	-webkit-transition: 0.35s ease 0.25s;
	transition: 0.35s ease 0.25s;
}

.modal-container .title {
	-webkit-text-stroke: 1px #5D6878;
	text-stroke: 1px #5D6878;
	font-size: 2rem;
	text-align: left;
}
@media only screen and (max-width: 768px) {
	.modal-container .title {
		font-size: 1.5rem;
	}
}
@media only screen and (max-width: 520px) {
	.modal-container .title {
		padding-right: 60px;
	}
}
.modal-container .date {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	margin-top: 1rem;
}
.modal-container .text {
	margin-top: 2rem;
}

.modalInner {
	width: 90%;
	margin: auto;
	height: calc(90vh - 8rem);
	overflow: scroll;
}

.remodal-is-initialized {
	display: block;
}

.remodal-close {
	width: 50px;
	height: 50px;
	color: #fff;
	background: #00D9A7;
	border-radius: 50%;
	position: absolute;
	top: 2rem;
	right: 2rem;
	left: inherit;
}

.remodal-close:before {
	line-height: 50px;
}

.remodal-close, .remodal-close:before {
	width: 50px;
}

.remodal-is-opened {
	overflow: hidden;
}

/*————————————————————————————————————————————

共通タイトル

———————————*/
.sectionTitle {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	font-size: 2rem;
	letter-spacing: 2px;
	text-align: center;
}
@media screen and (max-width: 520px) {
	.sectionTitle {
		font-size: 1.5rem;
	}
}

/*————————————————————————————————————————————

BUTTON

———————————*/
/*
汎用的ボタン
———————————*/
.globalBtn {
	position: relative;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: #00D9A7;
	border-radius: 50px;
	min-width: 300px;
	padding: 1rem 2rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
@media screen and (max-width: 520px) {
	.globalBtn {
		min-width: 225px;
	}
}
@-webkit-keyframes shiny-btn1 {
	0% {
		-webkit-transform: scale(4) rotate(45deg);
		        transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		        transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}
@keyframes shiny-btn1 {
	0% {
		-webkit-transform: scale(4) rotate(45deg);
		        transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		        transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}
.globalBtn:before {
	position: absolute;
	content: "";
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
}
.globalBtn:hover::before {
	-webkit-animation: shiny-btn1 0.5s ease-in-out forwards 0s;
	        animation: shiny-btn1 0.5s ease-in-out forwards 0s;
}
.globalBtn > span {
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	display: table;
	color: #fff;
	margin: auto;
}
.globalBtn._icon:after {
	content: "";
	display: block;
	width: 45px;
	height: 12px;
	background: url(../../img/icon/arrow_right.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 1rem;
}
@media screen and (max-width: 520px) {
	.globalBtn._icon:after {
		display: none;
	}
}
.globalBtn._icon > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.globalBtn._icon > span:before {
	content: "";
	display: inline-block;
	width: 42px;
	height: 42px;
	background: url(../../img/icon/signin.svg) no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-right: 1rem;
}
@media screen and (max-width: 520px) {
	.globalBtn._icon > span:before {
		width: 26px;
		height: 26px;
	}
}

.globalSubmit {
	position: relative;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: #00D9A7;
	border-radius: 50px;
	min-width: 300px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
@media screen and (max-width: 520px) {
	.globalSubmit {
		min-width: 225px;
	}
}
.globalSubmit:hover::before {
	-webkit-animation: shiny-btn1 0.5s ease-in-out forwards 0s;
	        animation: shiny-btn1 0.5s ease-in-out forwards 0s;
}
.globalSubmit > input {
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	display: block;
	width: 100%;
	color: #fff;
	background: none;
	padding: 1rem 2rem;
	margin: auto;
	cursor: pointer;
}

.contactBtn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	background: #fff;
	border-radius: 50px;
	padding: 1rem 2rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 520px) {
	.contactBtn {
		width: 90%;
		min-width: 280px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
.contactBtn > span {
	color: #000;
	line-height: 1;
}
.contactBtn .num {
	font-family: "Poppins", sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	padding-left: 1rem;
}
@media screen and (max-width: 520px) {
	.contactBtn .num {
		margin-top: 1rem;
	}
}

.ctaBtn {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #00D9A7;
	-webkit-filter: drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.05));
	        filter: drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.05));
	overflow: hidden;
}
@media screen and (max-width: 800px) {
	.ctaBtn {
		display: none !important;
	}
}
.ctaBtn:before {
	position: absolute;
	content: "";
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
}
.ctaBtn:hover::before {
	-webkit-animation: shiny-btn1 0.5s ease-in-out forwards 0s;
	        animation: shiny-btn1 0.5s ease-in-out forwards 0s;
}
.ctaBtn > span {
	-webkit-text-stroke: 0.5px #fff;
	text-stroke: 0.5px #fff;
	color: #fff;
	font-size: 0.8rem;
	text-align: center;
}

/*————————————————————————————————————————————

ブロックモジュール

———————————*/
.sectionCard {
	-webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
	        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
	will-change: filter; /* or transform */
	background: #fff;
	border-radius: 20px;
	padding: 4rem 0;
}
@media screen and (max-width: 520px) {
	.sectionCard {
		padding: 2rem 1rem;
	}
}
.sectionCard._small {
	padding: 3rem 0;
}
@media screen and (max-width: 520px) {
	.sectionCard._small {
		padding: 2rem 1rem;
	}
}
.sectionCard._mid {
	padding: 4rem 1rem;
}

.withbgBlock {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
}
@media screen and (max-width: 520px) {
	.withbgBlock {
		padding: 3rem 0;
	}
}
.withbgBlock .inner {
	opacity: 0;
}
.withbgBlock:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #FFCA0A;
	-webkit-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.withbgBlock._login .inner {
	position: relative;
}
@media screen and (max-width: 1024px) {
	.withbgBlock._login .inner {
		display: table;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}
.withbgBlock._login .inner:before, .withbgBlock._login .inner:after {
	content: "";
	display: block;
	background: url(../../img/login/hands.png) no-repeat;
	background-size: contain;
	width: 333px;
	height: 193px;
	position: absolute;
	bottom: calc(-30px - 4rem);
	z-index: -1;
}
@media screen and (max-width: 800px) {
	.withbgBlock._login .inner:before, .withbgBlock._login .inner:after {
		width: 200px;
		height: 110px;
		bottom: calc(-30px - 3rem);
	}
}
@media screen and (max-width: 520px) {
	.withbgBlock._login .inner:before, .withbgBlock._login .inner:after {
		width: 140px;
		height: 83px;
		bottom: calc(-30px - 2rem);
	}
}
.withbgBlock._login .inner:before {
	left: 2rem;
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
}
@media screen and (max-width: 1024px) {
	.withbgBlock._login .inner:before {
		left: -100%;
	}
}
@media screen and (max-width: 800px) {
	.withbgBlock._login .inner:before {
		left: -7rem;
	}
}
@media screen and (max-width: 520px) {
	.withbgBlock._login .inner:before {
		left: -25%;
	}
}
.withbgBlock._login .inner:after {
	right: 2rem;
	-webkit-transform: translateY(100%) scale(-1, 1);
	        transform: translateY(100%) scale(-1, 1);
}
@media screen and (max-width: 1024px) {
	.withbgBlock._login .inner:after {
		right: -100%;
	}
}
@media screen and (max-width: 800px) {
	.withbgBlock._login .inner:after {
		right: -7rem;
	}
}
@media screen and (max-width: 520px) {
	.withbgBlock._login .inner:after {
		right: -25%;
	}
}
.withbgBlock._signin .inner {
	position: relative;
	display: table;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.withbgBlock._signin .inner:after {
	content: "";
	display: block;
	background: url(../../img/signin/hand.png) no-repeat;
	background-size: contain;
	width: 166px;
	height: 274px;
	position: absolute;
	bottom: -5rem;
	right: -200px;
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
}
@media screen and (max-width: 800px) {
	.withbgBlock._signin .inner:after {
		width: 120px;
		height: 200px;
		right: -130px;
		z-index: -1;
	}
}
@media screen and (max-width: 520px) {
	.withbgBlock._signin .inner:after {
		width: 75px;
		height: 123px;
		right: -40px;
		bottom: -4rem;
	}
}
.withbgBlock.on:before {
	-webkit-transform: translateX(0%);
	        transform: translateX(0%);
}
@-webkit-keyframes fadein {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes handsup {
	0% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}
@keyframes handsup {
	0% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}
@-webkit-keyframes handsup_scale {
	0% {
		-webkit-transform: translateY(100%) scale(-1, 1);
		        transform: translateY(100%) scale(-1, 1);
	}
	100% {
		-webkit-transform: translateY(0%) scale(-1, 1);
		        transform: translateY(0%) scale(-1, 1);
	}
}
@keyframes handsup_scale {
	0% {
		-webkit-transform: translateY(100%) scale(-1, 1);
		        transform: translateY(100%) scale(-1, 1);
	}
	100% {
		-webkit-transform: translateY(0%) scale(-1, 1);
		        transform: translateY(0%) scale(-1, 1);
	}
}
.withbgBlock.on._login .inner {
	-webkit-animation: fadein 0.4s ease-in forwards 0.4s;
	        animation: fadein 0.4s ease-in forwards 0.4s;
}
.withbgBlock.on._login .inner:before {
	-webkit-animation: 0.3s handsup ease-in forwards 0.6s;
	        animation: 0.3s handsup ease-in forwards 0.6s;
}
.withbgBlock.on._login .inner:after {
	-webkit-animation: 0.3s handsup_scale ease-in forwards 0.7s;
	        animation: 0.3s handsup_scale ease-in forwards 0.7s;
}
.withbgBlock.on._signin .inner {
	-webkit-animation: fadein 0.4s ease-in forwards 0.4s;
	        animation: fadein 0.4s ease-in forwards 0.4s;
}
.withbgBlock.on._signin .inner:after {
	-webkit-animation: 0.2s handsup ease-in forwards 0.7s;
	        animation: 0.2s handsup ease-in forwards 0.7s;
}

.blockTitle {
	-webkit-text-stroke: 0.3px #000;
	text-stroke: 0.3px #000;
	text-align: center;
	color: #000;
	font-size: 1.25rem;
	letter-spacing: 2px;
	margin-bottom: 3rem;
}
@media screen and (max-width: 800px) {
	.blockTitle {
		margin-bottom: 1rem;
	}
}
.blockTitle._decoration::before, .blockTitle._decoration:after {
	content: "/";
	display: inline-block;
}
.blockTitle._decoration:before {
	-webkit-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}

/*————————————————————————————————————————————

SECTION

———————————*/
/*————————————————————————————————————————————

SECTION

———————————*/
.firstView {
	position: relative;
	width: 100vw;
	height: 100vh;
}
.firstView:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #FFCA0A;
	-webkit-clip-path: polygon(0 0, 42% 0, 15% 100%, 0% 100%);
	        clip-path: polygon(0 0, 42% 0, 15% 100%, 0% 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
}
body.trans .firstView:before {
	-webkit-animation: none;
	        animation: none;
}
body.loaded .firstView:before {
	-webkit-animation: poligon 0.1s ease-in forwards 6s;
	        animation: poligon 0.1s ease-in forwards 6s;
}
@-webkit-keyframes poligon {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes poligon {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media screen and (max-width: 800px) {
	.firstView:before {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 35%, 0 50%);
		        clip-path: polygon(0 0, 100% 0, 100% 35%, 0 50%);
	}
}
@media screen and (max-width: 520px) {
	.firstView:before {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 0 30%);
		        clip-path: polygon(0 0, 100% 0, 100% 20%, 0 30%);
	}
}
.firstView:after {
	content: "";
	display: block;
	width: 180%;
	height: 100%;
	-webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	background: #FFCA0A;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-transform: translateX(100%);
	        transform: translateX(100%);
}
@-webkit-keyframes curtain {
	0% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
	40% {
		-webkit-transform: translateX(-30%);
		        transform: translateX(-30%);
	}
	60% {
		-webkit-transform: translateX(-30%);
		        transform: translateX(-30%);
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}
@keyframes curtain {
	0% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
	40% {
		-webkit-transform: translateX(-30%);
		        transform: translateX(-30%);
	}
	60% {
		-webkit-transform: translateX(-30%);
		        transform: translateX(-30%);
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}
body.trans .firstView:after {
	-webkit-animation: none;
	        animation: none;
}
body.loaded .firstView:after {
	-webkit-animation: curtain 1.5s ease forwards 5.7s;
	        animation: curtain 1.5s ease forwards 5.7s;
	-webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
	        animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
.firstView .inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
	z-index: 1;
}
@media only screen and (max-width: 800px) {
	.firstView .inner {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		height: inherit;
		padding-top: 100px;
	}
}
.firstView .logo {
	position: relative;
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
	overflow: hidden;
}
@media screen and (max-width: 800px) {
	.firstView .logo {
		max-width: 400px;
	}
}
@media screen and (max-width: 520px) {
	.firstView .logo {
		max-width: 300px;
	}
}
.firstView .logo > svg {
	width: 100%;
	height: auto;
	padding: 0 3rem;
	overflow: visible;
}
.firstView .logo .letterWrap {
	overflow: hidden;
}
@-webkit-keyframes letter {
	0% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}
@keyframes letter {
	0% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}
.firstView .logo .letterWrap .letter {
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
}
body.trans .firstView .logo .letterWrap .letter {
	-webkit-animation: none;
	        animation: none;
}
body.loaded .firstView .logo .letterWrap .letter {
	-webkit-animation: letter 0.5s ease-in forwards 4.1s;
	        animation: letter 0.5s ease-in forwards 4.1s;
}
@-webkit-keyframes arrowLeft {
	0% {
		-webkit-transform: translateX(115%);
		        transform: translateX(115%);
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes arrowLeft {
	0% {
		-webkit-transform: translateX(115%);
		        transform: translateX(115%);
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes arrowRight {
	0% {
		-webkit-transform: translateX(-115%);
		        transform: translateX(-115%);
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes arrowRight {
	0% {
		-webkit-transform: translateX(-115%);
		        transform: translateX(-115%);
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
.firstView .logo .arrowLeft {
	-webkit-transform: translateX(115%);
	        transform: translateX(115%);
}
body.trans .firstView .logo .arrowLeft {
	-webkit-animation: none;
	        animation: none;
}
body.loaded .firstView .logo .arrowLeft {
	-webkit-animation: 0.7s arrowLeft forwards 4.5s 1 normal;
	        animation: 0.7s arrowLeft forwards 4.5s 1 normal;
	-webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
	        animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.firstView .logo .arrowRight {
	-webkit-transform: translateX(-115%);
	        transform: translateX(-115%);
}
body.trans .firstView .logo .arrowRight {
	-webkit-animation: none;
	        animation: none;
}
body.loaded .firstView .logo .arrowRight {
	-webkit-animation: 0.7s arrowRight forwards 4.5s 1 normal;
	        animation: 0.7s arrowRight forwards 4.5s 1 normal;
	-webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
	        animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.firstView .text {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25rem;
	letter-spacing: 2px;
	margin-top: 0.5rem;
}
@media screen and (max-width: 520px) {
	.firstView .text {
		font-size: 1rem;
	}
}

.catchWrap {
	width: min(60%, 600px);
}
@media screen and (max-width: 800px) {
	.catchWrap {
		width: 90%;
		margin: 0 auto;
	}
}
.catchWrap .catch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #000;
	margin-bottom: 4rem;
}
@keyframes fadein {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10%);
		        transform: translateY(10%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes fadein_sp {
	0% {
		opacity: 0;
		-webkit-transform: translate(-50%, 10%);
		        transform: translate(-50%, 10%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
@keyframes fadein_sp {
	0% {
		opacity: 0;
		-webkit-transform: translate(-50%, 10%);
		        transform: translate(-50%, 10%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
.catchWrap .globalBtn {
	opacity: 0;
	-webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
	        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
	will-change: filter; /* or transform */
	width: min(90%, 500px);
}
body.trans .catchWrap .globalBtn {
	-webkit-animation: none;
	        animation: none;
}
body.loaded .catchWrap .globalBtn {
	-webkit-animation: fadein 0.3s ease-in forwards 5s;
	        animation: fadein 0.3s ease-in forwards 5s;
}
@media only screen and (max-width: 800px) {
	.catchWrap .globalBtn {
		position: fixed;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
		bottom: 2rem;
	}
	body.trans .catchWrap .globalBtn {
		-webkit-animation: none;
		        animation: none;
	}
	body.loaded .catchWrap .globalBtn {
		-webkit-animation: fadein_sp 0.3s ease-in forwards 5s;
		        animation: fadein_sp 0.3s ease-in forwards 5s;
	}
}
@media only screen and (max-width: 520px) {
	.catchWrap .globalBtn {
		width: min(90%, 280px);
		bottom: 2rem;
	}
}

.mainVisual {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mainVisual img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: 70%;
	   object-position: 70%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/*————————————————————————————————————————————

INFOMATION

———————————*/
.infomationList {
	width: min(90%, 960px);
	margin: 3rem auto 0;
}
@media screen and (max-width: 800px) {
	.infomationList {
		margin-top: 1.5rem;
	}
}
.infomationList .item:not(:first-child) {
	margin-top: 2rem;
}
@media screen and (max-width: 800px) {
	.infomationList .item:not(:first-child) {
		margin-top: 1rem;
	}
}
.infomationList .item > a,
.infomationList .item > button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width: 100%;
	background: none;
	padding: 0;
	color: #5D6878;
	cursor: pointer;
}
@media screen and (max-width: 800px) {
	.infomationList .item > a,
	.infomationList .item > button {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
.infomationList .info {
	width: 190px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media only screen and (min-width: 800px) {
	.infomationList .info {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}
}
.infomationList .tag {
	display: inline-block;
	color: #fff;
	border-radius: 3px;
	background: #F5B400;
	padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 800px) {
	.infomationList .tag {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}
.infomationList .date {
	width: 88px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-align: left;
	letter-spacing: 1px;
	padding-top: 0.25rem;
	margin-left: 2rem;
}
@media screen and (max-width: 800px) {
	.infomationList .date {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		margin-left: 0;
	}
}
.infomationList .title {
	width: calc(100% - 190px);
	text-align: left;
	margin-left: 2rem;
	padding-top: 0.25rem;
}
@media screen and (max-width: 800px) {
	.infomationList .title {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
		width: 100%;
		margin-left: 0;
	}
}

/* H2 ================================================*/
#remodal-wrap div.text h2 {
	background: #fff;
	font-size: 1.5rem;
	border-left: 3px solid #F5B400;
	padding: 0.75rem 1rem;
	line-height: 1.75;
	display: block;
	font-weight: 700;
}

/* H3 ================================================*/
#remodal-wrap div.text h3 {
	font-size: 1.25rem;
	padding: 0rem;
	line-height: 1.75;
	display: block;
	font-weight: 700;
}

/* リスト ================================================*/
#remodal-wrap div.text ul li {
	width: 100%;
	padding-left: 2rem !important;
	padding-bottom: 0.75rem !important;
	margin-bottom: 0.75rem !important;
	position: relative;
	display: inline-block;
	border-bottom: 1px solid #d7d7d7;
}

#remodal-wrap div.text ul li:last-child {
	padding-bottom: 0.75rem;
	margin-bottom: 0rem;
	border-bottom: 1px solid #d7d7d7;
}

#remodal-wrap div.text ul li::after {
	width: 13px;
	height: 13px;
	content: "";
	background: #d7d7d7;
	border-radius: 100%;
	margin: auto;
	position: absolute;
	top: 6px;
	left: 0;
}

/* 太字 ================================================*/
.CodeMirror .CodeMirror-code .cm-strong {
	font-weight: 700;
}

/* リンク ================================================*/
#remodal-wrap div.text a {
	color: #1F9AFF;
	text-decoration: none;
	font-weight: 700;
	padding-right: 1rem;
}

#remodal-wrap div.text a::after {
	font-family: "Material Icons Outlined";
	content: "open_in_new";
	-webkit-transform: translateX(2px) translateY(2px);
	        transform: translateX(2px) translateY(2px);
	display: inline-block;
}

#remodal-wrap div.text h2 {
	margin-top: inherit;
	margin-bottom: 1rem;
}

#remodal-wrap div.text p {
	text-align: inherit;
	margin-bottom: 1rem;
}

#remodal-wrap div.text ul {
	padding: inherit;
}

#remodal-wrap div.text ul > li {
	display: block;
}

/*————————————————————————————————————————————

AUCTION

———————————*/
.auction {
	position: relative;
}
.auction:before {
	content: "";
	display: block;
	width: 100%;
	height: calc(100% - 200px);
	-webkit-clip-path: polygon(0 50%, 100% 0%, 100% 50%, 0% 100%);
	        clip-path: polygon(0 50%, 100% 0%, 100% 50%, 0% 100%);
	background: #FFCA0A;
	position: absolute;
	top: 100px;
	left: 0;
	-webkit-animation: 0.5s cut ease-in forwards 0.5s;
	        animation: 0.5s cut ease-in forwards 0.5s;
}
@-webkit-keyframes cut {
	0% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}
@keyframes cut {
	0% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}
.auction .sectionText {
	width: min(90%, 714px);
	margin: 2rem auto 0;
}

.youtube {
	width: min(90%, 714px);
	aspect-ratio: 16/9;
	margin: 2rem auto 0;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

.pointList {
	width: min(90%, 1024px);
	margin: 2rem auto 0;
}
.pointList .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 0 2rem;
}
@media screen and (max-width: 800px) {
	.pointList .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.pointList .index {
	position: relative;
	display: block;
	width: 100%;
	font-family: "Poppins", sans-serif;
	color: #FFCA0A;
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 2rem;
}
@media screen and (max-width: 520px) {
	.pointList .index {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
}
.pointList .index:after {
	content: "";
	display: inline-block;
	width: calc(100% - 185px);
	height: 1px;
	background: #000;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 0;
}
@media screen and (max-width: 520px) {
	.pointList .index:after {
		width: calc(100% - 130px);
	}
}
.pointList .icon {
	width: 95px;
	height: 95px;
	margin-left: 148px;
}
@media screen and (max-width: 800px) {
	.pointList .icon {
		margin: auto;
	}
}
.pointList .icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.pointList .textWrap {
	width: calc(100% - 148px - 100px);
	padding-left: 3rem;
}
@media screen and (max-width: 800px) {
	.pointList .textWrap {
		width: 100%;
		padding-left: 0;
		margin-top: 2rem;
	}
}
@media screen and (max-width: 520px) {
	.pointList .textWrap {
		margin-top: 1rem;
	}
}
.pointList .title {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	font-size: 1.2rem;
}
@media screen and (max-width: 800px) {
	.pointList .text {
		margin-top: 1rem;
	}
}

/*————————————————————————————————————————————

FLOW

———————————*/
.flowList {
	width: min(90%, 714px);
	margin: 3rem auto 0;
}
.flowList .item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (max-width: 800px) {
	.flowList .item {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
.flowList .item:not(:first-child) {
	margin-top: 3rem;
}
.flowList .item:not(:first-child):before {
	content: "";
	display: block;
	width: 4px;
	height: 255%;
	background: #FFCA0A;
	position: absolute;
	top: -115%;
	left: 28px;
	z-index: -1;
}
@media screen and (max-width: 800px) {
	.flowList .item:not(:first-child):before {
		display: none;
	}
}
@media screen and (max-width: 800px) {
	.flowList .item:not(:last-child):before {
		content: "";
		display: block;
		width: 4px;
		height: 230%;
		background: #FFCA0A;
		position: absolute;
		top: 0;
		left: 18px;
		z-index: -1;
	}
}
.flowList .num {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 60px;
	height: 60px;
	background: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1;
	color: #000;
	border-radius: 50%;
	border: 4px solid #FFCA0A;
}
@media screen and (max-width: 800px) {
	.flowList .num {
		width: 40px;
		height: 40px;
	}
}
.flowList .title {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	width: 175px;
}
@media screen and (max-width: 800px) {
	.flowList .title {
		margin-left: 1rem;
	}
}
@media screen and (max-width: 520px) {
	.flowList .title {
		font-size: 1.2rem;
	}
}
.flowList .text {
	width: calc(100% - 250px);
}
@media screen and (max-width: 800px) {
	.flowList .text {
		width: 100%;
		padding-left: calc(40px + 1rem);
	}
}

/*————————————————————————————————————————————

COST

———————————*/
.sectionWrap {
	overflow: hidden;
}

.cost {
	position: relative;
}
.cost:before {
	content: "";
	display: block;
	width: 100%;
	height: 140%;
	-webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 50%);
	        clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 50%);
	background: #FFCA0A;
	position: absolute;
	bottom: -10%;
	right: 0;
}
.cost .sectionCard {
	margin-bottom: 4rem;
}

.costList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 4rem;
}
@media screen and (max-width: 800px) {
	.costList {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.costList .item:not(:first-child) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (max-width: 800px) {
	.costList .item:not(:first-child) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.costList .item:not(:first-child):before {
	content: "+";
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	color: #000;
	margin: 0 3rem;
	display: block;
}
.costList .title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.costList .title .text {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	font-size: 1.5rem;
	text-align: center;
}
@media screen and (max-width: 520px) {
	.costList .title .text {
		margin-bottom: 1rem;
	}
}
@media screen and (max-width: 520px) {
	.costList .title .price {
		line-height: 1;
	}
}
.costList .title .num {
	font-family: "Poppins", sans-serif;
	font-size: 3rem;
	color: #FFCA0A;
	font-weight: 800;
}

h4.shipping {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 1rem;
}

.tableWrap {
	width: min(90%, 1024px);
	margin: 4rem auto 0;
	overflow-x: scroll;
}
@media screen and (max-width: 520px) {
	.tableWrap {
		width: min(90%, 800px);
		margin: 2rem auto 0;
	}
}

.commonTable {
	width: 1024px;
	border: 1px solid #5D6878;
}
@media screen and (max-width: 520px) {
	.commonTable {
		width: 800px;
	}
}
.commonTable .row:first-child {
	background: #5D6878;
}
.commonTable .row:not(:last-child) {
	border-bottom: 1px solid #5D6878;
}
.commonTable .title,
.commonTable .data {
	padding: 1rem 2rem;
}
@media screen and (max-width: 520px) {
	.commonTable .title,
	.commonTable .data {
		font-size: 1.2rem;
	}
}
.commonTable .title {
	-webkit-text-stroke: 0.3px #fff;
	text-stroke: 0.3px #fff;
	color: #fff;
	text-align: center;
}
.commonTable .title:not(:first-child) {
	border-left: 1px solid #fff;
}
@media screen and (max-width: 520px) {
	.commonTable .title {
		padding: 1.5rem 2rem;
	}
}
.commonTable .data {
	text-align: left;
}
.commonTable .data:not(:first-child) {
	font-family: "Poppins", sans-serif;
	border-left: 1px solid #5D6878;
}

/*————————————————————————————————————————————

QUESTION

———————————*/
.question {
	padding: 4rem;
}
@media screen and (max-width: 800px) {
	.question {
		padding: 4rem 0;
	}
}
@media screen and (max-width: 520px) {
	.question {
		padding: 4rem 0 1rem;
	}
}

.accordionList {
	margin-top: 3rem;
}
.accordionList .item:not(:first-child) {
	margin-top: 1rem;
}
.accordionList .content {
	-webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
	        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
	will-change: filter; /* or transform */
	display: block;
	border-radius: 20px;
	overflow: hidden;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.accordionList .title,
.accordionList .answer {
	padding: 2rem 8rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (max-width: 800px) {
	.accordionList .title,
	.accordionList .answer {
		padding: 2rem 4rem;
	}
}
.accordionList .title {
	position: relative;
	display: block;
	background: #fff;
	cursor: pointer;
}
.accordionList .title:before {
	content: "Q";
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: 3rem;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
	margin-right: 2rem;
	position: absolute;
	top: 1.2rem;
	left: 4rem;
}
@media screen and (max-width: 800px) {
	.accordionList .title:before {
		font-size: 2rem;
		left: 1.5rem;
	}
}
@media screen and (max-width: 520px) {
	.accordionList .title:before {
		top: 1.8rem;
	}
}
.accordionList .title:after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	border: 4px solid;
	border-color: #000 #000 transparent transparent;
	position: absolute;
	right: 4rem;
	top: 30%;
	-webkit-transform: rotate(135deg) translateY(-50%);
	        transform: rotate(135deg) translateY(-50%);
	position: absolute;
	top: 1rem;
	right: 4rem;
}
@media screen and (max-width: 800px) {
	.accordionList .title:after {
		width: 1rem;
		height: 1rem;
		border: 2px solid;
		border-color: #000 #000 transparent transparent;
		right: 2rem;
	}
}
@media screen and (max-width: 520px) {
	.accordionList .title:after {
		top: 1.6rem;
	}
}
.accordionList .title::-webkit-details-marker {
	display: none;
}
.accordionList .answer {
	position: relative;
	background: rgba(93, 104, 120, 0.2);
}
.accordionList .answer:before {
	content: "A";
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: 3rem;
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	margin-right: 2rem;
	position: absolute;
	top: 0.2rem;
	left: 4rem;
}
@media screen and (max-width: 800px) {
	.accordionList .answer:before {
		font-size: 2rem;
		left: 1.5rem;
	}
}
@media screen and (max-width: 520px) {
	.accordionList .answer:before {
		top: 1rem;
	}
}

/*————————————————————————————————————————————

COMPANY

———————————*/
.descriptionList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: min(90%, 714px);
	margin: 3rem auto 0;
}
.descriptionList .title,
.descriptionList .description {
	border-bottom: 1px solid #5D6878;
	padding-bottom: 1rem;
}
.descriptionList .title:not(:first-of-type),
.descriptionList .description:not(:first-of-type) {
	margin-top: 2rem;
}
.descriptionList .title {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	width: 50%;
}
.descriptionList .description {
	width: 50%;
}

/*————————————————————————————————————————————

CONTACT

———————————*/
.formList {
	width: min(90%, 714px);
	margin: 3rem auto 0;
}
.formList .notice {
	width: 100%;
}
.formList .item:not(:first-child) {
	margin-top: 3rem;
}
.formList .item._column2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
@media screen and (max-width: 800px) {
	.formList .item._column2 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.formList .item._column2 .label {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	width: 40%;
	padding-top: 0.5rem;
}
@media screen and (max-width: 800px) {
	.formList .item._column2 .label {
		width: 100%;
	}
}
.formList .item._column2 .formParts {
	width: 60%;
}
@media screen and (max-width: 800px) {
	.formList .item._column2 .formParts {
		width: 100%;
		margin-top: 1rem;
	}
}
.formList .item._column2 .selectWrap {
	position: relative;
	display: block;
	max-width: 280px;
	border: 1px solid #f0f0f0;
}
.formList .item._column2 .selectWrap:before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border: 2px solid;
	border-color: transparent transparent #fff #fff;
	position: absolute;
	top: 50%;
	right: 1rem;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	        transform: translateY(-50%) rotate(-45deg);
	z-index: 1;
}
.formList .parts._input {
	width: 100%;
	resize: none;
	color: #5D6878;
	border: 1px solid #f0f0f0;
	background-color: #F8F8FB !important;
	padding: 0.5rem 1rem;
}
.formList .parts._select {
	position: relative;
	width: 100%;
	background: #F8F8FB;
	padding: 0.5rem 0 0.5rem 1rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.formList .parts._textarea {
	width: 100%;
	height: 250px;
	resize: none;
	color: #5D6878;
	border: 1px solid #f0f0f0;
	background: #F8F8FB;
	padding: 0.5rem 1rem;
}
.formList .text a,
.formList .text button {
	color: #1F9AFF;
	background: none;
	cursor: pointer;
}
.formList .globalSubmit {
	margin-top: 2rem;
}
.formList .globalSubmit input:disabled {
	cursor: default;
	opacity: 0.5;
}

.checkboxWrap {
	display: table;
	margin: 2rem auto 0;
}

.my-checkbox {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
	margin: auto;
}

.my-checkbox__input {
	border: 0;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.my-checkbox__icon {
	display: inline-block;
	height: 1.5em;
	position: relative;
	width: 1.5em;
}
.my-checkbox__icon::before, .my-checkbox__icon::after {
	content: "";
	position: absolute;
}
.my-checkbox__icon::before {
	border: 2px solid #1F9AFF;
	height: 100%;
	left: 0;
	top: 0;
	-webkit-transition: border-color 0.5s, opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: border-color 0.5s, opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: border-color 0.5s, opacity 0.5s, transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: border-color 0.5s, opacity 0.5s, transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	width: 100%;
}
.my-checkbox__input:checked + .my-checkbox__icon::before {
	border-color: #1F9AFF;
	opacity: 0;
	-webkit-transform: rotate(45deg) scale3d(2, 2, 1);
	        transform: rotate(45deg) scale3d(2, 2, 1);
	pointer-events: none;
}
.my-checkbox__icon::after {
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent;
	height: 0.5em;
	left: 0.25em;
	opacity: 0;
	top: 0.375em;
	-webkit-transform: rotate(-225deg);
	        transform: rotate(-225deg);
	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: opacity 0.5s, transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: opacity 0.5s, transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	width: 1em;
}
.my-checkbox__input:checked + .my-checkbox__icon::after {
	border-bottom: 2px solid #1F9AFF;
	border-left: 2px solid #1F9AFF;
	opacity: 1;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.my-checkbox__text {
	display: inline-block;
	letter-spacing: 0.01em;
	line-height: 1.5;
	position: relative;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.my-checkbox__input:checked ~ .my-checkbox__text {
	color: #1F9AFF;
}
.my-checkbox__input.focus-visible ~ .my-checkbox__text {
	color: #1F9AFF;
}
@media (hover) {
	.my-checkbox__text:hover {
		color: #1F9AFF;
	}
}
.my-checkbox__text::after {
	background-color: #1F9AFF;
	bottom: -2px;
	content: "";
	display: inline-block;
	height: 2px;
	left: 0;
	position: absolute;
	-webkit-transform: scale3d(0, 1, 1);
	        transform: scale3d(0, 1, 1);
	-webkit-transform-origin: right;
	        transform-origin: right;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}
.my-checkbox__input.focus-visible ~ .my-checkbox__text::after {
	-webkit-transform: scale3d(1, 1, 1);
	        transform: scale3d(1, 1, 1);
	-webkit-transform-origin: left;
	        transform-origin: left;
}
@media (hover) {
	.my-checkbox:hover .my-checkbox__text::after {
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
		-webkit-transform-origin: left;
		        transform-origin: left;
	}
}
.my-checkbox__icon + .my-checkbox__text {
	margin-left: 1em;
}

.alert-danger {
	width: 100%;
	color: red;
	text-align: center;
}

/*————————————————————————————————————————————

policy

———————————*/
.policyList {
	width: min(90%, 714px);
	margin: 3rem auto 0;
}
.policyList .item {
	padding-bottom: 2rem;
}
@media screen and (max-width: 800px) {
	.policyList .item {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
.policyList .title {
	-webkit-text-stroke: 0.3px #5D6878;
	text-stroke: 0.3px #5D6878;
	font-size: 1.2rem;
}
@media screen and (max-width: 520px) {
	.policyList .title {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 800px) {
	.policyList .text {
		width: 100%;
	}
}
.policyList .text .link {
	color: #00D9A7;
}

.root-wrap.nowloading {
	opacity: 0;
}

.root-wrap {
	opacity: 1;
}

body.trans .loading-wrap {
	opacity: 1;
	pointer-events: auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-animation: none;
	        animation: none;
}

.loading-wrap .inner {
	width: 100%;
	height: 100%;
}
.loading-wrap .inner .img {
	max-width: 615px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.loading-wrap .inner > div {
	-webkit-transform: translateY(-8rem);
	        transform: translateY(-8rem);
}

body .loading-wrap {
	width: 100%;
	height: 100%;
	background: #FFCA0A;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 9999;
	padding: 2rem;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-animation: openingOut 0.7s ease-in 3s forwards;
	        animation: openingOut 0.7s ease-in 3s forwards;
}
body .loading-wrap .logo-wrap {
	max-width: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
body .loading-wrap .logo-wrap > svg {
	width: 100%;
	height: auto;
	padding: 0 3rem;
	overflow: visible;
}
body .loading-wrap .logo-wrap .letterWrap {
	overflow: hidden;
}
@keyframes letter {
	0% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}
@-webkit-keyframes loadArrowLeft {
	0% {
		-webkit-transform: translateX(115%);
		        transform: translateX(115%);
	}
	50% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-115%);
		        transform: translateX(-115%);
	}
}
@keyframes loadArrowLeft {
	0% {
		-webkit-transform: translateX(115%);
		        transform: translateX(115%);
	}
	50% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-115%);
		        transform: translateX(-115%);
	}
}
@-webkit-keyframes loadArrowRight {
	0% {
		-webkit-transform: translateX(-115%);
		        transform: translateX(-115%);
	}
	50% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(115%);
		        transform: translateX(115%);
	}
}
@keyframes loadArrowRight {
	0% {
		-webkit-transform: translateX(-115%);
		        transform: translateX(-115%);
	}
	50% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(115%);
		        transform: translateX(115%);
	}
}
body .loading-wrap .logo-wrap .arrowLeft {
	-webkit-transform: translateX(115%);
	        transform: translateX(115%);
	-webkit-animation: 1.5s loadArrowLeft infinite 1s;
	        animation: 1.5s loadArrowLeft infinite 1s;
	-webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
	        animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
body .loading-wrap .logo-wrap .arrowRight {
	-webkit-transform: translateX(-115%);
	        transform: translateX(-115%);
	-webkit-animation: 1.5s loadArrowRight infinite 1s;
	        animation: 1.5s loadArrowRight infinite 1s;
	-webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
	        animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
body .loading-wrap .logo-wrap .text {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: bold;
	color: #000;
	text-align: center;
}

@-webkit-keyframes openingOut {
	0% {
		opacity: 1;
		pointer-events: auto;
	}
	100% {
		opacity: 0;
		pointer-events: none;
	}
}

@keyframes openingOut {
	0% {
		opacity: 1;
		pointer-events: auto;
	}
	100% {
		opacity: 0;
		pointer-events: none;
	}
}
/*# sourceMappingURL=style.css.map */