@charset "UTF-8";

:root {
	--font-base: 1rem;           /* 16px */
	--font-small: 0.875rem;      /* 14px */
	--font-mini: 0.75rem;        /* 12px */
	--font-normal: 1.125rem;     /* 18px */
	--font-medium: 1.1875rem;    /* 19px */
	--font-mm: 1.25rem;          /* 20px */
	--font-large: 1.375rem;      /* 22px */
	--font-sl: 1.5rem;           /* 24px */
	--font-ml: 1.75rem;          /* 28px */
	--font-ll: 1.875rem;         /* 30px */
	--font-xlarge: 2rem;         /* 32px */
	--font-2xl: 2.25rem;         /* 36px */
	--font-3xl: 2.625rem;        /* 42px */

	--color-yellow: #FFF697;
	--color-orange: #F18D00;
/*	--color-beige: #FFF8EE;*/
	--color-beige: #faf7f3;
}

main img {
	width: 100%;
	height: auto;
}

.expo-main {
	text-align: center;
	margin-top: 120px;
}

.expo-main__text {
	font-size: var(--font-large);
	line-height: 2.2;
    letter-spacing: 0.08rem;
}

.sp-none {
	display: block;
}

.expo-main__text span.text-large {
	font-size: var(--font-ll);
}
.expo-main__text span {
	display: inline-block;
}

section {
	margin-top: 120px;
}

