

/*===================================================
	1-1. Font (Yahoo UI Library Fonts CSS)
===================================================*/
@font-face {
    font-family: 'Swansea';
    src: url('/fonts/SWANSE__.woff') format('woff'),
         url('/fonts/SWANSEBI.woff') format('woff'),
         url('/fonts/SWANSE_B.woff') format('woff'),
         url('/fonts/SWANSE_I.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
	font-size: 12px;
	*font-size: small;
	*font: x-small;
}
/* 日本語は BIZ UDゴシック */
html {
    font-family: 'BIZ UDゴシック', sans-serif;
}
/* 英語は Swansea に */
:lang(en) {
    font-family: 'Swansea', sans-serif;
}

/* 日本語の部分には明示的に BIZ UDゴシック を適用 */
:lang(ja) {
    font-family: 'BIZ UDゴシック', sans-serif;
}


table {
	font-size: inherit;
}

select, 
input, 
textarea {
	font: 99% arial,helvetica,clean,sans-serif;
}

pre, 
code {
	font: 115% monospace;
	*font-size: 100%;
}



/*===================================================
	1-2. Reset Style
===================================================*/

/*要素の初期マージン・余白の初期化*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
	vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
h,
var { 
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

q:before,
q:after { 
	content: '';
}

abbr,
acronym {
	border: 0;
}

/*===================================================
	1-3. Text Style
===================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-size: 100%;
}

pre {
	padding: 0.5em 10px; 
	border-left: 2px solid #eee;
	width: 95%;
	overflow: scroll;
	color: #3d4263;
	font-family: "Osaka－等幅", monospace;
}

pre[title]::before {
	margin-bottom: 0.4em;
	padding: 0 10px;
	display: block; 
	content: attr(title);
	color: black;
	background-color: #eee;
}

blockquote {
	margin: 1.5em 20px 1.5em 40px;
	padding: 1px; 
	background-color: #eeeeee;
}

blockquote * {
	color: #888888;
}

blockquote[title]::before {
	margin: 2px;
	padding: 0.1em 16px;
	display: block;
	content: attr(title); 
	background-color: #fff; 
}

blockquote[cite]::after {
	padding: 0.1em 20px;
	display: block; 
	content: attr(cite);
	color: #333333;
	text-align: right;
}

cite {
	display: block;
	color: #333333;
	text-align: right;
}

em {
	font-weight: bold;
}

strong {
	color: #FF0000;
}

code {
	font-family:  monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #aaa;
	cursor: help;
}

kbd {
	border: 1px solid #ccc;
	padding: 0 0.3em; 
	background-color: #f5f5f5;
	font-family: monospace;
	text-transform: uppercase;
}

/*===================================================
	1-4. Hypertext Style
===================================================*/

/*Win Firefox用リンク領域点線非表示*/
:focus {
	moz-outline-style: none;
}

/*Mac Firefox用リンク領域点線非表示*/

/*リンク要素の初期カラー*/
#dialog .closeBt a:link {
	color: #FFF!important;
	color: inherit;
}

#dialog .closeBt a:hover {
	color: #FFF!important;
	color: inherit;
}

#dialog .closeBt a:visited {
	color: #FFF!important;
	color: inherit;
}


#wrapper a:hover img{
	  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/*===================================================
	1-5. List Style
===================================================*/

ul,
ol,
dl {
	margin:0;
	list-style-position: outside;
}

li,
dt,
dd {
	font-size: 100%;
}

dt {
	font-weight: normal;
}

dd {
	margin:0;
}

li li,
li p,
li pre,
li dt,
li dd,
dd li,
dd p,
dd pre,
dd dt,
dd dd {
	font-size: 100%;
}

li ul,
li ol,
li dl,
li p,
dd ul,
dd ol,
dd dl,
dd p {
	margin: 0;
}


/*===================================================
	1-7. Table Style
===================================================*/
/*テーブルの初期スタイル*/
table {
	margin:0;
	border: 1px solid #CFCFCF;/*構築サイトに応じて変更*/
}

