@charset 'utf-8';

:root {
	--corporate-color: #e60012;
}

body {
	font-size: 14px;
	line-height: 1.7;
	position: relative;
	color: #333;
}

header *,
footer * {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "YuGothic", "sans-serif";
	box-sizing: border-box;
}

header img,
footer img {
	max-width: 100%;
	height: auto;
}

.hidden-item{
	display: none;
}

.nav_02 .container,
.footer_menu_area .container {
	box-sizing: border-box;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 15px;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: '';
}

.clearfix:after {
	clear: both;
}

.sp_only {
	display: none !important;
}

.info {
	background-color: #51cece;
}

.primary {
	background-color: #2d7bb9;
}

.success {
	background-color: #60c291;
}

.warning {
	background-color: #bbbe2d;
}

.danger {
	background-color: #f06670;
}

.link_arrow_pos_l {
	display: grid;
	align-items: flex-start;
	grid-template-columns: 1em 1fr;
}

.link_arrow_pos_l::after {
	display: inline-block;
	width: .45em;
	margin-top: calc(1em / 2);
	content: '';
	transform: rotate(45deg);
	border-top: solid 1px var(--corporate-color);
	border-right: solid 1px var(--corporate-color);
	aspect-ratio: 1/1;
	grid-row-start: 1;
	grid-column-start: 1;
}

.link_arrow_pos_l_circle {
	grid-gap: 0 .25em;
}

.link_arrow_pos_l_circle::after {
	width: .35em;
}

.link_arrow_pos_l_circle::before {
	width: 1em;
	content: '';
	transform: translate(-.275em, .3em);
	border: solid 1px #ccc;
	border-radius: 100%;
	background: #fff;
	aspect-ratio: 1/1;
	grid-row-start: 1;
	grid-column-start: 1;
}

#main_content_area {
	padding-top: 130px;
}

/* Header Area */
header#main_header {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "YuGothic", "sans-serif";
	font-size: 14px;
	line-height: 1.7;
	position: fixed;
	z-index: 1098;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	text-align: left;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .4);
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .4);
}

header#main_header * {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "YuGothic", "sans-serif";
}

#main_header a {
	text-decoration: none;
	color: #333;
}

#main_header .nav_01 {
	display: grid;
	border-bottom: 1px solid #e6e6e6;
	grid-template-areas: 'logo . top_submenu';
	grid-template-rows: clamp(25px, 20vw, 51px);
	grid-template-columns: clamp(180px, 60vw, 280px) 1fr clamp(5em, 35vw, 15em);
}

@media (min-width:1020px) {
	#main_header .nav_01 {
		padding: 0 clamp(1em, 5%, 5em);
		grid-template-areas:
			'logo top_menu top_submenu'
			'menu_dropdown menu_dropdown menu_dropdown';
		grid-template-columns: clamp(120px, 100%, 260px) 1fr clamp(1em, 30%, 13em);
		grid-gap: 0 2em;
	}

	.nav_top_submenu{
		display:flex;
	}
}

#main_header .nav_logo {
	padding-left: 10px;
	grid-area: logo;
}

#main_header .nav_top_menu {
	grid-area: top_menu;
}

#main_header .nav_top_submenu {
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: flex-end; */
	/* width: 100%; */
	/* height: 100%; */
	grid-area: top_submenu;
}

#main_header .nav_top_submenu ul {
	display: grid;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	grid-template-columns: repeat(auto-fit,3.5em);
	grid-gap: 0 6px;
	grid-template-rows: 1fr;
	margin-right: 10px;
}

#main_header .nav_top_submenu ul li {
	height: 100%;
}

#main_header .nav_top_submenu ul a {
	font-size: clamp(12px, 1vw, 14px);
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 15em;
	/* color: #fff; */
	/* border-radius: 3px; */
	/* background: #e60012; */
	height: 100%;
	padding: 4px 8px;
	text-align: center;
}

#main_header .nav_top_submenu ul a img {
	max-height: 2em;
	vertical-align: middle;
}

