@charset "UTF-8";

div#loader-bg {
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 99999;
    top: 0;
    height: 100vh!important;
    text-align: center;
    background: #f5f5f5;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
	overflow: hidden;
}

div#loader {
    height: 100vh!important;
    background: #f5f5f5;
    width: 100%;
    z-index: 9999;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

div#loader svg{
	display: block;
	position: fixed;
	top: 50%;
	width: 180px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
path{
  fill: url(#gradient);
}

#stop1{
  animation: step1 1s ease-in-out infinite alternate;
}
#stop2{
  animation: step2 1s ease-in-out infinite alternate;
}

@keyframes step1{
  0% {
    stop-color: #0426A0;
  }
  50% {
    stop-color: #708fff;
  }
  100% {
    stop-color: #0426A0;
  }
}
@keyframes step2{
  0% {
    stop-color: #708fff;
  }
  50% {
    stop-color: #0426A0;
  }
  100% {
    stop-color: #708fff;
  }
}

html {
	background: #F5F5F5!important;
}

body {
  cursor: none;
}

a {
  cursor: inherit;
}

::selection {
	background:#000;
	color: #fff;
}

::-moz-selection {
	background:#000;
	color: #fff;
}

.pc_disp {
	display: block;
}

.sp_disp {
	display: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999; /* いちばん上に来るように大きめの値を指定 */
  pointer-events: none;
}

/* ▽▽▽ここから下の部分はサイトにあわせてスタイルを調整してください▽▽▽ */
.cursor__inner {
  width: 10px;
  height: 10px;
  backdrop-filter: blur(4px);
  z-index: 99999;
  box-shadow: 0px 9px 12px rgba(0,0,0,0.1);
  border-radius: 50%;
  background: #0426A0;
  transform: translate(-50%, -50%);
  transition: 
    background 0.2s linear,
    transform 0.4s ease-out;
}

.cursor.is-hovering .cursor__inner {
  background: rgba(255,255,255,0.3);
	-webkit-backdrop-filter: grayscale(100%);
	backdrop-filter: grayscale(100%);
  transform: translate(-50%, -50%) scale(5);
	box-shadow: 3px 3px 6px rgba(0,0,0,0.12);
}

body {
    background: #F5F5F5;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-size: 1rem;
	min-width: 1100px;
	margin: 0 auto;
}

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

header {
    position: fixed;
    width: 100%;
    padding: 30px 5%;
    z-index: 99998;
    min-width: 1100px;
    margin: 0 auto;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.header_change {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	padding: 10px 5%;
}

.header_contact a:hover {
    background: #fff;
}

.header_menu_area {
    display: flex;
    width: 70%;
    justify-content: end;
}

ul.header_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: max-content;
    min-width: max-content;
    max-width: 33%;
}

span.header_menu_en {
    padding: 0 5px;
    font-weight: 600;
    font-size: 1.4rem;
    font-family: "Work Sans", sans-serif;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

ul.header_menu li a:hover .header_menu_effect {
    width: 100%;
    background: #0014b4;
}

.header_menu_effect {
    width: 0;
    height: 100%;
    position: absolute;
    border-radius: 3px;
    left: 0;
    top: 1px;
    display: block;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

ul.header_menu li a:hover .header_menu_en {
    color: #fff;
    position: relative;
    z-index: 999;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.header_menu li a {
    color: #000;
    display: block;
    position: relative;
}

ul.header_menu li {
    margin: 0 8px;
}

.header_contact {
    justify-content: end;
    display: flex;
    margin-left: 16px;
}

.header_contact a {
    padding: 15px;
    background: #000;
    width: 160px;
    height: auto;
    display: block;
    border-radius: 100px;
    font-family: "Work Sans", sans-serif;
    position: relative;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.header_contact a span {
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    text-align: center;
	display: block;
    color: #fff;
    font-weight: 600;
	z-index: 9999;
	position: relative;
}

.header_contact a:hover {
	color: #0014b4;
	box-shadow: 0 15px 24px rgba(0,0,0,0.025), 0 6px 10px rgba(0,0,0,0.015);
}

.header_contact a:hover span {
	color: #0014b4;
}

.header_contact a:after {
	position: absolute;
	width: 0;
	height: 100%;
	background: #fff;
	content: "";
	display: block;
	left: 0;
	top: 0;
	border-radius: 100px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.header_contact a:hover:after {
	background: #fff;
	position: absolute;
	width:100%;
	height: 100%;
}

.loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 50px;
  background: #fff000;
}
.loop-area {
  display: flex;
  animation: loop-slide 5s infinite linear 1s both;
  list-style: none;
  margin: 0;
  width: 300%;
  padding: 0;
	z-index: 99999;
	position: relative;
}
.loop-area .loop_content {
  width: 120px;
  font-weight: 500;
  align-items: center;
  display: flex;
  font-family: "Work Sans", sans-serif;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

li.loop_content span {
    width: 20px;
    margin-left: 12px;
}

li.loop_content span img {
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%);
}

.header_contact a:hover .loop_content span img {
 	filter: invert(16%) sepia(66%) saturate(3346%) hue-rotate(223deg) brightness(84%) contrast(118%);
}

.header_change .header_logo img {
	max-width: 90px;
}

.header_logo {
    width: 33%;
}

.header_logo img {
    max-width: 170px;
    filter: invert(12%) sepia(84%) saturate(4398%) hue-rotate(234deg) brightness(83%) contrast(123%);
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}



/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
body {
	min-width: inherit;
}
	
div#loader svg {
    width: 100px;
}

.cursor {
  position: inherit;
  pointer-events: inherit;
}

.cursor__inner {
  width: inherit;
  height: inherit;
  backdrop-filter: inherit;
  z-index: inherit;
  box-shadow: inherit;
  border-radius: inherit;
  background: inherit;
  transform: translate(-50%, -50%);
  transition: 
    background 0.2s linear,
    transform 0.4s ease-out;
}

.cursor.is-hovering .cursor__inner {
  background: inherit;
	-webkit-backdrop-filter: inherit;
	backdrop-filter: inherit;
  transform: inherit;
	box-shadow: inherit;
}

.pc_disp {
	display: none!important;
}

.sp_disp {
	display: block!important;
}

header {
    padding: 24px 5%;
	min-width: inherit;
}

ul.header_menu {
    display: none;
}

.header_change {
	background: inherit;
	backdrop-filter: inherit;
	box-shadow: inherit;
	padding: 24px 5%;
}

.header_contact {
    display: none;
}

.header_logo {
    padding-left: 0;
    width: 120px;
}

.header_change .header_logo img {
	max-width: inherit;
}
}