@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

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%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	font-family: "游明朝", YuMincho, "mauritius", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-feature-settings: "palt";
	font-size: 62.5%;

	background: linear-gradient(45deg, #e4f1e8, #F9F9F9, #ccddd2);
	background-size: 200% 200%;
	animation: bggradient 20s ease infinite;
	border-bottom: 1px solid #e6e6e6;
}

body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

footer {
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
	background-color: #fff;
}

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 {
	width: 100%;
}

a {
	text-decoration: none;
	color: #232323;
}

/*リセット終了*/




.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}

.loading.is-active {
	opacity: 0;
	visibility: hidden;
}

.loading-animation {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #20a3ea;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}

.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}




/* フェードイン */
/*アニメーション要素のスタイル*/
.animation {
	opacity: 0;
	visibility: hidden;
	transition: 1.5s;
	transition-delay: 0.1s;
	transform: translateY(50px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* OPENING */
.logo_fadein {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}

.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 500px;
}

/* スライドショー */
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/*
  IE11対策
  ----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
	display: -ms-grid;
	overflow: hidden;
}

/*----------------------------*/

.d-demo__wrap {
	display: flex;
	overflow: hidden;
}

.d-demo__list {
	display: flex;
	list-style: none;
}

.d-demo__list--left {
	animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
	width: calc(100vw / 4);
}

.d-demo__item>img {
	width: 100%;
}


/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
	position: absolute;
	position: fixed;
	right: 30px;
	top: 20px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 300;
}

.hamburger__line {
	position: absolute;
	width: 40px;
	height: 2px;
	right: 0;
	background-color: #232323;
	transition: all 0.5s;
}

.hamburger__line--1 {
	top: 1px;
}

.hamburger__line--2 {
	top: 15px;
}

.hamburger__line--3 {
	top: 30px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
	transform: rotate(-45deg);
	top: 11px;
	background-color: #fff;
}

.open .hamburger__line--2 {
	opacity: 0;
	background-color: #fff;
}

.open .hamburger__line--3 {
	transform: rotate(45deg);
	top: 11px;
	background-color: #fff;
}

.nav-layoutDl {
	font-size: 16px;
	font-weight: 100;
	letter-spacing: 0.05em;
}

.brandLi {
	font-size: 16px;
	padding: 0 0 20px;
}

.pickup__brand {
	padding: 10px 0 20px;
}

.pickup__brand:last-child {
	padding: 10px 0 50px;
}

.pickup__brand a {
	font-size: 16px;
	color: #FFF;
	font-weight: 100;
	position: relative;
	letter-spacing: 0.1em;
	padding: 0 40px 0 10px;
	display: block;
}

.pickup__brand a:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.pickup__brand a::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 15px;
}

.pickup__brand a:hover::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 10px;
	opacity: 0.9;
	transition: 0.5s;
}

/* ページトップ */
.pagetop {
	height: 40px;
	width: 40px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}

.pagetop__arrow {
	display: block;
	height: 20px;
	width: 20px;
	border-top: 2px solid #232323;
	border-right: 2px solid #232323;
	transform: translateY(20%) rotate(-45deg);
}

