@charset "utf-8";

/* reset
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main,article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
sub, sup {
	font-size: 75%;
}
html {
	font-size: 62.5%;
}
body {
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	color: #000;
	letter-spacing: .05em;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
}
a:link,
a:visited {
	color: #000;
	outline: none;
	text-decoration: none;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}

@media (hover: hover) {
	a:link {
		transition: opacity .5s;
	}
	a:hover {
		opacity: .7;
	}
}

/* 後で削除 */
body {
	overflow-x: hidden;
}
@media (max-width: 767px ) {
	html,body {
		overflow-x: hidden;
	}
	img {
		max-width: 100%;
	}
}

/* root
-------------------------------------------------- */
:root {
	--sho-xyz-blue: #008DDD;
	--sho-xyz-light-blue: #D5F0FF;
	--border-radius1: 80px;
	--icon-arrow-right-white: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 6H11M7 1.5L11.5 6L7 10.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
	:root {
		--border-radius1: 8vw;
	}
}

/* lHeader
-------------------------------------------------- */
.lHeader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
}
.lHeader__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1230px;
	margin: 0 auto;
}
.lHeader__logo {
	width: 70px;
}
.lHeader__logo a {
	display: block;
}
.lHeader img {
	width: 100%;
}
.lHeader__btnNav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: var(--sho-xyz-light-blue);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
.lHeader__btnNav span,
.lHeader__btnNav::before,
.lHeader__btnNav::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--sho-xyz-blue);
	transform: translateX(-50%);
	transition: opacity .3s, top .3s, transform .3s;
}
.lHeader__btnNav::before {
	top: 13px;
}
.lHeader__btnNav span {
	top: 19px;
}
.lHeader__btnNav::after {
	top: 25px;
}

.lHeader__btnInquiry::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 50%;
	width: 22px;
	height: 20px;
	background: url("../img/icon-mail.png") center / 100% no-repeat;
	transform: translateX(-50%);
}

@media (min-width: 1441px) {
	.lHeader__inner {
		height: 40px;
	}
	.lHeader__btnNav {
		position: fixed;
		right: 104px;
		top: 10px;
	}
}

@media (min-width: 768px) {
	.lHeader {
		padding: 10px 104px;
		background: #fff;
	}
	.lHeader__btnNav.is-open span {
		opacity: 0;
	}
	.lHeader__btnNav.is-open::before,
	.lHeader__btnNav.is-open::after {
		top: 50%;
		width: 24px;
	}
	.lHeader__btnNav.is-open::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.lHeader__btnNav.is-open::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.lHeader__btnInquiry {
		position: fixed;
		right: 0;
		top: 50%;
		z-index: 100;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 175px;
		padding-top: 25px;
		border-radius: 10px 0 0 10px;
		background: var(--sho-xyz-blue);
		font-size: 1.8rem;
		font-weight: 600;
		letter-spacing: .08em;
		line-height: 1.15;
		white-space: nowrap;
		writing-mode: vertical-rl;
		text-orientation: upright;
		transform: translateY(-50%);
		transition: opacity .5s ease-in-out, visibility .5s;
	}
	.lHeader__btnInquiry:link,
	.lHeader__btnInquiry:visited {
		color: #fff;
	}
	body.is-localNav-open {
		overflow: hidden;
	}
	body::before {
		content: "";
		position: fixed;
		inset: 0;
		top: 60px;
		z-index: 150;
		background: rgba(0, 0, 0, .72);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .35s, visibility 0s .35s;
		z-index: -1;
	}
	body.is-localNav-open::before {
		opacity: 1;
		visibility: visible;
		transition: opacity .35s;
		z-index: 5;
	}
	body.is-localNav-open .lHeader__btnInquiry {
		opacity: 0;
		pointer-events: none;
	}
	.localNav {
		--local-nav-width: min(766px, 100vw);
		--local-nav-gutter: 50px;
		position: fixed;
		inset: 60px 0 0;
		z-index: 200;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		height: 686px;
		padding-top: 78px;
		background: transparent;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .35s, visibility 0s .35s;
	}
	.localNav::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: var(--local-nav-width);
		border-radius: 92px 0 0 92px;
		background: var(--sho-xyz-light-blue);
		transform: translateX(100%);
		transition: transform .35s ease;
	}
	.localNav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: opacity .35s;
	}
	.localNav.is-open::before {
		transform: translateX(0);
	}
	.localNav__list,
	.localNav__btnInquiry--pc,
	.localNav__sho-xyz--pc {
		position: relative;
		z-index: 1;
		width: calc(var(--local-nav-width) - var(--local-nav-gutter) * 2);
		margin-right: var(--local-nav-gutter);
		opacity: 0;
		transition: opacity .3s .1s, transform .3s .1s;
	}
	.localNav.is-open .localNav__list,
	.localNav.is-open .localNav__btnInquiry--pc,
	.localNav.is-open .localNav__sho-xyz--pc {
		opacity: 1;
		transform: translateX(0);
	}
	.localNav__sho-xyz--pc a:hover {
		opacity: 1;
	}
	.localNav.is-open .localNav__btnInquiry--pc:hover {
		opacity: 0.7;
	}
	.localNav.is-open:has(.localNav__sho-xyz--pc:hover) .localNav__btnInquiry--pc {
		opacity: 0.7;
	}
	.localNav__list {
		display: grid;
		grid-template-rows: repeat(5, 36px);
		grid-auto-flow: column;
		grid-auto-columns: minmax(0, 1fr);
		column-gap: 45px;
		row-gap: 30px;
		width: 580px;
		margin-right: 104px;
	}
	.localNav__list a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		min-height: 36px;
		font-size: 1.8rem;
		font-weight: 500;
		letter-spacing: .04em;
		line-height: 1.4;
		white-space: nowrap;
	}
	.localNav__list a::after {
		content: "";
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		border-radius: 7px;
		background: var(--sho-xyz-blue) var(--icon-arrow-right-white) center / 12px auto no-repeat;
	}
	.localNav__btnInquiry--pc {
		display: block;
		width: 580px;
		height: 120px;
		margin: 40px 100px 0 0;
		padding: 32px 88px 20px 40px;
		border-radius: 8px;
		background: var(--sho-xyz-blue);
		font-size: 2rem;
		font-weight: 500;
		line-height: 1.35;
		text-align: left;
	}
	.localNav__btnInquiry--pc:link,
	.localNav__btnInquiry--pc:visited {
		color: #fff;
	}
	.localNav__btnInquiry--pc span {
		display: block;
		padding-left: 2em;
		font-size: 1.4rem;
		line-height: 1.2;
	}
	.localNav__btnInquiry--pc::after {
		content: "→";
		position: absolute;
		top: 50%;
		right: 38px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 7px;
		background: #fff;
		color: var(--sho-xyz-blue);
		font-size: 1.6rem;
		line-height: 1;
		transform: translateY(-50%);
	}
	.localNav__sho-xyz--pc {
		position: absolute;
		right: 178px;
		bottom: 25px;
		width: 390px;
		margin-right: 0;
	}
	.localNav__sho-xyz--pc img {
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.lHeader {
		padding-left: 45px;
		padding-right: 45px;
	}
	.lHeader__btnInquiry {
		transition: opacity .5s ease-in-out, visibility .5s;
		visibility: hidden;
		opacity: 0;
	}
	.lHeader__btnInquiry.active {
		visibility: visible;
		opacity: 1;
	}
}

