@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: "YuGothic M";
	src: local("Yu Gothic Medium");
}

/* =================================
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, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
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%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

body{ margin:0px; padding:0px;color:#fff;overflow:hidden;}
p{ margin:0px; padding:0px}
a{color:#fff;}

img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}
*a:hover{
	text-decoration: none;
}
a img{
	transition : all 0.5s ease 0s;
}
a img:hover{
	opacity: 0.6;
}
body{
	background:#000;
}

/* 電話番号リンク禁止
---------------------------------------------------- */
@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
@media (max-width: 750px){
	a[href*="tel:"]{
		text-decoration: none;
		color: inherit;
	}
}

/* ----------------------------------------------------------------------
inner
---------------------------------------------------------------------- */
.innerOrigin{
	width:calc(100% - 30px);
	max-width:1000px;
	margin-left: auto;
	margin-right: auto;
}
.innerWide{
	width:calc(100% - 30px);
	max-width:1280px;
	margin-left: auto;
	margin-right: auto;
}
.inner960{
	max-width:960px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}
.inner768{
	max-width:768px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}

/* ----------------------------------------------------------------------
角丸
---------------------------------------------------------------------- */
.radius10{
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}
.radius15{
	border-radius: 15px;		/* CSS3草案 */
	-webkit-border-radius: 15px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 15px;	/* Firefox用 */
}
.radius20{
	border-radius: 20px;		/* CSS3草案 */
	-webkit-border-radius: 20px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 20px;	/* Firefox用 */
}

/* ----------------------------------------------------------------------
flexbox
---------------------------------------------------------------------- */
.flexOrigin{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
}
.space-between{
	justify-content: space-between; /*均等に間隔をあける*/
}
.flex-start{
	justify-content: flex-start;/*要素を左寄せ*/
}
.flex-wrap{
	flex-wrap: wrap; /*flex繰り返し*/
}
.row-reverse{
	flex-direction:row-reverse;	/*flex逆順*/
}
@media screen and (max-width:767px)  {
	.flex-block{
		display: block; /*スマホ時フレックス解除*/
	}
}

@media print, screen and (min-width:768px)  {
	.flexBox02{
		width:48%;
	}
	.flexBox03{
		width:30%;
	}
	.flexBox04{
		width:23%;
	}
}
@media screen and (max-width:767px)  {
	.flexBox02{
		width:100%;
	}
	.flexBox03{
		width:100%;
	}
	.flexBox04{
		width:48%;
	}
}

/* ----------------------------------------------------------------------
float
---------------------------------------------------------------------- */
.left,.leftPc{
	float:left;
}
.right,.rightPc{
	float:right;
}

@media screen and (max-width:750px)  {
	.leftPc,.rightPc{
		width:100%;
	}
}

/*クリアフィックス*/
.clearfix:after{
	content:"";
	display:block;
	clear:both;
}

/* ----------------------------------------------------------------------
タブレット以上のみ表示
---------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
	.pc_only{
		display:none !important;
	}
}

/* ----------------------------------------------------------------------
スマホ以下のみ表示
---------------------------------------------------------------------- */
@media screen and (min-width: 768px),print {
	.sp_only{
		display:none !important;
	}
}

* ----------------------------------------------------------------------
フォント（%）
---------------------------------------------------------------------- */
.font50 {
	font-size: 50% ;
}
.font60 {
	font-size: 60% ;
}
.font70 {
	font-size: 70% ;
}
.font80 {
	font-size: 80% ;
}
.font90 {
	font-size: 90% ;
}
.font100 {
	font-size: 100% ;
}
.font110 {
	font-size: 110% ;
}
.font120 {
	font-size: 120% ;
}
.font130 {
	font-size: 130% ;
}
.font150 {
	font-size: 150% ;
}
.font180 {
	font-size: 180% ;
}
.font200 {
	font-size: 200% ;
}
.font230 {
	font-size: 230% ;
}
.font250 {
	font-size: 250% ;
}