#main_header .nav_top_submenu ul a.modal-active-item img {
	filter: brightness(2);
}


#main_header .nav_top_submenu .top_submenu_label {
	margin-left: clamp(0px, .5vw, 1em);
}

#main_header .mega_menu_dropdown {
	grid-area: menu_dropdown;
}

#main_header .nav_01>div.nav_top_others {
	width: 15%;
}

#main_header .nav_01>div.nav_logo {
	padding-top: 14px;
}

#main_header .nav_01>div.nav_logo a {
	line-height: 0;
	display: block;
	max-width: 100%;
}

#main_header .nav_01>div.nav_top_others {
	font-size: 14px;

	text-align: right;
	;
}

#main_header .nav_01>div.nav_top_others ul li a {
	display: block;
	padding: 14px 13px;
}

#main_header .nav_01>div.nav_top_menu {
	max-width: 150ch;
	text-align: center;
}

#main_header .nav_01 .nav_top_menu ul li,
#main_header .nav_01 .nav_top_others ul li,
#main_header .nav_01 .nav_top_menu ul li img,
#main_header .nav_01 .nav_top_menu ul li span {
	display: inline-block;
	vertical-align: middle;
}

#main_header .nav_01 .nav_top_menu ul li {
	font-size: clamp(12px, 1vw, 14px);
	font-weight: 700;
}

#main_header .nav_01 .nav_top_menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0 5px;
	padding: 12px 0;
	border-bottom: 2px solid #e60012;
}

#main_header .nav_01 .nav_top_menu ul li img {
	width: 20px;
	margin-right: 5px;
}

#main_header .nav_01 .nav_logo img {
	width: 100%;
}

.top_menu_01 {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fit, clamp(7em, 30%, 13em));
	grid-gap: clamp(1em, 3%, 2em);
}

#main_header .nav_02 .nav_main_menu ul {
	display: flex;
	justify-content: space-between;
}

#main_header .nav_02 .nav_main_menu ul li {
	align-items: center;
	flex-basis: calc(100% / 6.3);
	justify-content: center;
	text-align: center;
}

#main_header .nav_02 .nav_main_menu ul li.grow1 {
	flex-grow: 1;
}

#main_header .nav_02 .nav_main_menu ul li a {
	font-size: 17px;
	font-weight: 700;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 25px 0;
}

#main_header .nav_02 .nav_main_menu ul li a:after {
	position: absolute;
	z-index: -1;
	top: 25px;
	right: 0;
	width: 1px;
	height: 20px;
	content: '';
	background-color: #e6e6e6;
}

#main_header .nav_02 .nav_main_menu ul li a.modal-active-item:after,
#main_header .nav_02 .nav_main_menu ul li:last-child a:after {
	display: none;
}

/* Menu */
.menu_modal .menu_modal_hover {
	transition: all ease-in-out .3s;
}

.menu_modal.modal-active-item,
.menu_modal_hover.modal-active-item {
	position: relative;
	z-index: 1099;
	color: #fff !important;
	background-color: #e60012;
}

.menu_overlay {
	position: absolute;
	z-index: 1097;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0, 0, 0, .75);
}

.modal-active .menu_overlay {
	display: block;
}

.mega_menu_dropdown {
	position: absolute;
	z-index: 100001;
	right: 0;
	left: 0;
	display: none;
	width: 100%;
	margin-top: -1px;
	padding: 4em 0 3.2em;
	border-top: 2px solid #e60012;
	border-top-color: transparent;
	background-color: #fff;
}

.mega_menu_dropdown.modal-active-item {
	border-top-color: #e60012;
}

.mega_menu_child_dropdown,
.mega_menu_child_dropdown h2 {
	display: none;
}

.mega_menu_dropdown.modal-active-item,
.mega_menu_child_dropdown.modal-active-item {
	display: block;
}