@media (max-width: 767px) {
	.lHeader {
		height: 12vw;
		background: #fff;
	}
	.lHeader__inner {
		max-width: none;
		height: 100%;
		margin: 0;
		padding: 0 4vw;
	}
	.lHeader__logo {
		width: 20vw;
	}
	.lHeader__btnNav {
		position: absolute;
		top: 1.3333vw;
		right: 4vw;
		width: 9vw;
		height: 9vw;
		border-radius: 2.6666vw;
		z-index: 2;
	}
	.lHeader__btnNav.is-open span {
		opacity: 0;
	}
	.lHeader__btnNav span,
	.lHeader__btnNav::before,
	.lHeader__btnNav::after {
		width: 4vw;
		height: 0.2666vw;
	}
	.lHeader__btnNav.is-open::before,
	.lHeader__btnNav.is-open::after {
		top: 50%;
		width: 4.8vw;
	}
	.lHeader__btnNav span {
		top: 4.6vw;
	}
	.lHeader__btnNav::before {
		top: 3vw;
	}
	.lHeader__btnNav::after {
		top: 6vw;
	}
	.lHeader__btnNav.is-open::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.lHeader__btnNav.is-open::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.lHeader__btnInquiry {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1.3333vw;
		width: 35.2vw;
		height: 9vw;
		margin-right: 11.5vw;
		border-radius: 2.6666vw;
		background: var(--sho-xyz-blue);
		font-size: 3.2vw;
		font-weight: 600;
		letter-spacing: .02em;
		line-height: 1;
		white-space: nowrap;
	}
	.lHeader__btnInquiry:link,
	.lHeader__btnInquiry:visited {
		color: #fff;
	}
	.lHeader__btnInquiry::before {
		position: static;
		flex: 0 0 auto;
		width: 5.3332vw;
		height: 4vw;
		transform: none;
	}
	body.is-localNav-open {
		overflow: hidden;
	}
	.localNav {
		position: fixed;
		top: 12vw;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 9;
		background: var(--sho-xyz-light-blue);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		overflow-y: auto;
		transition: opacity .3s, visibility 0s .3s;
	}
	.localNav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: opacity .3s;
	}
	.localNav__list {
		padding-top: 8vw;
	}
	.localNav__list li {
		background: #fff;
		border-bottom: 2px solid var(--sho-xyz-light-blue);
	}
	.localNav__list a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		min-height: 14.932vw;
		padding: 0 7.4667vw;
		font-size: 4.8vw;
		font-weight: 500;
		letter-spacing: .02em;
		line-height: 1.35;
	}
	.localNav__list a::after {
		content: "";
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: center;
		width: 9vw;
		height: 9vw;
		border-radius: 8px;
		background: var(--sho-xyz-blue) var(--icon-arrow-right-white) center / 3.4667vw auto no-repeat;
	}
	.localNav__btnInquiry--pc,
	.localNav__sho-xyz--pc {
		display: none;
	}
}

/* lFooter
-------------------------------------------------- */
.lFooter {
	padding: 30px 0;
	background: var(--sho-xyz-blue);
}
.lFooter__text {
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
}

@media (max-width: 767px) {
	.lFooter {
		padding: 9.0667vw 0 9.6vw;
	}
	.lFooter__text {
		font-size: 2.8vw;
		line-height: 1.4;
		white-space: nowrap;
	}
}

/* pageTopBtn
-------------------------------------------------- */
.pageTopBtn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	right: calc(20px + env(safe-area-inset-right));
	bottom: calc(20px + env(safe-area-inset-bottom) + var(--visual-viewport-bottom, 0px));
	z-index: 90;
	display: block;
	width: 45px;
	height: 45px;
	transition: opacity .3s;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.pageTopBtn.is-show {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
.pageTopBtn img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.pageTopBtn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}
body.is-localNav-open .pageTopBtn {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 767px) {
	.pageTopBtn {
		right: 4vw;
		bottom: calc(15vw + env(safe-area-inset-bottom));
		right: calc(4vw + env(safe-area-inset-right));
		width: 12vw;
		height: 12vw;
	}
}

/* Component
-------------------------------------------------- */
[class$="Blk__inner"] {
	margin: 0 auto;
}
.cTitle__type1 {
	position: relative;
	font-size: 3.4rem;
	font-weight: 600;
	text-align: center;
}
.cTitle__type1 span {
	display: block;
	margin-bottom: 15px;
	font-size: 2rem;
}
.cList__type1 {
	margin: 0 auto;
}
.cList__type1 li {
	padding-left: 15px;
	border-left: 4px solid #01417F;
	font-size: 2.4rem;
	color: #01417F;
	line-height: 1.1;
}
.cList__type1 li + li {
	margin-top: 20px;
}