h3 {
	text-align: center;
	font-size: var(--font-2xl);
	margin-bottom: 40px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.bg__orange {
	background-color: var(--color-beige);
	padding: 60px 50px;
}

.bg__yellow {
	background-color: #FFFDEC;
	padding: 60px 50px;
}

.expo-first__text {
	text-align: center;
	margin: 0 auto;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.expo-first__text p.expo-first__title {
	display: inline-block;
	font-size: var(--font-ml);
	background: linear-gradient(transparent 60%, var(--color-yellow) 0%);
}

.expo-first__text p.expo-first__sub {
	margin-top: 10px;
}

.expo-first__text p.expo-first__sub span {
	display: inline-block;
}

.expo-gift {
	margin-bottom: 50px;
}

.expo-gift:last-of-type {
	margin-bottom: 0;
}

.expo-2nd__flex .expo-gift {
	margin-bottom: 50px;
}

.expo-2nd h4 {
	text-align: center;
	background: #fff;
	font-size: var(--font-sl);
	margin-bottom: 30px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 500;
	font-style: normal;
	padding-block: 5px;
	letter-spacing: 0.08rem;
}

.expo-2nd h4 img {
	display: inline-block;
    max-width: 42px;
	margin-top: 6px;
}

.expo-2nd h4 img:first-of-type {
	margin-right: 15px;
}

.expo-2nd h4 img:last-of-type {
	margin-left: 15px;
}

.expo-2nd ul {
	display: flex;
	justify-content: space-around;
	gap: 25px;
}

.expo-2nd li {
	width: 25%;
	text-align: center;
	font-size: var(--font-base);
	font-weight: 500;
}

.expo-2nd li span {
	font-size: var(--font-mm);
}

.expo-2nd p {
	letter-spacing: 0;
    line-height: 1.5;
    margin-top: 15px;
	font-weight: 500;
}

.expo-2nd__flex {
	display: flex;
	gap: 40px;
}

.expo-2nd__flex .expo-gift {
	width: 50%;
}

.expo-gift__gp li {
	max-width: 304px;
    width: 100%;
	font-size: var(--font-normal);
}

.expo-gift__2nd li ,
.expo-gift__3rd li {
	max-width: 304px;
    width: 100%;
	font-size: var(--font-normal);
}

.expo-2nd ul.expo-gift__prize {
	justify-content: space-between;
    margin: 0 auto;
}

.expo-gift__prize li {
	font-size: var(--font-normal);
	width: auto;
}

.expo-gift__prize li:first-of-type {
    width: 100%;
	flex-basis: 48%;
}

.expo-gift__prize img {
	max-height: 150px;
	object-fit: contain;
	height: 12vw;
}

.expo-gift__notice {
	font-size: var(--font-small);
	color: #585858;
}

.expo-gift__notice p:nth-of-type(2) {
	margin-top: 5px;
}



/* step */
.expo-section__3rd h3 {
	margin-bottom: 77px;
}

.expo-step {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}

.expo-step__inner {
	background-color: var(--color-beige);
	margin-bottom: 135px;
	border-radius: 10px;
	position: relative;
}

.expo-step__inner:last-of-type {
	margin-bottom: 0px;
}

.expo-step__inner::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 23px solid transparent;
  border-left: 23px solid transparent;
  border-top: 30px solid var(--color-orange);
  border-bottom: 0;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}

.expo-step__inner:last-of-type::after {
	content: none;
}

.expo-step__label {
	font-family: "Roboto Condensed", sans-serif;
	color: var(--color-orange);
	text-align: center;
	font-size: var(--font-large);
	letter-spacing: 0.1rem;
    text-align: center;
    margin: -47px auto 0;
    position: absolute;
    left: 0;
    right: 0;
}

.expo-step__label span {
	font-size: var(--font-3xl);
}

.expo-step__box {
	display: flex;
	padding: 40px;
	gap: 50px;
    align-items: center;
}

.expo-step__img {
	max-width: 230px;
	background: #fff;
	border-radius: 10px;
}

.expo-step__text {
	font-size: var(--font-mm);
}

.expo-step__text02 {
	font-size: var(--font-mm);
	text-align: center;
	padding-top: 40px;
	margin-bottom: 20px;
}

.expo-step__title {
	font-size: var(--font-mm);
}

.expo-step__box02 {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding-bottom: 40px;
}

.expo-step__box02 .expo-step__box {
	flex-direction: column;
	border: 1px solid var(--color-orange);
	border-radius: 10px;
	gap: 15px;
	padding: 20px;
}

.expo-step__box02 .expo-step__text {
	font-size: var(--font-normal);
	text-align: center;
}

.expo-step__text span {
	display: block;
	background: var(--color-yellow);
	text-align: center;
	margin-bottom: 10px;
}

.expo-step__text span:last-of-type {
	margin-bottom: 0px;
}

.expo-step__box02 .expo-step__box:last-of-type .expo-step__text {
	width: 100%;
}

.expo-step__box02 .expo-step__box:last-of-type .expo-step__text p {
	line-height: 1.5;
}

.expo-step__box02 .expo-step__box .expo-step__text a {
	padding: 8px 5px;
	width: 100%;
	display: block;
	color: #fff;
	border-radius: 30px;
	margin-top: 10px;
	background: var(--color-orange);
	box-shadow: 1px 1px 6px 0px rgb(158 158 158 / 40%);
	transition: 0.6s;
}

.expo-step__box02 .expo-step__box .expo-step__text a:hover {
	background-color: #FFF;
	color: #c18e28 !important;
	opacity: 1;
	text-decoration: none;
}

.expo-step__box02 .expo-step__box .expo-step__text a span {
	position: relative;
	display: inline-block;
	padding: 0px 15px;
	color: #fff;
	text-decoration: none;
	outline: none;
}

.expo-step__box02 .expo-step__box .expo-step__text a span::before ,
.expo-step__box02 .expo-step__box .expo-step__text a span::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 30%;
	width: 85%;
	height: 1px;
	background: #fff;
	transition: 0.6s;
}

.expo-step__box02 .expo-step__box .expo-step__text a span::after {
	bottom: 8px;
	left: auto;
	right: -5px;
	width: 8px;
	transform: rotate(40deg);
}

.expo-step__box02 .expo-step__box .expo-step__text a:hover span::before,
.expo-step__box02 .expo-step__box .expo-step__text a:hover span::after {
	background-color: #c18e28;
}

/* list */
.expo-section__4th {
	max-width: 866px;
    margin: 120px auto 0;
	padding: 50px;
	border-radius: 10px;
}

.expo-list {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
}

.expo-list table {
	width: 100%;
}

.expo-list tr {
	border-bottom: 1px solid #DDDDDD;
}

.expo-list tr:last-of-type {
	border-bottom: none;
}

.expo-list th {
	width: 42%;
	max-width: 290px;
	text-align: left;
	font-weight: 500;
	font-size: var(--font-large);
	vertical-align: top;
}

.expo-list th ,
.expo-list td {
	padding-block: 15px;
}

.expo-list tr:first-of-type th, .expo-list tr:first-of-type td {
    padding-top: 0;
}

.expo-list tr:last-of-type th ,
.expo-list tr:last-of-type td {
	padding-bottom: 0;
}

