@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
}
#main img {
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
.contents_inner {
	max-width: 1160px;
	margin: 0 auto;
}
section h2 {
	color: #0e2d5e;
	font-size: 3rem;
	text-align: center;
	overflow: hidden;
}
section h2 span {
	position: relative;
}
section h2 span::before {
	position: absolute;
  content: '';
  top: 50%;
  left: -110px;
  width: 80px;
  height: 2px;
  background: #0e2d5e;
  transform: translateY(-50%);
}
section h2 span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -110px;
  width: 80px;
  height: 2px;
  background: #0e2d5e;
  transform: translateY(-50%);
}
figure {
	position: relative;
	/*border-radius: 5px;*/
  overflow: hidden;
}
figure figcaption {
	position: absolute;
  bottom: 3px;
  right: 5px;
  text-align: right;
  color: #ffffff;
  padding: 4px;
  font-weight: 400;
  border-radius: 0 0 5px 5px;
  font-size: 1.3rem;
  overflow-wrap: break-word;
  line-height: 1.1;
  text-shadow: 1px 1px 1px #333, -1px 1px 1px #333, 1px -1px 1px #333, -1px -1px 1px #333, 1px 0px 1px #333, 0px 1px 1px #333, -1px 0px 1px #333, 0px -1px 1px #333;
}
.seasonContent {
	display: none;
}
.seasonContent.active {
	display: block;
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
	section h2 {
		font-size: 2rem;
	}
	figure {
		max-width: 540px;
		margin: 0 auto;
	}
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translate(-50%, 30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(-50%, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/
.kvArea {
	position: relative;
}
.kv {
	height: 470px;
	margin: 0;
}
.kvTitWrap {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -40%);
	text-align: center;
	z-index: 5;
}
.kvArea h1 {
	position: relative;
	margin: 0;
	font-size: 3.4rem;
}
.kvTit {
  position: absolute;
  top: 50%;
  left: 50%;
	transform: translate(-50%);
  width: 462px;
  height: 462px;
  margin: 0;
  background: url("/med/feature/domestic/matsuri-event/img/kvTit_winter.webp") no-repeat;
  z-index: 5;
}
.kvArea .introTxt {
	margin-top: 45px;
	padding: 20px 50px;
	color: #fff;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 85%, rgba(255,255,255,0) 100%);
}
.kv .slider-item {
	height: 470px;
}
.kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767.98px) {
	.kv, .kv .slider-item {
		height: 235px;
	}
	.kvTitWrap {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.kvArea h1 {
		max-width: 265px;
		padding: 0 15px;
		font-size: 1.5rem;
		font-weight: normal;
	}
	.kvArea .introTxt {
		margin-top: 18px;
		padding: 8px 30px;
		font-size: 1.2rem;
	}
	.kvTit {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%);
		width: 231px;
		height: 231px;
		background-size: contain;
	}
}
/*=====================*/


/*menuNav
=======================*/
.menuNav {
	background: #b6c5dc;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 2rem;
	text-align: center;
	background: #0e2d5e;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	display: block;
	width: 100%;
	padding: 20px;
  color: #fff;
}
.menuNav .navItem a span {
	position: relative;
}
.menuNav .navItem a span::after {
	position: absolute;
	content: '';
	top: 40%;
	right: -25px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
	.menuNav .navItem {
		transition: 0.2s ease all;
    border-right: 2px solid #b6c5dc;
	}
	.menuNav .navItem a:hover {
  	color: #fff;
		background: #174B9E;
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover span::after {
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
}

@media screen and (max-width:767.98px) {
  .menuNav_inner {
    flex-wrap: wrap;
  }
	.menuNav .navItem {
		font-size: 1.5rem;
    width: 50%;
	}
  .menuNav .navItem:nth-of-type(1) {
    border-right: 2px solid #b6c5dc;
	}
  .menuNav .nav_02 {
    width: 100%;
  border-top: 2px solid #fff;
  }
	.menuNav .navItem a {
		padding: 10px 35px 10px 20px;
	}
}

@media screen and (max-width:359px) {
	.menuNav .navItem {
		font-size: 1.2rem;
	}
}
/*=====================*/



/*bannerBox
=======================*/
.bannersWrap {
	margin: 40px 0 0;
}
.bannerBox {
	display: flex;
	justify-content: space-evenly;
}
.bannerBox ul {
	margin: 0;
}
.bannerBox li a {
	display: inline-block;
	height: 100%;
	transition: .2s;
}

@media (min-width: 768px) {
	.bannerBox li a:hover {
		opacity: .8;
		transition: .2s;
	}
}
@media screen and (max-width:767.98px) {
	.bannersWrap {
		margin-top: 20px;
	}
	.bannerBox {
		justify-content: center;
    gap: 10px;
		padding: 0 10px;
	}
	.bannerBox li {
		max-width: 120px;
	}
  .bannerBlock {
    margin: 20px 0;
    padding: 0 10px;
  }
  .bannerBlock .bannerWrap {
    display: inline-block;
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, .15);
    border-radius: 5px;
    transition: opacity .2s;
  }
  .bannerBlock .bannerWrap a {
    display: block;
}
}
/*=====================*/



/*focusArea
=======================*/
.focusArea {
	padding: 25px 0 40px;
	background: #fff9e2;
}
.focusArea .courseBlock {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}

@media screen and (max-width:767px) {
	.focusArea {
		padding: 1px 0 40px;
	}
	.focusArea .courseBlock {
		padding: 0 10px;
		background: transparent;
	}
}
/*=====================*/



/*allOverArea
=======================*/
.allOverArea {
}
.allOverArea .allOverArea_innerBox {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.allOverArea .centerBlock {
	display: flex;
	align-items: center;
	padding: 50px 40px 100px;
}
.allOverArea .leftBlock,
.allOverArea .rightBlock {
	padding-bottom: 40px;
}
.allOverArea .centerBlock svg {
	width: 500px;
}
.allOverArea .matsuri_block {
	width: 290px;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
	transition: .2s;
}
.allOverArea .matsuri_block:nth-of-type(n+2) {
	margin-top: 20px;
}
.allOverArea .matsuri_block a {
	display: block;
  padding: 15px 10px;
	color: #323232;
}
.allOverArea .matsuri_block .matsuri_block_tit {
	margin: 0;
	color: #0e2d5e;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: -1px;
}
.allOverArea .matsuri_block table,
.allOverArea .matsuri_block table tr:nth-of-type(n+2) {
	margin-top: 10px;
}
.allOverArea .matsuri_block table tr {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	font-weight: bold;
}
.allOverArea .matsuri_block table td:first-of-type {
	min-width: 88px;
	padding: 3px 12px;
	text-align: center;
	background: #ccc;
}
.allOverArea .matsuri_block.hokkaido table td:first-of-type {
	background: #d1c9ee;
}
.allOverArea .matsuri_block.tohoku table td:first-of-type {
	background: #bcd3f5;
}
.allOverArea .matsuri_block.chubu table td:first-of-type {
	background: #bfdfc3;
}
.allOverArea .matsuri_block.kansai table td:first-of-type {
	background: #f8ebb1;
}
.allOverArea .matsuri_block.chugoku table td:first-of-type {
	background: #f5cda7;
}
.allOverArea .matsuri_block.kyushu table td:first-of-type {
	background: #eeacac;
}
.allOverArea .matsuri_block table td:nth-of-type(2) {
	min-width: 125px;
}
.allOverArea .matsuri_block button {
	position: relative;
	width: 100%;
	margin-top: 12px;
	padding: 5px 45px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	background: #0e2d5e;
	border: 2px solid #0e2d5e;
	border-radius: 50px;
	transition: .2s;
}
.allOverArea .matsuri_block button::after {
  position: absolute;
  content: '';
  top: 35%;
  right: 25px;
  width: 13px;
  height: 13px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: all .2s;
}
.allOverArea .matsuri_block button a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	.allOverArea svg .hokkaido,
	.allOverArea svg .tohoku,
	.allOverArea svg .hokuriku_chubu_kanto,
	.allOverArea svg .kansai,
	.allOverArea svg .chugoku_shikoku,
	.allOverArea svg .kyushu_okinawa {
		cursor: pointer;
		transition: .2s;
	}
	.allOverArea svg #hokkaido:hover .hokkaido {
		fill: #a79ae2!important;
		transition: .2s;
	}
	.allOverArea svg #tohoku:hover .tohoku {
		fill: #8ec1f4!important;
		transition: .2s;
	}
	.allOverArea svg #hokuriku_chubu_kanto:hover .hokuriku_chubu_kanto {
		fill: #aed893!important;
		transition: .2s;
	}
	.allOverArea svg #kansai:hover .kansai {
		fill: #f9e95d!important;
		transition: .2s;
	}
	.allOverArea svg #chugoku_shikoku:hover .chugoku_shikoku {
		fill: #f9ba80!important;
		transition: .2s;
	}
	.allOverArea svg #kyushu_okinawa:hover .kyushu_okinawa {
		fill: #ff8585!important;
		transition: .2s;
	}
	.allOverArea .matsuri_block.hokkaido:hover {
		box-shadow: 0 1px 3px 2px rgba(209, 201, 238, 1);
		transition: .2s;
	}
	.allOverArea .matsuri_block.tohoku:hover {
		box-shadow: 0 1px 3px 2px rgba(188, 211, 245, 1);
		transition: .2s;
	}
	.allOverArea .matsuri_block.chubu:hover {
		box-shadow: 0 1px 3px 2px rgba(191, 223, 195, 1);
		transition: .2s;
	}
	.allOverArea .matsuri_block.kansai:hover {
		box-shadow: 0 1px 3px 2px rgba(248, 235, 177, 1);
		transition: .2s;
	}
	.allOverArea .matsuri_block.chugoku:hover {
		box-shadow: 0 1px 3px 2px rgba(245, 205, 167, 1);
		transition: .2s;
	}
	.allOverArea .matsuri_block.kyushu:hover {
		box-shadow: 0 1px 3px 2px rgba(238, 172, 172, 1);
		transition: .2s;
	}
	.allOverArea .matsuri_block button:hover {
		background: #fff;
		color: #0e2d5e;
		border: 2px solid #0e2d5e;
		transition: .2s;
	}
	.allOverArea .matsuri_block button:hover::after {
		border-right: 3px solid #0e2d5e;
		border-bottom: 3px solid #0e2d5e;
		transition: .2s;
	}
}