.pickup__brand a span {
	font-size: 10px;
	color: #FFF;
	font-weight: 100;
	padding: 0 0 0 1em;
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
	position: fixed;
	right: -100%;
	/*ハンバーガーがクリックされる前はWindow右側に隠す*/
	top: 0;
	width: 30%;
	/* 出てくるスライドメニューの幅 */
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.9);
	transition: all 0.75s;
	z-index: 200;
	overflow-y: auto;
	/* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
	right: 0;
	padding: 50px;
	max-width: 450px;
}

.nav-layout {
	position: relative;
	font-weight: 100;
}

.nav-layout figure {
	padding: 0 0 100px;
}

.nav-layout ul {
	color: #FFF;
	position: absolute;
	top: 100px;
	left: 0px;
}

.button__layout {
	margin: 40px auto;
	padding: 0;
	width: 100%;
}

.button__layout a {
	font-size: 14px;
	letter-spacing: 0.1em;
	border: solid 1px #232323;
	background-color: #fff;
	color: #232323;
	padding: 14px 24px;
	position: relative;
	width: 100%;
	display: inline-block;
	font-weight: 500;
}

.button__layout a:hover {
	border: solid 1px #fff;
	background-color: #232323;
	color: #fff;
	opacity: 0.9;
	transition: 0.5s;
}


.button__layout a::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #232323;
	border-right: solid 1px #232323;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 15px;
}

.button__layout a:hover::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #232323;
	border-right: solid 1px #232323;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -4px;
	top: 50%;
	right: 10px;
	opacity: 0.9;
	transition: 0.5s;
}

.button__layout-img {
	background-color: #fff;
}

.button__layout-img a {
	padding: 14px 0;
	width: 100%;
	display: inline-block;
	font-weight: 500;
	padding: 5px 5px 4px 5px;
}

.button__layout-img a:hover {
	opacity: 0.5;
	transition: 0.5s;
}



/* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 5;
	background-color: #232323;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	cursor: pointer;
	z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
	opacity: 0.3;
	visibility: visible;
}


/*========= レイアウトのためのCSS ===============*/

body {
	background: #f6f6f6;
}

h2,
p {
	text-align: center;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: #333;
}

a:hover,
a:active {
	text-decoration: none;
}