th,
td {
	padding: 3px;/*構築サイトに応じて変更*/
	border: 1px solid #CFCFCF;
}

th {
	background: #DFDFDF;/*構築サイトに応じて変更*/
}

/*===================================================
					共通CSS
===================================================*/
.header__nav__main li a{
	color: 
}

#warpper {
	width: 100%;
	padding-bottom: 15%;
	background-color: #000000;
	color: #FFFFFF;
	font-size: 14px;
}
.mainImg_pc {
	display: block;
	width: 80%;
	margin: 0 auto 5%;
	padding-top: 7%;
}
.mainImg_pc video {
	width: 100%;
}

.mainImg_pc img {
	display: block;
}

.mainImg_sp {
	display: none;
}
.load-fade {
	 opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}
@keyframes slidein {
    0% {
        opacity: 0;
        transform: translate(-50%, -70%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/*===================================================
					titleBox
===================================================*/
.titleBox {
	text-align: center;
	margin-bottom: 3%;
}
.titleBox .bigtitle {
	font-size: 32px;
	margin-bottom: 1%;
}
.titleBox .bigTxt {
	font-size: 15px;
}

.bigTxt2 {
	font-size: 14px;
	width: 46%;
	margin: 0 auto;
	text-align: left;
}

.space {
	margin-bottom: 3%;
}


/*===================================================
					videoBox
===================================================*/
.ImgBox {
	position: relative;
	margin-bottom: 5%;
}
.bg-video {
	width: 100%;
}
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
.nav_menu {
}
.nav_menu .nav_container {
	display: flex;
	justify-content: space-between;
}
.nav_menu .nav_item01 {
	position: absolute;
	top: 50%;
	left: 15%;
	font-size: 50px;
	font-weight: 600;
	font-family: Arial, Helvetica, "sans-serif";
}


/*about文字装飾*/
.overlay-text2 {
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 0.2em;
    display: flex;
}

/* アニメーション前の初期状態 */
.letter {
    opacity: 0;
    transform: translateY(20px);
}

/* .active が追加されたときにアニメーション発火 */
.overlay-text2.active .letter {
    animation: fadeInUp 0.5s ease-out forwards;
}
/* 各文字に時間差でアニメーションを適用 */
.overlay-text2.active .letter:nth-child(1) { animation-delay: 0.1s; }
.overlay-text2.active .letter:nth-child(2) { animation-delay: 0.2s; }
.overlay-text2.active .letter:nth-child(3) { animation-delay: 0.3s; }
.overlay-text2.active .letter:nth-child(4) { animation-delay: 0.4s; }
.overlay-text2.active .letter:nth-child(5) { animation-delay: 0.5s; }
.overlay-text2.active .letter:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*===================================================
					seriesBox
===================================================*/
.seriesBox {
	margin-bottom: 15%;
	width: 70%;
	margin: 0 auto;
}
.mainImg {
	width: 80%;
	margin-left: 10%;
	position: relative;
}
.mainTitle {
	position: absolute;
	top: 10%;
	left: -5%;
	font-size: 40px;
}
.mainTitle_sp {
	display: none;
}
.viewmore {
	text-align: center;
	margin-top: 5%;
	font-size: 28px;
	border: 1px solid #FFFFFF;
	width: 20%;
	margin-left: 40%;
	padding: 1% 0;
	color: #FFFFFF;
}
.viewmore a {
	color: #FFFFFF;
	text-decoration: none;
}
.viewmore:hover {
	background-color: #7A7A7A;
}
/*===================================================
					itemBox
===================================================*/
.mainTitle2 {
	text-align: center;
	font-size: 40px;
	margin-bottom: 5%;
}
.itemImg {
	margin-bottom: 10%;
}

.itemImg img {
	width: 100%;
}

.sp_backBox {
	display: none;
}
.linkBtn a {
	color: #FFFFFF;
}
.linkBtn a:hover {
	color: #7A7A7A;
}
/*===================================================
					backBox
===================================================*/
/*左文字*/
.backBox {
	width: 84%;
	margin-left: 8%;
	margin-bottom: 15%;
}
.back_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.back_container .back_item01 {
	padding-right: 10%;
}
.back_container .back_item01 img {
	width: 80%;
}
.back_container .back_item01 .backTitle {
	font-size: 50px;
	margin-bottom: 5%;
}

.backTitle2 {
	font-weight: 700;
	margin-bottom: 2%;
	font-size: 16px;
}

.back_container .back_item01 .backTxt {
	margin-bottom: 3%;
	font-size: 14px;
	width: 600px;
}
.back_container .back_item02 {
	padding-left: 6%;
}

.back_container .back_item02 img {
	width: 100%;
}
/*右文字*/
.back_container .back_item02 img {
	width: 90%;
}
.back_container .back_item02 .backTitle {
	font-size: 50px;
	margin-bottom: 5%;
}

.back_container .back_item02 .backTxt {
	margin-bottom: 3%;
	font-size: 14px;
}

/*===================================================
					gallBox
===================================================*/
/*PC左寄せ*/
.gallBox {
	width: 90%;
	margin-left: 5%;
	margin-bottom: 10%;
}
.gall_container {
	display: flex;
	width: 90%;
}
.gall_container .gall_item01 {
	padding: 1%;
}

/*PC右寄せ*/
.gall_container2 {
	display: flex;
	width: 70%;
	margin-left: 10%;
}
.gall_container2 .gall_item01 {
	padding: 1%;
}

/*PC左寄せ　2枚組*/
.gall_container3 {
	display: flex;
	width: 60%;
}
.gall_container3 .gall_item01 {
	padding: 1%;
}
/*PC右寄せ　2枚組*/
.gall_container4 {
	display: flex;
	width: 60%;
	margin-left: 40%;
}
.gall_container4 .gall_item01 {
	padding: 1%;
}

.pc_txt {
	display: none;
}
/*SP-slick*/
@media screen and (min-width: 981px) { /* PC (幅 981px 以上) では非表示 */
    .custom-slider {
        display: none !important;
    }
}

/*===================================================
					noveltyBox
===================================================*/
.noveltyBox {
	background-color: #c7c7c7;
	padding: 10% 0;
}
.titleBox2 {
	width: 80%;
	margin-left: 10%;
	margin-bottom: 5%;
}
.titleBox2 .noveTitle {
	font-size: 60px;
}
.titleBox2 .novesubTitle {
	font-size: 22px;
}
.noveImg_pc {
	display: block;
	width: 60%;
	margin-left: 20%;
}
.noveImg_sp {
	display: none;
}
/*===================================================
					linkBox
===================================================*/
.linkBox {
	margin-bottom: 5%;
	background-color: #FFFFFF;
	padding: 10% 0;
	color: #555555;
}
.link_container_pc {
	width: 80%;
	margin-left: 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10%;
}
.link_container_pc .link_item01 {
	width: 40%;
}
.link_container_pc .link_item01 .name {
	border: 1px solid #555555;
	padding: 3% 0;
	width: 40%;
	margin-left: 30%;
	text-align: center;
}
.link_container_pc .link_item01 .name a {
	color: #000000;
}
.link_container_pc .link_item01 .name:hover {
	background-color: #ABABAB;
}
.link_container_pc .link_item02 {
	width: 60%;
}
.linkSpbox {
	display: none;
}

/*画像出し換え*/
.pcImg {
	display: block;
	width: 100%;
	margin: 0 auto 10%;
}



.pcImg2 {
	display: block;
	width: 60%;
	margin: 0 auto 10%;
}

.spImg {
	display: none;
}

.itemTxt {
	margin-top: 2%;
	text-align: center;
}

.spBr {
	display: none;
}

/*===================================================
			fadeIn
===================================================*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}


/*===================================================
			戻るボタン　CSS
===================================================*/

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #000;
    border: solid 1px #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}