@media screen and (max-width:767.98px) {
	.allOverArea .allOverArea_innerBox {
		display: none;
	}
}

/*---map---*/
.hokkaido {
  fill: #a79ae2;
}
.tohoku {
  fill: #8ec1f4;
}
.hokuriku_chubu_kanto {
  fill: #aed893;
}
.kansai {
  fill: #f9e95d;
}
.chugoku_shikoku {
  fill: #f9ba80;
}
.kyushu_okinawa {
  fill: #ff8585;
}
.line_dot {
  fill: #ccc;
}
.white_line {
  fill: #fff;
}
.allOverArea svg .hokkaido,
.allOverArea svg .tohoku,
.allOverArea svg .hokuriku_chubu_kanto,
.allOverArea svg .kansai,
.allOverArea svg .chugoku_shikoku,
.allOverArea svg .kyushu_okinawa {
	fill: #ccc;
}
/*---------*/
/*=====================*/



/*matsuriArea
=======================*/
.matsuriArea {
	padding: 25px 0 40px;
}
.matsuriArea:nth-child(odd) {
	background: #fff9e2;
}
.matsuriArea_contents {
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}
.matsuriArea_contents .infoBox {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
}
.matsuriArea_contents .infoBox .infoBlock {
	max-width: 540px;
}
.matsuriArea_contents .infoBox figure {
	max-height: 300px;
}
.matsuriArea_contents .infoBox figure.max250 {
	max-height: 250px;
}
.matsuriArea_contents .period {
	display: flex;
  justify-content: center;
  align-items: center;
	padding: 5px 15px 5px 40px;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	background: #a79ae2;
}
.matsuriArea.tohoku .matsuriArea_contents .period {
	background: #bbdaf8;
}
.matsuriArea.chubu .matsuriArea_contents .period {
	background: #cee8be;
}
.matsuriArea.kansai .matsuriArea_contents .period {
	background: #f8ebb1;
}
.matsuriArea.chugoku .matsuriArea_contents .period {
	background: #f5cda7;
}
.matsuriArea.kyushu .matsuriArea_contents .period {
	background: #eeacac;
}
.matsuriArea_contents.large {
	margin-bottom: 20px;
}
.matsuriArea_contents.large .period {
	font-size: 2rem;
}
.matsuriArea_contents h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 10px 0;
	line-height: 1.5;
	font-size: 3rem;
}
.matsuriArea_contents.large .infoBlock h3 {
	font-size: 4rem;
}
.matsuriArea_contents .introductionTxt {
	margin-top: 15px;
	font-size: 1.7rem;
}
.matsuriArea_contents .courseBlock_header {
	padding: 5px 0;
	color: #0e2d5e;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	border-top: 1px solid #0e2d5e;
	border-bottom: 1px solid #0e2d5e;
}
.matsuriArea_contents .courseBox {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.matsuriArea_contents_wrapBox {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.matsuriArea_contents_wrapBox .matsuriArea_contents {
	width: calc((100% - 60px) / 3);
}
.matsuriArea_contents_wrapBox.headless .matsuriArea_contents {
  margin-top: 0;
}
.matsuriArea_contents .infoBlock > button,
.matsuriArea_contents > button {
	display: none;
	width: 100%;
	margin-top: 25px;
	background: #0e2d5e;
	border: 2px solid #0e2d5e;
	border-radius: 50px;
	transition: .2s;
}
.matsuriArea_contents .infoBlock > button.toFeature,
.matsuriArea_contents > button.toFeature {
	display: block;
}
.matsuriArea_contents .infoBlock > button a,
.matsuriArea_contents > button a {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	padding: 10px 0;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
}
.matsuriArea_contents .infoBlock > button a::after,
.matsuriArea_contents > button a::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
	width: 20px;
  height: 20px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  transition: all .2s;
}
/*----準備中：ボタンデザイン----*/
/*.matsuriArea_contents button.preparation {
	display: block;
	padding: 10px 0;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
	background: #a9a9a9;
	border: 2px solid #a9a9a9;
	cursor: auto;
}*/
/*----準備中：ボタンデザイン----*/

/*----準備中：テキストのみ----*/
.matsuriArea_contents button.preparation {
	display: block;
	padding: 10px 0;
  margin-top: 15px;
	color: #a9a9a9;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.4;
	background: #fff;
	border: none;
	cursor: auto;
}
/*----準備中：テキストのみ----*/


@media (min-width: 768px) {
	.matsuriArea_contents_wrapBox {
		margin-top: 30px;
	}
	.matsuriArea_contents .infoBlock > button:hover:not(.preparation),
	.matsuriArea_contents > button:hover:not(.preparation) {
		background: #fff;
		border: 2px solid #0e2d5e;
		transition: .2s;
	}
	.matsuriArea_contents .infoBlock > button:hover a,
	.matsuriArea_contents > button:hover a {
		color: #0e2d5e;
		transition: .2s;
	}
	.matsuriArea_contents .infoBlock > button:hover a::after,
	.matsuriArea_contents > button:hover a::after {
		border-right: 4px solid #0e2d5e;
		border-bottom: 4px solid #0e2d5e;
		transition: .2s;
	}
}

@media screen and (max-width:767px) {
	.matsuriArea {
		padding: 1px 0 40px;
	}
	.matsuriArea_contents {
		padding: 20px 10px;
		border-radius: 0;
	}
	.matsuriArea_contents .period {
		padding-left: 45px;
	}
	.matsuriArea_contents .period,
	.matsuriArea_contents.large .period {
		font-size: 1.4rem;
	}
	.matsuriArea_contents .infoBlock h3,
	.matsuriArea_contents.large .infoBlock h3 {
		font-size: 2.5rem;
	}
	.matsuriArea_contents .introductionTxt {
		margin-top: 10px;
		padding: 0 10px;
		font-size: 1.3rem;
	}
	.matsuriArea_contents figure {
		margin-top: 20px;
	}
	.matsuriArea_contents .courseBlock_header {
		font-size: 1.5rem;
	}
	.matsuriArea_contents_wrapBox .matsuriArea_contents {
		width: 100%;
		margin: 20px 0 0 0;
	}
	.matsuriArea_contents_wrapBox.headless .matsuriArea_contents:nth-of-type(n+2) {
		margin-top: 20px;
	}
	.matsuriArea_contents .infoBox {
		display: block;
	}
	.matsuriArea_contents .infoBox .infoBlock {
		max-width: 100%;
		margin: 0 auto;
	}
	.matsuriArea_contents .infoBox figure {
		max-width: 540px;
		margin: 20px auto 0;
	}
	.matsuriArea_contents button a {
		padding: 10px 45px;
	}
  /*----準備中：テキストのみ----*/
  .matsuriArea_contents button.preparation {
    padding: 10px 0;
    margin-top: 15px;
    font-size: 1.8rem;
    font-weight: normal;
  }
/*----準備中：テキストのみ----*/
}

/*---slick---*/
.matsuriImg_slider {
	width: 100%;
  max-width: 540px;
	margin: 0;
}
.matsuriImg_slider img {
  max-width: 100%;
  height: auto;
  display: block;
}
.matsuriImg_slider .slick-prev, .matsuriImg_slider .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  transform: translate(0, -65%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.matsuriImg_slider .slick-arrow {
  width: 7.25%;
  height: auto;
  z-index: 1;
}
.matsuriImg_slider .slick-prev {
	left: 10px;
}
.matsuriImg_slider .slick-next {
	right: 10px;
}
.matsuriImg_slider .slick-next:before {
  transform: rotateZ(180deg);
}
.matsuriImg_slider .slick-arrow:before {
  content: '';
  display: block;
  padding-top: 100%;
  background: url(../img/btn_arrow_02.png) no-repeat 0 0 / contain;
  opacity: 1;
}
.matsuriImg_slider .slick-dots {
	text-align: center;
}
.matsuriImg_slider .slick-dots li {
	position: relative;
	display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.matsuriImg_slider .slick-dots button {
	position: absolute;
  top: -2px;
  left: -2px;
  width: 16px;
  height: 16px;
  padding: 100% 0 0;
  text-indent: -9999px;
	background: #ccc;
}
.matsuriImg_slider .slick-dots .slick-active button {
	background: #f24b18;
}
.matsuriImg_slider .slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:767px) {
	.matsuriImg_slider .slick-arrow {
    width: 10%;
	}
	.matsuriImg_slider .slick-prev,
	.matsuriImg_slider .slick-next {
		transform: translate(0, -50%);
	}
}
/*-----------*/


/*=====================*/



/*courseArea
=======================*/
/*---areaMenu---*/
.areaMenu {
	position: sticky;
	top: 0;
	margin-top: 30px;
	background: #d7d7d7;
	box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
	z-index: 10;
}
.areaMenu ul {
	display: flex;
	max-width: 1160px;
	margin: 0 auto;
}
.areaMenu li {
	width: 100%;
	text-align: center;
}
.areaMenu li a {
	display: block;
	width: 100%;
	padding: 12px 0;
	color: #323232;
	font-size: 1.8rem;
}
.areaMenu li a span {
	position: relative;
	padding-left: 10px;
}
.areaMenu li a span::after {
	position: absolute;
	content: '';
	top: 45%;
	left: -8px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #323232;
	border-bottom: 2px solid #323232;
	transform: translateY(-45%) rotate(45deg);
}
@media (min-width: 768px) {
	.areaMenu li a {
		position: relative;
		overflow: hidden;
		transition: 0.2s ease all;
	}
	.areaMenu li a:hover {
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
}

/*---courseItemsBox---*/
.areaBlock {
	padding-bottom: 74px;
}
.areaBlock:first-of-type {
	margin-top: 52px;
}
.areaBlock h3 {
	margin: 0;
	padding: 10px 0;
	font-size: 2.4rem;
	text-align: center;
	background: #d7d7d7;
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.courseItem {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
}
.courseItem:nth-of-type(3n) {
	margin-right: 0;
}
.courseItem:nth-of-type(n+4) {
	margin-top: 30px;
}
.courseItem a {
  display: block;
  border-radius: 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.course__card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.course__card__tagBox {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
}
.course__card__tagBox ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.course__card__tagBox ul li {
	margin: 0 10px 10px 0;
	padding: 3px 12px;
	color: #fff;
	font-size: 1.3rem;
	background: rgb(0 0 0 / .5);
	border-radius: 30px;
}
.course__card__img__caption {
  position: absolute;
	right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
  text-align: right;
}
.course__card__body {
	padding: 18px 18px 15px;
	background: #fff;
}
.course__card__codeArea__box {
	display: flex;
}
.course__card__code {
	position: relative;
  display: inline-block;
	min-width: 90px;
  padding: 0 10px 0 15px;;
  border: 1px solid #ddd;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 20px;
}
.course__card__code::after {
	position: absolute;
	content: '';
	top: -1px;
	left: -1px;
	width: 6px;
	height: 22px;
	background: #c51f1f;
}
.course__card__area__label {
	display: inline-block;
  min-width: 90px;
	margin-left: 10px;
  padding: 1px 10px;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 20px;
}
.course__card__title {
  margin-top: 8px;
	color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
	transition: all .3s;
}
.course__card__sub {
	margin-top: 5px;
}
.course__card__area {
  line-height: 1;
  text-align: right;
}
.course__card__unit {
  margin-top: 15px;
  font-size: 1.4rem;
	color: #707070;
	text-align: right;
}
.course__card__price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
	color: #cc0d21;
	text-align: right;
}
main [class*="course__card__head"] {
	padding-top: 52%;
	background-image: url(/med/app-files/img/tabimono_img.png);
  background-size: 60% auto;
  background-position: center;
  background-color: #C1C1C1;
  background-repeat: no-repeat;
  height: 0;
  position: relative;
  overflow: hidden;
}
main [class*="js_rweb2404_img_"] {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
}
main [class*="js_rweb2404_img_"]::after {
	top: 0;
}
main [class*="js_rweb2404_caption_"] {
	z-index: 2;
}
.noCourseTxt {
	margin: 15px auto;
	font-size: 1.6rem;
}
.matsuriArea_contents .noCourseTxt {
  margin: 30px auto;
  font-size: 1.8rem;
	color: #a9a9a9;
  text-align: center
}
.courseItemsBox .noCourseTxt_all{
    margin: 0 auto;
	font-size: 1.6rem;
    text-align: center;
    padding-bottom: 50px;
}
@media (min-width: 768px) {
	.courseItem a:hover .course__card__title {
		color: #cc0d21;
		text-decoration: underline;
		transition: all .3s;
	}
}
@media screen and (max-width:767.98px) {
	.areaBlock {
		padding-bottom: 47px;
	}
	.areaBlock h3 {
		padding: 8px 0;
		font-size: 1.7rem;
	}
	.courseItemsBox {
		display: block;
		margin-top: 24px;
		padding: 0 10px;
	}
	.courseItem {
		width: 100%;
		margin-right: 0;
	}
	.courseItem:nth-of-type(n+2) {
		margin-top: 15px;
	}
	.course__card {
		display: flex;
		background: #fff;
	}
	main [class*="course__card__head"] {
		padding-top: 0;
		padding-left: 34%;
	}
	main [class*="js_rweb2404_img_"]::after {
		background-size: cover;
	}
	main [class*="bgContain js_rweb2404_img_"]::after {
		background-size: contain!important;
	}
	.course__card__img__caption {
		right: 8px;
    bottom: 5px;
		font-size: 1rem;
	}
	.course__card__tagBox {
		position: static;
	}
	.course__card__tagBox ul {
		margin-top: 8px
	}
	.course__card__tagBox ul li {
		margin: 0 5px 5px 0;
		padding: 2px 7px;
		font-size: 1rem;
	}
	.course__card__body {
		width: 100%;
		padding: 8px 10px;
	}
	.course__card__code {
		min-width: 70px;
		font-size: 1.2rem;
	}
	.code_smaller {
		min-width: 55px;
		padding: 0 5px 0 10px;
	}
	.course__card__area {
		text-align: left;
	}
	.course__card__area__label {
		min-width: 60px;
		font-size: 1rem;
	}
	.course__card__title {
		font-size: 1.5rem;
	}
	.course__card__unit {
		margin-top: 5px;
		font-size: 1.1rem;
	}
	.course__card__price {
		margin-top: 5px;
		font-size: 1.7rem;
	}
	.noCourseTxt {
		font-size: 1.3rem;
		text-align: center;
	}
  .matsuriArea_contents .noCourseTxt {
    margin: 20px auto 10px;
    font-size: 1.8rem;
    color: #a9a9a9;
    text-align: center
  }
    .courseItemsBox .noCourseTxt_all{
         font-size: 1.3rem;
		text-align: center;
    padding-bottom: 35px;
	}
}

@media screen and (max-width:359.98px) {
	.code_smaller {
		min-width: 40px;
		padding: 0 4px 0 8px;
		font-size: 1rem;
	}
}
/*=====================*/


/*selectdiv(pulldown)
=======================*/
.select_label {
  padding: 28px 0 0;
  font-weight: bold;
}
.selectdiv {
	position: relative;
	top: 0;
	max-width: 250px;
	width: 100%;
  margin: 35px auto;
	transition: .2s ease all;
}
select:focus {
	outline: 0;
	border: 1px solid #cc0d21;
}
select::-ms-expand {
  display: none;
}
.selectdiv::before {
  content: '';
  position: absolute;
  display: block;
  right: 60px;
  width: 1px;
  height: 32px;
  top: 50%;
	transform: translateY(-50%);
	background: #323232;
	cursor: pointer;
	z-index: 10;
}
.selectdiv::after {
  content: '';
  display: inline-block;
  padding: 0;
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  pointer-events: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 280px;
  height: 58px;
  margin: 5px auto;
  padding: 0 30px 0 20px;
	color: #232323;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  -ms-word-break: normal;
  word-break: normal;
	border: 1px solid #fff;
	border-radius: 5px;
  cursor: pointer;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.selectdiv .decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.selectdiv .decoration::before,
.selectdiv .decoration::after {
	position: absolute;
	content: '';
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #323232;
  border-bottom: 2px solid #323232;
	cursor: pointer;
}
.selectdiv .decoration::before {
	top: 20px;
  transform: rotate(-135deg);
}
.selectdiv .decoration::after {
	top: 28px;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
	.selectdiv:hover select {
		border: 1px solid #cc0d21;
		transition: .2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.selectdiv {
		max-width: 205px;
	}
	.selectdiv select {
		height: 48px;
		padding: 4px 30px 0 20px;
		font-size: 1.5rem;
	}
	.selectdiv .decoration::before {
		top: 17px;
	}
	.selectdiv .decoration::after {
		top: 24px;
	}
	/*---iPhone only---*/
	.iPhone .selectdiv select {
		padding-top: 0;
	}
	/*-----------------*/
}


/*---matsuriArea---*/
.select_matsuriArea {
	margin-bottom: 30px;
	padding: 0 10px;
	text-align: center;
}
.select_matsuriArea select {
  width: 100%;
  padding: 10px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  background: #0e2d5e;
  border: none;
  border-radius: 10px;
	-webkit-appearance: none;
  appearance: none;
}
.select_matsuriArea label {
	position: relative;
}
.select_matsuriArea label::after {
	position: absolute;
  content: '';
  top: 45%;
  right: 20px;
  width: 13px;
  height: 13px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.select_matsuriArea select option {
  font-weight: bold;
}

/*=====================*/



/*seasonSelector
=======================*/
#seasonSelector {
  position: fixed;
  bottom: -130px;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  transition: .5s ease;
  z-index: 20;
}
#seasonSelector .seasonSelector_innerBox_01 {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 7px 20px;
	font-size: 1.8rem;
	background: #fdfdfd;
	border-radius: 5px;
	overflow: hidden;
}
#seasonSelector .seasonSelector_innerBox_02 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
#seasonSelector .headerTxt {
  margin: 0 auto;
}
#seasonSelector .input_wrap {
  position: relative;
	min-width: 120px;
  padding: 5px 10px 5px 7px;
	border-radius: 5px;
}
#seasonSelector .input_wrap.all {
	background: #e4e4e4;
}
#seasonSelector .input_wrap.spring {
	background: #f1c2d3;
}
#seasonSelector .input_wrap.summer {
	background: #bcd7c8;
}
#seasonSelector .input_wrap.autumn {
	background: #e9d9c1;
}
#seasonSelector .input_wrap.winter {
	background: #d8c5e7;
}
#seasonSelector input {
	position: relative;
	top: 1px;
  width: 25px;
  height: 26px;
  background: #fff;
  border-radius: 5px;
  vertical-align: -5px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#seasonSelector .input_wrap.all input {
  border: 2px solid #7a7a7a;
}
#seasonSelector .input_wrap.spring input {
  border: 2px solid #d1678d;
}
#seasonSelector .input_wrap.summer input {
  border: 2px solid #439568;
}
#seasonSelector .input_wrap.autumn input {
  border: 2px solid #c0995d;
}
#seasonSelector .input_wrap.winter input {
  border: 2px solid #9f57be;
}
#seasonSelector input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
	width: 17px;
  height: 17px;
  border-radius: 3px;
}
#seasonSelector .input_wrap.all input:checked::after {
  background: #7a7a7a;
}
#seasonSelector .input_wrap.spring input:checked::after {
  background: #d1678d;
}
#seasonSelector .input_wrap.summer input:checked::after {
  background: #439568;
}
#seasonSelector .input_wrap.autumn input:checked::after {
  background: #c0995d;
}
#seasonSelector .input_wrap.winter input:checked::after {
  background: #9f57be;
}