/* theme */
.expo-theme__head {
	text-align: center;
    margin-bottom: 60px;
    line-height: 2.2;
}

.expo-theme__list {
	display: flex;
	flex-wrap: wrap;
    gap: 30px;
}

.expo-theme__list li {
	flex: 0 0 calc(50% - 15px);
	background: #fff;
	padding: 30px;
    border-radius: 10px;
}

.expo-theme__item {
	position: relative;
	text-align: center;
}

.expo-theme__item img {
	width: 80%;
    height: auto;
}

.expo-theme__item span {
	font-size: var(--font-ml);
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	line-height: 1.5;
}

.expo-theme__body {
	text-align: center;
    margin: 60px auto 0;
}

.expo-theme__body p:first-of-type {
	background: linear-gradient(transparent 60%, var(--color-yellow) 0%);
    display: inline-block;
    font-size: var(--font-sl);
    margin-bottom: 30px;
}

.expo-theme__body span {
	display: inline-block;
}


/* notice */
.expo-notice {
	background: #fff;
	border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.expo-notice > ul > li {
	margin-bottom: 20px;
}

.expo-notice > ul > li ul > li {
	text-indent: -1em;
	margin-left: 1em;
}

.expo-notice__margin {
	margin-top: 20px;
}

.expo-notice > ul > li ul > li.expo-notice__item {
	text-indent: 0;
    margin-left: 0;
}


/* schedule */
.expo-section__6th {
	max-width: 866px;
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px;
}

.expo-schedule {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	max-width: 866px;
	border-radius: 10px;
}

.expo-schedule table {
	width: 100%;
}

.expo-schedule tr {
	border-bottom: 1px solid #DDDDDD;
}

.expo-schedule tr:last-of-type {
	border: none;
}

.expo-schedule th {
	text-align: left;
	font-size: var(--font-sl);
	color: var(--color-orange);
	padding-block: 20px;
	line-height: 1.5;
	font-family: 'Roboto Condensed' , 'TsukuGoPr5-M','ヒラギノ角ゴProNW3','HiraginoKakuGothicProN','MeiryoUI','MSUIGothic','メイリオ','Meiryo','ＭＳＰゴシック',sans-serif;
}

.expo-schedule th span {
	font-size: var(--font-normal);
}

.expo-schedule td {
	vertical-align: middle;
	padding-block: 20px;
	font-size: var(--font-mm);
}

.expo-schedule tr:first-of-type th ,
.expo-schedule tr:first-of-type td {
	padding-top: 0px;
}

.expo-schedule tr:last-of-type th ,
.expo-schedule tr:last-of-type td {
	padding-bottom: 0px;
}




/* footer */
.expo-bottom__text {
	text-align: center;
    margin-top: 80px;
	font-size: var(--font-sl);
}




/* vote */
.expo-vote__text {
	text-align: center;
	margin: 0 auto;
}

.expo-vote__text.mt10 {
	margin-top: 10px;
}

.expo-vote__text .expo-vote__link {
	max-width: calc(80% - 20vw);
	text-align: center;
	margin: 0 auto;
}

.expo-vote__text .expo-vote__link a {
	padding: 8px 5px;
	width: 100%;
	display: block;
	font-size: var(--font-mm);
	color: #fff;
	border-radius: 30px;
	background: var(--color-orange);
	box-shadow: 1px 1px 6px 0px rgb(158 158 158 / 40%);
	transition: 0.6s;
}

.expo-vote__text .expo-vote__link a:hover {
	background-color: #FFF;
	color: #c18e28 !important;
	opacity: 1;
	text-decoration: none;
}

.expo-vote__text .expo-vote__link a span {
	position: relative;
	display: inline-block;
	padding: 0px 15px;
	color: #fff;
	text-decoration: none;
	outline: none;
}

.expo-vote__text .expo-vote__link a span::before ,
.expo-vote__text .expo-vote__link a span::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 30%;
	width: 85%;
	height: 1px;
	background: #fff;
	transition: 0.6s;
}

.expo-vote__text .expo-vote__link a span::after {
	bottom: 8px;
	left: auto;
	right: -5px;
	width: 8px;
	transform: rotate(40deg);
}

.expo-vote__text .expo-vote__link a:hover span::before,
.expo-vote__text .expo-vote__link a:hover span::after {
	background-color: #c18e28;
}