@media (min-width: 768px) {
	.cTitle__type2 {
		text-align: center;
	}
	.cBorder__wrap--pc {
		max-width: 1230px;
		margin: 60px auto 0;
		padding: 30px 70px;
		border: 5px solid transparent;
		background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #38b9e3 0%, #6fd0c4 45%, #fff35b 100%) border-box;
		border-radius: 30px;
	}
	.cTitle__type2 img {
		width: auto;
		height: 110px;
	}
}

@media (max-width: 767px) {
	.cTitle__type1 {
		font-size: 5.8667vw;
	}
	.cTitle__type1 span {
		margin-bottom: 2vw;
		font-size: 4.6667vw;
	}
	.cTitle__type2 {
		width: 73.6vw;
		margin: 0 auto;
	}
	.cList__type1 {
		margin-top: 8vw;
	}
	.cList__type1 li {
		padding-left: 4vw;
		border-width: 0.8vw;
		font-size: 4.8vw;
		line-height: 1.5;
	}
	.cList__type1 li + li {
		margin-top: 8vw;
	}
}

/* kvBlk
-------------------------------------------------- */
.kvBlk {
	margin-top: 60px;
	background: var(--sho-xyz-light-blue);
	overflow: hidden;
}
.kvBlk__inner {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
}
.kvBlk__upper {
	position: relative;
	height: 258px;
	overflow: hidden;
}
.kvBlk__upper::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 70px;
	width: 1230px;
	height: 1230px;
	border-radius: 50%;
	background: #fff;
	transform: translateX(-50%);
}
.kvBlk__lower {
	height: 282px;
	background: linear-gradient(90deg, #D3EDFB 0%, #FAF7B7 100%);
}
.kvBlk img {
	width: 100%;
}
.kvBlk__copy,
.kvBlk__title,
.kvBlk__sho-xyz {
	transition: opacity .75s ease-in-out, transform .25s ease-in-out;
	opacity: 0;
}
.kvBlk__copy {
	transition-delay: .25s;
}
.kvBlk__title {
	transition-delay: .75s;
}
.kvBlk__sho-xyz {
	transition-delay: 1.25s;
}
.kvBlk._action .kvBlk__copy,
.kvBlk._action .kvBlk__title,
.kvBlk._action .kvBlk__sho-xyz {
	opacity: 1;
}

@media (min-width: 768px) {
	.kvBlk {
		height: 540px;
	}
	.kvBlk__copy {
		position: absolute;
		left: 50%;
		top: 24px;
		width: 755px;
		transform: translateX(-50%);
		z-index: 2;
	}
	.kvBlk__title {
		position: absolute;
		left: calc(50% + 130px);
		top: 34px;
		width: 572px;
		transform: translateX(-50%);
	}
	.kvBlk__sho-xyz {
		position: absolute;
		left: calc(50% - 15px);
		top: -150px;
		width: 1213px;
		transform: translateX(-50%) scale(0.975);
	}
	.kvBlk._action .kvBlk__sho-xyz {
		transform: translateX(-50%) scale(1);
	}
}

@media (max-width: 767px) {
	.kvBlk {
		margin-top: 12.48vw;
	}
	.kvBlk__upper {
		height: 48vw;
	}
	.kvBlk__upper::before{
		top: 5.2vw;
		width: 112vw;
		height: 112vw;
	}
	.kvBlk__copy {
		width: 91.2vw;
		margin: 5.2vw 0 0 4.1333vw;
	}
	.kvBlk__lower {
		height: 32.5333vw;
	}
	.kvBlk__title {
		width: 62.4vw;
		margin: 0 0.6667vw 0 auto;
		padding-top: 4.6667vw;
	}
	.kvBlk__sho-xyz {
		position: absolute;
		left: 3.0667vw;
		top: -14.5vw;
		width: 86.6667vw;
		transform: scale(0.975);
	}
	.kvBlk._action .kvBlk__sho-xyz {
		transform: scale(1);
	}
}

/* movieBlk
-------------------------------------------------- */
.movieBlk {
	margin-top: 100px;
	padding: 80px 50px;
	border-radius: var(--border-radius1);
	background: #EEEFF4;
}
.movieBlk__inner {
	position: relative;
	max-width: 1230px;
	margin: 0 auto;
	background-size: 50%;
}
.movieBlk__inner::before {
	content: '';
	position: absolute;
	left: 250px;
	top: -80px;
	background: url(../img/movie-bg-play.png) no-repeat 0 0;
	width: 368px;
	height: 278px;
}
.movieBlk__movieList {
	margin-top: 40px;
}
.movieBlk__largeMovie {
	position: relative;
	margin: 100px auto 0;
	max-width: 690px;
}
.movieBlk__largeMovie::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -45px;
	width: 530px;
	height: 530px;
	border-radius: 50%;
	background: #fff;
	transform: translateX(-50%);
}
.movieBlk__title {
	margin-top: 15px;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
}
.movieBlk__copy {
	position: relative;
	margin-bottom: 25px;
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
	z-index: 2;
}
.movieBlk iframe {
	position: relative;
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 16/9;
	overflow: hidden;
	z-index: 2;
}

@media (min-width: 768px) {
	.movieBlk__movieList {
		display: flex;
		gap: 3.7398%;
	}
	.movieBlk__movieList li {
		width: 30.6504%;
	}
}

@media (max-width: 767px) {
	.movieBlk {
		padding: 5.3333vw 6.6667vw 26.6667vw;
	}
	.movieBlk__inner::before {
		left: -6.9333vw;
		top: -6.9333vw;
		width: 54.4vw;
		height: 54.4vw;
		background-size: 100%;
	}
	.movieBlk__movieList {
		margin-top: 8vw;
	}
	.movieBlk__movieList li + li {
		margin-top: 8vw;
	}
	.movieBlk__title {
		margin-top: 3.2vw;
		font-size: 4.8vw;
	}
	.movieBlk__copy {
		margin-bottom: 4.8vw;
		font-size: 5.3333vw;
	}
	.movieBlk__largeMovie {
		margin-top: 18vw;
	}
	.movieBlk__largeMovie::before {
		top: -12vw;
		width: 88.5333vw;
		height: 88.5333vw;
	}
}

