<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　00. 
　01. 基本
　02. モジュール

******************************************************************************* */



/* ==

　01. 基本

=============================================================================== */
.r3Header,
.r3SubFooter,
.r3Pagetop,
.r3Footer {
	position: relative;
	z-index: 3;
}
.r3Breadcrumbs {
	position: relative;
	z-index: 2;
}
/* ==

　02. モジュール

=============================================================================== */
/* MV
------------------------------------------------------------------------------- */
.fMv {
	position: relative;
	height: 600px;
	overflow: hidden;
}
.fMv_in {
	position: relative;
  width: 100%;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}
.fMv_tit {
	position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
	font-size: 56px;
	color: #fff;
	font-weight: 700;
}
.fMv_tit span {
	color: #FA0046;
}


/* ローディング
------------------------------------------------------------------------------- */
.fMv_loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1d1d1f;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	text-align: center;
	color: #fff;
	transition: opacity 0.5s linear;
	transition-delay: 750ms;
}
.fMv_loading.fMv_loading-loaded {
	opacity: 0;
}
.fMv_loading_in {
	transition: opacity 0.5s linear;
}
.fMv_loading.fMv_loading-loaded .fMv_loading_in {
	opacity: 0;
}
.fMv_loading p,
.fMv_loading h1 {
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: 700;
}
.fMv_loading p span {
	display: block;
	line-height: 1;
	font-size: 16px;
	font-weight: normal;
}
.fMv_loading_bar {
	position: relative;
	width: 320px;
	height: 1px;
	margin: 50px auto 0;
	display: block;
	overflow: hidden;
}
.fMv_loading_bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #f40046;
  -webkit-animation: loading 1.5s infinite ease-out;
  -moz-animation: loading 1.5s infinite ease-out;
  -o-animation: loading 1.5s infinite ease-out;
  -ms-animation: loading 1.5s infinite ease-out;
  animation: loading 1.5s infinite ease-out;
}
@keyframes loading {
  0% {
	  transform: translateX(-100%);
  }
  100% {
	  transform: translateX(100%);
  }
}

