/*========================================

========================================*/

html {
	/*scroll-behavior: smooth;*/
}

/*:target {
	scroll-margin-top: 46px;
}*/

body {
	color: #333333;
	font-size: 21px;
	font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
}
  
.c-container {
	max-width: 1000px;
	margin: 0 auto;
}

.l-header {
	position: sticky;
  top: 0;
	z-index: 999;
	width: 100%;
  height: 46px;
	padding: 9px 12px;
	background-color: rgb(255, 255, 255, 0.8);
}

.l-header .c-container {
	max-width: 100%;
}

.l-header__inner {
	display: flex;
  justify-content: space-between;
  align-items: center;
	height: 28px;
}

.c-site-branding__title {
	/*flex-grow: 1;*/
}

h1 {
	line-height: 0;
}

.text_center {
	text-align: center;
}


.c-navigation {
}

.c-navigation__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding-left: 0;
  font-size: 14px;
  list-style-type: none;
}

.c-navigation__list-item a {
  position: relative;
  color: #954084;
  text-decoration: none;
}

.c-navigation__list-item a::before {
  content: "▶︎";
  position: relative;
  top: -1px;
  font-size: 10px;
}

.c-navigation__list-item a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -6px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background:#954084;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

.c-navigation__list-item a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.c-navigation__list-item:last-child a:hover {
  opacity: 0.8;
}

.c-navigation__list-item:last-child a::before {
  content: "";
}

.c-navigation__list-item:last-child a::after {
  width: 0;
}

.c-hamburger-button {
	position: relative;
  top: 0;
}

.c-hamburger-button {
  margin-top: 6px;
	margin-left: 36px;
	width: 26px;
	height: 26px;
}

.c-hamburger-button__bar {
	position: absolute;
  top: 0;
	width: 20px;
	height: 2px;
	background: #919191;
	border-radius: 1px;
	transition: 0.3s ease-out;
}

.c-hamburger-button__bars {
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	background: inherit;
	border-color: transparent;
	z-index: 999;
}

.c-hamburger-button__bars:hover {
	cursor: pointer;
}

.c-hamburger-button__bar:nth-of-type(1) {
	margin-top: 0;
}

.c-hamburger-button__bar:nth-of-type(2) {
	margin-top: 6px;
}

.c-hamburger-button__bar:nth-of-type(3) {
	margin-top: 12px;
}

.c-hamburger-button__bars.active span:nth-of-type(1) {
	transform: translateY(4px) rotate(45deg);
	transition: 0.3s ease-out;
}
.c-hamburger-button__bars.active span:nth-of-type(2) {
	opacity: 0;
}
.c-hamburger-button__bars.active span:nth-of-type(3) {
	transform: translateY(-8px) rotate(-45deg);
	transition: 0.3s ease-out;
}



.c-drawer-nav {
	position: fixed;
	right: 0;
	z-index: 800;
	width: 50%;
	height: 100%;
	/*margin-top: 46px;*/
	background-color: rgb(0, 0, 0, 0.8);
	transform: translate(100%);
	transition: 0.3s ease-out;
}

.c-drawer-nav__menu {
	padding-left: 24px;
	list-style-type: none;
}

.c-drawer-nav__menu-item {
	margin: 24px 0;
	padding-left: 12px;
	border-left: solid 3px #ffffff;
}

.c-drawer-nav__menu-item a {
	display: block;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.25;
	text-decoration: none;
}

.c-drawer-nav__menu-item a span {
	font-size: 14px;
}

.c-drawer-nav__menu-item:last-child {
  display: flex;
  justify-content: center;
	margin: 24px 0;
	padding: 0 24px 0 0;
	border: none;
}

/*.c-drawer-nav__menu-item:last-child a:hover {
  opacity: 0.8;
}*/

.c-drawer-nav.open {
	transform: translate(0);
	transition: 0.3s ease-out;
}




.l-contents {
  /*padding-top: 46px;*/
  overflow: hidden;
}