.fair {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 100;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.fair a {
	display: block;
	width: 250px;
	padding: 5px 5px 4px 5px;
}

.fair a span {
	font-size: 12px;
	letter-spacing: 0.1em;
}

.fair a:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.fair-nav {
	position: unset;
	z-index: 100;
}

/* 
.fair-nav a {
	font-size: 14px;
	letter-spacing: 0.1em;
	border: solid 1px #fff;
	background-color: #232323;
	color: #fff;
	padding: 14px 50px;
	position: relative;
}

.fair-nav a:hover {
	border: solid 1px #232323;
	background-color: #fff;
	color: #232323;
	opacity: 0.9;
	transition: 0.5s;
}


.fair-nav a::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 15px;
}

.fair-nav a:hover::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #232323;
	border-right: solid 1px #232323;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -4px;
	top: 50%;
	right: 10px;
	opacity: 0.9;
	transition: 0.5s;
} */


.heroImg {
	position: relative;
}

.heroImg ul {
	width: 100%;
	display: flex;
}

.heroImg-li1 {
	background-image: url(../img/heroImg-01.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 35vw;
	height: 100vh;
	display: block;
}

.heroImg-li2 {
	background-image: url(../img/heroImg-02.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 35vw;
	height: 100vh;
	display: block;
}

.heroImg-li3 {
	background-image: url(../img/heroImg-03.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 35vw;
	height: 100vh;
	display: block;
}

.heroImg-li4 {
	background-image: url(../img/heroImg-04.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 35vw;
	height: 100vh;
	display: block;
}


.mainTitle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	color: #fff;

	text-align: center;
	line-height: 1;
}

.mainTitle h1 {
	width: 500px;
	margin: 0 auto;
}


.info {
	width: 100%;
	margin: 0 auto;
	padding: 350px 0;
	background: linear-gradient(45deg, #e4f1e8, #F9F9F9, #ccddd2);
	/*グラデーションを定義*/
	background-size: 200% 200%;
	/*サイズを大きくひきのばす*/
	animation: bggradient 20s ease infinite;
	border-bottom: 1px solid #e6e6e6;
}

@keyframes bggradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.infoTitle {
	color: #232323;
	width: 100%;
	text-align: center;
	padding: 0 0 50px;
	margin: 0 auto;
	display: inline-block;
	position: relative;
}

.infoTitle:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	/*下線の上下位置調整*/
	display: inline-block;
	width: 150px;
	/*下線の幅*/
	height: 1px;
	/*下線の太さ*/
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
	/*位置調整*/
	background-color: #f6f6f6;
	/*下線の色*/
}


.infoTitle figure {
	width: 500px;
	margin: 0 auto;
}


.infoTitle p {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.075em;
	padding: 0 0 1em;
}

.infoTitle h1 {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 0.05em;
	padding: 0 0 0.75em;
	color: #232323;
}

.infoTitle h2 {
	font-size: 12px;
	letter-spacing: 0.05em;
	font-style: italic;
}

.infoTxt {
	padding: 50px 0 0;
	margin: 0 auto;
	max-width: 45em;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	text-align: justify;
}

section {
	width: 100%;
	margin: 0 auto;
	padding: 100px 0 0;
	border-bottom: 1px solid #e6e6e6;
	/* background-color: #fff; */
}

.titleWarp {
	text-align: center;
	line-height: 1.5;
	padding: 100px 0 50px;
	vertical-align: middle;
}


.titleNo {
	font-size: 24px;
	color: #232323;
	padding: 0 0 40px;
}

.titleName {
	font-size: 32px;
	letter-spacing: 0.05em;
	font-weight: 700;
	font-style: normal;
	padding: 0 0 0.25em;
}

.titleSub {
	font-size: 16px;
	font-weight: 700;
	padding: 0 0 2em;
}

.titleSkin {
	font-size: 16px;
	color: #232323;
	letter-spacing: 0.05em;
	font-style: italic;
}

.styleImg {
	max-width: 1200px;
	display: flex;
	margin: 0 auto;
	padding: 0 0 50px;
	justify-content: space-evenly;
	flex-wrap: nowrap;
}

.styleImg figure {
	max-width: 685px;
	padding: 20px;
}

.styleWarp {
	padding: 80px 0 160px;
}

.styleWarp p {
	max-width: 685px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 2em;
	letter-spacing: 0.1em;
	text-align: left;
}

.credit {
	max-width: 685px;
	margin: 0 auto;
	padding: 80px 0 0;
	font-size: 12px;
	line-height: 2em;
	font-weight: 500;
}

.credit li {
	display: flex;
	padding: 0 0 1em;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: .05em;
	font-size: 12px;
	line-height: 1.5;
	color: #333;
}

.creditItem {
	font-weight: 500;
}

.creditCategory {
	display: inline;
	font-weight: 500;
	width: 9em;
}

.credit a {
	margin-left: auto;
	padding: 0.1em 2em;
	border-radius: 2px;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 55px;
	height: 20px;
	color: #fff;
	background-color: #232323;
	letter-spacing: .05em;
	line-height: 1;
	font-size: 12px;
	border: 1px solid #232323;
	-webkit-transition: color .3s ease, background-color .3s ease;
	-o-transition: color .3s ease, background-color .3s ease;
	transition: color .3s ease, background-color .3s ease;
}

.credit a:hover {
	color: #232323;
	background-color: #fff;
	border: 1px solid #232323;
	-webkit-transition: color .3s ease, background-color .3s ease;
	-o-transition: color .3s ease, background-color .3s ease;
	transition: color .3s ease, background-color .3s ease;
}


.itemWarp {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	/* background-color: #fff; */
	border: 1px solid #e6e6e6;

	background-color: #fff;
	padding: 50px;
	border-radius: 10px;


}

.itemBlock {
	max-width: 507px;
	padding: 40px;
}

.itemWarp figure {
	background-color: #fff;
	padding: 50px;
	border-radius: 10px;
}

.itemInfo {
	max-width: 507px;
}

.itemInfo dt {
	font-size: 24px;
	letter-spacing: 0.05em;
	padding: 0 0 0.5em;
	margin: 0 0 1.5em;
	font-weight: 400;
	border-bottom: 1px solid #f6f6f6;
}

.itemInfo dd {
	font-size: 14px;
	line-height: 2em;
	padding: 0 0 2em;
	letter-spacing: 0.05em;
}

.itemInfo dd ul li {
	line-height: 1em;
	padding: 0 0 10px;
}

.itemInfo dd ul li span {
	display: inline-block;
	width: 7em;
	font-weight: 700;
}

.itemInfo__Txt {
	padding: 0 0 20px;
	line-height: 1.5em;
}

.itemInfo__Shop {
	display: inline-block;
	width: 7em;
	font-weight: 700;
}

.itemInfo dd a {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #232323;
	padding: 0 1.5em 0 0;
	position: relative;
}


.itemInfo dd a::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 15px;
}

.itemInfo dd a:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.itemBlock button a {
	font-size: 14px;
	letter-spacing: 0.1em;
	border: solid 1px #fff;
	background-color: #232323;
	color: #fff;
	padding: 8px 50px;
	position: relative;
}

.itemBlock button a:hover {
	border: solid 1px #232323;
	background-color: #fff;
	color: #232323;
	opacity: 0.9;
	transition: 0.5s;
}


.itemBlock button a::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 15px;
}

.itemBlock button a:hover::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #232323;
	border-right: solid 1px #232323;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 10px;
	opacity: 0.9;
	transition: 0.5s;
}


.brandWarp {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 50px 200px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	/* border-bottom: 1px solid #e6e6e6; */
}

.brandWarp figure {
	margin: 0 auto;
}

.brandBlock {
	width: 507px;
	padding: 40px;
}

.brandInfo dt {
	font-size: 24px;
	padding: 0 0 1em;
	letter-spacing: 0.05em;
	line-height: 1em;
}

.brandInfo dt span {
	display: block;
	font-size: 16px;
}

.brandInfo dd {
	font-size: 14px;
	line-height: 2em;
	padding: 0 0 2em;
	letter-spacing: 0.05em;
}

.brandBlock button a {
	font-size: 14px;
	letter-spacing: 0.1em;
	border: solid 1px #fff;
	background-color: #232323;
	color: #fff;
	padding: 8px 50px;
	position: relative;
}

.brandBlock button a:hover {
	border: solid 1px #232323;
	background-color: #fff;
	color: #232323;
	opacity: 0.9;
	transition: 0.5s;
}


.brandBlock button a::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 15px;
}

