@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}


/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
} /* smooth Scroll css */
body {
  margin: 0;
  padding: 0;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.03rem;
  line-height: 1.625;
  color: #000000;
}

* {
  box-sizing: border-box;
}

/* textsize */
.txt-large { font-size: 1.25rem; }
.txt-small { font-size: 0.8rem; }
.txt-price { font-family: fagun, sans-serif; font-size: 1.68rem; line-height: 1; }

.pc-none { display: none; }
.sp-none { display: block; }

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



/* layout */
#wrapper {
	overflow: hidden;
	background: #4605FA url('') center top / 100% auto no-repeat;
}
@media screen and (max-width: 767px) {
	#wrapper { background: #4605FA url('') center top / 100% auto no-repeat; }
}

/* title */
#sec-title {
	width: 75%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 0;
	color: #fff;
}
#sec-title .sec-logo {
	width: 50%;
	margin: 0 auto 40px auto;
}
#sec-title .sec-logo img {
	width: 100%;
	height: auto;
}
#sec-title .sec-body h1 {
	font-size: 2rem;
	text-align: center;
	font-weight: 700;
}
#sec-title .sec-body p {
	text-align: center;
}
#sec-title .sec-body p a {
	color: #FFF;
	text-decoration: underline;
}
#sec-title .sec-body p a:hover {
	color: #DAFF00;
}

@media screen and (max-width: 767px) {
	#sec-title { padding: 80px 0 50px 0; }
	#sec-title .sec-logo { width: 80%; }
	#sec-title .sec-body h1 { font-size: 1.35rem; }
}


/* step */
#sec-step {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 0;
}
#sec-step ul.step {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
#sec-step ul.step li,
#sec-step ul.step li.mark {
	position: relative;
	width: 31%;
	padding: 30px;
	border-radius: 10px;
	background-color: #FFF;
	box-sizing: border-box;
}
#sec-step ul.step li.mark::after {
	content: url('../img/exhibit/step-mark.png');
	position: absolute;
    top: 50%;
    right: -30px;
    margin: auto;
	transform: translate(-50%, -50%);
    -webkit-transform: translateY(-50%, -50%);
    -ms-transform: translateY(-50%, -50%);
}

@media screen and (max-width: 767px) {
	#sec-step { padding: 0; }
	#sec-step ul.step { display: block; }
	#sec-step ul.step li,
	#sec-step ul.step li.mark { width: 100%; margin-bottom: 40px; }
	#sec-step ul.step li.mark::after {
		content: url('../img/exhibit/step-mark_sp.png');
		position: absolute;
	    bottom: 0px;
	    right: 50%;
	    margin: auto;
		transform: translate(50%, 100%);
	    -webkit-transform: translateY(-50%, -50%);
	    -ms-transform: translateY(-50%, -50%);
	}
}

#sec-step ul.step li h1 {
	margin: 0 0 10px 0;
	font-weight: 700;
	text-align: center;
	color: #0019B3;
	font-size: 1.25rem;
	line-height: 1.5;
}
#sec-step ul.step li h2 {
	margin-bottom: 5px;
	font-family: fagun, sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 22px;
	line-height: 1;
	color: #FF4776;
}
#sec-step ul.step li p {
	font-size: 0.85rem;
	color: #484848;
	line-height: 1.5;
}
#sec-step .sec-icon {
	width: 70px;
	margin: 0 auto 20px auto;
}
#sec-step .sec-icon img {
	width: 100%;
	height: auto;
}

#sec-step .btn-link a {
	display: block;
	position: relative;
	margin: 15px 0 0;
	padding: 11px;
	text-align: center;
	color: #0000F4;
	text-decoration: none;
	border-radius: 40px;
	font-weight: 700;
	border: 2px solid #0000F4;
	background: #fff url('../img/button.svg') right 10px center no-repeat;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