.main-image img {
	width: 100%;
}







.c-section {
	padding: 48px 12px;
}

.p-section__topics {
	padding-top: 72px;
}


.p-section__introduction {
	
}

.c-section__inner {
	max-width: 1000px;
	margin: 0 auto;
}




.c-1column {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}




.c-2columns,
.c-3columns,
.c-4columns {
	display: flex;
	margin-top: 24px;
	gap: 24px;
}

.c-2columns__container > *,
.c-3columns__container > * {
	margin-top: 0;
}

.c-2columns__container {
	width: calc((100% - 24px) / 2);
}

.c-3columns__container {
	width: calc((100% - 48px) / 3);
}



.c-heading2 {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px 0 9px;
  text-align: center;
  color: #ffffff;
  background-color: #c2598c;/*#f4ecf3*/
  border-top: solid 1px #954084;
  border-bottom: solid 1px #954084;
}

.c-heading2__main {
  font-size: 36px;
  line-height: 1.25;
}

.c-heading2__sub {
  margin: 0;
  font-size: 21px;
}

.c-heading3 {
	display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
	padding: 4px 24px;
	color: #c2598c;
	font-size: 28px;
	background-color: #e0acc5;
}






.c-heading2 + *,
.c-heading3 + * {
	margin-top: 36px;
}

.c-heading3__main {
  line-height: 1.5;
	/*text-shadow: 2px 2px 3px #919191, 2px 3px 3px #cbcbcb;*/
}

.c-heading3__main-number {
	position: absolute;
	top: -5px;
	left: 150px;
}

.c-heading3__reserve-button a {
	display: block;
  max-height: 28px;
}

.c-heading3__reserve-button a:hover {
	opacity: 0.8;
}










.c-section__h4-contents {
	margin-top: 0;
}


.c-section__h3 .c-section__h4-contents:nth-of-type(1) {
	padding-top: 0;
}


.c-section__h4 {
	display: flex;
	flex-direction: column;
}






.p-section__topic {
	padding-top: 60px;
}

.p-section__topic .c-section__h2 {
	padding-top: 0;
}

.p-section__topic .c-section__h2 + .c-section__h2 {
	margin-top: 60px;
}

.p-section__topic .c-section__h3 + .c-section__h3 {
	margin-top: 48px;
}


.p-section__topic .c-section__h4 .c-heading4 {
	order: 2;
	margin-top: 24px;
}

.p-section__topic .c-section__h4 > .topics-product-image {
	order: 1;
  margin-top: 0;
}

.p-section__topic .c-section__h4 > p {
	order: 3;
	font-size: 20px;
    line-height: 1.75;
    /*background-color: #E6E7E8;
    padding: 12px 24px;*/
}

.topics-product-image--sub {
	order: 4;
  gap: 20px;
}

.topics-product-image--sub .c-3columns__container {
	width: calc((100% - 40px) / 3);
}

.topics-product-image--sub .c-4columns__container {
	width: calc((100% - 60px) / 4);
}


.c-section__h3 + .c-section__h3 {
	margin-top: 60px;
}








.seminer_block {
	padding: 30px 50px;
	margin: 12px auto;
    background-color: #EFEFEF;
}
.seminer_block h4 {
    position: relative;
    padding-left: 18px;
	margin-bottom: 6px;
}
.seminer_block h4::before {
	position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: solid 8px transparent;
    border-left: solid 13px #C25A8C;
    top: 50%;
    left: 0;
    margin-top: -8px;
}

.seminer_block figure a:hover {
    opacity: 0.8;
}



.u-emphasis01 {
	padding-left: 1em;
	text-indent: -1em;
	color: #E83919;
	letter-spacing: -0.5px;
}



.p-section__topic .c-section__h3-contents {
  margin-top: 0;
  padding: 0;
}



/*.p-section__access h3 span {
	display: inline-block;
    padding: 3px 18px;
    background-color: #C25A8C;
	color: #ffffff;
	margin-right: 12px;
}*/





