.navbar-collapse {
	flex-direction: column;
}

#navigation {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#navigation ul {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#navigation ul > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#navigation ul > li.mttl {
	position: relative;
	padding: 8px 10px 9px 30px;
	color: #FFF;
	margin: 0;
	background: #A8A0DE;
  font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 1px;
	border-top: 5px solid #9289D6;
}
#navigation ul > li.mttl::before {
  position: absolute;
  left: 10px;
	top: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: '\f005';
	font-size: 1.2rem;
}

#navigation ul li > a {
	position: relative;
	text-decoration: none;
	display: block;
	padding: 14px 10px 15px 30px;
	color: #372C7F;
	margin: 0;
	border-bottom: 1px solid lavender;
	background: rgba(255,255,255,0.70);
	transition:all 0.3s ease;
	font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3em;
}

#navigation ul > li a::before {
  position: absolute;
  left: 12px;
	top: calc(50% - 8px);
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: '\f105';
	color: #CACAF4;
}
/* 表示領域が768px以上の場合に適用するスタイル */
@media screen and (min-width: 768px) {
	#navigation ul li > a.two-stage {
		padding: 5px 10px 6px 30px;
	}
}

#navigation ul > li a.home { /* HOME */
	padding-left: 40px;
}

#navigation ul > li a.home::before { /* HOME */
  content: '\f015';
	font-size: 1.6rem;
  left: 10px;
	top: calc(50% - 9px);
}

#navigation ul > li.new::before {
	position: absolute;
	content: "NEW";
	top: 12px;
	right: 5px;
	background-color: crimson;
	border: 1px solid #F59798;
	padding: 2px 5px 4px;
	font-size: 1.1rem;
	border-radius: 5px;
	color: #FFF;
	line-height: 1;
	z-index: 10;
	font-weight: 700;
}

#navigation ul > li.new2::before {
	position: absolute;
	content: "NEW";
	top: 9px;
	right: 5px;
	background-color: crimson;
	border: 1px solid #F59798;
	padding: 2px 5px 4px;
	font-size: 1.1rem;
	border-radius: 5px;
	color: #FFF;
	line-height: 1;
	z-index: 10;
	font-weight: 700;
}
#navigation ul > li.new3::before {
	position: absolute;
	content: "NEW";
	top: 15px;
	right: 5px;
	background-color: crimson;
	border: 1px solid #F59798;
	padding: 2px 5px 4px;
	font-size: 1.1rem;
	border-radius: 5px;
	color: #FFF;
	line-height: 1;
	z-index: 10;
	font-weight: 700;
}

#navigation ul > li.rec::before {
	position: absolute;
	content: "受付中";
	top: 6px;
	right: 3px;
	background-color: #FF6E00;
	padding: 4px 8px 6px;
	font-size: 1.1rem;
	border-radius: 9999px;
	color: #FFF;
	line-height: 1;
	z-index: 10;
	font-weight: 700;
}
#navigation ul > li.rec2::before {
	position: absolute;
	content: "受付中";
	top: 10px;
	right: 3px;
	background-color: #FF6E00;
	padding: 4px 8px 6px;
	font-size: 1.1rem;
	border-radius: 9999px;
	color: #FFF;
	line-height: 1;
	z-index: 10;
	font-weight: 700;
}
.blinking::before {
	-webkit-animation:blink 1s ease-in-out infinite alternate;
	-moz-animation:blink 1s ease-in-out infinite alternate;
	animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
	0% {opacity:0.2;}
	100% {opacity:1;}
}
@-moz-keyframes blink{
	0% {opacity:0.2;}
	100% {opacity:1;}
}
@keyframes blink{
	0% {opacity:0.2;}
	100% {opacity:1;}
}

.blinking2::before {
	-webkit-animation:blink2 0.5s infinite linear alternate;
	-moz-animation:blink2 0.5s infinite linear alternate;
	animation:blink2 0.5s infinite linear alternate;
}
@-webkit-keyframes blink2{
	0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-4px);
  }
}
@-moz-keyframes blink2{
	0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-4px);
  }
}
@keyframes blink2{
	0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-4px);
  }
}

#navigation ul > li a:hover {
	background: rgba(255,255,255,0.40);
	color: #372C7F;
	padding-left: 32px;
}
#navigation ul > li a.home:hover::before { /* HOME */
  left: 10px;
}
#navigation ul > li a.home:hover { /* HOME */
	padding-left: 40px;
}

#navigation ul > li a.cur {
	background: #372C7F url("../images/menu_bg.png") center right no-repeat;
	font-weight: 700;
	color: #FFF;
	text-shadow:2px 2px 0 #372C7F, -2px -2px 0 #372C7F,
              -2px 2px 0 #372C7F, 2px -2px 0 #372C7F,
              0px 2px 0 #372C7F,  0-2px 0 #372C7F,
              -2px 0 0 #372C7F, 2px 0 0 #372C7F;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
	position: static;
}

/* ドロップダウンメニュー */
.dropdown-menu {
	border-radius: 0;
	border: none;
}