.expo-vote__sub {
	margin-top: 15px;
}


/* gallery */
.expo-button {
	text-align: center;
	margin: 10px auto 0;
}

.expo-button .expo-button__inner {
	max-width: calc(80% - 20vw);
	text-align: center;
	margin: 0 auto;
}

.expo-button .expo-button__inner a {
	padding: 8px 5px;
	width: 100%;
	display: block;
	font-size: var(--font-mm);
	color: #fff;
	border-radius: 30px;
	background: var(--color-orange);
	box-shadow: 1px 1px 6px 0px rgb(158 158 158 / 40%);
	transition: 0.6s;
}

.expo-button .expo-button__inner a:hover {
	background-color: #FFF;
	color: #c18e28 !important;
	opacity: 1;
	text-decoration: none;
}

.expo-button .expo-button__inner a span {
	position: relative;
	display: inline-block;
	padding: 0px 15px;
	color: #fff;
	text-decoration: none;
	outline: none;
}

.expo-button .expo-button__inner a span::before ,
.expo-button .expo-button__inner a span::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 30%;
	width: 85%;
	height: 1px;
	background: #fff;
	transition: 0.6s;
}

.expo-button .expo-button__inner a span::after {
	bottom: 8px;
	left: auto;
	right: -5px;
	width: 8px;
	transform: rotate(40deg);
}

.expo-button .expo-button__inner a:hover span::before,
.expo-button .expo-button__inner a:hover span::after {
	background-color: #c18e28;
}

.expo-button .expo-button__inner.expo-button__back a {
	border: 1px solid var(--color-orange);
	background: #fff;
	color: var(--color-orange);
}

.expo-button .expo-button__inner.expo-button__back a:hover {
	background-color: var(--color-orange);
	color: #fff !important;
}

.expo-button .expo-button__inner.expo-button__back a span::before ,
.expo-button .expo-button__inner.expo-button__back a span::after {
	left: auto;
	right: 30%;
	background-color: var(--color-orange);
}

.expo-button .expo-button__inner.expo-button__back a span::after {
	left: -5px;
	right: auto;
	transform: rotate(-40deg);
}

.expo-button .expo-button__inner a:hover span::before,
.expo-button .expo-button__inner a:hover span::after {
	background-color: #fff;
}