.p-section__access {
	padding-top: 0;
}

.p-section__access--heading-area {
	display: flex;
	align-items: flex-start;
}

.p-section__access--heading-area p {
	margin-top: 0;	
}

.p-section__access1 .p-section__access--heading-area h3 {
    color: #333333;
}


.c-heading2__venue {
	display: flex;
	align-items: center;
}


.c-heading2__venue--title {
	padding: 3px 0;
	width: 90px;
	color: #ffffff;
  font-size: 21px;
	text-align: center;
  background-color: #C25A8C;
}

.c-heading2__venue--detail {
  margin: 0 0 0 12px;
  font-size: 24px;
  font-weight: bold;
}

.p-section__access1 .p-section__access--heading-area {
	align-items: center;
}

.p-section__access2 .p-section__access--heading-area h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 516px;
	margin-top: 3px;	
}


.p-section__access--heading-note {
	margin-top: 6px;
	font-size: 16px;
}


.map {
	width: 100%;
	position: relative;
	padding-top: 56.25%;
	margin-top: 18px;
}
  
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.p-section__access figure {
	margin: 18px auto 0;
}





.p-section__special-information {
  border-top: solid 12px #C25A8C;
}

.c-fukidashi {
	font-size: 32px;
  font-weight: bold;
  line-height: 1.25;
	text-align: center;
}

.c-fukidashi span {
	position: relative;
}

.c-fukidashi > span::before,
.c-fukidashi > span::after {
	content: "";
	display: inline-block;
	position: absolute;
  top: 0;
	background: #954084;
	width: 2px;
	height: 154px;
}

.c-fukidashi span::before {
	left: 0;
	transform: rotate(-20deg);
	margin-left: -100px;
}

.c-fukidashi span::after {
	right: 0;
	transform: rotate(20deg);
	margin-right: -100px;
}

.c-fukidashi span span {
  color: #954084;
}

.c-heading2__coupon {
	text-align: center;
}

.p-section__proshop {
  padding-top: 0;
  font-size: 24px;
  text-align: center;
}

.c-heading2__prosho {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #954084;
}

.c-heading2__prosho::before,
.c-heading2__prosho::after {
  content: "";
  display: inline-block;
  margin: 0 6px;
  width: 60px;
  height: 2px;
  background-color: #954084;
}

.c-heading2__prosho + p {
  margin-top: 6px;
}

.c-device {
  margin-top: 36px;
  text-align: center;
}

.c-reserve-button {
  margin-top: 24px;
  text-align: center;
}