#navigation ul li ul.dropdown-menu li a {
	padding: 9px 10px 10px 30px;
	color: #372C7F;
	margin: 0;
	border-bottom: 1px solid #FFF;
	background: lavender;
  font-weight: 400;
}
#navigation ul li ul.dropdown-menu li a:hover {
	background: rgba(255,255,255,0.65);
	color: #372C7F;
	padding-left: 32px;
}
#navigation ul li ul.dropdown-menu li a::before {
  position: absolute;
  left: 19px;
	top: 10px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: '\f0da';
	color: #372C7F;
}
#navigation ul li ul.dropdown-menu li a:hover::before {
  left: 21px;
}

.dropdown-toggle::after {
	position: absolute;
	top: 45%;
	right: 10px;
	border-top: .4em solid;
	border-right: 0.35em solid transparent;
	border-left: 0.35em solid transparent;
}

#navbarNavDropdown li a:hover {
    color: #FFF;
}
#navbarNavDropdown div.dropdown-menu {
	padding: 0;
}
#navbarNavDropdown div.dropdown-menu > a {
	padding: 13px 15px;
	background-color: darkgray;
	text-align: left;
	font-weight: normal;
}

/*#navbarNavDropdown div > a {
	height: 38px;
	border-top: 1px solid #D9D5C8;
}*/

button.navbar-toggler {
	width: 100%;
	background: #A8A0DE;
	border-bottom: 1px solid #A8A0DE;
	border-radius: 0px;
	padding: 0.4rem 0.4rem 0.6rem;
}

button.navbar-toggler span {
	text-align: center;
	padding: 5px;
	display: block;
	content: '';
	cursor: pointer;
	color: #FFF;
	line-height: 1;
	right: 0;
	font-size: 2rem;
	font-weight: 500;
}

ul.submenu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0 0 2em;
	padding: 10px 0;
}
ul.submenu li > a {
	display: block;
  position: relative;
  padding: 0.5em 0.2em 0.6em 1.6em;
  margin: 0;
	color: #372C7F;
	text-decoration: none;
	line-height: 1;
	border-bottom: 1px dotted #372C7F;
}
ul.submenu > li:first-child {
	border-top: 1px dotted #372C7F;
}
ul.submenu li > a.pre {
	color: #999;
}

ul.submenu li > a::before {
  position: absolute;
  left: 10px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: '\f0da';
	color: #CACAF4;
}

ul.submenu li > a:hover {
	background: #EFEFFB;
}
ul.submenu li > a.pre:hover {
	background: #FFF9;
	color: #999;
	cursor: default;
}
ul.submenu li > ul {
  list-style: none;
}

ul.submenu li > ul li a {
  padding-left: 1em;
}

ul.submenu li > ul li a::before {
	content: '';
}

ul.topnav {
  display: flex;
  justify-content: start;
  list-style: none;
  padding: 0;
  margin: 0 0 2em;
	background-color: #F8F8FE;
	border: 1px solid #CACAF4;
}
ul.topnav li a {
	display: block;
  position: relative;
  padding: 4px 1.5em 5px 2.2em;
  margin: 0;
	border-right: 1px solid #CACAF4;
	background: #FFF;
	color: #372C7F;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: none;
}
ul.topnav li a::before {
  position: absolute;
  left: 13px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: '\f101';
	color: #CACAF4;
	top: 5px;
}

ul.topnav li a:hover {
	background: #EFEFFB;
}

ul.topnav li a.active {
	font-weight: 900;
	background: #372C7F;
	color: #FFF;
	cursor: inherit;
	padding-left: 2.4em;
}
ul.topnav li a.active::before {
	color: #FFF;
	content: '\f00c';
}

/* ハンバーガーメニュー内の [日本語・英語の切替ボタン]
------------------------------------------------------------ */
.sp_nav_lang {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 10px;
	gap: 0 10px;
	background: #FFF;
	width: 100%;
}
.sp_nav_lang div a {
	display: block;
	border: 1px solid #9289D6;
	font-size: 1.4rem;
	padding: 5px 10px 6px;
	line-height: 1;
	background: #E6E6E6;
	color: #808080;
	text-decoration: none;
}
.sp_nav_lang div a.cur {
	background: #372C7F;
	color: #FFF;
	
}
.sp_nav_lang div a:hover {
	background: #372C7F;
	color: #FFF;
	text-decoration: none;
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	#navigation ul > li a.noborder {
		border-bottom: none;
	}
}

/* 表示領域が991.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 991.98px) {
	#navigation ul > li a {
		margin: 0;
		border-bottom: 1px solid #D3EAF9;
		border-radius: 0;
		background: #FFF;
	}
	#navigation ul > li.mttl {
		border-bottom: 1px solid #D3EAF9;
	}
}

/* 表示領域が767.98px以下の場合に適用するスタイル */
@media screen and (max-width: 767.98px) {
	ul.topnav {
		flex-direction: column;
		border-bottom: none;
	}
	ul.topnav li a {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #DEDCD6;
	}
}