/* recIndustryBlk
-------------------------------------------------- */
.recIndustryBlk {
	padding-top: 100px;
}
.recIndustryBlk__inner {
	max-width: 1330px;
	padding: 0 50px;
}
.recIndustryBlk__nav {
	margin-top: 45px;
}
.recIndustryBlk__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 15px;
}
.recIndustryBlk__item {
	flex: 0 0 calc((100% - 30px) / 3);
}
.recIndustryBlk__link {
	display: grid;
	grid-template-columns: minmax(92px, 32.5%) minmax(0, 1fr) 36px;
	align-items: center;
	column-gap: clamp(10px, 2.5%, 20px);
	height: 100%;
	padding: 16px 14px 16px 18px;
	border: 1px solid #D9D9D9;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .02);
}
.recIndustryBlk__img {
	justify-self: center;
	width: 100%;
	max-width: 129px;
	max-height: 86px;
	object-fit: contain;
}
.recIndustryBlk__body {
	min-width: 0;
}
.recIndustryBlk__body,
.recIndustryBlk__num,
.recIndustryBlk__title {
	display: block;
}
.recIndustryBlk__num {
	margin-bottom: 8px;
	color: #F6A800;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}
.recIndustryBlk__title {
	font-size: clamp(1.3rem, 1.2vw, 1.7rem);
	font-weight: 500;
	line-height: 1.45;
}
.recIndustryBlk__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--sho-xyz-blue);
	color: #fff;
	font-size: 2.1rem;
	line-height: 1;
}
.recIndustryBlk__arrow::before {
	content: "";
	width: 10px;
	height: 12px;
	background: url("../img/icon-arrow-down.png") center / contain no-repeat;
}
.recIndustryBlk__lower {
	position: relative;
	margin-top: 100px;
	padding: 50px 50px 100px;
	border-radius: var(--border-radius1);
	background: var(--sho-xyz-blue);
}
.recIndustryBlk__lowerCopy {
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1.85;
}
.recIndustryBlk__lowerList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1030px;
	margin: 20px auto 0;
}
.recIndustryBlk__lowerList li {
	width: 22.5243%;
}
.recIndustryBlk__lowerBg {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 10%;
	transform: translateX(-50%);
}
.recIndustryBlk__lowerBg img,
.recIndustryBlk__lowerList img {
	width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.recIndustryBlk__list {
		display: grid;
		gap: 3.2vw;
	}
	.recIndustryBlk__item {
		flex-basis: auto;
	}
	.recIndustryBlk__link {
		grid-template-columns: minmax(0, 1fr) 11.2vw;
		column-gap: 4vw;
		min-height: 18.6667vw;
		padding: 4.5333vw 3.2vw 4.5333vw 3.2vw;
		border-radius: 2.6667vw;
	}
	.recIndustryBlk__img {
		display: none;
	}
	.recIndustryBlk__num {
		margin-bottom: 2.1333vw;
		font-size: 2.6666vw;
	}
	.recIndustryBlk__title {
		font-size: 3.2vw;
		line-height: 1.35;
	}
	.recIndustryBlk__title br {
		display: none;
	}
	.recIndustryBlk__arrow {
		width: 6vw;
		height: 6vw;
		border-radius: 1.3333vw;
		font-size: 5.3333vw;
	}
}

@media (max-width: 767px) {
	.recIndustryBlk {
		padding-top: 13.3333vw;
	}
	.recIndustryBlk__inner {
		padding: 0 4vw;
	}
	.recIndustryBlk__nav {
		margin-top: 6.4vw;
	}
	.recIndustryBlk__list {
		display: grid;
		gap: 3.2vw;
	}
	.recIndustryBlk__item {
		flex-basis: auto;
	}
	.recIndustryBlk__link {
		grid-template-columns: minmax(0, 1fr) 11.2vw;
		column-gap: 4vw;
		min-height: 18.6667vw;
		padding: 4.5333vw 3.2vw 4.5333vw 3.2vw;
		border-radius: 2.6667vw;
	}
	.recIndustryBlk__img {
		display: none;
	}
	.recIndustryBlk__num {
		margin-bottom: 2.1333vw;
		font-size: 3.2vw;
	}
	.recIndustryBlk__title {
		font-size: 4vw;
		line-height: 1.35;
	}
	.recIndustryBlk__title br {
		display: none;
	}
	.recIndustryBlk__arrow {
		width: 8vw;
		height: 8vw;
		border-radius: 2.1333vw;
		font-size: 5.3333vw;
	}
	.recIndustryBlk__lower {
		margin-top: 13.3333vw;
		padding: 10.3333vw 4.2667vw 34.1333vw;
	}
	.recIndustryBlk__lowerCopy {
		font-size: 5.3333vw;
	}
	.recIndustryBlk__lowerList {
		gap: 2.6666vw 0;
	}
	.recIndustryBlk__lowerList li {
		width: 47.5%;
	}
	.recIndustryBlk__lowerBg {
		width: 27.7333vw;
	}
}

/* solutionBlk
-------------------------------------------------- */
.solutionBlk {
	padding-top: 100px;
}
.solutionBlk__inner {
	max-width: 1150px;
	margin: 0 auto;
}
.solutionBlk__copy {
	margin-top: 60px;
}
.solutionBlk__copy img {
	width: 100%;
}
.solutionBlk__lower {
	margin-top: 80px;
	padding: 70px 50px;
	border-radius: var(--border-radius1);
	background: #EEEFF4;
}
.solutionBlk__title {
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
}
.solutionBlk__lowerList {
	display: flex;
	justify-content: space-between;
	max-width: 1230px;
	margin: 100px auto 0;
}
.solutionBlk__lowerList li {
	width: 31.5447%;
	padding: 0 25px 25px;
	border-radius: 30px;
	background: #fff;
}
.solutionBlk__lowerTitle {
	width: 63.5309%;
	margin: -30px auto 0;
	text-align: center;
}
.solutionBlk__lowerTitle img {
	width: 100%;
}
.solutionBlk__lowerCopy {
	margin-top: 15px;
	font-size: 1.8rem;
	line-height: 1.65;
}