.c-proshop-button {
  margin-top: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.c-reserve-button a:hover,
.c-proshop-button a:hover {
  opacity: 0.8;
}



.l-footer {
	padding: 6px;
	background-color: #c2598c;
}

.c-copyright {
	color: #ffffff;
	font-size: 14px;
	text-align: center;
}




.u-p000 {
	padding: 0;
}







/*メディアクエリ*/
@media (max-width: 1024px) {
	.c-heading2__main-number {
		top: -4px;
		left: 130px;
	}
	.c-heading2__sub {
		font-size: 18px;
	}
	.c-2columns,
	.c-3columns,
	.c-4columns {
		flex-direction: column;
		align-self: center;
	}
	.c-2columns__container,
  .c-3columns__container,
  .c-4columns__container {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.topics-product-image--sub {
		flex-direction: row;
	}
}


@media (min-width: 834px) {
  .c-hamburger-button {
    display: none;
  }
}

@media (max-width: 833px) {
  .c-site-branding__title {
    flex-grow: 1;
  }
  .c-navigation {
    display: none;
  }
}


@media (max-width: 639px) {
	body {
		font-size: 16px;
	}
	.c-site-branding__title img {
		padding-top: 2px;
		width: 220px;
	}
	.c-hamburger-button {
		margin-left: 12px;
	}
	.c-drawer-nav {
		width: 94%;
	}
	.c-section {
		padding: 36px 12px 18px;
	}
  .p-section__topic .c-section__h2 + .c-section__h2 {
    margin-top: 36px;
  }
	.c-2columns__container {
		width: 100%;
	}
	.c-3columns__container {
		width: 100%;
	}
  .c-heading2 {
    margin-top: 6px;
  }
  .c-heading2__main {
    font-size: 30px;
  }
  .c-heading2__sub {
    font-size: 18px;
  }  
	.c-heading3 {
    padding: 3px 12px;
		font-size: 21px;
	}
  .c-heading3__main-number {
    top: -3px;
    left: 100px;
    width: 52px;
    height: auto;
  }
  .c-heading3__reserve-button {
    margin-top: 5px;
    width: 180px;
  }


	.c-section__h4 + .c-section__h4 {
		margin-top: 24px;
	}
	
	.p-section__topics .c-heading3 + * {
		margin-top: 36px;
	}
	.p-section__topics1 {
		padding-top: 18px;
	}
	.p-section__topic .c-section__h4 > p {
		font-size: 16px;
		/*padding: 6px 12px;*/
	}
	.topics-product-image--sub {
		flex-direction: column;
	}
  .topics-product-image--sub .c-3columns__container,
  .topics-product-image--sub .c-4columns__container {
    margin: 0 auto;
    width: 100%;
    max-width: 240px;
  }
  .topics-product-image--sub .c-4columns__container img {
    width: 100%;
  }
	.seminer_block {
		padding: 20px;
	}
	.p-section__introduction h3 {
		padding: 24px 0 24px 80px;
		font-size: 18px;
	}
	.p-section__introduction .p-section__introduction1 h3 {
		margin-top: 12px;
	}
	.p-section__introduction .p-section__introduction1 h3,
	.p-section__introduction .p-section__introduction2 h3,
	.p-section__introduction .p-section__introduction3 h3 {
		background-size: 70px;
	}
  .p-section__access {
	  padding: 12px 12px 24px;
  }
	.map {
		padding-top: 100%;
	}
	.p-section__special-information {
	  padding: 24px 12px 24px;
	}
	.c-fukidashi {
		font-size: 16px;
	}
	.c-fukidashi > span {
		display: inline-block;
		padding: 0 16px;
	}
	.c-fukidashi span::before,
	.c-fukidashi span::after {
		height: 80px;
		bottom: -5px;
		margin: 0;
	}
	.c-fukidashi span::before {
		transform: rotate(-20deg);
	}
	.c-fukidashi span::after {
		transform: rotate(20deg);
	}
  .p-section__proshop {
    padding-top: 12px;
  }
  .c-heading2__prosho {
    font-size: 24px;
  }
  .c-heading2__prosho::before,
  .c-heading2__prosho::after {
    width: 30px;
  }
  .c-heading2__prosho + p {
    font-size: 18px;
  }






	.p-section__access--heading-header {
		width: 74px;
	}
	.p-section__access--heading-area .c-heading2__access {
		margin-left: 12px;
	}
	.p-section__access2 .p-section__access--heading-area h3 {
		align-items: center;
		font-size: 18px;
		letter-spacing: -0.5px;
	}
	.p-section__access2 .p-section__access--heading-area h3 .p-section__access--heading-booth-name {
		width: 48%;
	}
	.p-section__access2 .p-section__access--heading-area h3 .p-section__access--heading-booth-place {
		width: 52%;
		text-align: right;
	}
	.p-section__access2 .p-section__access--heading-area h3 .p-section__access--heading-booth-name:nth-of-type(3) {
	}
	.p-section__access--heading-note {
		font-size: 12px;
		padding-left: 12px;
		text-indent: -12px;
	}
  .c-heading2__venue--title {
    font-size: 18px;
  }
  .c-heading2__venue--detail {
    font-size: 21px;
  }
  .c-reserve-button img {
    max-width: 300px;
  }
  .c-proshop-button {
    margin-bottom: 60px;
  }
  .c-proshop-button img {
    max-width: 240px;
  }
}

@media (max-width: 379px) {
  .c-heading2__main {
    font-size: 28px;
  } 
  .c-heading2__sub {
    font-size: 16px;
  } 
  .c-heading3__main-number {
    left: 86px;
  }
  .c-heading3__reserve-button {
    margin-top: 3px;
    width: 170px;
  }
}


@media (min-width: 640px) {
  .c-newline-sp {
    display: none;
  }
}
@media (max-width: 639px) {
  .c-newline-sp {
    display: block;
  }
}



/*========================================
スライドショー
========================================*/

.c-slider__booth  {
  margin-top: 48px;
	max-width: 1000px;
	background-color: #000000;
}

.c-slider__booth img {
	width: 100%;
}


.c-slider__main {
	text-align: center;
}

.c-slider__booth .c-slider__main-overlay {
	position: absolute;
	top: 0;
	z-index: 100;
}

.c-slider__booth .swiper_buttons {
	position: relative;
	z-index: 200;
}

.c-slider__booth .swiper_buttons [class^="swiper-button-"] {
	top: -300px;
    width: 48px;
    height: 48px;
}

.c-slider__booth .swiper_buttons [class^="swiper-button-"]::after {
    content: "";
}

.c-slider__booth .swiper_buttons .c-slider__buttons .swiper-pagination {
	position: relative;
	bottom: -6px;
	z-index: 200;
}

.c-slider__booth .swiper-pagination-bullet {
	width: 12px !important;	
	height: 12px !important;	
}

.c-slider__booth .swiper-pagination-bullet-active {
	background-color: #666 !important;	
}

.swiper_thumbnail .swiper-slide {
	cursor: pointer;
}

.swiper_thumbnail {
  display: none;
}

.c-slider__dots {
	display: flex;
	justify-content: space-between;
	width: 100px !important;
	margin: 0 auto;
}

.c-slider__dot {
	width: 12px !important;
	height: 33px !important;
}

.swiper_thumbnail .swiper-slide-thumb-active,
.swiper_thumbnail2 .swiper-slide-thumb-active {
	background-image: url(../img/slider_dot-dark.png);
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: bottom;
}

.swiper_thumbnail img,
.swiper_thumbnail2 img {
	vertical-align: bottom;
}

.p-section__access .swiper {
	max-width: 900px;
}

.p-section__access .c-slider__dots {
	width: 100px !important;
}

@media (max-width: 991px) {
	.p-section__access .swiper {
		max-width: 100%;
	}
	.c-slider__booth .swiper_buttons [class^="swiper-button-"] {
		top: -260px;
	}
	.p-section__access .c-slider__booth .swiper_buttons [class^="swiper-button-"] {
		top: -220px;
	}
}

@media (max-width: 639px) {
  .c-slider__booth  {
    margin-top: 36px;
  }
	.c-slider__booth .swiper_buttons [class^="swiper-button-"] {
		top: -200px;
	}
	.p-section__access .c-slider__booth .swiper_buttons [class^="swiper-button-"] {
		top: -130px;
	}
	.c-slider__dot {
		height: auto !important;
	}
}



/*========================================
スクロールCSS
========================================*/

.fade-in {
	opacity: 0;
	transition-duration: 500ms;
	transition-property: opacity, transform;
  }
  .fade-in-up {
	transform: translate(0, 50px);
  }
  .scroll-in {
	opacity: 1;
	transform: translate(0, 0);
  }
  
  
  
/*========================================
ビデオ
========================================*/

.video-sp {
	display: none;
}

@media (max-width: 639px) {
	.video-pc {
		display: none;
	}
	.video-sp {
		display: block;
	}
}

.main-visual video {
	width: 60%;
	height: 60%;
	vertical-align: top;
}

@media (max-width: 639px) {
	.main-visual video {
		width: 100%;
		height: auto;
	}
}