@media (min-width: 768px) {
	#seasonSelector {
		display: flex;
		justify-content: space-evenly;
	}
}

@media screen and (max-width:767.98px) {
  #seasonSelector {
    padding: 10px;
  }
	#seasonSelector .seasonSelector_innerBox_01 {
		display: block;
	}
	#seasonSelector .input_wrap {
		max-width: 55px;
		min-width: auto;
		text-align: center;
		line-height: 1.2;
	}
	#seasonSelector .headerTxt {
		text-align: center;
		line-height: 1.4;
		font-size: 1.5rem;
		font-weight: bold;
	}
	#seasonSelector .headerTxt span {
		position: relative;
	}
	#seasonSelector .headerTxt span::before {
		position: absolute;
		content: '';
		top: 50%;
		left: -220px;
		width: 200px;
		height: 1.5px;
		background: #323232;
		transform: translateY(-50%);
	}
	#seasonSelector .headerTxt span::after {
		position: absolute;
		content: '';
		top: 50%;
		right: -220px;
		width: 200px;
		height: 1.5px;
		background: #323232;
		transform: translateY(-50%);
	}
	#seasonSelector label {
		font-size: 1.3rem;
		font-weight: bold;
	}
	#seasonSelector .seasonSelector_innerBox_02 {
		margin-top: 7px;
	}
}