@media (max-width: 767px) {
	.solutionBlk {
		padding-top: 13.3333vw;
	}
	.solutionBlk__title {
		font-size: 5.3333vw;
		line-height: 1.5;
	}
	.solutionBlk__copy {
		width: 93.3333vw;
		margin: 6vw auto 0;
	}
	.solutionBlk__lower {
		padding: 10.3333vw 4.2667vw;
	}
	.solutionBlk__lowerList {
		display: block;
		margin-top: 13.3333vw;
	}
	.solutionBlk__lowerList li {
		width: 100%;
		padding: 0 4.8vw 4.8vw;
	}
	.solutionBlk__lowerList li + li {
		margin-top: 13.3333vw;
	}
	.solutionBlk__lowerTitle {
		width: 49.2vw;
		margin-top: 0;
		transform: translateY(-7vw);
	}
	.solutionBlk__lowerCopy {
		margin-top: -5vw;
		font-size: 4.8vw;
	}
}

/* featureBlk
-------------------------------------------------- */
.featureBlk {
	padding: 100px 50px 12.5%;
}
.featureBlk__inner {
	position: relative;
	max-width: 1230px;
	margin: 0 auto;
}
.featureBlk__list {
	margin-top: 50px;
}
.featureBlk__list li {
	position: relative;
}
.featureBlk__listBaloon {
	position: absolute;
	right: -7.5%;
	top: -42.5%;
	max-width: 35.2845%;
}
.featureBlk__sho-xyz {
	position: absolute;
	left: 19.5%;
	bottom: -32.17%;
	width: 39.8374%;
}
.featureBlk__list img,
.featureBlk__sho-xyz img {
	width: 100%;
}
@media (min-width: 768px) {
	.featureBlk__list {
		display: flex;
		flex-wrap: wrap;
	}
	.featureBlk__list li {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.featureBlk {
		padding: 13.3333vw 4vw 0;
	}
	.featureBlk__list {
		margin-top: 6.6667vw;
	}
	.featureBlk__listBaloon {
		right: -2%;
    top: -20.5%;
		width: 37%;
	}
	.featureBlk__sho-xyz {
		left: 12.2667vw;
		bottom: -37.8667vw;
		width: 68.2667vw;
	}
}

/* overviewBlk
-------------------------------------------------- */
.overviewBlk {
	margin-top: 100px;
	padding: 80px 50px;
	border-radius: var(--border-radius1);
	background: #EEEFF4;
}
.overviewBlk__figure img {
	width: 100%;
}

@media (min-width: 768px) {
	.overviewBlk__figure {
		display: flex;
		align-items: center;
		max-width: 1230px;
		margin: 80px auto 0;
	}
	.overviewBlk__figure picture {
		display: block;
	}
	.overviewBlk__figure picture:nth-child(1) {
		width: 32.5203%;
	}
	.overviewBlk__figure picture:nth-child(2) {
		width: 6.8293%;
	}
	.overviewBlk__figure picture:nth-child(3) {
		width: 60.1626%;
	}
}

@media (max-width: 767px) {
	.overviewBlk {
		margin-top: 50vw;
		padding: 13.3333vw 5.3333vw;
	}
	.overviewBlk__figure {
		margin-top: 8vw;
	}
	.overviewBlk__figure picture {
		display: block;
	}
	.overviewBlk__figure picture:nth-child(2) {
		width: 52vw;
		margin: 0 auto;
	}
}

/* guideBlk
-------------------------------------------------- */
.guideBlk {
	padding-top: 100px;
}
.guideBlk__movie {
	max-width: 390px;
	margin: 80px auto 0;
}
.guideBlk__movie iframe {
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 16/9;
	overflow: hidden;
}
.guideBlk__movieTitle {
	margin-top: 15px;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
}
.guideBlk__lower {
	margin-top: 60px;
	padding: 80px 50px;
	border-radius: var(--border-radius1);
	background: #EEEFF4;
}
.guideBlk__lowerInner {
	max-width: 1230px;
	margin: 0 auto;
}
.operation__card {
	margin-top: 20px;
	border: 3px solid var(--sho-xyz-blue);
	border-radius: 26px;
	overflow: hidden;
}
.operation__cardTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 44px;
	background: var(--sho-xyz-blue);
	font-size: 1.8rem;
	color: #fff;
}
.operation__copy {
	position: relative;
	padding-bottom: 15px;
	font-size: clamp(1.4rem, 1.4vw, 1.8rem);
	line-height: 1.55;
	color: var(--sho-xyz-blue);
}
.operation__copy::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
}
.operation__copy::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 14px;
	height: 14px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	background: #EEEFF4;
	transform: translateX(-50%) rotate(45deg);
}
.operation__cardBody {
	background: #fff;
}
.operation__cardBody img {
	width: 100%;
}
.guideBlk .operation__cardFooter {
	width: 100%;
	background: var(--sho-xyz-blue);
}

@media (min-width: 768px) {
	.operation__list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
	}
	.operation__cardBtn {
		display: none;
	}
}

@media (min-width: 1051px) {
	.guideBlk .operation__list li {
		width: 22.5%;
	}
}

@media (min-width: 768px) and (max-width: 1050px) {
	.guideBlk .operation__list {
		justify-content: center;
		gap: 40px;
	}
	.guideBlk .operation__list li {
		width: 45%;
	}
}