#bottom_nav_mega_menu_dropdown {
	z-index: 2001;
	display: block;
	overflow: hidden;
	max-height: 0;
	padding: 0 !important;
	transition: max-height 1s;
}

#bottom_nav_mega_menu_dropdown.modal-active-item {
	max-height: 300vh;
	transition: max-height 1.5s;
}

#bottom_nav_mega_menu_dropdown .mega_menu_child_dropdown {
	position: relative;
	display: block !important;
	max-height: 0;
	transition: max-height .5s;
	background: #fff;
}

#bottom_nav_mega_menu_dropdown .mega_menu_child_dropdown.modal-active-item {
	max-height: 100vh;
	transition: max-height .5s;
}

#bottom_nav_mega_menu_dropdown .mega_menu_child_dropdown .container,
#bottom_nav_mega_menu_dropdown .mega_menu_child_dropdown.modal-active-item .container {
	box-sizing: border-box;
	padding: 4em 15px 3.2em;
	background: #fff;
}

#top_nav_mega_menu_dropdown.mega_menu_dropdown {
	top: 51px;
}

.sns_list-wrapper {
	flex-direction: column;

	/* display: flex; */
	/* align-items: flex-end; */
	flex-wrap: wrap;
	justify-content: flex-end;
	padding-bottom: 50px;
	text-align: center;
	grid-row-end: -1;
	grid-column-end: -1;
	/* margin: 0 auto; */
}

ul.sns_list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 188px;
	margin: .5em 1em;
	margin-bottom: .5em;
}

ul.sns_list li {
	display: flex;
	align-items: center;
	width: clamp(32px, 21%, 36px);
	aspect-ratio: 1/1;
}

.sns_list-media {
	/* justify-content: center; */
	font-size: 96%;
	display: flex;
	width: 100%;
}

.sns_list-media a {
	font-size: 16px;
	font-weight: bold;
	justify-content: center;
	text-align: left;
	color: #333;
}

#search_menu_area {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

#search_menu_area form {
	display: grid;
	margin-bottom: 1em;
	grid-template-columns: 1fr clamp(50px, 15%, 80px);
}

#search_menu_area form input {
	width: 100%;
	height: 50px;
	padding-left: 20px;
	border: 2px solid #333 !important;
	outline: none !important;
}

#search_menu_area form input {
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
}

#search_menu_area form button {
	width: 100%;
	height: 50px;
	margin-left: 0;
	color: #fff;
	border: none;
	outline: none;
	background-color: #333;
}

#search_menu_area .menu_modal_close {
	position: absolute;
	right: 0;
	bottom: -2em;

	/* width:2em; */
	/* height:2em; */

	padding-left: 2em;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	background: none;

	/* color:transparent; */
	background: #efefef;
}

#search_menu_area .menu_modal_close::before,
#search_menu_area .menu_modal_close::after {
	position: absolute;
	top: calc(50% - 2px);
	left: 5%;
	width: 1.25em;
	height: 2px;
	content: '';
	transform-origin: center;
	background: #666;
}

#search_menu_area .menu_modal_close::before {
	transform: rotate(45deg);
}

#search_menu_area .menu_modal_close::after {
	transform: rotate(-45deg);
}

.search_tags {
	text-align: center;
}

.search_tags_label,
.search_tags_list {
	display: inline-block;
}

.search_tags_list {
	margin-left: 10px;
	/* padding-top: 1.5em; */
}

.search_tags_list li {
	display: inline-block;
	margin: 0 2px;
}

.search_tags_list li a {
	font-size: 14px;
	padding: 2px 10px;
	border: 1px solid #ccc;
	border-radius: 16px;
}

#bottom_nav_mega_menu_dropdown a:hover {
	text-decoration: underline;
}

#bottom_nav_mega_menu_dropdown h3 {
	margin-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;
}

#bottom_nav_mega_menu_dropdown h3 a {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	padding-right: 2em;
	text-decoration: none !important;
}

#bottom_nav_mega_menu_dropdown h4 {
	position: relative;
	display: block;
	height: 55px;
}