/* コンテンツ
------------------------------------------------------------------------------- */
.fSection {
	position: relative;
	padding: 100px 10px 60px;
	z-index: 1;
}
.fSection_in {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.fSection_in-revers {
  justify-content: end;
}
.fSection_in-base {
	display: block;
}
.fSection-01,
.fSection-02,
.fSection-03 {
	opacity: 0;
	transform: translateY(100px);
	transition: all .5s ease-out;
	transition-delay: .3s;
}
.fSection-01.inView,
.fSection-02.inView,
.fSection-03.inView {
	transform: translateY(0px);
	opacity: 1;
}
/*
.fSection-01 {
	background: url(/factory/images/rn01/index_bg01.jpg) no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
}
.fSection-02 {
	background: url(/factory/images/rn01/index_bg02.jpg) no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
}
.fSection-03 {
	background: url(/factory/images/rn01/index_bg03.jpg) no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
}
*/
.fSection_movie {
	max-width: 950px;
	margin: 0 auto 100px;
	text-align: center;
}
.fTit01 {
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 30px;
}
.fTit02 {
	color: #000;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 30px;
}
.fBlock01 {
	background-color: rgba(0,0,0,0.7);
	padding: 40px;
	width: 540px;
}
.fBlock01 p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 30px;
}
.fBlock02 {
	width: 540px;
	padding: 0 20px;
}
.fBlock02_img {
	padding-top: 430px;
}
.fBlock02_img p:first-child {
	margin-bottom: 30px;
}
.fCol01 {
	width: 540px;
	margin-bottom: 20px;
}
.fCol02 {
	width: 540px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.fCol02_item {
	width: 260px;
}
.fCol02_item p {
	margin-top: 10px;
}
.fGrade {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.fGrade h3 {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 20px;
	padding-bottom: 15px;
	width: 100%;
}
.fGrade_item {
	width: 48%;
	margin-bottom: 80px;
}
.fGrade_item h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.fGrade_icon {
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.fGrade_icon p {
	margin-right: 20px;
}
.fGrade_item p + h4 {
	margin-top: 30px;
}
.fCloseUp {
	position: relative;
	border: 1px solid #fff;
	margin-bottom: 30px;
	padding: 35px;
}
.fCloseUp h3 {
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.fCloseUp p {
	margin-bottom: 20px;
}
.fCloseUp p:last-child {
	margin-bottom: 0;
}
.fCloseUp p .fnSlideBg {
	position: relative;
	margin-right: 3px;
	padding: 0 5px;
	cursor: pointer;
	z-index: 1;
}
.fCloseUp p .fnSlideBg em,
.fCloseUp p .fnSlideBg-bg .fnSlideBg_in em {
	font-weight: normal;
}
.fCloseUp p .fnSlideBg sub {
	text-decoration: underline;
}
.fCloseUp p .fnSlideBg sub:hover {
	text-decoration: none;
}
.fCloseUp p .fnSlideBg::before {
	content: "";
	width: 0;
	height: 1.6em;
	background-color: #E00040;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .5s ease-out;
	transition-delay: .5s;
}
.fCloseUp p .fnSlideBg-bg::before {
	display: none;
}
.fCloseUp p .fnSlideBg-bg {
	position: relative;
	background-color: transparent;

	padding: 0;
}
.fCloseUp p .fnSlideBg-bg .fnSlideBg_in {
	position: relative;
	display: inline-block;
	z-index: 1;
	padding: 0 3px;
}
.fCloseUp p .fnSlideBg-bg .fnSlideBg_in::before {
	content: "";
	width: 0;
	height: 100%;
	background-color: #FA0046;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .5s linear;
}
.fCloseUp p .fnSlideBg.inView::before,
.fCloseUp p .fnSlideBg-bg.inView .fnSlideBg_in::before {
	width: 100%;
}
.fCloseUp p .fnSlideBg.inView em,
.fCloseUp p .fnSlideBg-bg.inView .fnSlideBg_in em {
	font-weight: normal;
}
.fCloseUp p .fnSlideBg .fnSlideBg_in em .fnSlideBg_txt {
	opacity: 0;
}

.fCloseUp p:last-child {
	margin-bottom: 0;
}
.fPopup {
	background-color: #fff;
	position: absolute;
	top: 0;
	left: -20px;
	width: 100%;
	padding: 20px;
	z-index: 2;
	display: none;
}
.fPopup .fPopup_arrow {
	display: block;
	position: absolute;
	bottom: -12px;
	left: 50px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: #ffffff transparent transparent transparent;
}
#fPopup1 {
	top: 10px;
}
#fPopup1 .fPopup_arrow {
	left: 195px;
}
#fPopup2 {
	top: 30px;
}
#fPopup2 .fPopup_arrow {
	left: 450px;
}
#fPopup3 {
	top: 115px;
}
#fPopup3 .fPopup_arrow {
	left: 225px;
}
.fPopup p {
	color: #000;
	font-size: 16px;
}
a.fBtn01 {
	position: relative;
	display: block;
	width: 320px;
	background-color: #E5E5E5;
	border-radius: 5px;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	margin: 0 auto 15px;
	padding: 15px 20px;
	transition: opacity .2s linear;
}
a.fBtn01:hover {
	opacity: 0.8;
}
a.fBtn01::after {
	content: "";
	background: url(/common/images/rn04/svg/arw_ico02.svg) no-repeat center center;
	width: 20px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -5px 20px 0 0;
}
.fList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 100px;
}
.fList_item:nth-child(2),
.fList_item:first-child {
	border-top: 1px solid #DCDCDC;
}
.fList_item {
	width: 48%;
	border-bottom: 1px solid #DCDCDC;
}
.fList_item a {
	display: flex;
	justify-content: space-between;
	padding: 25px 0;
	text-decoration: none;
}
.fList_item a:hover h3 {
	text-decoration: underline;
}
.fList_txt {
	position: relative;
  padding: 0 10px 0 50px;
  max-width: 360px;
  width: 70%;
}
.fList_icon {
	position: absolute;
	top: 0;
	left: 0;
}
.fList_tit {
	display: flex;
	align-items: end;
}
.fList_tit h3 {
	font-size: 24px;
}
.fList_tit span {
	font-size: 0px;
	display: block;
	margin-left: 10px;
	padding-bottom: 12px;
}
.fList_txt .fList_tit p {
	margin-left: 15px;
	font-size: 16px;
}
.fList_txt p {
	font-size: 14px;
}
.fList_txt .fList_add {
	line-height: 1.4;
	margin-top: 12px;
}
.fList_icon {
	width: 32px;
}
.fList_img {
	max-width: 160px;
	width: 26%;
}
.fList_item-grade {
	padding: 15px 0;
}
.fList_item-grade h3 {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.fList_item-grade p {
	font-size: 14px;
	line-height: 1.7;
}
.fList_item-grade .fList_item_icon {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.fList_item_icon p {
	margin-right: 20px;
}
@media only screen and (max-width: 1100px) { 
	.fList_tit h3 {
		font-size: 20px;
	}
	.fList_tit span{
		padding-bottom: 8px;
	}
}

/* スクロールアイコン
------------------------------------------------------------------------------- */
.fScroll {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	opacity: 0;
	transition: opacity .5s linear;
}
.fScroll.inView {
	opacity: 1;
}
.fScroll_arrow {
	position: absolute;
  top: 50px;
  left: 60px;
}

/* カテゴリーナビ
------------------------------------------------------------------------------- */
.tCategory {
	position: relative;
	background-color: #F5F5F5;
	padding: 80px 10px;
	z-index: 1;
}
.tCategory_in {
	max-width: 1240px;
	margin: 0 auto;
}
.tCategory_nav {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #DCDCDC;
}
.tCategory_head {
	width: 22.6%;
}
.tCategory_body {
	width: 74%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.tCategory_tit {
	margin-bottom: 20px;
}
.tCategory_tit a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	text-decoration: none;
	padding-right: 70px;
}
.tCategory_tit + .tCategory_nav {
	border-top: 1px solid #DCDCDC;
}
.tCategory_item {
	width: 31%;
}
.tCategory_label {
	background-color: #939399;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	font-size: 18px;
}
.tCategory_item p {
	font-size: 16px;
	margin-bottom: 10px;
}
.tCategory_item a {
	position: relative;
	display: block;
	font-size: 14px;
	text-decoration: none;
	padding-right: 40px;
}
.tCategory_list li {
	margin-bottom: 7px;
}
.tCategory_list li:last-child {
	margin-bottom: 0;
}
.tCategory_tit a:hover,
.tCategory_item a:hover {
	text-decoration: underline;
}
.tCategory_item a::after, .tCategory_tit a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0.5em;
  right: 5px;
  width: 22px;
  height: 12px;
  background: url(/common/images/rn04/svg/arw_ico02.svg) center center no-repeat;
  background-size: contain;
}

/* Fixed
------------------------------------------------------------------------------- */
.isTbl .fSection-01,
.isTbl .fSection-02,
.isTbl .fSection-03 {
	background-attachment: scroll;
	background: none;
}


/* Fixed
------------------------------------------------------------------------------- */

.bgLayer {
	position: fixed;
  top: 0;
  left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bgLayer_movie {
	position: fixed;
	top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transition: opacity .3s linear;
}
.bgLayer_movie::before {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 0;
}
#movie01 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}



.bgLayer_01,
.bgLayer_02,
.bgLayer_03 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bgLayer .bgLayer_fixed span {
	display: block;
	width: 100%;
	height: 1334px !important;
}
.bgLayer_01  {
	background: url(/factory/images/rn01/index_bg01.jpg) no-repeat center top;
	background-size: cover;
	opacity: 0;
	transition: opacity .3s linear;
}
.bgLayer_02 {
	background: url(/factory/images/rn01/index_bg02.jpg) no-repeat center top;
	background-size: cover;
	opacity: 0;
	transition: opacity .3s linear;
}
.bgLayer_03 {
	background: url(/factory/images/rn01/index_bg03.jpg) no-repeat center top;
	background-size: cover;
	opacity: 0;
	transition: opacity .3s linear;
}
.fSection-base {
	background-color: #fff;
}
.bgLayer.bgLayer-movie .bgLayer_movie {
	opacity: 1;
}
.bgLayer.bgLayer-01 .bgLayer_01 {
	opacity: 1;
}
.bgLayer.bgLayer-02 .bgLayer_02 {
	opacity: 1;
}
.bgLayer.bgLayer-03 .bgLayer_03 {
	opacity: 1;
}</pre></body></html>