@media (max-width: 767px) {
	.guideBlk {
		padding-top: 13.3333vw;
	}
	.guideBlk__inner {
		padding: 0 5.3333vw;
	}
	.guideBlk__movie {
		max-width: initial;
		max-width: auto;
		margin-top: 8vw;
	}
	.guideBlk__lower {
		margin-top: 8vw;
		padding: 8vw 0 	13.3333vw 5.3333vw;
	}
	.operation__copy {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 4vw;
		font-size: 4.2667vw;
	}
	.operation__card {
		margin-top: 5.3333vw;
	}
	.operation__cardTitle {
		height: 13.8667vw;
		font-size: 4.5333vw;
	}
	.guideBlk .operation__cardFooter {
		height: 20vw;
	}
}

/* sceneBlk
-------------------------------------------------- */
.sceneBlk {
	padding: 100px 50px 0;

}
.sceneBlk__inner {
	max-width: 1230px;
	margin: 0 auto;
}
.sceneBlk__title {
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
}
.sceneBlk .operation {
	margin-top: 50px;
}
.sceneBlk .operation__text {
	margin-top: 20px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.55;
}
.sceneBlk .operation__text li {
	position: relative;
	padding-left: 1em;
}
.sceneBlk .operation__text li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

@media (min-width: 768px) {
	.sceneBlk .operation {
		border: 3px solid var(--sho-xyz-blue);
		border-radius: 26px;
		background: #fff;
		overflow: hidden;
	}
	.sceneBlk .operation__list {
		position: relative;
		align-items: stretch;
		background: #fff;
	}
	.sceneBlk .operation__list::before {
		content: "";
		position: absolute;
		top: 26px;
		bottom: 34px;
		left: 50%;
		width: 3px;
		background: var(--sho-xyz-blue);
		transform: translateX(-50%);
		pointer-events: none;
	}
	.sceneBlk .operation__list::after {
		content: "";
		position: absolute;
		top: 50%;
		left: calc(50% + 3px);
		width: 22px;
		height: 22px;
		border-top: 3px solid var(--sho-xyz-blue);
		border-right: 3px solid var(--sho-xyz-blue);
		background: #fff;
		transform: translate(-62%, -50%) rotate(45deg);
		pointer-events: none;
	}
	.sceneBlk .operation + .operation {
		margin-top: 30px;
	}
	.sceneBlk .operation__list > li {
		width: 50%;
	}
	.sceneBlk .operation__card {
		height: 100%;
		margin-top: 0;
		border: none;
		border-radius: 0;
	}
	.sceneBlk .operation__cardBody {
		padding: 35px;
	}
	.sceneBlk .operation__cardBody picture {
		display: flex;
		align-items: center;
		height: 270px;
	}
	.sceneBlk .operation__cardBody img {
		display: block;
		width: 100%;
		max-height: 100%;
		object-fit: contain;
	}
	.sceneBlk .operation__cardFooter,
	.operation__cardTitle--sp {
		display: none;
	}
	.operation__cardTitle--pc {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 74px;
		background: var(--sho-xyz-blue);
		font-size: 2rem;
		font-weight: 600;
		color: #fff;
	}
	.operation__cardTitle--pc i {
		display: block;
		width: 83px;
		margin-right: 15px;
	}
	.operation__cardTitle--pc i img {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.sceneBlk__title {
		font-size: 5.3333vw;
		line-height: 1.5;
	}
	.operation__cardTitle--pc {
		display: none;
	}
	.sceneBlk .operation {
		margin-top: 0;
	}
	.guideBlk .operation__cardFooter,
	.sceneBlk .operation__cardFooter {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		height: auto;
		min-height: 20vw;
		padding: 2.6667vw 0 3.4667vw;
		background: var(--sho-xyz-blue);
	}
	.operation__cardBtn {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 78vw;
		height: 9.9467vw;
		padding: 0 8vw 0 4vw;
		border: 0;
		background: #fff;
		color: var(--sho-xyz-blue);
		-webkit-clip-path: polygon(0 0, calc(100% - 7.2vw) 0, 100% 50%, calc(100% - 7.2vw) 100%, 0 100%);
		clip-path: polygon(0 0, calc(100% - 7.2vw) 0, 100% 50%, calc(100% - 7.2vw) 100%, 0 100%);
		cursor: pointer;
		animation: operationCardBtnNudge 2.4s ease-in-out infinite;
		-webkit-appearance: none;
		appearance: none;
	}
	.operation__cardBtn.reverse {
		padding: 0 4vw 0 8vw;
		-webkit-clip-path: polygon(7.2vw 0, 100% 0, 100% 100%, 7.2vw 100%, 0 50%);
		clip-path: polygon(7.2vw 0, 100% 0, 100% 100%, 7.2vw 100%, 0 50%);
		animation: none;
	}
	.operation__cardText {
		display: inline-block;
		column-gap: 3.2vw;
		font-size: 4.2667vw;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0;
	}
	.operation__cardText + span {
		position: absolute;
		right: 2.6666vw;
		top: 50%;
		font-size: 2.6666vw;
		font-weight: 600;
		white-space: nowrap;
		transform: translateY(-50%);
	}
	.operation__cardBtn.reverse .operation__cardText + span {
		left: 2.6666vw;
		right: auto;
	}
	.operation__pagenation {
		display: flex;
		justify-content: center;
		gap: 2.1333vw;
		margin-top: 2.6667vw;
	}
	.operation__pagenation li {
		width: 2.1333vw;
		height: 2.1333vw;
		border-radius: 50%;
		background: rgba(255, 255, 255, .45);
	}
	.operation__pagenation li.current {
		background: #fff;
	}
}

@media (max-width: 767px) {
	.sceneBlk {
		padding: 13.3333vw 0 0 4vw;
	}
	.operation__cardTitle--sp {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 24.5333vw;
		background: var(--sho-xyz-blue);
		font-size: 5.3333vw;
		font-weight: 600;
		text-align: center;
		color: #fff;
		line-height: 1.5;
	}
	.operation__cardTitle--sp i {
		display: block;
		position: absolute;
		left: 4vw;
		top: 50%;
		width: 9.2vw;
		transform: translateY(-50%);
	}
	.sceneBlk .operation__cardBody {
		padding: 4vw;
	}
	.sceneBlk .operation__text {
		margin-top: 4vw;
		font-size: 3.7333vw;
	}
}

/* newsBlk
-------------------------------------------------- */
.newsBlk {
	padding: 100px 50px 0;
}
.newsBlk__inner {
	max-width: 1000px;
	margin: 0 auto;
}
.newsBlk__title {
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
}
.newsBlk__list {
	margin-top: 50px;
}
.newsBlk__item {
	position: relative;
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	align-items: center;
	column-gap: clamp(20px, 4.7vw, 94px);
	width: 100%;
	min-height: 100px;
	padding: 0 clamp(48px, 6.3vw, 63px) 0 clamp(40px, 8.8vw, 88px);
	border-radius: 10px;
	background: #EEEFF4;
}
.newsBlk__item + .newsBlk__item {
	margin-top: 20px;
}
.newsBlk__item::after {
	content: "";
	position: absolute;
	right: clamp(17px, 3.3vw, 33px);
	top: 50%;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: #fff url("../img/icon-arrow-right.svg") center / 9px auto no-repeat;
	transform: translateY(-50%);
}
.newsBlk__item dt {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
	color: var(--sho-xyz-blue);
	white-space: nowrap;
}
.newsBlk__item dd {
	min-width: 0;
	padding-right: 15px;
	font-size: 1.8rem;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 767px) {
	.newsBlk {
		padding: 13.3333vw 5.3333vw 0;
	}
	.newsBlk__title {
		font-size: 5.8667vw;
	}
	.newsBlk__list {
		margin-top: 6vw;
	}
	.newsBlk__item {
		grid-template-columns: 1fr;
		align-content: center;
		row-gap: 10px;
		padding: 4vw 15.8vw 4vw 5.3333vw;
		border-radius: 14px;
	}
	.newsBlk__item::after {
		right: 22px;
		width: 8vw;
		height: 8vw;
		border-radius: 2.1333vw;
		background-size: 2.1333vw auto;
	}
	.newsBlk__item dt {
		font-size: 3.7333333333vw;
	}
	.newsBlk__item dd {
		padding-right: 0;
		font-size: 4.2667vw;
		line-height: 1.45;
		white-space: wrap;
	}
}

/* inquiryBlk
-------------------------------------------------- */
.inquiryBlk {
	margin-top: 100px;
	padding: 120px 50px;
	border-radius: var(--border-radius1);
	background: var(--sho-xyz-blue);
	overflow: hidden;
}
.inquiryBlk__inner {
	position: relative;
	display: grid;
	grid-template-columns: clamp(320px, 32.5203%, 400px) minmax(0, 1fr);
	align-items: center;
	column-gap: clamp(20px, 6.5041vw, 80px);
	max-width: 1230px;
	margin: 0 auto;
}
.inquiryBlk__left,
.inquiryBlk__right {
	position: relative;
	z-index: 2;
}
.inquiryBlk__right {
	min-width: 0;
	width: 100%;
}
.inquiryBlk__title {
	display: flex;
	align-items: center;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
}
.inquiryBlk__title::before {
	content: "";
	display: block;
	width: 44px;
	height: 39px;
	margin-right: 20px;
	background: url("../img/icon-mail.png") center / 100% no-repeat;
}
.inquiryBlk__copy {
	margin-top: 34px;
	font-size: 1.6rem;
	line-height: 1.65;
	color: #fff;
}
.inquiryBlk__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 120px;
	padding: 30px 4.4444% 50px 6.9136%;
	border-radius: 10px;
	background: #fff;
}
.inquiryBlk__btn:link,
.inquiryBlk__btn:visited {
	transition: background-color .5s ease-in;
}
.inquiryBlk__btnBody {
	display: block;
	min-width: 0;
	padding-right: 34px;
}
.inquiryBlk__btnLabel {
	display: block;
	margin-bottom: 4px;
	padding-left: 2em;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
}
.inquiryBlk__btnText {
	display: block;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.35;
}
.inquiryBlk__btnIcon {
	position: relative;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--sho-xyz-blue);
}
.inquiryBlk__btnIcon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/icon-arrow-right.svg") center / 9px auto no-repeat;
	filter: invert(1);
}
.inquiryBlk__sho-xyz {
	position: absolute;
	right: 70px;
	bottom: -120px;
	z-index: 3;
	width: 500px;
}
.inquiryBlk__sho-xyz img {
	width: 100%;
}

