<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_YLW : #ffea00;
	--color_RED : #e62b26;
	--color_BLU : #0a0556;
	/* --color_GRN : #44bc08; */
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.8;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}
.font_yusei-magic {
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED);
}
.blue {
	color: var(--color_BLU);
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1600px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}


.block_title {
	font-size: clamp(18px,3.4vw,28px);
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 0 0 var(--gap_32px);
}
.block_read p {
	margin: var(--gap_16px) auto;
}
.block_read p:not(.demo_btn) {
	padding-left: 1em;
	text-indent: -1em;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	/* font-size: 1.4em; */
	font-weight: bold;
	padding: 0.8em var(--gap_24px);
	margin: 0 auto;
	line-height: 1.2;
	/* border-radius: clamp(4px, 1vw, 10px); */
	transition: all 0.3s;
	display: inline-block;
}
#btn_pagetop {
    position: fixed;
	bottom: clamp(4px, 3.4vw, 10px);
	right: clamp(4px, 3.4vw, 10px);
	/* bottom: 0;
	right: 0; */
    z-index: 500;
}
/* #btn_pagetop a {
	font-size: clamp(18px,3.8vw,38px);
	color: var(--color_YLW);
	text-align: center;
	border-radius: var(--gap_16px) 0 0 0;
	background-color: var(--color_BLU);
	display: block;
}
#btn_pagetop a i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop a img {
  width: clamp(70px, 9vw, 100px);
}

.mob {
	display: none;
}
@media screen and (max-width: 767px) {
	.mob {
		display: inline-block;
	}
	.pc {
		display: none;
	}
}

/* =============================================================
    common ページ内共通
============================================*/
.targetBox {
	opacity: 0;
	transition: opacity 0.75s ease-in;
  }
.is-showTargetBox {
	opacity: 1;
	transition: opacity 0.75s ease-in;
}

.sec_wrap {
	padding: var(--gap_80px) 0 0;
}
.sec_title_wrap {
	text-align: center;
	margin-bottom: var(--gap_48px);
	position: relative;
}
.sec_title {
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: bold;
	line-height: 1;
	width: 100%;
	text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 50;
}
.sec_title_wrap img {
	position: relative;
}
.sec_title_wrap.box .sec_title,
.sec_title_wrap.box img {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.sec_title_wrap.box .sec_title {
    z-index: 50;
}
.btn small {
	font-size: 0.8em;
	font-weight: normal;
	margin-left: 2em;
    display: inline-block;
}

/* =============================================================
      header
============================================*/
#header {
	position: sticky;
	top: 0;
	z-index: 100;
}
.header_inner {
	background-color: var(--color_BLU);
	position: relative;
	z-index: 100;
}
.navi_wrap {
	color: #fff;
	align-items: center;
	padding: 12px var(--gap_48px);
    margin: 0 auto;
}
.navi_wrap .navi_title {
	font-size: clamp(16px,2.4vw,24px);
	line-height: 1.2;
}
.navi_wrap .navi_title a {
	color: #fff;
}
.navi_trigger {
	width: 30px;
    height: 30px;
	padding: 0;
	border: 0;
	background-color: transparent;
	position: relative;
	z-index: 1100;
}
.img_btn_menu,
.img_btn_close {
	width: 30px !important;
	height: 30px !important;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1200;
}
.img_btn_menu {
	z-index: 1300;
	transition: all 0.3s;
}
.navi_trigger.is-opend .img_btn_menu {
	opacity: 0;
}
.navi_wrap li {
	display: block;
}
.navi_wrap li a {
	font-size: 18px;
	color: #fff;
	padding: 0 14px;
}

