@charset "UTF-8";


.pc {
	display: none !important;
}

#wrap {
}


#wrap > header {
	position: fixed;
	width: 100%;
	height: calc(28px + 50px);
	left: 0;
	top: 0;
	z-index: 1000;
}

#sony-header {
	background: #000;
}

#sony-header .inner {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	height: 30px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo-sony {
	position: absolute;
	width: 50px;
	height: 9px;
	right: 20px;
	top: 10px;
	font-size: 0px;
}
.logo-sony a {
	display: block;
}

.logo-sgmo {
	display: none;
}
.logo-sgmo a {
}


#global-header {
	position: relative;
	height: 50px;
}
#global-header::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background: #df02a0;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
}

#global-header .inner {
	padding: 0 20px;
}
#global-header .inner .logo {
	position: relative;
	display: flex;
	align-items: center;
	width: 116px;
	height: 50px;
	z-index: 20;
}
#global-header .inner .logo a {
	position: relative;
	display: block;
	width: 116px;
	height: 30px;
	top: -1px;
}

#global-header .menu-container {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	left: 0;
	top: 78px;
	z-index: 5;
	padding: 0 40px;
	background: #100058;
	
	height: 0;
	overflow: hidden;
	transition: all 400ms cubic-bezier(0.77, 0, 0.175, 1);
}
body.opened-menu #global-header .menu-container {
	height: calc(100lvh - 78px);
}



#global-header .menu-container ul {
	margin-top: 40px;
}
#global-header .menu a {
	font-size: 0.875rem;
}
#global-header .menu li + li {
	margin-top: 20px;
}


#global-header .sns {
	margin-top: 20px;
}
#global-header .sns li + li {
	margin-top: 20px;
}
#global-header .sns a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
}
#global-header .sns a img {
	width: 25px;
	height: 25px;
	transition: all 300ms ease-out;
}
#global-header .sns a:active img {
	transform: scale(1.1);
}


#menu-button {
	position: fixed;
	width: 30px;
	height: 30px;
	right: 15px;
	top: 38px;
	z-index: 1010;
}
#menu-button button {
	position: relative;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}
#menu-button i {
	position: absolute;
	width: 20px;
	height: 2px;
	left: 5px;
	top: calc(50% - 1px);
	background: #fff;
	border-radius: 4px;
	transition: all 300ms ease-out;
}
#menu-button i:nth-child(1) {
	margin-top: -7px;
}
#menu-button i:nth-child(3) {
	margin-top: 7px;
}

#wrap > header:not(:has(#global-header .menu)) #menu-button {
	display: none;
}


body.opened-menu #menu-button i:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
body.opened-menu #menu-button i:nth-child(2) {
	opacity: 0;
}
body.opened-menu #menu-button i:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}




#wrap > footer {
	position: relative;
	z-index: 999;
	padding: 40px 20px;
	background: #100058;
}
#wrap > footer .inner {
	box-sizing: border-box;
}
#wrap > footer .banner ul {
	display: flex;
	flex-wrap: wrap;
}
#wrap > footer .banner li {
	width: calc(50% - 5px);
	margin-left: 10px;
}
#wrap > footer .banner li:nth-child(2n + 1) {
	margin-left: 0;
}
#wrap > footer .banner li:nth-child(n + 3) {
	margin-top: 10px;
}
#wrap > footer .banner ul + ul {
	margin-top: 20px;
}

#wrap > footer .container {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.5);
	font-size: 0.75rem;
}
#wrap > footer .container li + li {
	margin-top: 20px;
}
#wrap > footer .container li a {
	position: relative;
	display: inline-block;
	align-items: center;
	line-height: 1.5;
	margin-right: -5px;
	letter-spacing: -0.5px;
}
#wrap > footer .container li a span {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 16px;
	height: 16px;
	top: 1px;
	margin-left: 5px;
}
#wrap > footer .container li a span {
	width: 12px;
}
#wrap > footer .container .copyright {
	margin-right: -5px;
	line-height: 1.5;
}

#wrap > footer .banner a {
	display: block;
}
#wrap > footer .banner a img {
	transition: all 300ms ease-out;
}
#wrap > footer .banner a:active img {
	opacity: 0.5;
}


#scroll-top {
	position: fixed;
	width: 30px;
	height: 30px;
	right: 10px;
	bottom: 10px;
	z-index: 500;
}
#scroll-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: rgba(16,0,88,0.5);
}
#scroll-top a img {
	width: 16px;
	height: auto;
}


main {
	padding: 78px 0 0;
	overflow: clip;
}


















































