@media (hover: hover) {
	.inquiryBlk__sho-xyz a:hover {
		opacity: 1;
	}
	.inquiryBlk__inner:has(.inquiryBlk__sho-xyz a:hover) .inquiryBlk__btn,
	.inquiryBlk__btn:hover {
		background-color: var(--sho-xyz-light-blue);
		opacity: 1;
	}
}

@media (min-width: 768px) {
	.inquiryBlk__btnIcon {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.inquiryBlk {
		position: relative;
		margin-top: 10.6666vw;
		padding: 12vw 6.6667vw 26.3333vw;
		border-radius: var(--border-radius1);
	}
	.inquiryBlk__inner {
		display: block;
	}
	.inquiryBlk__title {
		justify-content: center;
		font-size: 6.1333vw;
	}
	.inquiryBlk__title::before {
		width: 7.6vw;
		height: 6.6vw;
		margin-right: 2.6666vw;
	}
	.inquiryBlk__copy {
		margin-top: 6vw;
		font-size: 4.26667vw;
		line-height: 1.7;
	}
	.inquiryBlk__right {
		margin-top: 4vw;
	}
	.inquiryBlk__btn {
		min-height: 30.6667vw;
		padding: 0 4.8vw 0 4.8vw;
		border-radius: 2.6667vw;
	}
	.inquiryBlk__btnBody {
		margin-top: -1.3333vw;
		padding-right: 0;
	}
	.inquiryBlk__btnLabel {
		margin-bottom: 0.6666vw;
		font-size: 3.2vw;
	}
	.inquiryBlk__btnText {
		font-size: 4.2667vw;
	}
	.inquiryBlk__btnIcon {
		width: 8vw;
		height: 8vw;
	}
	.inquiryBlk__sho-xyz {
		position: absolute;
		left: 6vw;
		right: auto;
		bottom: -28.5333vw;
		width: 60.2667vw;
	}
}

/* asideBlk
-------------------------------------------------- */
.asideBlk {
	margin-top: 70px;
	padding: 0 20px;
}
.asideBlk__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 360px;
	height: 80px;
	margin: 0 auto;
	padding: 0 20px 0 34px;
	border: 1px solid var(--sho-xyz-blue);
	border-radius: 10px;
	background: #fff;
	transition: background-color .5s ease-in !important;
}
.asideBlk__btnBody {
	display: block;
	min-width: 0;
}
.asideBlk__btnLabel {
	display: block;
	padding-left: 1em;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
}
.asideBlk__btnText {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.35;
	white-space: nowrap;
}
.asideBlk__btnIcon {
	position: relative;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 4px;
	background: var(--sho-xyz-blue);
}
.asideBlk__btnIcon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/icon-arrow-right.svg") center / 9px auto no-repeat;
	filter: invert(1);
}