.navi_wrap li:not(:first-child) a {
	border-left: solid 1px;
}
.img_head_btm {
	width: 1920px !important;
}
@media screen and (min-width: 1280px) {
	.navi_trigger {
		display: none;
	}
	.navi_item {
		display: block !important;
		overflow: hidden;
	}
	.navi_wrap li {
		float: left;
	}
	#header .navi_wrap li:last-child a {
		padding-right: 0;
	}
}
@media screen and (max-width: 1279px) {
	.navi_trigger {
		display: block;
	}
	.navi_item {
		display: none;
		text-align: center;
		width: 100%;
        max-height: 70vh;
		overflow-y: scroll;
		padding: var(--gap_48px) var(--gap_24px);
		background-color: rgb(10 5 86 / 80%);
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		box-shadow: 0 0 var(--gap_16px) var(--color_BLU);
	}
	.navi_wrap li {
		margin: var(--gap_32px) auto;
	}
	.navi_wrap li a {
		border: 0 !important;
	}
}
@media screen and (max-width: 479px) {
	.navi_wrap .navi_title {
		width: calc(100% - 40px);
	}
	.navi_trigger,
	.img_btn_menu,
	.img_btn_close {
		width: 24px !important;
		height: 24px !important;
	}
}

/* =============================================================
      mv メインビジュアル
============================================*/
.mv_inner {
	position: relative;
	background: url(/qzin/saiyo/lib/2026/images/kv_bg.jpg) center top/cover no-repeat;
	height: clamp(150px,50vw,660px);
}
.p_mainTitle_wrap {
    font-size: 0em;
	width: 60vw;
	max-width: 936px;
	position: absolute;
	bottom: var(--gap_48px);
	left: var(--gap_48px);
	z-index: 50;
}
.p_mainTitle {
    background: url(/qzin/saiyo/lib/2026/images/kv_logo.png) center center no-repeat;
    background-size: contain;
    padding-bottom: calc(224 / 936 * 100%);
	filter: drop-shadow(0 0 var(--gap_8px) rgb(10 5 86 / 50%));
}
.kv_building {
	width: min(60vw, 1015px);
	position: absolute;
	bottom: 0;
	left: clamp(16px,5vw,80px);
	filter: drop-shadow(0 calc(var(--gap_8px) * -1) var(--gap_16px) #fff);
	z-index: 40;
}
.kv_photo {
	width: min(45vw, 824px);
	filter: drop-shadow(0 0 var(--gap_8px) rgb(10 5 86 / 50%));
	position: absolute;
	top: 0;
	right: 0;
	z-index: 30;
}

#mv .btn_wrap_entry {
	position: absolute;
    bottom: calc(var(--gap_32px) * -1);
    right: var(--gap_48px);
	z-index: 70;
}
#mv .btn_wrap_entry a {
	width: 22vw;
	max-width: 208px;
    display: inline-block;
}

.slide_wrap {
	padding: var(--gap_8px) 0 var(--gap_24px);
	background-color: var(--color_BLU);
	position: relative;
	z-index: 50;
}
.slide_wrap li img {
	padding: 0 calc(var(--gap_8px) / 2);
}

/* =============================================================
      intro イントロ
============================================*/
#intro {
	background: url(/qzin/saiyo/lib/2026/images/bg_intro.png) center top no-repeat,
	url(/qzin/saiyo/lib/2026/images/bg_intro_btm.jpg) center bottom no-repeat #fff6db;
}

.message_wrap {
	background-color: rgba(255,255,255,0.95);
	padding: var(--gap_48px);
}
.message_wrap .sec_title_wrap {
	margin-bottom: 0;
}
.message_wrap .sec_title {
	text-shadow: 0 0 0.2em #d1e1e1, 0 0 0.2em #d1e1e1, 0 0 0.3em #d1e1e1, 0 0 0.3em #d1e1e1;
}
.message_wrap .box_L,
.message_wrap .box_R {
	width: 25%;
}
.message_wrap .box_L {
	background: url(/qzin/saiyo/lib/2026/images/bg_ptnGRN.jpg) center center repeat;
}
.message_wrap .box_C {
	width: 50%;
	padding: 0 var(--gap_32px);
	align-items: center;
}
.title_message {
	width: clamp(180px,90%,322px) !important;
}
.message_wrap .box_C .cont_title {
	font-size: 1.2em;
	font-weight: bold;
	color: var(--myColor01);
	line-height: 1.2;
}
.message_wrap .box_C .cont_read {
	text-align: justify;
	margin: var(--gap_24px) auto var(--gap_32px);
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
}
.message_wrap .box_R img {
	height: 100%;
	object-fit: cover;
}