@media screen and (max-width:359px) {
	#seasonSelector label {
		font-size: 1.2rem;
	}
}
/*=====================*/



/*seasonSelector
=======================*/
.checkBox_wrap {
  position: fixed;
  bottom: -130px;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  transition: .5s ease;
  z-index: 20;
}
.checkBox_wrap .seasonSelector_innerBox_01 {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 7px 20px;
	font-size: 1.8rem;
	background: #fdfdfd;
	border-radius: 5px;
	overflow: hidden;
}
.checkBox_wrap .seasonSelector_innerBox_02 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.checkBox_wrap .headerTxt {
  margin: 0 auto;
}
.checkBox_wrap .input_wrap {
  position: relative;
  padding: 5px 10px 5px 7px;
	border-radius: 5px;
}
.checkBox_wrap input {
	position: relative;
	top: 1px;
  width: 25px;
  height: 26px;
  background: #fff;
  border: 2px solid #cccccc;
  border-radius: 5px;
  vertical-align: -5px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkBox_wrap input[type="checkbox"]:disabled {
	background: #e6e6e6;
}
.checkBox_wrap .input_wrap input:checked {
	border: none;
}
.checkBox_wrap .input_wrap.all input:checked {
  background: #7a7a7a;
}
.checkBox_wrap .input_wrap.spring input:checked {
  background: #d1678d;
}
.checkBox_wrap .input_wrap.summer input:checked {
  background: #439568;
}
.checkBox_wrap .input_wrap.autumn input:checked {
  background: #c0995d;
}
.checkBox_wrap .input_wrap.winter input:checked {
  background: #9f57be;
}
.checkBox_wrap input:checked::before {
	position: absolute;
  content: '';
  top: 4px;
  left: 8px;
  transform: rotate(50deg);
  width: 9px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

/*---季節ごとの色分け用---*/
/*.checkBox_wrap .input_wrap.all {
	background: #e4e4e4;
}
.checkBox_wrap .input_wrap.spring {
	background: #f1c2d3;
}
.checkBox_wrap .input_wrap.summer {
	background: #bcd7c8;
}
.checkBox_wrap .input_wrap.autumn {
	background: #e9d9c1;
}
.checkBox_wrap .input_wrap.winter {
	background: #d8c5e7;
}*/
/*.checkBox_wrap .input_wrap.all input {
  border: 2px solid #7a7a7a;
}
.checkBox_wrap .input_wrap.spring input {
  border: 2px solid #d1678d;
}
.checkBox_wrap .input_wrap.summer input {
  border: 2px solid #439568;
}
.checkBox_wrap .input_wrap.autumn input {
  border: 2px solid #c0995d;
}
.checkBox_wrap .input_wrap.winter input {
  border: 2px solid #9f57be;
}*/
/*.checkBox_wrap input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
	width: 17px;
  height: 17px;
  border-radius: 3px;
}*/
/*.checkBox_wrap .input_wrap.all input:checked::after {
  background: #7a7a7a;
}
.checkBox_wrap .input_wrap.spring input:checked::after {
  background: #d1678d;
}
.checkBox_wrap .input_wrap.summer input:checked::after {
  background: #439568;
}
.checkBox_wrap .input_wrap.autumn input:checked::after {
  background: #c0995d;
}
.checkBox_wrap .input_wrap.winter input:checked::after {
  background: #9f57be;
}*/
/*---------------------*/

@media (min-width: 768px) {
	.checkBox_wrap {
		display: flex;
		justify-content: space-evenly;
	}
}

@media screen and (max-width:767.98px) {
  .checkBox_wrap {
    padding: 10px;
  }
	.checkBox_wrap .seasonSelector_innerBox_01 {
		display: block;
		padding: 5px 20px 2px;
	}
	.checkBox_wrap .input_wrap {
		max-width: 55px;
		min-width: auto;
		text-align: center;
		line-height: 1.2;
	}
	.checkBox_wrap .headerTxt {
		text-align: center;
		line-height: 1.4;
		font-size: 1.5rem;
		font-weight: bold;
	}
	.checkBox_wrap .headerTxt span {
		position: relative;
	}
	.checkBox_wrap .headerTxt span::before {
		position: absolute;
		content: '';
		top: 50%;
		left: -220px;
		width: 200px;
		height: 1.5px;
		background: #323232;
		transform: translateY(-50%);
	}
	.checkBox_wrap .headerTxt span::after {
		position: absolute;
		content: '';
		top: 50%;
		right: -220px;
		width: 200px;
		height: 1.5px;
		background: #323232;
		transform: translateY(-50%);
	}
	.checkBox_wrap label {
		font-size: 1.3rem;
		font-weight: bold;
	}
	.checkBox_wrap .seasonSelector_innerBox_02 {
		margin-top: 3px;
	}
}

@media screen and (max-width:359px) {
	.checkBox_wrap label {
		font-size: 1.2rem;
	}
}
/*=====================*/



/*seasonIcon
=======================*/
.seasonContent {
	position: relative;
}
.seasonIcon {
	position: absolute;
	top: 15px;
	left: 5px;
}
.matsuri_table .seasonIcon {
	position: static;
}
@media screen and (max-width:767.98px) {
	.seasonIcon {
		top: 12px;
	}
}
/*=====================*/



/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap{
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi{
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before,
.area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit{
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li{
  width: 100%;
}
.area_button__link li a{
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before{
	display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after{
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
	.area_button {
		margin-top: 0;
	}
	.area_button__link li{
		max-width: 138px;
	}
	.area_button__link li a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:767.98px) {
	.area_button__link {
		margin: 0 10px 0;
	}
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/


/*pageTopBtn
=======================*/
.pageTopBtn {
	display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
	left: 93%;
	position: sticky;
	bottom: 95px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
	background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
	cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
	opacity: 1;
}
.pageTopBtn.-show a {
	cursor: pointer;
}
.pageTopBtn.-transition500 {
	transition: .2s ease;
}

@media screen and (min-width:768px) {
	.pageTopBtn a:hover {
		background: #c2c2c2;
	}
}

@media screen and (max-width:767.98px) {
	.pageTopBtn {
		bottom: 125px;
	}
	.pageTopBtn a {
		width: 45px;
    height: 45px;
	}
	.pageTopBtn a:before {
		width: 16px;
    height: 16px;
	}
}
/*=====================*/



/*others
=======================*/
.blankTxt {
	display: none;
	padding: 15px;
	text-align: center;
	font-size: 1.7rem;
}
.scroll-hint-icon {
	z-index: 5;
}
@media screen and (max-width:767.98px) {
	.blankTxt {
		padding: 15px 10px;
		font-size: 1.3rem;
	}
}
/*=====================*/

/*otherFeaturesArea
=======================*/
.otherFeaturesArea {
	max-width: 1160px;
	margin: 50px auto 30px;
}
.otherFeaturesArea h2 {
	margin: 0;
	/*color: #47a572;*/
	text-align: center;
	font-size: 3rem;
}
.otherFeaturesArea h2 span {
	position: relative;
}
.otherFeaturesArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	/*background: #8BCEA9;*/
	transform: translateY(-50%);
}
.otherFeaturesArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	/*background: #8BCEA9;*/
	transform: translateY(-50%);
}

.featuresBox_wrap {
	margin-top: 30px;
}
.featuresBox {
	display: flex;
  justify-content: center;
  gap: 40px;
}
.featuresBox a {
	display: inline-block;
	height: 100%;
	transition: opacity .2s;
}
@media screen and (min-width:768px) {
	.featuresBox a:hover {
		opacity: .7;
	}
}

@media screen and (max-width:767.98px) {
	.otherFeaturesArea {
		margin: 35px 0 40px;
	}
	.otherFeaturesArea h2 {
		overflow: hidden;
	}
	.otherFeaturesArea h2 span {
		font-size: 2.5rem;
	}
	.otherFeaturesArea h2 span::before,
	.otherFeaturesArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.otherFeaturesArea h2 span::before {
		left: -370%;
	}
	.otherFeaturesArea h2 span::after {
		right: -370%;
	}
	.featuresBox {
    flex-direction: column;
		gap: 20px;
		padding: 0 20px;
	}
  .featuresBox a picture img {
    border-radius: 5px;
    box-shadow: 1px 0 4px 0 rgba(0, 0, 0, .1);
  }
}
/*=====================*/

/*pick up(PC)
=======================*/
.assist-banner {
  position: fixed;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
  transition: right .8s cubic-bezier(.4, 0, .2, 1) 0s;
  z-index: 9997;
  font-family:游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
}
.assist-banner__inner {
  overflow: hidden;
  background: #fff;
}
.assist-banner__pickup {
  display: flex;
  position: absolute;
  left: 0;
  justify-content: center;
  width: 100%;
}
.assist-banner__pickup__inner {
  border-radius: 50px;
  background: #fc0;
}
.assist-banner__pickup__inner:after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fc0 transparent transparent;
  content: "";
}
button:not([disabled]), input[type=submit] {
	cursor: pointer;
}
.assist-banner__block {
  display: flex;
}
.assist-banner__close {
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
}
.assist-banner__img {
  flex-shrink: 0;
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
/*.assist-banner__detail {
	font-weight: bold;
}*/
.assist-banner__detail .smaller {
  font-size: 1.1rem;
}
.assist-banner__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}
.assist-banner__title {
	transition: color .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.assist-banner__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  padding: 0;
  border: none;
  border-radius: 0 0 0 5px;
  outline: none;
  background: #ba0c1e;
  text-indent: -9999px;
  cursor: pointer;
}
.assist-banner__close:after, .assist-banner__close:before {
  display: block;
  position: absolute;
  height: 1px;
  background: #fff;
  content: "";
}
.assist-banner__close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.assist-banner__close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.assist-banner__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}

@media print, screen and (min-width: 768px) {
  .assist-banner.is-show {
    right: 22px;
  }
  .assist-banner {
    right: -320px;
    bottom: 230px;
    width: 320px;
    border: 5px solid #ba0c1e;
    border-radius: 5px 0 5px 5px;
  }
  .assist-banner__inner {
    padding: 12px 15px 12px 12px;
  }
	.assist-banner__pickup__inner {
		padding: 0 18px;
	}
	.assist-banner__pickup__inner:after {
    bottom: -7px;
    left: calc(50% - 4.5px);
    border-width: 7px 4.5px 0;
  }
	.assist-banner__close {
    top: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
  }
  .assist-banner__close:after, .assist-banner__close:before {
    top: 50%;
    left: 6px;
    width: 14px;
  }
	.assist-banner__pickup {
		top: -25px;
  }
	.assist-banner__img {
    width: 100px;
    margin-right: 18px;
  }
  .assist-banner__detail {
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
	.assist-banner__title {
		font-weight: 700;
		letter-spacing: -1px;
    line-height: 1.2;
	}
}

/*=====================*/


/*coupon_bn(SP)
=======================*/
.coupon_bn {
  margin: 10px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.coupon_bn a {
  display: inline-block;
  height: 100%;
}

/*=====================*/



/*万博コース
=======================*/
.expo_img_area {
    content: "";
    display: block;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-color: #C1C1C1;
}

@media (min-width: 768px) {
  .expo__body {
    /*position: relative;*/
}
  .expo_course {
    display: inline-block;
    font-size: 1.2rem;
    color: #707070;
    text-align: end;
    position: absolute;
    top: 0;
    right: 5px;
  }
}
@media screen and (max-width:767.98px) {
  .expo__body {
    position: relative;
}
  .expo_course {
    display: inline-block;
    font-size: 1.0rem;
    color: #707070;
    position: absolute;
    left: 5px;
    bottom: 0;
    text-align: left;
  }
  .expo_img_area {
    content: "";
    display: flex;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-color: #C1C1C1;
    align-items: center;
  }
  .expo__body .course__card__price  {
    width: 50%;
    margin-left: 50%;
  }
}
/*.course__card__body {
  position: relative;
}*/
.expo_img_area {
  content: "";
  display: block;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-color: #C1C1C1;
}
@media screen and (min-width:768px) {
  .expo__body {
    position: relative;
  }
  .expo_course {
    display: inline-block;
    font-size: 1.2rem;
    color: #707070;
    text-align: end;
    position: absolute;
    top: 0;
    right: 5px;
  }
}
@media screen and (max-width: 768px) {
  .expo__body {
    position: relative;
  }
  .expo_course {
    display: inline-block;
    font-size: 1.0rem;
    color: #707070;
    position: absolute;
    left: 5px;
    bottom: 0;
    text-align: left;
  }
  .expo_img_area {
    content: "";
    display: flex;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-color: #C1C1C1;
      align-items: center;
  }

}
/*=======================*/