#bottom_nav_mega_menu_dropdown h4 a {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	width: 100%;
	height: 55px;
	padding-right: 18px;
	transform: translateY(-50%);
	text-decoration: none !important;
	border-bottom: 1px solid #e6e6e6;
}

#bottom_nav_mega_menu_dropdown h3 a::after,
#bottom_nav_mega_menu_dropdown h4:after {
	position: absolute;
	top: 20px;
	right: 8px;
	width: 8px;
	height: 13px;
	content: '';
	background: url(../images_new/arrow_right.png) no-repeat;
	background-size: 100% 100%;
}

#bottom_nav_mega_menu_dropdown h3 a::after {
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

#bottom_nav_mega_menu_dropdown ul {
	margin: 30px 0;
}

#bottom_nav_mega_menu_dropdown ul li a {
	font-size: 15px;
}

.mega_menu_child_dropdown .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.mega_menu_child_dropdown .row>div {
	padding: 0 15px;
}

.mega_menu_child_dropdown .col:nth-child(n + 5) ul {
	margin-bottom: 0 !important;
}

.mega_menu_child_dropdown .container.small {
	max-width: 700px;
	margin: 0 auto;
}

.mega_menu_child_dropdown .col {
	margin-bottom: 30px;
}

.mega_menu_child_dropdown .col {
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
	max-width: 33.33%;
}

#drop_down_01 .col,
#drop_down_02 .col,
#drop_down_03 .col,
#drop_down_05 .col {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

#drop_down_04 .col,
#drop_down_06 .col {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.mega_menu_child_dropdown .col:first-child {
	-ms-flex: 0 0 100% !important;
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

/* Footer Area */
.page_top {
	display: none;
}

.page_top a {
	position: fixed;
	right: 5%;
	bottom: 10%;
	width: 60px;
	height: 60px;
	padding: 19px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 100%;
	background-color: #fff;
}

.page_top img {
	width: 12px;
	transform: rotate(-90deg);
}

footer {
	margin-top: 20px;
}

footer .footer_menu_area {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "YuGothic", "sans-serif";
	font-size: 14px;
	line-height: 1.7;
	padding: 5em 0;
	background-color: #fafafa;
}

@media (min-width:1020px) {
	#main_header .nav_top_submenu ul {
		grid-template-columns: 1fr auto;
		grid-template-rows: 1fr;
		margin-right: 0;
	}

	.hamburger_menu_btn {
		display: none;
	}

	.footer_menu {
		display: grid;
		--gapsize: 20px;
		grid-template-columns: repeat(5, clamp(9em, calc(100% / 6.1 - var(--gapsize)), 20em)) 1fr;
		grid-template-rows: 1fr 1fr;
		grid-gap: var(--gapsize);
	}

	.footer_menu .column_6:nth-last-of-type(2) {
		grid-column-end: -1;
		grid-row: 1/3;
	}

	#main_header .nav_top_submenu ul a span:nth-of-type(1) img {
		max-height: 1.5em;
	}
}

.footer_menu .column_6 {
	text-align: left;
	grid-row-end: span 2;
}

.footer_menu .column_6 h3 {
	font-weight: 700;
	display: block;
	margin-bottom: .5em;
}

.footer_menu .column_6 h3 a {
	font-size: 16px;
	text-decoration: none !important;
	color: #333;
}

.footer_menu .column_6 h3 a:hover {
	text-decoration: underline;
}

.footer_menu .column_6 ul {
	margin-left: .5em;
}

.footer_menu .column_6 ul li {
	margin-bottom: 7px;
}

.footer_menu .column_6 ul li:last-child {
	margin-bottom: 0;
}

.footer_menu .column_6 ul li a {
	font-size: 14px;
	text-decoration: none;
	color: #333;
}

.footer_menu .column_6 ul li a:hover {
	text-decoration: underline;
}

.footer_info {
	padding: 15px 5em;
}

.footer_info .left {
	font-size: 12px;
	float: left;
	color: #666;
}