.btn_message {
	text-align: right;
}
.btn_message .btn {
	color: #fff;
	text-align: center;
	background: url(/qzin/saiyo/lib/2026/images/bg_ptnRED.jpg) center center repeat;
}

@media screen and (max-width: 1499px) {
	#intro {
		background-position: center top -40%, center bottom -10%;
	}
}
@media screen and (max-width: 1099px) {
	#intro {
		background-position: center top, center bottom -10%;
	}
	.title_message {
		width: clamp(180px,30vw,322px) !important;
	}
	.message_wrap .box_L {
		width: 100%;
		padding: var(--gap_48px);
		margin-bottom: var(--gap_32px);
	}
	.message_wrap .box_R {
		width: 40%;
	}
	.message_wrap .box_C {
		width: 55%;
		padding: 0;
	}
	.btn_message {
		text-align: left;
	}
}
@media screen and (max-width: 767px) {
	#intro {
		background-position: left 10% top, center bottom;
	}
	.message_wrap .box_C .cont_read {
		text-align: left;
	}
}
@media screen and (max-width: 479px) {
	.message_wrap .box_R,
	.message_wrap .box_C {
		width: 100%;
	}
	.message_wrap .box_R {
		text-align: center;
		padding: var(--gap_48px) 0 0;
	}
	.message_wrap .box_R img {
		width: min(100%,280px) !important;
	}
}