@media (max-width: 1220px) {
	h3 {
		font-size: var(--font-ll);
	}

	.expo-first__text p.expo-first__title {
		font-size: var(--font-sl);
	}

	.bg__orange ,
	.bg__yellow {
		padding: 50px 40px;
	}

	.expo-section__4th {
		padding: 40px;
	}

	.expo-section__6th {
		padding: 50px 40px 40px;
	}

	.expo-2nd ul {
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.expo-2nd li {
		width: 22%;
		font-size: var(--font-base);
	}

	.expo-gift__gp li {
		width: 48%;
	}

	.expo-gift__2nd li ,
	.expo-gift__3rd li {
		width: 24vw;
	}

	.expo-theme__item span {
		font-size: var(--font-sl);
	}
}

@media (max-width: 970px) {
	.expo-2nd ul {
		flex-wrap: wrap;
		width: 100%;
        margin: 0 auto;
		max-width: 420px;
	}

	.expo-2nd li {
		width: 50%;
		flex: 0 0 calc(50% - 10px );
	}

	.expo-2nd p {
		margin-top: 10px;
	}

	.expo-gift__gp li ,
	.expo-gift__2nd li {
		width: 100%;
        flex: auto;
	}

	.expo-gift__3rd li {
		width: 100%;
		flex: auto;
	}

	.expo-gift__prize li {
		flex: 0 0 50%;
	}

	.expo-step__inner {
		margin-bottom: 110px;
	}

	.expo-step__inner:last-of-type {
		margin-bottom: 0px;
	}

	.expo-step__inner::after {
		content: "";
		border-right: 18px solid transparent;
		border-left: 18px solid transparent;
		border-top: 24px solid var(--color-orange);
		bottom: -60px;
	}

	.expo-step__box02 {
		flex-direction: column;
		padding: 0 30px 30px;
	}

	.expo-step__box02 .expo-step__box .expo-step__text a {
		width: 80%;
    margin: 10px auto 0;
    max-width: 300px;
	}

	.expo-list th {
		font-size: var(--font-mm);
	}

	.expo-list td {
		padding-left: 20px;
	}

	.expo-2nd ul.expo-gift__prize {
		justify-content: center;
		max-width: none;
	}

	.expo-gift__prize li {
		flex: auto;
		max-width: 200px;
	}

	.expo-gift__prize li:first-of-type {
		margin: 0 auto;
		max-width: none;
		flex-basis: auto;
	}

	.expo-gift__prize img {
		height: auto;
	}
}


@media (max-width: 870px) {
	h3 {
        margin-bottom: 30px;
    }

	.expo-gift__2nd img ,
	.expo-gift__3rd img {
		height: 18.2vw;
		width: auto;
	}

	.expo-theme__head {
		margin-bottom: 40px;
	}

	.expo-theme__item span {
		font-size: var(--font-large);
	}

	.expo-2nd h4 img {
		max-width: 38px;
		margin-top: 8px;
	}

	.expo-section__4th ,
	.expo-section__6th {
		padding: 30px;
	}

	.expo-list ,
	.expo-schedule {
		padding: 30px;
	}

	.expo-list th {
		font-size: var(--font-normal);
	}

	.expo-theme__list {
		gap: 20px;
	}

	.expo-theme__list li {
		flex: 0 0 calc(50% - 10px);
	}

	.expo-theme__item img {
		width: 88%;
	}

	.expo-schedule th {
		font-size: var(--font-large);
	}

	.expo-schedule th span {
		font-size: var(--font-base);
	}

	.expo-schedule td {
		font-size: var(--font-normal);
	}

}

@media (max-width: 800px) {
	.expo-main {
		margin-top: 100px;
	}

	section {
		margin-top: 100px;
	}

	.expo-main__text {
		font-size: var(--font-normal);
	}

	h3 {
		font-size: var(--font-ml);
		margin-bottom: 30px;
	}

	.expo-main__text span {
		font-size: var(--font-ml);
	}

	.expo-first__text p.expo-first__title {
		font-size: var(--font-large);
	}

	.expo-2nd h4 {
		font-size: var(--font-large);
	}

	.expo-gift__2nd img, .expo-gift__3rd img {
        height: 22.2vw;
	}

	.expo-section__4th {
		margin-top: 100px;
	}

	.expo-vote__text .expo-vote__link {
		padding-top: 10px;
	}

	.expo-vote__text .expo-vote__link a {
		padding: 6px 5px;
		font-size: var(--font-normal);
	}

	.expo-vote__sub {
    margin-top: 10px;
	}
}

@media (max-width: 730px) {
	.bg__orange, .bg__yellow {
        padding: 40px 30px;
    }

	.expo-2nd li {
		flex: 0 0 38%;
	}

	.expo-gift__gp li, .expo-gift__2nd li {
        width: 100%;
        flex: auto;
    }

	.expo-gift__prize li {
        flex: auto;
	}

	.expo-list {
		padding: 20px;
	}

	.expo-list th ,
	.expo-list td {
		width: 100%;
		max-width: none;
		padding-left: 0;
		display: block;
	}

	.expo-list th  {
		padding-bottom: 0;
	}

	.expo-list td  ,
	.expo-list tr:first-of-type td {
		padding-top: 5px;
	}

	.expo-bottom__text {
		font-size: var(--font-mm);
	}
}

@media (max-width: 630px) {
	.sp-none {
		display: none;
	}

	.expo-main {
		text-align: left;
	}

	.expo-main__text {
		font-size: var(--font-base);
		line-height: 2.0;
	}

	.expo-main__text span {
		font-size: var(--font-sl);
	}

	h3 {
        font-size: var(--font-sl);
    }

	.expo-first__text p.expo-first__title {
		font-size: var(--font-mm);
	}

	.bg__orange ,
	.bg__yellow {
        padding: 40px 30px;
	}
	
	.expo-2nd li {
		flex: 0 0 45%;
	}

	.expo-gift__gp li, .expo-gift__2nd li , .expo-gift__3rd li {
        flex: auto !important;
	}

	.expo-2nd h4 {
        font-size: var(--font-medium);
    }

	.expo-2nd h4 img {
		max-width: 36px;
		margin-top: 5px;
	}

	.expo-2nd h4 img:first-of-type {
		margin-right: 12px;
	}

	.expo-2nd h4 img:last-of-type {
		margin-left: 12px;
	}

	.expo-2nd__flex .expo-gift:first-of-type ,
	.expo-2nd__flex .expo-gift:last-of-type {
		width: 100%;
	}

	.expo-2nd__flex {
		gap: 20px;
		display: block;
        width: 100%;
	}

	.expo-gift__2nd {
		max-width: none;
	}

	.expo-gift__2nd li ,
	.expo-gift__3rd li {
		width: 100% !important;
	}

	.expo-gift__2nd img ,
	.expo-gift__3rd img {
	    width: 100%;
		height: auto;
        object-fit: contain;
	}

	.expo-gift__3rd img {
	    width: 100%;
	}

	.expo-step__box {
		gap: 30px;
	}

	.expo-step__img {
		max-width: 160px;
	}

	.expo-theme__head {
        text-align: left;
    }

	.expo-theme__list li {
		flex: auto;
		padding: 30px 20px 20px;
	}

	.expo-theme__item img {
		width: 48vw;
		max-width: 300px;
	}

	.expo-schedule th ,
	.expo-schedule td {
        display: block;
		width: 100%;
    }

	.expo-schedule th {
        padding-bottom: 5px;
	}

	.expo-schedule td {
        padding-top: 0px;
	}

	.expo-vote__text .expo-vote__link {
    max-width: calc(86% - 20vw);
	}

	.expo-button {
    margin: 20px auto 0;
	}

	.expo-button .expo-button__inner {
    max-width: 90vw;
	}
}

@media (max-width: 500px) {
	.expo-main {
        margin-top: 40px;
    }

	.expo-2nd li {
		flex: 0 0 calc(50% - 10px );
	}

	.expo-gift__2nd li, .expo-gift__3rd li {
		flex: auto;
	}

	.expo-theme__body p:last-of-type {
		text-align: left;
	}

	.expo-theme__body span {
		display: inline;
    	text-align: left;
	}

	section {
        margin-top: 50px;
    }

	h3 {
        font-size: var(--font-mm);
		margin-bottom: 20px;
    }

	.expo-first__text p.expo-first__title {
        font-size: var(--font-normal);
    }

	.expo-first__text p.expo-first__sub {
        font-size: var(--font-small);
	}

	.bg__orange {
        padding: 25px 15px 15px;
    }

	.bg__yellow {
        padding: 30px 15px;
    }

	.expo-2nd ul {
        gap: 15px;
    }

	.expo-2nd li {
        flex: 0 0 calc(50% - 7.5px);
        font-size: var(--font-mini);
    }

	.expo-2nd h4 {
        font-size: var(--font-base);
        padding: 5px;
		margin-bottom: 20px;
    }

	.expo-2nd h4 img {
		max-width: 30px;
		margin-top: 4px;
	}

	.expo-2nd h4 img:first-of-type {
		margin-right: 10px;
	}

	.expo-2nd h4 img:last-of-type {
		margin-left: 10px;
	}
	
	.expo-gift__gp li img,
	.expo-gift__2nd li img ,
	.expo-gift__3rd li img {
		width: 65vw;
	}

	.expo-2nd li span {
		font-size: var(--font-base);
	}

	.expo-2nd p {
        margin-top: 5px;
    }

	.expo-gift__notice p {
		margin-top: 10px;
	}

	.expo-section__3rd h3 {
		margin-bottom: 47px;
	}

	.expo-step__box {
		padding: 30px;
	}

	.expo-step__img {
        max-width: 110px;
    }

	.expo-step__text {
		font-size: var(--font-base);
	}

	.expo-step__text02 {
		font-size: var(--font-base);
	}

	.expo-step__title {
		font-size: var(--font-base);
	}

	.expo-step__box02 {
        align-items: center;
	}

	.expo-step__box02 .expo-step__box {
		width: 80%;
	}

	.expo-step__box02 .expo-step__text {
		font-size: var(--font-small);
	}

	.expo-step__inner {
        margin-bottom: 64px;
    }

	.expo-step__inner::after {
        border-right: 13px solid transparent;
        border-left: 13px solid transparent;
        border-top: 16px solid var(--color-orange);
        bottom: -30px;
    }

	.expo-step__label {
		font-size: var(--font-normal);
		margin-top: -34px;
	}

	.expo-step__label span {
		font-size: var(--font-xlarge);
	}

	.expo-step__box02 .expo-step__box .expo-step__text a {
		width: 84%;
	}

	.expo-list {
        padding: 15px;
    }

	.expo-list th {
        font-size: var(---font-base);
    }

	.expo-list td {
        font-size: var(--font-small);
    }

	.expo-section__4th {
		margin-top: 50px;
		padding: 15px;
	}

	.expo-theme__list {
		gap: 10px;
	}


	.expo-theme__body {
		margin-top: 40px;
	}

	.expo-theme__body p:first-of-type {
		font-size: var(--font-base);
	}

	.expo-notice {
		font-size: var(--font-small);
		padding: 20px 15px;
		margin-top: 10px;
	}

	.expo-bottom__text {
		font-size: var(--font-base);
		margin-top: 50px;
	}

	.expo-schedule th {
		font-size: var(--font-mm);
		padding-block: 15px 5px;
	}

	.expo-schedule th span {
		font-size: var(--font-small);
	}

	.expo-schedule td {
		font-size: var(--font-base);
		padding-block: 0 15px;
	}

	.expo-vote__text .expo-vote__link {
    max-width: 70vw;
	}

	.expo-vote__text .expo-vote__link a ,
	.expo-button .expo-button__inner a {
		font-size: var(--font-base);
	}

	.expo-vote__sub {
		margin-top: 5px;
	}

	.expo-button .expo-button__inner {
		max-width: 100%;
	}
}







/* gallery */
body .mainCGdivHelperParent .mainCGdiv.cg_border_radius_controls_and_containers div.cg_show.cg_grid_item ,
body>.mainCGdivHelperParent .mainCGdiv {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
}

body .mainCGdivHelperParent .mainCGdiv.cg_border_radius_controls_and_containers div.cg_show.cg_grid_item .cg_figure {
	max-height: 330px;
	object-fit: contain;
}


body .mainCGdiv .cg_show.cg_show_info_bottom.has_sub_or_third_title .cg_gallery_info .cg_gallery_info_title .cg_gallery_info_content.cg_gallery_info_content_main ,
.mainCGallery [id^=cgCenterInfoDiv] .cg-center-image-info-div:first-of-type p:nth-child(2) {
	font-weight: 500;
	font-size: var(--font-base);
	color: #17110B;
	letter-spacing: 0.04em;
}

body .mainCGdivHelperParent .mainCGdiv .mainCGallery .cg_show.cg_show_info_bottom .cg_gallery_info .cg_gallery_info_title .cg_gallery_info_content.cg_gallery_info_content_third ,
.mainCGallery [id^=cgCenterInfoDiv] .cg-center-image-info-div:last-of-type p:nth-child(2) {
	font-size: var(--font-small);
	color: #17110B;
	letter-spacing: 0.04em;
}

body .mainCGdivHelperParent .mainCGdiv .mainCGallery .cg_show.cg_show_info_bottom .cg_gallery_info .cg_gallery_info_title .cg_gallery_info_content.cg_gallery_info_content_third {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	max-height: 7em;
}


.mainCGdiv .mainCGallery .cgCenterDiv .cg-center-image-info-div > p:first-of-type ,
.mainCGdiv .mainCGallery .cgCenterDiv .cg-center-image-info-div-title.cg-center-image-info-info-separator {
	display: none;
}

body>.mainCGdivHelperParent .mainCGdiv .mainCGallery .cgCenterDiv .cg-center-info-div {
	margin-bottom: 20px !important;
}

body .mainCGdiv .mainCGallery .cgCenterDiv.cg_center_white {
	margin-top: 40px !important;
}

body .mainCGdivHelperParent .mainCGdiv.cg_fe_controls_style_white .cg_show.cg_show_info_bottom .cg_append.cg_append_alternative_file_type_video {
	max-height: 370px;
}

body .mainCGdiv .mainCGallery .cgCenterDiv .cg-center-image.cg_translateX {
	max-width: 700px !important;
	max-height: 700px !important;
	object-fit: contain;
	background-size: contain !important;
}


@media (max-width: 640px) {
	body .mainCGdivHelperParent .mainCGdiv.cg_border_radius_controls_and_containers div.cg_show.cg_grid_item {
		margin-bottom: 14px !important;
	}
	
	.mainCGdiv .mainCGallery .cgCenterDiv.cg_center_white .cg-center-image-info-div-container {
		padding: 0;
	}
}