#sec-step .btn-link a:hover {
	background: #DAFF00 url('../img/button.svg') right 10px center no-repeat;
	transform: translate(4px, 4px);
}



/* description */
#sec-desc {
	width: 80%;
	max-width: 1000px;
	margin: 30px auto 0 auto;
	padding: 0 0 80px 0;
}

/* ul */
#sec-desc ul.terms-first {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	border-top: 1px solid #4a6ff6;
}
#sec-desc ul.terms {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
#sec-desc ul.terms-first > li,
#sec-desc ul.terms > li {
	color: #FFF;
}
#sec-desc ul.terms-first > li:nth-child(odd),
#sec-desc ul.terms > li:nth-child(odd) {
	width: 15%;
	padding: 25px 0;
	font-weight: 700;
	border-bottom: 1px solid #4a6ff6;
}
#sec-desc ul.terms-first > li:nth-child(even),
#sec-desc ul.terms > li:nth-child(even) {
	width: 85%;
	padding: 25px 0;
	border-bottom: 1px solid #4a6ff6;
}
#sec-desc ul.terms li img.booth {
	width: 70%;
	height: auto;
	margin-top: 25px;
}
#sec-desc ul.terms li a {
	color: #FFF;
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	#sec-desc { padding: 40px 0 80px 0; }
	#sec-desc ul.terms-first,
	#sec-desc ul.terms { display: block; }
	#sec-desc ul.terms-first > li:nth-child(odd),
	#sec-desc ul.terms > li:nth-child(odd) { width: 100%; padding: 25px 0 5px 0; border-bottom: none; }
	#sec-desc ul.terms-first > li:nth-child(even),
	#sec-desc ul.terms > li:nth-child(even) { width: 100%; padding: 5px 0 25px 0; }
	#sec-desc ul.terms li img.booth { width: 100%; }
}

#sec-desc ul.transportation {
	display: flex;
	flex-flow: row wrap;
	margin: 20px 0;
}
#sec-desc ul.transportation li:nth-child(odd) {
	width: 32px;
	padding: 0 0 5px 0;
	border-bottom: none;
}
#sec-desc ul.transportation li:nth-child(even) {
	width: calc(100% - 32px);
	padding: 0 0 5px 0;
}
#sec-desc ul.transportation li img {
	width: 22px;
	height: 22px;
}



/* footer */
#footer {
  padding: 40px 20px 110px 20px;
  text-align: center;
  background: #19228E;
  color: #FFFFFF;
  font-size: 12px;
  position: relative;
  /*z-index: 5;*/
}


/* footer BTN */
#fixed-footer {
	position: fixed;
	bottom: -80px;
	left: 50%;
	width: 100%;
	height: 80px;
	margin: 0 auto;
	text-align: center;
	border-width: 4px 0 0 0;
	border-style: solid;
	border-color: #A4AEC7;
	box-sizing: border-box;
	background: #FFF url('../img/button.svg') center right 20px / 20px 20px no-repeat;
	transition: .5s;
	transform: translateX(-50%);
}
#fixed-footer a {
	display: block;
	width: 100%;
	line-height: 80px;
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
	color: #0019B3;
}
#fixed-footer.is-show {
	bottom: 0;
}
@media screen and (max-width: 767px) {
	#fixed-footer {
		bottom: -70px;
		width: 100%;
		height: 70px;
		border: none;
		border-radius: 0;
	}
	#fixed-footer a {
		line-height: 70px;
	}
}

#sec-desc .terms-sub_list {
	margin: .5em auto .5em 2em;
	font-size: .8em;
	list-style-type: decimal;
}
#sec-desc .terms-sub_list > li + li{
	margin-top: .8em;
}
#sec-desc .terms-sub_list .list-low_alpha{
	list-style-type: lower-alpha;
	margin-left: 1.5em;
}
#sec-desc .terms-sub_list .list-lower_roman	{
	list-style-type: lower-roman;
	margin-left: 1.5em;
}