@media (hover: hover) {
	.asideBlk__btn:hover {
		background-color: var(--sho-xyz-light-blue);
		opacity: 1;
	}
}

@media (max-width: 767px) {
	.asideBlk {
		margin-top: 10.6666vw;
		padding: 0 6.4vw;
	}
	.asideBlk__btn {
		width: 100%;
		height: 20vw;
		padding-left: max(20px, 9.0667vw);
	}
	.asideBlk__btnLabel {
		font-size: 3.2vw;
	}
	.asideBlk__btnText {
		font-size: 4.667vw;
	}
	.asideBlk__btnIcon {
		width: 8vw;
		height: 8vw;
	}
}

/* privacyBlk
-------------------------------------------------- */
.privacyBlk {
	margin-top: 70px;
}
.privacyBlk__upper {
	padding: 50px;
	background: #EEEFF4;
}
.privacyBlk__upperInner {
	max-width: 1230px;
	margin: 0 auto;
}
.privacyBlk__title {
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
}
.privacyBlk__copy {
	margin-top: 40px;
	font-size: 1.4em;
	line-height: 1.65;
}
.privacyBlk__copy + .privacyBlk__copy {
	margin-top: 20px;
}
.privacyBlk__link:link,
.privacyBlk__link:visited {
	display: inline-block;
	margin-top: 20px;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--sho-xyz-blue);
	text-decoration: underline;
}
.privacyBlk__lower {
	padding: 30px 50px;
	text-align: center;
}
.privacyBlk__list {
	font-size: 1.2rem;
	line-height: 1.65;
}
.privacyBlk__logo {
	width: 234px;
	margin: 40px auto 0;
}
.privacyBlk__logo img {
	width: 100%;
}
.privacyBlk__lowerLink {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(30px, 5vw, 70px);
	margin-top: 30px;
}
.privacyBlk__lowerLink a:link,
.privacyBlk__lowerLink a:visited {
	display: flex;
	align-items: center;
	column-gap: 5px;
	font-size: 1.4rem;
	line-height: 1;
	color: #000;
	white-space: nowrap;
}
.privacyBlk__lowerLink a::after {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 8px;
	background: var(--sho-xyz-light-blue) url("../img/icon-arrow-right.svg") center / 8px auto no-repeat;
}

@media (max-width: 767px) {
	.privacyBlk {
		margin-top: 10.6666vw;
	}
	.privacyBlk__upper {
		padding: 10.6666vw 5.3333vw;
	}
	.privacyBlk__title {
		font-size: 2rem;
	}
	.privacyBlk__copy {
		margin-top: 5.3333vw;
		font-size: 3.7333vw;
	}
	.privacyBlk__copy + .privacyBlk__copy {
		margin-top: 2.6666vw;
	}
	.privacyBlk__lower {
		padding: 8vw 0 0;
	}
	.privacyBlk__list {
		padding: 0 5.3vw;
		font-size: 3.2vw;
		line-height: 1.8;
		text-align: left;
	}
	.privacyBlk__logo {
		width: 56vw;
		max-width: none;
		margin-top: 8vw;
	}
	.privacyBlk__lowerLink {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin-top: 10.6667vw;
		background: var(--sho-xyz-light-blue);
	}
	.privacyBlk__lowerLink li {
		width: 100%;
		border-top: 1px solid #fff;
	}
	.privacyBlk__lowerLink a:link,
	.privacyBlk__lowerLink a:visited {
		justify-content: space-between;
		width: 100%;
		min-height: 11.4667vw;
		padding: 0 6.6667vw 0 9.6vw;
		font-size: 4.2667vw;
		background: var(--sho-xyz-light-blue);
	}
	.privacyBlk__lowerLink a::after {
		width: 5.8667vw;
		height: 5.8667vw;
		border-radius: 1.6vw;
		background-color: #fff;
		background-size: 1.6vw auto;
	}
}


/* Utility
-------------------------------------------------- */
.uFlex {
	display: flex;
}
.uText--left {
	text-align: left;
}
.uText--center {
	text-align: center;
}
.uText--right {
	text-align: right;
}

@media (min-width: 768px ) {
	.uFlex--pc {
		display: flex;
	}
	.uHidden--pc {
		display: none;
	}
}

@media (max-width: 767px ) {
	.uFlex--sp {
		display: flex;
	}
	.uHidden--sp {
		display: none;
	}
}


/* animation
-------------------------------------------------- */
@keyframes operationCardBtnNudge {
	0%, 48%, 100% {
		transform: translateX(0);
	}
	12%, 36% {
		transform: translateX(1.6vw);
	}
	24% {
		transform: translateX(0);
	}
}

.fadeIn {
	transition:	opacity 1s cubic-bezier(0.16, 1, 0.3, 1),	transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transform: translate3d(0, 5px, 0) scale(0.995);
	opacity: 0;
}

.fadeIn._action {
	transform: translate3d(0, 0, 0) scale(1);
	opacity: 1;
}