.footer_info .right {
	float: right;
}

.footer_info .right ul li {
	display: inline-block;
	margin: 0 10px;
}

.footer_info .right ul li a {
	font-size: 12px;
	text-decoration: none;

	color: #666;
	;
}

.footer_info .right ul li a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 1129px) {
	#main_content_area {
		padding-top: 182px;
	}
}

@media only screen and (max-width: 992px) {
	#main_content_area {
		padding-top: 176px;
	}
}

@media only screen and (max-width: 1019px) {
	.pc_only {
		display: none !important;
	}

	.sp_only {
		display: block !important;
	}

	#main_content_area {
		padding-top: 65px;
	}

	.nav_top_mobile_menu {
		text-align: right;
	}

	.nav_top_mobile_menu li {
		display: inline-block;
		width: 40px;
		margin-top: 12px;
		margin-left: 15px;
		text-align: center;
		vertical-align: top;
	}

	.nav_top_mobile_menu li:first-child {
		margin-top: 17px;
		margin-left: 0;
	}

	.nav_top_mobile_menu li a {
		line-height: 0;
		display: block;
	}

	/*ハンバーガーメニュー*/
	.hamburger_menu_btn {
		position: relative;
		display: grid;
		min-width: 3.5em;
		border: none;
		outline: none;
		background: none;
		grid-template-rows: 1fr .25em 1em;
		grid-template-columns: 1fr;
		grid-gap: .25em 0;
	}

	.hamburger_menu_btn::after {
		font-size: clamp(11px, 1.1vw, 14px);
		font-weight: bold;
		display: block;
		content: 'MENU';
		letter-spacing: -.05em;
		color: #6f6f6f;
		grid-row: -1;
		grid-row: -1;
	}

	.hamburger_menu_btn .menu-btn,
	.hamburger_menu_btn .menu-btn::before,
	.hamburger_menu_btn .menu-btn::after {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		padding: 0;
		content: '';
		background-color: #6f6f6f;
	}

	.hamburger_menu_btn .menu-btn {
		top: 15px;
		left: 50%;
		width: 2em;
		transform: translateX(-50%);
	}

	.hamburger_menu_btn .menu-btn::before {
		top: -.5em;
	}

	.hamburger_menu_btn .menu-btn::after {
		bottom: -.5em;
	}

	.hamburger_menu_btn.modal-active-item::after {
		display: none;
	}

	.hamburger_menu_btn.modal-active-item .menu-btn {
		background-color: transparent;
	}

	.hamburger_menu_btn.modal-active-item .menu-btn::before {
		top: 0;
		width: 2em;
		transform: rotate(-45deg);
	}

	.hamburger_menu_btn.modal-active-item .menu-btn::after {
		bottom: 0;
		width: 2em;
		transform: rotate(45deg);
	}

	/*ハンバーガーメニュー*/
	.nav_top_mobile_menu li img {
		max-width: 30px;
	}

	.nav_top_menu {
		display: none;
	}

	.mega_menu_child_dropdown h2 {
		display: block;
	}

	#main_header .nav_01 {
		height: auto;
	}

	#main_header .nav_01>div.nav_top_mobile_menu {
		width: 115px;
	}

	#mobile_menu_area .mega_menu_child_dropdown {
		display: block;
	}

	.footer_menu .column_6 {
		width: 100%;
		padding-right: 0;
		text-align: left;
	}

	.footer_menu .column_6:last-child h3 {
		margin-bottom: 0;
	}

	.footer_info>div {
		float: none !important;
		width: 100%;
		text-align: center;
	}

	footer .footer_menu_area {
		padding: 4em 0;
	}

	.footer_info div:first-child {
		margin-bottom: 10px;
	}

	.footer_info {
		padding: 25px 0;
	}

	#main_header .menu_overlay {
		display: none;
	}

	#top_nav_mega_menu_dropdown.mega_menu_dropdown {
		top: clamp(25px, 20vw, 51px);
		padding: 4em 15px;
		border-top: 1px solid #e5e5e5;
	}

	.modal-active .menu_modal {
		color: #333 !important;
		background-color: transparent;
		height: 100%;
	}
	.modal-active .menu_modal.modal-active-item > span {
		 height: 100%;
		 grid-row: 1/-1;
		 display: flex;
		 align-items: center;
	}

	.modal-active .menu_modal.modal-active-item > span > span{
	top: calc(50% - 3px);
	}
	
	.search_tags {
		text-align: left;
	}

	.search_tags .search_tags_list {
		margin-left: 0;
	}

	.search_tags .search_tags_list li {
		margin: 10px 10px 0 0;
	}

	#mobile_menu_area .mega_menu_child_dropdown .row.clearfix ul {
		display: none;
	}

	#mobile_menu_area {
		position: fixed;
		top: 66px;
		left: 0;
		overflow-x: hidden;
		overflow-y: auto;
		width: 100%;
		max-height: 100vh;
		padding: 3em 15px 9em;
		background-color: #fff;
	}

	#mobile_menu_area .fwrap {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}

	#mobile_menu_area .sns_list {
		order: 4;
	}

	#mobile_menu_area .others_list {
		order: 5;
	}

	#mobile_menu_area::-webkit-scrollbar {
		width: 5px;
	}

	#mobile_menu_area::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	}

	#mobile_menu_area::-webkit-scrollbar-thumb {
		outline: 1px solid slategrey;
		background-color: darkgrey;
	}

	.top_menu_01 {
		margin-bottom: 30px;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 1em;
		grid-template-rows: 1fr;
	}

	.top_menu_01 li {
		text-align: center;
		border-bottom: 2px solid #e60012;
		max-height: 64px;
	}

	.top_menu_01 li:nth-child(3n) {
		margin-right: 0;
	}

	.top_menu_01 li span:last-child {
		display: block;
		margin-bottom: 5px;
	}

	.top_menu_01 li span:first-child {
		position: relative;
		display: block;
		height: 35px;
	}

	.top_menu_01 li img {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 25px;
		transform: translate(-50%, -50%);
	}

	.top_menu_01 li a span {
		font-weight: 700;
	}

	.top_menu_01 li:last-child {
		/* display: none; */
	}

	.mega_menu_child_dropdown .col {
		-ms-flex: 0 0 100% !important;
		flex: 0 0 100% !important;
		max-width: 100% !important;
		margin-bottom: 0;
	}

	ul.sns_list {
		margin: .5em 1em;
	}

	.mega_menu_child_dropdown .container {
		box-sizing: border-box;
		width: 100% !important;
		padding: 0;
	}

	.mega_menu_child_dropdown .container.small {
		max-width: none;
	}

	#drop_down_06 {
		border-bottom: 1px solid #e5e5e5;
	}

	.mega_menu_child_dropdown h2,
	.mega_menu_child_dropdown h3,
	.mega_menu_child_dropdown h4 {
		font-size: 14px;
		font-weight: 700;
		position: relative;
		text-align: left;
		border-top: 1px solid #e5e5e5;
	}

	.mega_menu_child_dropdown h3,
	.mega_menu_child_dropdown h4 {
		background-color: #fafafa;
	}

	.mega_menu_child_dropdown h2 {
		padding: 12px 15px;
		cursor: pointer;
	}

	.mega_menu_child_dropdown h3 a,
	.mega_menu_child_dropdown h4 a {
		display: block;
		padding: 12px 10px 12px 30px;
	}

	.others_list li:after,
	.mega_menu_child_dropdown h3:after,
	.mega_menu_child_dropdown h4:after {
		position: absolute;
		top: 50%;
		right: 16px;
		width: 9px;
		height: 15px;
		content: '';
		transform: translateY(-50%);
		background: url(../images_new/icon_right_arrow.png) no-repeat;
		background-size: 100% 100%;
	}

	.mega_menu_child_dropdown h2 {
		position: relative;
	}

	.mega_menu_child_dropdown h2:before,
	.mega_menu_child_dropdown h2:after {
		position: absolute;
		top: 50%;
		right: 12px;
		display: inline-block;
		width: 16px;
		height: 2px;
		content: '';
		transition: transform .5s;
		background-color: #e52047;
	}

	.mega_menu_child_dropdown h2:after {
		transform: rotate(90deg);
	}

	.mega_menu_child_dropdown.menu-active-item h2:after {
		transform: rotate(0);
	}
	.others_list {
		margin-top:30px;
	}
	.others_list li {
		position: relative;
	}

	.others_list li a {
		display: block;
		padding: 10px;
		text-align: center;
		border: 1px solid #e5e5e5;
	}


	.mega_menu_child_dropdown .row {
		overflow: hidden;
		max-height: 0;
		transition: max-height .3s;
	}

	.mega_menu_child_dropdown.menu-active-item .row {
		max-height: 200vh;
		transition: max-height .6s;
	}
}