/* =============================================================
    mov 動画
============================================*/
.title_movie {
	width: clamp(180px,30vw,214px) !important;
	filter: drop-shadow(0 0 4px #dfd0b2);
}
#mov .sec_title_sub {
	margin-bottom: var(--gap_48px);
}
.movie_item {
	width: 48%;
}
@media screen and (max-width: 899px) {
	.wrap_movie.flex {
		justify-content: center;
	}
	.movie_item {
		width: 100%;
	}
	.movie_item:not(:last-of-type) {
		margin-bottom: var(--gap_48px);
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/* =============================================================
    sec_member 社員紹介
============================================*/
/* #sec_member .inner_wrap {
	max-width: 1800px;
} */
.title_member {
	width: clamp(180px,30vw,288px) !important;
	filter: drop-shadow(0 0 4px #d0e0e0);
}
.member_card {
	width: 48%;
	margin-bottom: var(--gap_48px);
}
.member_card a {
	position: relative;
	display: block;
}
.member_card a &gt; img {
	transition: all 0.3s;
}
.member_card a:hover &gt; img {
	opacity: 0.8;
}
.btn_more {
	position: absolute;
	bottom: 0;
	right: 0;
	width: clamp(70px,8vw,160px);
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn_more span {
	font-size: 0.9em;
	font-weight: bold;
	color: var(--color_BLK);
	display: inline-block;
	line-height: 1.2;
	transform: rotate(-10deg);
	position: absolute;
	z-index: 100;
}
.btn_more span i {
	margin-left: 4px;
}
.btn_more img {
	display: block;
	filter: drop-shadow(4px 4px 0px #919191);
	position: relative;
	z-index: 10;
}
.member_card a:hover {
	opacity: 1 !important;
}
.member_card a:hover .btn_more img {
	animation: btn_more 5s infinite linear;
}
@keyframes btn_more {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media screen and (max-width: 1279px) {
	.btn_more span {
		font-size: clamp(14px,1.5vw,18px);
	}
}
@media screen and (max-width: 899px) {
	.member_card {
		width: 100%;
		max-width: 550px;
		margin: 0 auto var(--gap_48px);
	}
	.btn_more {
		width: clamp(50px,18vw,110px);
	}
	.btn_more span {
		font-size: clamp(12px,3.2vw,18px);
	}
}

/* =============================================================
    sec_about 会社紹介
============================================*/
#sec_about {
	padding-top: var(--gap_32px);
}
.sec_about_inner {
    background: url(/qzin/saiyo/lib/2026/images/bg_about.jpg) center top no-repeat #fffad0;
	padding: var(--gap_80px) 0;
}
#sec_about .sec_title {
    text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff;
}
.title_about {
	width: clamp(180px,30vw,243px) !important;
	filter: drop-shadow(0 0 4px #c2baa1);
}

.bnr_wrap.flex {
	max-width: 1180px;
	margin: 0 auto;
	justify-content: center;
	column-gap: 2%;
}
.bnr_beijing_wrap {
	width: 72.5%;
}
.bnr_company_wrap {
	width: 25.5%;
	align-content: space-between;
}
.bnr_company_wrap &gt; div {
	width: 100%;
}
.bnr_wrap.flex .bnr_item img {
	filter: drop-shadow(calc(var(--gap_8px) / 2) calc(var(--gap_8px) / 2) calc(var(--gap_8px) / 2) #999);
}
@media screen and (max-width: 899px) {
	.sec_about_inner {
		background: url(/qzin/saiyo/lib/2026/images/bg_about.jpg) right 45% top/200% no-repeat #fffad0;
	}
	.bnr_beijing_wrap,
	.bnr_company_wrap {
		width: 100%;
		max-width: 550px;
	}
	.bnr_company_wrap {
		margin-top: var(--gap_24px);
	}
	.bnr_company_wrap &gt; div {
		width: 48%;
	}
}

/* =============================================================
    btn_entry エントリー
============================================*/
#btn_entry {
	padding: var(--gap_80px) 0;
	background: url(/qzin/saiyo/lib/2026/images/bg_arrow.png) left top/clamp(500px, 60vw,1000px) repeat var(--color_RED);
	animation: bg_arrow 10s infinite linear;
}

#btn_entry .sec_title {
	font-size: clamp(22px, 4.8vw, 48px);
	color: #fff;
	text-shadow: 0 0 0.2em #e1201b, 0 0 0.2em #e1201b, 0 0 0.3em #e1201b, 0 0 0.3em #e1201b;
}
.title_entry {
	width: clamp(180px,30vw,426px) !important;
	/* filter: drop-shadow(0 0 4px #c2baa1); */
}

#btn_entry .btn_wrap_entry {
	text-align: center;
	position: relative;
}
#btn_entry .btn_wrap_entry a {
	font-size: 1.3em;
	color: var(--color_BLK);
	background-color: #fff;
	border-radius: 100px;
    filter: drop-shadow(4px 4px 0px #832321);
	position: relative;
	z-index: 50;
}
#btn_entry .btn_wrap_entry a i {
	margin-right: var(--gap_8px);
}
@media screen and (min-width: 768px) {
	@keyframes bg_arrow {
		0% {
			background-position: left -50% top -50%;
		}
		100% {
			background-position: left 50% top 50%;
		}
	}
}
/* @media screen and (max-width: 767px) {
	@keyframes bg_arrow {
		0% {
			background-position: right -50% top -50%;
		}
		100% {
			background-position: right 150% top 150%;
		}
	}
} */

/* =============================================================
    swiper スライド
============================================*/
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}

/* =============================================================
    アニメーション
============================================*/
.fuwafuwa {
	animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(10px);
   }
	50% {
	transform: translateY(-10px);
   }
	100% {
	transform: translateY(10px);
   }
}

.fadein {
    animation: fadeIn 3s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slidein {
    animation: slideIn 4.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideIn {
  0% {
	transform: translateX(-100px);
    opacity: 0;
  }
  60% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  80%,100% {
    opacity: 1;
  }
}

.pikopiko {
    animation: pikopiko 1s steps(2, start) infinite;
}
@keyframes pikopiko {
	0% {
	transform: rotate(2deg);
	}
	to {
	transform: rotate(-2deg);
	}
}

.poyopoyo {
    animation: poyopoyo 4s ease-out infinite;
}
@keyframes poyopoyo {
  0%, 10%, 17.5%, 25% {
    transform: scale(1.0);
  }
  14%, 21% {
    transform: scale(0.95);
  }
} </pre></body></html>