/* ----------------------------------------------------------------------
フォント（px）
---------------------------------------------------------------------- */
.font10px{
	font-size: 10px ;
}
.font12px{
	font-size: 12px ;
}
.font14px{
	font-size: 14px ;
}
.font16px{
	font-size: 16px ;
}
.font18px{
	font-size: 18px ;
}
.font20px{
	font-size: 20px ;
}
.font25px{
	font-size: 25px ;
}
.font30px{
	font-size: 30px ;
}
.font35px{
	font-size: 35px ;
}
.font40px{
	font-size: 40px ;
}
.font45px{
	font-size: 45px ;
}
@media screen and (min-width: 768px) {
	.font12-14px{
		font-size: 14px ;
	}
	.font14-16px{
		font-size: 16px ;
	}
	.font15-20px{
		font-size: 20px ;
	}
	.font15-18px{
		font-size: 18px ;
	}
	.font16-18px{
		font-size: 18px ;
	}
	.font16-20px{
		font-size: 20px ;
	}
	.font18-20px{
		font-size: 20px ;
	}
	.font18-25px{
		font-size: 25px ;
	}
	.font20-22px{
		font-size: 22px ;
	}
	.font20-25px{
		font-size: 25px ;
	}
	.font20-30px{
		font-size: 30px ;
	}
	.font22-25px{
		font-size: 25px ;
	}
	.font22-30px{
		font-size: 30px ;
	}
	.font25-30px{
		font-size: 30px ;
	}
	.font28-32px{
		font-size: 32px ;
	}
	.font30-35px{
		font-size: 35px ;
	}
	.font30-40px{
		font-size: 40px ;
	}
}
@media screen and (max-width: 767px) {
	.font12-14px{
		font-size: 12px ;
	}
	.font14-16px{
		font-size: 14px ;
	}
	.font15-20px{
		font-size: 15px ;
	}
	.font15-18px{
		font-size: 15px ;
	}
	.font16-18px{
		font-size: 16px ;
	}
	.font16-20px{
		font-size: 16px ;
	}
	.font18-20px{
		font-size: 18px ;
	}
	.font18-25px{
		font-size: 18px ;
	}
	.font20-22px{
		font-size: 20px ;
	}
	.font20-25px{
		font-size: 20px ;
	}
	.font22-25px{
		font-size: 22px ;
	}
	.font20-30px{
		font-size: 20px ;
	}
	.font22-30px{
		font-size: 22px ;
	}
	.font25-30px{
		font-size: 25px ;
	}
	.font28-32px{
		font-size: 28px ;
	}
	.font30-35px{
		font-size: 30px ;
	}
	.font30-40px{
		font-size: 30px ;
	}
}

/* ----------------------------------------------------------------------
フォントファミリー
---------------------------------------------------------------------- */