/*==emg_alert OVERWRITE==*/
.emg_alert {
	position: static;
	top: auto;
}

/*ヘッダに表示*/
.text_white {
	color: #fff !important;
}

.arrow_white {
	display: inline-block;
	padding: .25em 1em .25em 1em;
	color: #fff;
	border: solid 1px #fff;
	border-radius: 5px;
}

.arrow_white::after {
	display: inline-block;
	width: .5em;
	height: .5em;
	margin-right: 1em;
	margin-left: .5em;
	content: '';
	transform: rotate(-45deg);
	vertical-align: middle;
	border-right: solid 2px #fff;
	border-bottom: solid 2px #fff;
}

.whole_page_information {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	background-color: #c52223;
}

.whole_page_information {
	padding: .75em;
}

.is_emg .whole_page_information,
.teiden-alert .whole_page_information {
	display: none;
	;
}

@media screen and (max-width: 979px) {
	.whole_page_information {
		font-size: 13px;
	}
}

/*リンクのアイコン設定*/
@media screen and (min-width: 1019px) {	
    #main_header .nav_01 .nav_top_menu .top_menu_01 li span {
        position: relative;
    }
    #main_header .nav_01 .nav_top_menu .top_menu_01 li span:nth-child(2)::after {
        content: url(/share/images/icon_external_link_s.gif);
    }
    #main_header .nav_01 .nav_top_menu .top_menu_01 li span.OriginL::after {
        content: url(/images_new/arrow_right.png);
        display: inline-block;
        transform: scale(0.5);
        position: absolute;
        top: -3px;
        right: -15px;
    }
}