.brandBlock button a:hover::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px #232323;
	border-right: solid 1px #232323;
	transform: rotate(45deg);
	position: absolute;
	margin-top: -2px;
	top: 50%;
	right: 10px;
	opacity: 0.9;
	transition: 0.5s;
}

#FEATURE {
	background-color: #fff;
}

.Fair__Ttl {
	/* 画像ファイルの指定 */
	/* background-image: url(../img/b01-i.jpg); */

	/* 画像を常に天地左右の中央に配置 */
	background-position: center center;

	/* 画像をタイル状に繰り返し表示しない */
	background-repeat: no-repeat;

	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: fixed;

	/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
	background-size: cover;

	/* 背景画像が読み込まれる前に表示される背景のカラー */
	background-color: #464646;
	background-color: #FFF;

	width: 100%;
	height: auto;

	margin: 100px auto 50px;
	padding: 50px 0;
	backdrop-filter: blur(12px);

}

.Fair__TtlWarp {
	color: #232323;
	width: 100%;
	max-width: 660px;
	margin: 0 auto;
	line-height: 1.5;
	letter-spacing: .05em;
}

.Fair__TtlWarp h3 {
	font-size: 14px;
	font-weight: bold;
}

.Fair__TtlWarp h4 {
	font-size: 20px;
	font-weight: bold;
	padding: 0 0 20px;
}

.Fair__TtlWarp p {
	font-size: 14px;
	width: 90%;
	text-align: justify;
}

.Fair__Info {
	width: 100%;
	max-width: 660px;
	margin: 0 auto;
	padding: 0 0 100px;
	line-height: 1.5;
	letter-spacing: .05em;
}

.Fair__InfoTtl {
	font-size: 14px;
	line-height: 1.5;
	padding: 0 0 50px;
}

.Fair__InfoTtl p {
	padding: 20px 0px 40px;
	margin: 0 auto;
	font-size: 16px;
	text-align: left;
}