.yu_font{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.yugo_font{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}
.hira_font{
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
}

/* ----------------------------------------------------------------------
Adobeフォント
---------------------------------------------------------------------- */
.almaq_font{
	font-family: "almaq-refined", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.genN_font{
	font-family: "source-han-sans-japanese", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.genM_font{
	font-family: "source-han-sans-japanese", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.genB_font{
	font-family: "source-han-sans-japanese", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.genH_font{
	font-family: "source-han-sans-japanese", sans-serif;
	font-weight: 900;
	font-style: normal;
}

/* ----------------------------------------------------------------------
文字詰め
---------------------------------------------------------------------- */
.palt {
	font-feature-settings: "palt";
}

/* ----------------------------------------------------------------------
行間調整
---------------------------------------------------------------------- */
.lh10{
	line-height:1.0em;
}
.lh12{
	line-height:1.2em;
}
.lh15{
	line-height:1.5em;
}
.lh18{
	line-height:1.8em;
}
.lh20{
	line-height:2em;
}
.lh24{
	line-height:2.4em;
}

/* ----------------------------------------------------------------------
文字揃え
---------------------------------------------------------------------- */
.txtCenter{
	text-align:center;
}
.txtLeft{
	text-align:left;
}
.txtRight{
	text-align:right;
}
.txtJustify{
	text-align:justify;
}


.txtCenterPc{
	text-align:center;
}
@media screen and (max-width: 767px) {
	.txtCenterPc{
		text-align:left;
	}
}

/* ----------------------------------------------------------------------
文字色
---------------------------------------------------------------------- */
.white{
	color:#fff;
}
.blk{
	color:#333;
}
.gray{
	color:#808080;
}
.gold{
	color:#968746;
}

/* ----------------------------------------------------------------------
文字スタイル（ウエイト）
---------------------------------------------------------------------- */
.bold{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}

/* ----------------------------------------------------------------------
文字間
---------------------------------------------------------------------- */
.ls01{
	letter-spacing: 0.1em;
}
.ls02{
	letter-spacing: 0.2em;
}

/* ----------------------------------------------------------------------
PC・スマホ・タブレットのみ改行
---------------------------------------------------------------------- */

@media print, screen and (min-width: 768px) {
	.kaigyouTab {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 767px){
	.kaigyouPc {
		display: none;
	}
}
@media screen and (min-width: 480px),print{
	.kaigyouSpMini {
		display: none;
	}
}

/* ----------------------------------------------------------------------
margin・padding
---------------------------------------------------------------------- */
/*margin top*/
.mt00 {
	margin-top: 0px;
}
.mt05 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
	margin-top: 40px;
}
.mt45 {
	margin-top: 45px;
}
.mt50 {
	margin-top: 50px;
}
.mt80 {
	margin-top: 80px;
}
.mt100 {
	margin-top: 100px;
}
/*margin bottom*/
.mb00 {
	margin-bottom: 0px !important;
}
.mb05 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb45 {
	margin-bottom: 45px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb80 {
	margin-bottom: 80px;
}
.mb100 {
	margin-bottom: 100px;
}
/*margin left*/
.ml05{
	margin-left: 5px;
}
.ml10 {
	margin-left: 10px;
}
.ml15 {
	margin-left: 15px;
}
/*margin right*/
.mr30 {
	margin-right: 30px;
}
/*padding top*/
.pt05 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt25 {
	padding-top: 25px;
}
.pt30 {
	padding-top: 30px;
}
.pt35 {
	padding-top: 35px;
}
.pt40 {
	padding-top: 40px;
}
.pt45 {
	padding-top: 45px;
}
.pt50 {
	padding-top: 50px;
}
.pt80 {
	padding-top: 80px;
}
.pt100 {
	padding-top: 100px;
}
/*padding bottom*/
.pb05 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb15 {
	padding-bottom: 15px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb25 {
	padding-bottom: 25px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb35 {
	padding-bottom: 35px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb45 {
	padding-bottom: 45px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb80 {
	padding-bottom: 80px;
}
.pb100 {
	padding-bottom: 100px;
}
.pd10{
	padding: 10px;
}
.pd15{
	padding: 15px;
}
.pd20{
	padding: 20px;
}
.pd25{
	padding: 25px;
}
.pd30{
	padding: 30px;
}

/* ----------------------------------------------------------------------
画像
---------------------------------------------------------------------- */
img.img100{
	width:100%;
	display:block;
}
img.imgCenter{
	max-width: 100%;
	display:block;
	margin-left:auto;
	margin-right:auto;
}
img.imgLeft{
	max-width: 100%;
	display:block;
	margin-right:auto;
}
img.imgRight{
	max-width: 100%;
	display:block;
	margin-left:auto;
}

/* ----------------------------------------------------------------------
背景色
---------------------------------------------------------------------- */
.bgWhite{
	background:#fff;
}

/* ----------------------------------------------------------------------
 ページ内リンク
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px){
	a.scroll_point {
	 height: 1px;
	 /*margin-top: -100px;
	 padding-top: 100px;*/
	 display: block;
	}
}
@media screen and (max-width: 1200px){
	 a.scroll_point {
	 height: 1px;
	 display: block;
	 /*margin-top: -60px;
	 padding-top: 60px;*/
	}
}

/* ----------------------------------------------------------------------
 スクロールフェード
---------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(50px);
}
.fade01 {
	transition: opacity 1.5s, transform 1s;	
}
.fade02 {
	transition: opacity 1.5s, transform 1s;
	transition-delay: 0.1s;
}
.fade03 {
	transition: opacity 1.5s, transform 1s;	
	transition-delay: 0.2s;
}
.fade04 {
	transition: opacity 1.5s, transform 1s;		
	transition-delay: 0.3s;
}
.fade.move {
	opacity: 1;
	transform: translateY(0px);
}

/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
.header-bar-inner{
	position:relative;
	width:100%;
	max-width:1920px;
	margin-left:auto;
	margin-right:auto;
}
@media screen and (min-width: 1201px) and (max-width:1935px){
	.header-bar-inner{
		width:calc(100% - 15px);
		margin-left:auto;
		margin-right:0;
	}
}
@media only screen and (max-width: 1200px) {
	.header-bar{
		border-bottom: none;
        box-shadow:none;
	}
	.global-nav-button{
		border-left:none;
	}
	.global-nav-button:before{
		color:#fff;
	}
}
.logo{
	width:370px;
	max-width:370px;
}
h1.logo a img,
div.logo a img{
	width:370px;
}
@media only screen and (max-width: 1280px) and (min-width:1201px){
	.logo{
		width:300px;
		max-width:300px;
	}
	h1.logo a img,
	div.logo a img{
		width:300px;
	}
}
@media only screen and (max-width: 1200px) {
	.logo{
		width:200px;
		max-width:200px;
	}
	h1.logo a img,
	div.logo a img{
		width:200px;
	}
}
@media only screen and (max-width: 420px) {
	.logo,h1.logo a img,div.logo a img{
		width:200px;
	}
}

/* ----------------------------------------------------------------------
 グローバルメニュー
---------------------------------------------------------------------- */
.global-nav a{
	font-family: "almaq-refined", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.global-nav a:hover{
	color:#999;
}
.global-nav .current-menu-item > a{
	color:#f2f2f2;
}
@media only screen and (min-width: 1201px) {
	.global-nav a{
		font-size:30px;
	}
}
@media only screen and (max-width: 1200px) {
	.header-bar-fixed .global-nav{
		top: 55px;
		border-top:1px #666 solid;
	}
	.global-nav a {
		font-size:20px;
	}
}

/* ----------------------------------------------------------------------
Loading
---------------------------------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 3.0s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
	opacity: 0;
	animation: logo_fade 3s 0.5s forwards;
	width: 250px;
	display:block;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

/* ----------------------------------------------------------------------
 メインビジュアル
---------------------------------------------------------------------- */
.mvInner{
	position:relative;
}
/*.mvInner img{
	display:block;
	width:100%;
	max-width:1920px;
	margin-left:auto;
	margin-right:auto;
	object-fit:cover;
	height:calc(100svh - 100px);
}
@media only screen and (max-width: 1200px) {
	.mvInner img{
		height:calc(100svh - 55px);
	}
}*/

/*------- splide -------*/
.slide-media,
.thumb-media {
	position: relative;
	overflow: hidden;
	width:100%;
	max-width:2560px;
	height:calc(100svh - 100px);
	margin-left:auto;
	margin-right:auto;
}
@media only screen and (max-width: 1200px) {
	.slide-media,
	.thumb-media {
		height:calc(100svh - 55px);
	}
}

.slide-media img,
.thumb-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.splide {
	z-index: 0;
}
/* 前へ / 次へボタン */
.splide__arrow--prev,
.splide__arrow--next {
	display: grid;
	place-content: center;
	width: 6.4rem;
	height: 6.4rem;
	cursor: pointer;
	transition: var(--transition);
	background-color: var(--color-theme-darken);
	border-radius: 50%;
}
.splide__arrow--prev::after,
.splide__arrow--next::after {
	width: 1.2rem;
	height: 1.2rem;
	content: "";
	border: solid var(--color-gray);
	border-width: 3px 3px 0 0;
}
.splide__arrow--prev::after {
	margin-left: 0.4rem;
	transform: rotate(-135deg);
}
.splide__arrow--next::after {
	margin-right: 0.4rem;
	transform: rotate(45deg);
}
.splide__arrow:disabled {
	pointer-events: none;
	opacity: 0;
}
.splide__arrow:focus-visible {
	outline: 3px solid rgba(180, 233, 0, 0.8);
	outline-offset: 3px;
	z-index: 1;
	transition: none;
}
.splide__pagination {
	font-size: 0;
}
.splide__pagination__page:focus-visible {
	outline: 3px solid rgba(180, 233, 0, 0.8);
	outline-offset: 3px;
	z-index: 1;
	transition: none;
}
.splide__slide:focus-visible {
	outline: 3px solid rgba(180, 233, 0, 0.8);
	outline-offset: 3px;
	z-index: 1;
	transition: none;
}
.splide-wrapper {
	position: relative;
}
.splide__arrow>svg {
	display: none;
}
.mv01 .l-inner {
	padding-bottom: 0;
}
.mv01 .splide-fade .splide__slide {
	pointer-events: none;
}
.mv01 .splide__track--fade .splide__slide.is-active {
	pointer-events: auto;
}
.mv01 .splide__pagination {
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	left: 2.0rem;
	height: max-content;
	margin: auto;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 1200px) {
	.mv01 .splide__pagination {
		left: 1.0rem;
	}
}
.mv01 .splide__pagination__page {
	display: block;
	width: 4px;
	height: 2.5rem;
	cursor: pointer;
	transition: 0.8s var(--easing);
	background-color: rgba(255, 255, 255, 0.4);
	border:0;
	padding:0;
}
.mv01 .splide__pagination>li:not(:first-child) {
	margin-top: 0.8rem;
}
.mv01 .splide__pagination__page.is-active {
	background-color: #b4e900;
}
/*.mv01 .slide-media {
	height: 800px;
}*/
.mv01 .slide-media img {
	transition: 7s 1s ease-out;
}
.mv01 .slide-title {
	font-size: 4rem;
	font-weight: normal;
	line-height: 1.6;
	position: absolute;
	right: 8rem;
	bottom: 15%;
	margin-left: 16rem;
	text-align: right;
	color: #fff;
}
.mv01 .splide__slide[class*=-active] .slide-media img {
	transition-delay: 0s;
	transform: scale(1.05);
}
.mv01 .splide__slide[class*=-active] .slide-title {
	animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
@keyframes mv01-fadeIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
		filter: blur(300px);
	}
	100% {
		transform: scale(1);
		opacity: 1;
		filter: blur(0);
	}
}


/*------- キャッチコピー -------*/
.slide{
	position:relative;
}
.mvTxt,.mvH2{
	position:absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:calc(100% - 30px);
	z-index:1;
}
.mvTxt h2,.mvH2 h2{
	font-size:7vw;
}
.mvH2 h2{
	text-shadow: 3px 3px 4px #333;
}
@media only screen and (min-width: 768px) {
	.mvTxt h2,.mvH2 h2{
		font-size:50px;
	}
}

/*---------文字をスライド同期---------*/
/*スライド01*/
.splide__list .splide__slide:nth-child(1) h2.mvH2_01{
	opacity: 0;
	animation-name:mvH2_01;
	animation-delay: 3.5s;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvH2_01 {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}
.splide__list .splide__slide:nth-child(2) h2.mvH2_02{
	opacity: 0;
	animation-name:mvH2_02;
	animation-delay: 7.5s;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvH2_02 {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}
.splide__list .splide__slide:nth-child(3) h2.mvH2_01{
	opacity: 0;
	animation-name:mvH2_03;
	animation-delay: 14.5s;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvH2_03 {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}
.splide__list .splide__slide:nth-child(3) h2.mvH2_02{
	opacity: 0;
	animation-name:mvH2_04;
	animation-delay: 14.5s;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvH2_04 {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}


/*文字だけ時間差表示*/
.mvTxt01{
	opacity: 0;
	animation-name: mvTxt01Fade;
	animation-delay: 4s;
	animation-duration: 0.5s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvTxt01Fade {
  0% {
     opacity: 0;
     transform: translateY(0);
  }
  100% {
     opacity: 1;
     transform: translateY(0px);
  }
}
.mvTxt02{
	opacity: 0;
	animation-name: mvTxt02Fade;
	animation-delay: 7s;
	animation-duration: 0.5s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvTxt02Fade {
  0% {
     opacity: 0;
     transform: translateY(0);
  }
  100% {
     opacity: 1;
     transform: translateY(0px);
  }
}
.mvTxtFadeout{
	opacity: 1;
	animation-name: mvTxtFadeout;
	animation-delay: 20s;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes mvTxtFadeout {
  0% {
     opacity: 1;
     transform: translateY(0);
  }
  100% {
     opacity: 0;
     transform: translateY(0px);
  }
}


/*------- 動くスクロールボタン -------*/
/* スクロールダウンの位置 */
.scroll {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 15%;
	writing-mode: vertical-rl;
}
/* 線のアニメーション部分 */
.scroll::before {
	animation: scroll 2s infinite;
	background-color: #fff;
	bottom: -115px;
	content: "";
	height: 100px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
}

/* ----------------------------------------------------------------------
 signage
---------------------------------------------------------------------- */
.signage{
	background-color:transparent;
	height:280px;
}
.signage-content{
	-webkit-animation: fadeIn 0.5s ease 1.0s;
	-moz-animation: fadeIn 0.5s ease 1.0s;
	-ms-animation: fadeIn 0.5s ease 1.0s;
	-o-animation: fadeIn 0.5s ease 1.0s;
	animation: fadeIn 0.5s ease 1.0s;
	animation-fill-mode: both;
	text-align:left;
}
.signageTxt{
	margin-left: auto;
    margin-right: auto;
}
.signageTxt p{
	font-size:80px;
	line-height:1em;
}

@media only screen and (max-width: 1200px) {
	.signageTxt p{
		font-size:50px;
	}
}
@media only screen and (max-width: 767px) {
	.signage{
		height:200px;
	}
	.signageTxt p{
		font-size:40px;
	}
}




/* ----------------------------------------------------------------------
 パンくずリスト
---------------------------------------------------------------------- */
.breadcrumb-wrapper{
	position:relative;
	background: rgba(0, 0, 0, 0.7);
}
.breadcrumbInner{
	max-width:1920px;
	width:calc(100% - 30px) !important;
}
.breadcrumb li span{
	letter-spacing:0.1em;
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	font-weight:bold;
}
.signageTxt{
	width:calc(100% - 30px);
	max-width:1920px;
}

/* ----------------------------------------------------------------------
 共通
---------------------------------------------------------------------- */
/*全体*/
.contentWrap{
	margin-top:100px;
}
.contentBox{
	margin-bottom:10%;
}
@media only screen and (max-width: 767px) {
	.contentWrap{
		margin-top:80px;
	}
	.contentBox{
		margin-bottom:15%;
	}
}



/* ----------------------------------------------------------------------
 トップページ
---------------------------------------------------------------------- */



/* ----------------------------------------------------------------------
 事業内容
---------------------------------------------------------------------- */
.worksInner{
	width:calc(100% - 30px);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.worksBox:nth-child(even){
	flex-direction:row-reverse;
}
.worksImg{
	width:35%;
}
.worksTxt{
	width:60%;
}
.worksNo{
	font-size:60px;
	transform: skew(-10deg);
	line-height:1em;
}
.worksTxt ul li{
	padding-bottom:15px;
	margin-bottom:15px;
	border-bottom:1px #fff dashed;
	padding-left:0.8em;
	text-indent:-0.8em;
}
.worksTxt ul li::before{
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 0.3em;
    color: #968746;
}

@media only screen and (max-width: 767px) {
	.worksInner{
		width: 100%;
	}
	.worksBox{
		display:block;
	}
	.worksImg{
		width:100%;
	}
	.worksTxt{
		width:calc(100% - 30px);
		margin: 2em auto 0;
	}
	.worksNo{
		font-size:45px;
	}
}

.worksBoxAdd{
	padding:50px 15px 0;
	border-top:1px #fff solid;
	text-align:center;
	box-sizing:border-box;
}
.worksBoxAdd ul{
	display:inline-block;
}
.worksBoxAdd ul li{
	text-align:left;
}
.worksBoxAdd ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px #666 solid;
    padding-left: 0.8em;
    text-indent: -0.8em;
}
.worksBoxAdd ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f192";
    margin-right: 0.3em;
    color: #968746;
}

/* ----------------------------------------------------------------------
 会社概要
---------------------------------------------------------------------- */
table.companyTb{
	width:100%;
}

table.companyTb th,
table.companyTb td{
	padding:25px 20px;
	vertical-align:middle;
	box-sizing:border-box;
	line-height:2em;
	font-size:14px;
	font-weight:bold;
}
table.companyTb th{
	border-bottom:3px #968746 solid;
}
table.companyTb td{
	border-bottom:3px #fff solid;
}
@media only screen and (max-width: 767px) {
	table.companyTb,table.companyTb tbody,table.companyTb tr,
	table.companyTb th,table.companyTb td{
		display:block;
		width:100%;
		text-align:left;
	}
	table.companyTb th{
		border-bottom:1px #968746 dashed;
	}
}

/* ----------------------------------------------------------------------
 求人案内
---------------------------------------------------------------------- */
.recruitImg{
	width:100%;
	height:400px;
	position:relative;
}
.recruitImg img{
	object-fit:cover;
	width:100%;
	height:100%;
	border-radius:15px;
}
.recruitImg .recruitTit{
	position:absolute;
	bottom:0;
	left:0;
	background:#000;
	border-radius:0 15px 0 0;
	width:580px;
	padding:15px;
	border-top:3px #968746 solid;
	border-right:3px #968746 solid;
	box-sizing:border-box;
}
.recruitImg .recruitTit h3{
	border-left:10px #968746 solid;
	padding-left:15px;
}
@media only screen and (max-width: 767px) {
	.recruitImg .recruitTit{
		width:300px;
		padding:15px 10px;
	}
	.recruitImg .recruitTit h3{
		border-left:5px #968746 solid;
		padding-left:10px;
	}
}
@media only screen and (max-width: 767px) {
	.recruitImg{
		height:300px;
	}
}

.recruitTxt{
	background:#333;
	border:3px #968746 solid;
	border-radius:15px;
	padding:20px;
	box-sizing:border-box;
}
.recruitTxt02{
	width:calc((100% - 30px) / 2);
}
.recruitTxt table{
	text-align:left;
}
.recruitTxt table tr{
	display:block;
	width:100%;
	border-bottom:1px #fff dashed;
	padding-bottom:10px;
	margin-bottom:10px;
}
.recruitTxt table tr:last-child{
	margin-bottom:0;
}
.recruitTxt table th{
	width:5em;
}
@media only screen and (max-width: 767px) {
	.recruitTxt02{
		width:100%;
		margin-bottom:40px;
	}
	.recruitTxt02:last-child{
		margin-bottom:0;
	}
}
.recruitBox:nth-child(3){
	padding-bottom:80px;
	border-bottom:1px #fff solid;
}

/* ----------------------------------------------------------------------
 お問い合わせ
---------------------------------------------------------------------- */
.contact .wpcf7{
	background:none;
	border:none;
	margin:0;
	font-size:18px;
}
.contact .wpcf7 form{
	margin:0;
}
.contactBox{
	border-bottom:1px #fff solid;
}
.contact.wpcf7 input[type=text]{
	width:100%;
}
.wpcf7 input[type=text],.wpcf7 input[type=email],.wpcf7 select,.wpcf7 textarea,.wpcf7 input[type=text]:focus,.wpcf7 input[type=email]:focus,.wpcf7 textarea:focus{
	-webkit-appearance: none;
	outline: none;
	text-shadow:none;
	-webkit-box-shadow:none;
	border:none;
	color:#fff;
}
.wpcf7 input, .wpcf7 textarea{
	padding:20px 10px;
	background:transparent;
}

.wpcf7 input.wpcf7-submit{
	background:#968746;
	color:#fff;
	line-height:1em;
	height:70px;
	border-radius:15px;
	font-size:20px;
	font-weight:bold;
}
.wpcf7 input.wpcf7-submit:hover{
	background:#ccc;
}

h3.hissu::after{
	content:"必須";
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	font-weight:bold;
	color:#fff;
	background:#968746;
	font-size:16px;
	font-weight:bold;
	padding:5px 10px;
	border-radius:5px;
	position:relative;
	bottom:5px;
	margin-left:0.5em;
}
p.contactTitEn{
	font-size:16px;
	letter-spacing:0.1em;
}
input::placeholder,
textarea::placeholder{
	font-size: 16px;
}

.direct{
	border:3px #968746 solid;
	border-radius:15px;
	padding:30px 20px;
	box-sizing:border-box;
}
.direct a{
	display:inline-block;
	font-size:25px;
	color:#968746 !important;
	letter-spacing:0.1em;
}
.direct a::before{
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	font-size:20px;
	margin-right:0.3em;
}
.direct a.directTel::before{
	content: "\f095";
}
.direct a.directMail::before{
	content: "\f0e0";
}
@media (max-width: 750px) {
	.direct a.directTel[href*="tel:"]{
		color:#968746;
	}
	.direct a{
		font-size:23px;
	}
	.direct a::before{
		font-size:18px;
	}
}

/* ----------------------------------------------------------------------
 プライバシーポリシー
---------------------------------------------------------------------- */
.privacyBox h3{
	position:relative;
	padding-bottom:25px;
	box-sizing:border-box;
	margin-bottom:20px;
	padding-left: 0.9em;
	text-indent: -0.9em;
}
.privacyBox h3::after{
	content:"";
	height:3px;
	background: #968746;
	background: linear-gradient(90deg,rgba(150, 135, 70, 1) 0%, rgba(77, 77, 77, 1) 100%);
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
}
.privacyBox ul{
	list-style:disc;
	padding-left:1.3em;
}

/* ----------------------------------------------------------------------
 NEWS
---------------------------------------------------------------------- */
.article04{
	background:none;
}
.article04-news{
	position: relative;
}
.article04-news:after {
	position: absolute;
	content: " ";
	background: #968746;
	background: linear-gradient(90deg,rgba(150, 135, 70, 1) 0%, rgba(255, 255, 255, 1) 100%);
	bottom: -3px;
	width: 100%;
	height:3px;
}
.article04-title{
	color:#fff;
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	font-size:20px;
}
a.article04-inner:hover .article04-title{
	color:#ccc;
}
.post-title,
.article07-title{
	color:#fff;
}
.article04-content-news{
	width:100%;
	padding: 3.47826% 0;
}
.post-content p{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

@media only screen and (max-width: 991px) {
    .article04-text {
        display: block;
    }
}


/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
.footer{
	margin-top:0;
}
.footer-bar01{
	border-top:1px #fff solid;
}
.footSitemap img.imgCenter{
	width:100px;
}
ul.footSitemapLink{
	list-style:none;
	text-align:center;
}
ul.footSitemapLink li{
	display:inline-block;
	padding:0 15px;
}
ul.footSitemapLink li a{
	color:#fff;
	transition : all 0.5s ease 0s;
	letter-spacing:0.1em;
	line-height:2.5em;
}
ul.footSitemapLink li a:hover{
	color:#999;
}

/* ----------------------------------------------------------------------
 reCAPTCHA
---------------------------------------------------------------------- */
.grecaptcha-badge { visibility: hidden; }