#main_header .nav_01 #mobile_menu_area .top_menu_01 li {
    position: relative;
}
#main_header .nav_01 #mobile_menu_area .top_menu_01 li span:nth-child(2)::after {
    content: url(/share/images/icon_external_link_s.gif);
    position: absolute;
    top: 0.5em;
    right: 4px;
}
#main_header .nav_01 #mobile_menu_area .top_menu_01 li span.OriginL::after {
    position: absolute;
    content: url(/images_new/arrow_right.png);
    display: inline-block;
    transform: scale(0.5);
    position: absolute;
    top: 0.5em;
    right: 4px;
}

#main_header .nav_top_submenu ul li:nth-child(2) {
    position: relative;
}
#main_header .nav_top_submenu ul li:nth-child(2) .top_submenu_label::after {
    position: absolute;
    content: url(/images_new/arrow_right.png);
    display: inline-block;
    transform: scale(0.4);
    position: absolute;
    top: 0.8em;
    right: -6px;
}

@media screen and (min-width: 1019px) {	
    .footer_info .right {
        padding-right: 10px;
        width: 68%;
    }
    .footer_info .left {
        width: 32%;
    }
}
.footer_info .right ul li a::after {
        content: url(/images_new/arrow_right.png);
        display: inline-block;
        transform: scale(0.4);
        vertical-align: middle;
}