.Fair__InfoTtl h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	background-color: #232323;
	color: #fff;
	width: 20%;
	padding: 5px 20px;
	margin: 50px auto 80px;
}

.Fair__InfoTtl h4 {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	padding: 0 0 10px;
}

.Fair__InfoTtl h5 {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	padding: 0 0 80px;
}


.Fair__InfoTxt {
	font-size: 14px;
	line-height: 2;
}

.Fair__InfoTxt dt {
	font-weight: bold;
	padding: 1em 0 0;
	border-top: 1px solid #DCDCDC;
	font-size: 20px;
}

.Fair__InfoTxt dd {
	/* border-bottom: 1px solid #DCDCDC; */
	padding: 0 0 1em;
	font-size: 16px;
}

.Fair__InfoTxtFrex {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin: 50px auto;
}

.Fair__InfoTxtFrex img {
	width: 150px;
}

.Fair__Url {
	width: 100%;
}

.Fair__Url a {
	text-align: center;
	padding: 10px 50px;
	margin: 5px auto;
	border: 1px solid #232323;
	border-radius: 2px;
	/* line-height: 1.75; */
	display: inline-block;
	width: 100%;
	font-size: 16px;
}

.Fair__Url a:hover {
	opacity: 0.8;
	transition: all 0.5s;
	background-color: #232323;
	color: #fff;
}

.Fair__Url .bk {
	text-align: center;
	padding: 10px 50px;
	margin: 5px auto;
	border: 1px solid #232323;
	background-color: #232323;
	color: #fff;
	border-radius: 2px;
	/* line-height: 1.75; */
	display: inline-block;
	width: 100%;
	font-size: 16px;
}

.Fair__Url .bk:hover {
	opacity: 0.5;
	transition: all 0.5s;
}


.Movie__Ttl {
	/* 画像ファイルの指定 */
	background-image: url(../img/Youtube-bk.png);

	/* 画像を常に天地左右の中央に配置 */
	background-position: center center;

	/* 画像をタイル状に繰り返し表示しない */
	background-repeat: no-repeat;

	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: fixed;

	/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
	background-size: cover;

	/* 背景画像が読み込まれる前に表示される背景のカラー */
	background-color: #464646;

	width: 100%;
	height: auto;

	margin: 0 auto;
	padding: 50px 0;
	backdrop-filter: blur(12px);
}

.Movie__TtlWarp {
	color: #fff;
	width: 100%;
	max-width: 660px;
	margin: 0 auto;
	line-height: 1.5;
	letter-spacing: .05em;
}

.Movie__TtlWarp h3 {
	font-size: 14px;
	font-weight: bold;
}

.Movie__TtlWarp h4 {
	font-size: 20px;
	font-weight: bold;
	padding: 0 0 20px;
}

.Movie__TtlWarp p {
	font-size: 14px;
	width: 90%;
	text-align: justify;
}

.Movie__Info {
	width: 100%;
	max-width: 660px;
	margin: 0 auto;
	padding: 0 0 100px;
	line-height: 1.5;
	letter-spacing: .05em;
}

.Movie__InfoTtl {
	font-size: 14px;
}

.Movie__InfoTtl h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	background-color: #232323;
	color: #fff;
	width: 20%;
	padding: 5px 20px;
	margin: 50px auto;
}


.Movie__InfoTtl h4 {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	padding: 0 0 10px;
}

.Movie__InfoTtl div {
	width: 100%;
	padding: 50px 0;
	text-align: center;
}

.Movie__InfoTtl iframe {
	width: 100%;
}

.Movie__Url a {
	text-align: center;
	padding: 10px 50px;
	margin: 5px auto;
	border: 1px solid #232323;
	border-radius: 2px;
	/* line-height: 1.75; */
	display: inline-block;
	width: 100%;
	font-size: 16px;
}

.Movie__Url a:hover {
	opacity: 0.8;
	transition: all 0.5s;
	background-color: #232323;
	color: #fff;
}

.Video__frame {
	width: 100%;
	height: 371px;
}