﻿@charset "UTF-8";

/* =======================
過去記事CSSここから
========================== */
/* style_override */

/*MT確認用*/
iframe.sidebar {
	width: 220px;
}
@media only screen and (max-width: 768px) {
	iframe.sidebar {
		display: none;
	}
	#main {
		width: auto;
		float: none;
	}
}

table.article_detail .headline {
	font-size: 30px;
}

table.article_detail .headline small {
	font-size: 12px;
	line-height: 1.0;
	display: block;
	margin: 0 0 5px;
}

table.article_detail .headline .bar {
	font-size: 29px;
	position: relative;
	display: inline-block;
	padding: 0 40px;
}

table.article_detail .headline .bar::before,
table.article_detail .headline .bar::after {
	position: absolute;
	top: -10px;
	bottom: 0;
	display: block;
	width: 34px;
	height: 20px;
	margin: auto;
	content: '';
	background: url(../images/icon_bar_l.png) no-repeat center center;
	background-size: 34px auto;
}

table.article_detail .headline .bar::before {
	left: 0;
}

table.article_detail .headline .bar::after {
	right: 0;
	height: 10px;
	background-image: url(../images/icon_bar_r.png);
}

table.article_detail .headline.icon {
	text-align: center;
	color: #eda33d;
}

table.article_detail .headline .headlineIcon {
	margin: 0 9px 0 0;
}

.hoverTxt {
	border-bottom: solid 1px transparent;
}

.hoverImg {
	overflow: hidden;
}

.hoverImg .hover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	margin: auto;
	-webkit-transition: all .3s .2s;
	transition: all .3s .2s;
	opacity: 0;
	color: #fff;
	border-radius: 5px;
	background: rgba(0, 0, 0, .6);
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hoverImg .hoverIcon {
	position: relative;
	padding: 0 0 0 50px;
}

.hoverImg .hoverIcon::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 40px;
	height: 40px;
	margin: auto;
	content: '';
	border: solid 1px #fff;
	border-radius: 50%;
	background: url(../images/icon_more.png) no-repeat center center;
}

.newtab {
	position: relative;
	display: inline;
}

.newtab::before {
	position: absolute;
	right: -12px;
	bottom: 0;
	display: block;
	width: 10px;
	height: 8px;
	content: '';
	-webkit-transition: background .3s;
	transition: background .3s;
	background: url(../images/icon_blank.png) no-repeat center center;
	background-size: 10px 8px;
}

table.article_detail .tag {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .tag li {
	font-size: 12px;
	color: #eda33d;
}

table.article_detail .tag li + li {
	margin: 0 0 0 4px;
}

table.article_detail .tag li::before {
	line-height: 1.0;
	content: ' > ';
	text-align: center;
	color: #333;
}

table.article_detail .tag li:nth-child(1)::before {
	display: none;
}

table.article_detail .tag li span {
	font-weight: bold;
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
}

table.article_detail .tag li span::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 12px;
	height: 12px;
	margin: auto;
	content: '';
	background: url(../images/icon_tag.png) no-repeat center center;
	background-size: 12px auto;
}

table.article_detail .tagtxt {
	font-size: 11px;
	color: #b88951;
}

table.article_detail .new {
	position: relative;
}

table.article_detail .new::before {
	font-family: 'Josefin Sans', serif;
	font-size: 12px;
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 2px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	content: 'NEW';
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	color: #fff;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

table.article_detail .new::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 50px;
	height: 50px;
	content: '';
	border-radius: 5px 0 0 0;
	background: url(../images/bg_new.png) no-repeat center center;
	background-size: 50px auto;
}

table.article_detail .date {
	font-family: 'Josefin Sans', serif;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: .1em;
	color: #999;
}

table.article_detail .en {
	font-family: 'Josefin Sans', serif;
}

table.article_detail .pannel {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .headline + .pannel {
	margin-top: 30px;
}

table.article_detail .pannelItem {
	width: 350px;
	margin: 0 0 20px;
	border-radius: 5px;
	background: #fff;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

table.article_detail .pannelItem .imgArea a {
	line-height: 0;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	height: 112px;
	border-radius: 5px 5px 0 0;
	background: #ccc;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

table.article_detail .pannelItem .imgArea a img {
	width: 100%;
}

table.article_detail .pannelItem .txtArea {
	padding: 17px 20px 14px;
}

table.article_detail .pannelItem .tagtxt {
	overflow: hidden;
	height: auto;
	margin: 12px 0 0;
}

table.article_detail .pannelItem .date {
	margin: 4px 0 0;
}

table.article_detail .pannelItem.col1 {
	width: 100%;
}

table.article_detail .pannelItem.col1 .imgArea a {
	height: 231px;
}

table.article_detail .pannelItem.col1 .title {
	font-size: 20px;
	line-height: 1.4;
	height: 30px;
}

table.article_detail .pannelItem.col1 .tagtxt {
	height: 16.5px;
}

table.article_detail .pannelItem .title {
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
	height: 48px;
	margin: 9px 0 0;
}

table.article_detail .pannelItem .title a {
	text-decoration: none;
}

table.article_detail .pagenation {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 40px 0 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table.article_detail .pagenation li {
	width: 40px;
	height: 40px;
	margin: 0 10px;
}

table.article_detail .pagenation li a {
	font-family: 'Josefin Sans', serif;
	font-size: 20px;
	line-height: 45px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 40px;
	padding-top: 5px;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-decoration: none;
	border: solid 1px #ccc;
	border-radius: 5px;
	background: #fff;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table.article_detail .pagenation li.active a {
	color: #fff;
	border-color: #ea5b7a;
	background: #ea5b7a;
}

table.article_detail .pagenation li.prev,
table.article_detail .pagenation li.next {
	width: auto;
}

table.article_detail .pagenation li.prev a,
table.article_detail .pagenation li.next a {
	font-size: 19px;
	position: relative;
	height: auto;
	color: #ea5b7a;
	border: none;
	background: none;
}

table.article_detail .pagenation li.prev a::before,
table.article_detail .pagenation li.next a::before {
	position: absolute;
	top: -5px;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-width: 4px 0 4px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #ea5b7a;
}

table.article_detail .pagenation li.prev a {
	padding: 0 0 0 13px;
}

table.article_detail .pagenation li.prev a::before {
	left: 0;
	border-width: 4px 8px 4px 0;
	border-color: transparent #ea5b7a transparent transparent;
}

table.article_detail .pagenation li.next a {
	padding: 0 13px 0 0;
}

table.article_detail .pagenation li.next a::before {
	right: 0;
}

table.article_detail .pannelCol2 .pannelItemCol2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 18px 0 17px;
}

table.article_detail .pannelCol2 .pannelItemCol2 + .pannelItemCol2 {
	border-top: solid 1px #ccc;
}

table.article_detail .pannelCol2 .pannelItemCol2 .imgArea {
	width: 35.820895522%;
	margin: 0 4.47761194% 0 0;
}

table.article_detail .pannelCol2 .pannelItemCol2 .imgArea a {
	position: relative;
	display: block;
	padding-top: 32.0833333%;
	border-radius: 5px;
	background: #ccc;
}

table.article_detail .pannelCol2 .pannelItemCol2 .imgArea a img {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	
}


table.article_detail .pannelCol2 .pannelItemCol2 .imgArea_top {
	width: 25%;
	margin: 0 4.47761194% 0 5%;
}

table.article_detail .pannelCol2 .pannelItemCol2 .imgArea_top a {
	position: relative;
	padding-top: 32.0833333%;
	border-radius: 5px;
}

table.article_detail .pannelCol2 .pannelItemCol2 .imgArea_top a img {
	top: 0;
	bottom: 0;
	margin: auto;
}


table.article_detail .pannelCol2 .pannelItemCol2 .txtArea {
	width: 59.701492537%;
}

table.article_detail .pannelCol2 .pannelItemCol2 .txtArea .title {
	font-size: 14px;
	line-height: 1.5;
	overflow: hidden;
	margin: 10px 0 0;
}

table.article_detail .pannelCol2 .pannelItemCol2 .txtArea .title a {
	display: block;
	text-decoration: none;
}

table.article_detail .pannelCol2 .pannelItemCol2 .txtArea .date {
	margin: 2px 0 0;
}

table.article_detail .others {
	padding: 58px 0 100px;
	border-top: solid 5px #ea5b7a;
	background: #fff;
}

table.article_detail .others .section + .section {
	margin: 53px 0 0;
}

table.article_detail .others .headline {
	font-weight: normal;
	line-height: 1.0;
	text-align: center;
	color: #ea5b7a !important;
}

table.article_detail .others .pannel {
	margin: 25px -15.5px -25px;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

table.article_detail .others .pannelItem {
	width: 306px;
	margin: 0 15.5px 25px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

table.article_detail .others .pannelItem .imgArea a {
	height: 98px;
	border-radius: 5px;
}

table.article_detail .others .pannelItem .txtArea {
	margin: 17px 0 0;
	padding: 0;
}

table.article_detail .others .title {
	font-size: 14px;
	font-weight: normal;
	height: 42px;
	margin: 7px 0 0;
}

table.article_detail .others .date {
	margin: 0;
}

table.article_detail .others .igfeed ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 25px -2.5px -5px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .others .igfeed ul li {
	overflow: hidden;
	width: 192px;
	height: 192px;
	margin: 0 2.5px 5px;
	border-radius: 5px;
}

table.article_detail .menu {
	padding: 60px 0;
}

table.article_detail .menu .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

table.article_detail .menu .sns {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 460px;
	padding: 16px 20px 14px;
	border: solid 5px #ba4666;
	border-radius: 10px;
	background: #fff;
}

table.article_detail .menu .sns .txt {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

table.article_detail .menu .sns .snsGif {
	position: absolute;
	top: -45px;
	right: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
}

table.article_detail .menu .sns .snsGif02 {
	position: absolute;
	bottom: 20px;
	left: -45px;
}

table.article_detail .menu .sns .snsList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 11px 0 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table.article_detail .menu .sns .snsList li {
	margin: 0 5px;
}

table.article_detail .menu .shop {
	width: 460px;
}

table.article_detail .menu .shop .title {
	font-size: 15px;
	line-height: 1.0;
	margin: 0 0 13px;
	padding: 0 0 10px;
	letter-spacing: .05em;
	color: #ea5b7a;
	border-bottom: solid 1px #ea5b7a;
}

table.article_detail .menu .shop .nav {
	width: 230px;
}

table.article_detail .menu .shop .nav li {
	font-size: 14px;
	line-height: 1.0;
	position: relative;
	padding: 8px 0 7px 22px;
}

table.article_detail .menu .shop .nav li .shopIcon {
	position: absolute;
	left: -3px;
	width: 20px;
	text-align: center;
}

table.article_detail .menu .shop .nav li a {
	text-decoration: none;
}

table.article_detail .categoryTag {
	margin: 10px 0 30px;
	padding: 7px 20px;
	border-radius: 20px;
	background: #fff;
}

table.article_detail .categoryTag.malti-l {
	border-radius: 5px;
}

table.article_detail .categoryTag a {
	font-size: 14px;
	line-height: 1.8;
	display: inline-block;
	padding: 0 14px;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-decoration: none;
}

table.article_detail .categoryTag a.active {
	font-weight: bold;
	color: #eda33d;
}

table.article_detail .categoryTag ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .categoryTag ul li {
	line-height: 1.0;
}

table.article_detail .categoryTag ul li::after {
	font-size: 14px;
	content: '/';
	color: #ccc;
}

table.article_detail .categoryTag ul li:last-of-type::after {
	display: none;
}

table.article_detail .categoryTag.backnumber {
	padding: 20px;
	border-radius: 5px;
}

table.article_detail .categoryTag.backnumber dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

table.article_detail .categoryTag.backnumber dl > {
	display: block;
}

table.article_detail .categoryTag.backnumber dl dt {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 10px 0 0;
}

table.article_detail .categoryTag.backnumber dl dd ul {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

table.article_detail .categoryTag.backnumber dl dd ul li a {
	font-size: 12px;
	padding: 0 10px;
}

table.article_detail .categoryTag.backnumber dl + dl {
	margin: 10px 0 0;
}

body {
	-webkit-font-smoothing: antialiased;
}

table.article_detail {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', verdana, 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	min-width: 980px;
	padding: 0;
	/*background: #fbeeee;*/
	/* background: #f5f5f5; */
}

#breadcrumbs {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 980px;
	margin: 0 auto;
}

#contents {
	margin: 0 auto;
	padding: 0 0 100px;
}

.contentsInner {
	width: 980px;
	margin: 0 auto;
}

table.article_detail .inner {
	width: 980px;
	margin: 0 auto;
}

img {
	max-width: 100%;
	height: auto;
}

#sidebar .inner {
	width: auto;
}

#sidebarTop {
	width: 980px;
	margin: 0 auto;
}

#main.no-sidebar {
	margin: 0 auto;
}

.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#breadcrumbs a {
	color: #999;
}

#header .logo {
	position: absolute;
	top: 0;
	left: 15px;
	width: 190px;
}

#header .logo a {
	display: block;
	overflow: hidden;
	height: 0;
	padding: 120px 0 0 0;
	background: url(../images/header_title.png) no-repeat;
}
#sidebar .search.widget {
	display: none;
}
#sidebarTop .widget {
	position: relative;
	z-index: 100;
	float: left;
	width: 220px;
	margin: 0 0 20px 0;
	border-top: #eda33d 5px solid;
	border-bottom: #eda33d 5px solid;
	border-radius: 5px;
	background: #fff;
}

#sidebarTop .inner {
	width: auto;
	padding: 0 20px;
	border: #dbdce0 1px solid;
}

#sidebarTop .nav li + li {
	border-top: solid 1px #e5e5e5;
}

#sidebarTop .nav li a {
	font-size: 14px;
	line-height: 1.3;
	position: relative;
	display: block;
	padding: 16px 0 16px 28px;
	-webkit-transition: color .3s , font-weight .3s;
	transition: color .3s , font-weight .3s;
	text-decoration: none;
}

#sidebarTop .nav li a.active {
	font-weight: bold;
	color: #eda33d;
}

#sidebarTop .nav li a.active::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	border-radius: 50%;
	background: #eda33d;
}

#sidebarTop .nav li .navIcon {
	line-height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 20px;
	margin: auto;
}

#sidebarTop .nav li.other {
	padding: 6px 0;
}

#sidebarTop .nav li.other ul li a {
	padding: 5px 0 5px 13px;
}

#sidebarTop .nav li.other ul li a::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-width: 4px 0 4px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #eda33d;
}

#sidebarTop .nav li.other ul li + li {
	border-top: none;
}

#sidebarTop .title {
	font-family: 'Josefin Sans', serif;
	line-height: 30px;
	height: 30px;
	text-align: center;
	letter-spacing: .1em;
	color: #fff;
	background: #eda33d;
}

#sidebarTop.no-sidebar {
	width: 100%;
	border-top: #e5e5e5 1px solid;
	border-bottom: #e5e5e5 1px solid;
	background: #fff;
}

#sidebarTop.no-sidebar .widget {
	float: none;
	width: 980px;
	margin: 0 auto;
	border: none;
}

#sidebarTop.no-sidebar .inner {
	padding: 0;
	border: none;
}

#sidebarTop.no-sidebar .nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border-right: solid 1px #e5e5e5;
}

#sidebarTop.no-sidebar .nav li {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-left: solid 1px #e5e5e5;
}

#sidebarTop.no-sidebar .nav li + li {
	border-top: none;
}

#sidebarTop.no-sidebar .nav li a {
	line-height: 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 60px;
	padding: 0 0 0 48px;
}

#sidebarTop.no-sidebar .nav li a.active {
	font-weight: bold;
	color: #eda33d;
}

#sidebarTop.no-sidebar .nav li a.active::before {
	position: absolute;
	top: inherit;
	bottom: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	content: '';
	background: #eda33d;
	border: none;
}

#sidebarTop.no-sidebar .nav li a.active::after {
	top: inherit;
	bottom: -5px;
	left: 0;
}

#sidebarTop.no-sidebar .nav li .navIcon {
	line-height: 0;
	top: 0;
	bottom: 0;
	left: 20px;
	height: 20px;
	margin: auto;
}

#sidebarTop.no-sidebar .nav li.other {
	padding: 0;
	border-left: none;
}

#sidebarTop.no-sidebar .nav li.other ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

#sidebarTop.no-sidebar .nav li.other ul li a {
	padding: 0 0 0 32px;
}

#sidebarTop.no-sidebar .nav li.other ul li a::before {
	left: 20px;
}

#sidebarTop.no-sidebar .nav li.other ul li a.active::before {
	left: 0;
}

#sidebarTop.no-sidebar .nav li.newatcl {
	width: 123px;
}

#sidebarTop.no-sidebar .nav li.campaign {
	width: 153px;
}

#sidebarTop.no-sidebar .nav li.feature {
	width: 98px;
}

#sidebarTop.no-sidebar .nav li.column {
	width: 111px;
}

#sidebarTop.no-sidebar .nav li.blog {
	width: 168px;
}

#sidebarTop.no-sidebar .nav li.other li.info {
	width: 178px;
}

#sidebarTop.no-sidebar .nav li.other li.backnumber {
	width: 148px;
}

table.article_detail {
	width: 980px;
	margin: 0 auto;
	margin-top: 40px;
}

.vgx-doc {
	max-width: none !important;
}

table.article_detail .articlebody {
	/* padding: 35px 40px 100px; */
	background: #fff;
}

table.article_detail .img img {
	width: initial;
	margin: 0;
}

table.article_detail p {
	font-size: 16px;
	line-height: 2.0;
}

table.article_detail p + p {
	margin: 16px 0 0;
}

table.article_detail div + p {
	margin: 30px 0 0;
}


table.article_detail .section + p {
	margin-top: 0;
}
table.article_detail a {
	-webkit-transition: color .3s .3s;
	transition: color .3s .3s;
	word-break: break-word;
	color: #b88951;
}

table.article_detail a:hover {
	-webkit-transition: color .3s 0s;
	transition: color .3s 0s;
	text-decoration: underline;
	color: #333;
}

table.article_detail h2 {
	font-size: 24px;
	line-height: 1.5;
	position: relative;
	margin: 60px 0 40px;
	padding: 18px 0;
	text-align: center;
	border-top: solid 2px #333;
	border-bottom: solid 2px #333;
	font-weight: bold;
}

table.article_detail p + h2,
table.article_detail div + h2 {
	margin-top: 60px;
}

table.article_detail h3 {
	font-size: 20px;
	line-height: 1.5;
	margin: 40px 0 18px;
	font-weight: bold;
}

/* table.article_detail .checkTxt {
	line-height: 0;
	position: absolute;
	top: -13px;
	right: 0;
	left: 0;
	margin: 0 auto;
} */

table.article_detail .checkTxt {
	line-height: 0;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
	font-size: 12px;
	font-weight: normal;
	line-height: 26px;
	display: inline-block;
	height: 26px;
	padding: 0 8px;
	letter-spacing: .05em;
	color: #fff;
	border-radius: 26px;
	background: #333;
}

table.article_detail .checkTxt2 {
	font-size: 12px;
	font-weight: normal;
	line-height: 25px;
	display: inline-block;
	height: 25px;
	margin: -5px 11px 0 0;
	padding: 0 10px;
	vertical-align: middle;
	letter-spacing: .05em;
	color: #fff;
	border-radius: 25px;
	background: #333;
}

table.article_detail .subtitle {
	font-weight: bold;
}

table.article_detail .subtitle + p {
	margin: 0;
}

table.article_detail .img {
	line-height: 1.0;
	text-align: center;
}

table.article_detail .caption {
	font-size: 12px;
	line-height: 1.5;
	margin: 12px 0 0;
}

table.article_detail .btn {
	width: 420px;
	margin: 32px auto 0;
	display: block;
}

table.article_detail .btn a {
	font-size: 16px;
	font-weight: bold;
	line-height: 48px;
	position: relative;
	display: block;
	height: 48px;
	-webkit-transition: all .3s .2s;
	transition: all .3s .2s;
	text-align: center;
	text-decoration: none;
	color: #333;
	border: solid 1px #ea5b7a;
	border-radius: 5px;
	background: #fff;
}

table.article_detail .btn a::before {
	position: absolute;
	top: 0;
	right: 18px;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	-webkit-transition: all .3s .2s;
	transition: all .3s .2s;
	border-width: 4px 0 4px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #ea5b7a;
}

table.article_detail .btn + .itemBox {
	margin: 60px 0 40px;
}

table.article_detail .boldtxt,
table.article_detail .boldtxt p {
	font-size: 14px;
	font-weight: bold;
}

table.article_detail .boldtxt {
	margin-top: 16px;
}

table.article_detail .head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .head > {
	display: block;
}

table.article_detail .head .date {
	position: relative;
	margin: 0 0 0 10px;
	padding: 0 0 0 10px;
}

table.article_detail .head .date::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: 1px;
	height: 10px;
	margin: auto;
	content: '';
	background: #333;
}

table.article_detail .head .headline {
	font-weight: bold;
	line-height: 1.3;
	width: 100%;
	margin: 13px 0 0;
	text-align: left;
}

table.article_detail .headImg {
	line-height: 0;
	margin: 36px 20px 30px;
}

table.article_detail .toc {
	position: relative;
	margin: 40px 0 0;
	padding: 4px;
	border: solid 1px #fbeeee;
	border-radius: 0 5px 0 5px;
}

table.article_detail .toc::before,
table.article_detail .toc::after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	content: '';
	border-width: 10px 10px 0 0;
	border-style: solid;
	border-color: #ea5b7a transparent transparent transparent;
}

table.article_detail .toc::before {
	top: 0;
	left: 0;
}

table.article_detail .toc::after {
	right: 0;
	bottom: 0;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent #ea5b7a transparent;
}

table.article_detail .toc .tocInner {
	padding: 21px 30px 22px;
	border-radius: 5px;
	background: #fbeeee;
}

table.article_detail .toc .title {
	font-size: 20px;
	font-weight: bold;
	position: relative;
	margin: 0 0 2px;
	text-align: center;
}

table.article_detail .toc .title span {
	position: relative;
	padding: 0 10px;
	background: #fbeeee;
}

table.article_detail .toc .title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	margin: auto;
	content: '';
	background: #333;
}

table.article_detail .toc .tocList li {
	overflow: hidden;
}

table.article_detail .toc .tocList li + li {
	margin: 9px 0 0;
}

table.article_detail .toc .tocList li a {
	-webkit-transition: border-bottom-color .3s;
	transition: border-bottom-color .3s;
	text-decoration: none;
}

table.article_detail .toc .tocList li .title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	float: left;
	height: 100%;
	margin: 0 5px 0 0;
	padding: 0 0 0 13px;
	color: #333;
}

table.article_detail .toc .tocList li .title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-width: 4px 0 4px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #161f35;
	background: none;
}

table.article_detail .toc .tocList li .title::after {
	content: ' …';
}

table.article_detail .toc .tocList li .lead {
	font-size: 12px;
	line-height: 2.0;
	border-bottom: none;
	color: #333;
	display: inline;
	font-weight: normal;
	margin: 0;
}

table.article_detail .toc .tocList li .lead .tocDate {
	color: #999;
}

table.article_detail .nav {
	margin: 30px 0 50px;
}

table.article_detail .nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -4.5px -9px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .nav li {
	width: fit-content;
	/* width: 32.343234323%; */
	margin: 0 4.5px 9px;
}


table.article_detail .nav li a {
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 38px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-inline: 25px;
    font-family: var(--font-family-base);
}

table.article_detail .nav li a::before {
	position: absolute;
	top: 0;
	right: 12px;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-width: 8px 4px 0 4px;
	border-style: solid;
	border-color: #ea5b7a transparent transparent transparent;
}

table.article_detail .imgArea {
	width: 300px;
	margin: 0 0 17px;
}

table.article_detail .imgArea .img {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 300px;
	background: #ccc;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

table.article_detail .imgArea .caption {
	margin: 6px 0 0;
	text-align: left;
}

table.article_detail .txtArea {
	margin: -9px 0 0;
}

table.article_detail .frBox {
	overflow: hidden;
}

table.article_detail .frBox .imgArea {
	float: right;
	margin-left: 30px;
}

table.article_detail .flBox {
	overflow: hidden;
}

table.article_detail .flBox .imgArea {
	float: left;
	margin-right: 30px;
}

table.article_detail .gridBox {
	margin: 30px 0 60px;
	padding: 22px 30px;
	border: solid 5px #fbeeee;
	border-radius: 5px;
}

table.article_detail .gridBox .title {
	font-size: 14px;
	font-weight: bold;
}

table.article_detail .gridBox p {
	font-size: 12px;
}

table.article_detail .gridBox p + p {
	margin: 2px 0 0;
}

table.article_detail .note {
	position: relative;
	margin: 30px 0;
	padding: 17px 0 0;
}

table.article_detail .note::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	content: '';
	background: url(../images/bg_dot.png) repeat left top;
}

table.article_detail .note p {
	font-size: 12px;
	line-height: 1.5;
}

table.article_detail .note p + p {
	margin: 0;
}

table.article_detail .itemBox {
	margin: 40px 0;
	padding: 25px 30px 30px;
	border-radius: 5px;
	background: #fbeeee;
}

table.article_detail .itemBox h3 {
	margin: 0 0 25px;
}

table.article_detail .itemBox .imgArea {
	width: 300px;
	margin: 0;
}

table.article_detail .itemBox .txtArea {
	width: 510px;
	margin: -5px 0 0;
}

table.article_detail .itemBox .txtArea p {
	font-size: 14px;
}

table.article_detail .itemBox .txtArea .subtitle {
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 10px;
}

table.article_detail .itemBox .txtArea .btn {
	margin: 22px auto 0;
}

table.article_detail .itemList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .itemList a .txt {
	display: block;
	font-size: 12px;
	line-height: 1.5;
	margin: 6px 0 0;
	padding: 0 0 17px;
}

table.article_detail .itemList .small {
	display: block;
	font-size: 11px;
	line-height: 1.5;
  margin: 10px 0 0;
}

table.article_detail .itemList a .img {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #ccc;
	background: #fff;
}

table.article_detail .itemList a .img img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

table.article_detail .itemList a .img .hoverIcon {
	display: block;
	padding: 0;
}

table.article_detail .itemList a .img .hoverIcon::before {
	position: relative;
	margin: 0 auto 10px;
}

table.article_detail .itemList.item3 {
	margin: 0 -15px -30px;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

table.article_detail .itemList.item3 li {
	/* width: 260px; */
	margin: 0 15px 30px;
}

table.article_detail .itemList.item3 li .img {
	height: 312px;
}

table.article_detail .itemList.item4 {
	margin: 0 -10px -20px;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

table.article_detail .itemList.item4 li {
	/* width: 195px; */
	margin: 0 10px 20px;
}

table.article_detail .itemList.item4 li .img {
	height: 234px;
}

table.article_detail .itemList .btn {
	width: 100%;
	margin: 0 auto;
	padding-inline: 0;
}

table.article_detail .itemList .btn a {
	font-size: 14px;
	line-height: 38px;
	height: 38px;
}

table.article_detail .movie {
	line-height: 0;
}

table.article_detail .movie iframe {
	width: 100%;
	height: 505px;
}

table.article_detail .talk {
	position: relative;
	margin: 63px 0 40px;
	padding: 30px;
}

table.article_detail .talk .title {
	position: absolute;
	top: -30px;
	right: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
}

table.article_detail .talk dl {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

table.article_detail .talk dl + dl {
	margin: 30px 0 0;
}

table.article_detail .talk dl:nth-of-type(even) {
	margin-left: 110px;
}

table.article_detail .talk dl:nth-of-type(even) dt {
	margin: 0 0 0 30px;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}

table.article_detail .talk dl:nth-of-type(even) dd::before {
	right: -10px;
	left: inherit;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #fff;
}

table.article_detail .talk dl dt {
	overflow: hidden;
	width: 80px;
	height: 80px;
	margin: 0 30px 0 0;
	border-radius: 100%;
}

table.article_detail .talk dl dd {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 620px;
	padding: 15px 20px;
	border-radius: 5px;
	background: #fff;
}

table.article_detail .talk dl dd::before {
	position: absolute;
	top: 30px;
	left: -10px;
	display: block;
	width: 0;
	height: 0;
	content: '';
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent #fff transparent transparent;
}

table.article_detail .talk dl dd .name {
	font-size: 16px;
	font-weight: bold;
}

table.article_detail .talk dl dd p {
	font-size: 14px;
	line-height: 1.5;
}

table.article_detail .talk dl dd p + p {
	margin: 0;
}

/* 2022.09～スマホTOPページにて使用 */

.articleDetail_top {
	width: 980px;
	margin: 0 auto;
	margin-top: 40px;
}

.articleDetail_top .articlebody {
	padding: 35px 40px 100px;
	background: #fff;
}

.articleDetail_top .img img {
	width: initial;
	margin: 0;
}

.articleDetail_top p {
	font-size: 16px;
	line-height: 2.0;
}

.articleDetail_top p + p {
	margin: 16px 0 0;
}

.articleDetail_top div + p {
	margin: 30px 0 0;
}


.articleDetail_top .section + p {
	margin-top: 0;
}
.articleDetail_top a {
	-webkit-transition: color .3s .3s;
	transition: color .3s .3s;
	word-break: break-word;
	color: #b88951;
}

.articleDetail_top a:hover {
	-webkit-transition: color .3s 0s;
	transition: color .3s 0s;
	text-decoration: underline;
	color: #333;
}

.articleDetail_top h2 {
	font-size: 24px;
	line-height: 1.5;
	position: relative;
	margin: 60px 0 40px;
	padding: 18px 0;
	text-align: center;
	border-top: solid 2px #333;
	border-bottom: solid 2px #333;
}

.articleDetail_top p + h2,
.articleDetail_top div + h2 {
	margin-top: 60px;
}

.articleDetail_top h3 {
	font-size: 20px;
	line-height: 1.5;
	margin: 40px 0 18px;
}

.articleDetail_top .checkTxt {
	line-height: 0;
	position: absolute;
	top: -13px;
	right: 0;
	left: 0;
	margin: 0 auto;
}

.articleDetail_top .checkTxt span {
	font-size: 12px;
	font-weight: normal;
	line-height: 26px;
	display: inline-block;
	height: 26px;
	padding: 0 8px;
	letter-spacing: .05em;
	color: #fff;
	border-radius: 26px;
	background: #333;
}

.articleDetail_top .checkTxt2 {
	font-size: 12px;
	font-weight: normal;
	line-height: 25px;
	display: inline-block;
	height: 25px;
	margin: -5px 11px 0 0;
	padding: 0 10px;
	vertical-align: middle;
	letter-spacing: .05em;
	color: #fff;
	border-radius: 25px;
	background: #333;
}

.articleDetail_top .subtitle {
	font-weight: bold;
}

.articleDetail_top .subtitle + p {
	margin: 0;
}

.articleDetail_top .img {
	line-height: 1.0;
	text-align: center;
}

.articleDetail_top .caption {
	font-size: 12px;
	line-height: 1.5;
	margin: 12px 0 0;
}

.articleDetail_top .btn {
	width: 420px;
	margin: 32px auto 0;
}

.articleDetail_top .btn a {
	font-size: 16px;
	font-weight: bold;
	line-height: 48px;
	position: relative;
	display: block;
	height: 48px;
	-webkit-transition: all .3s .2s;
	transition: all .3s .2s;
	text-align: center;
	text-decoration: none;
	color: #333;
	border: solid 1px #ea5b7a;
	border-radius: 5px;
	background: #fff;
}

.articleDetail_top .btn a::before {
	position: absolute;
	top: 0;
	right: 18px;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	-webkit-transition: all .3s .2s;
	transition: all .3s .2s;
	border-width: 4px 0 4px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #ea5b7a;
}

.articleDetail_top .btn + .itemBox {
	margin: 60px 0 40px;
}

.articleDetail_top .boldtxt,
.articleDetail_top .boldtxt p {
	font-size: 14px;
	font-weight: bold;
}

.articleDetail_top .boldtxt {
	margin-top: 16px;
}

.articleDetail_top .head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.articleDetail_top .head > {
	display: block;
}

.articleDetail_top .head .date {
	position: relative;
	margin: 0 0 0 10px;
	padding: 0 0 0 10px;
}

.articleDetail_top .head .date::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: 1px;
	height: 10px;
	margin: auto;
	content: '';
	background: #333;
}

.articleDetail_top .head .headline {
	font-weight: bold;
	line-height: 1.3;
	width: 100%;
	margin: 13px 0 0;
}

.articleDetail_top .headImg {
	line-height: 0;
	margin: 36px 20px 30px;
}

.articleDetail_top .toc {
	position: relative;
	margin: 40px 0 0;
	padding: 4px;
	border: solid 1px #fbeeee;
	border-radius: 0 5px 0 5px;
}

.articleDetail_top .toc::before,
.articleDetail_top .toc::after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	content: '';
	border-width: 10px 10px 0 0;
	border-style: solid;
	border-color: #ea5b7a transparent transparent transparent;
}

.articleDetail_top .toc::before {
	top: 0;
	left: 0;
}

.articleDetail_top .toc::after {
	right: 0;
	bottom: 0;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent #ea5b7a transparent;
}

.articleDetail_top .toc .tocInner {
	padding: 21px 30px 22px;
	border-radius: 5px;
	background: #fbeeee;
}

.articleDetail_top .toc .title {
	font-size: 20px;
	font-weight: bold;
	position: relative;
	margin: 0 0 2px;
	text-align: center;
}

.articleDetail_top .toc .title span {
	position: relative;
	padding: 0 10px;
	background: #fbeeee;
}

.articleDetail_top .toc .title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	margin: auto;
	content: '';
	background: #333;
}

.articleDetail_top .toc .tocList li {
	overflow: hidden;
}

.articleDetail_top .toc .tocList li + li {
	margin: 9px 0 0;
}

.articleDetail_top .toc .tocList li a {
	-webkit-transition: border-bottom-color .3s;
	transition: border-bottom-color .3s;
	text-decoration: none;
}

.articleDetail_top .toc .tocList li .title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	float: left;
	height: 100%;
	margin: 0 5px 0 0;
	padding: 0 0 0 13px;
	color: #333;
}

.articleDetail_top .toc .tocList li .title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-width: 4px 0 4px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #161f35;
	background: none;
}

.articleDetail_top .toc .tocList li .title::after {
	content: ' …';
}

.articleDetail_top .toc .tocList li .lead {
	font-size: 12px;
	line-height: 2.0;
	border-bottom: none;
	color: #333;
	display: inline;
	font-weight: normal;
	margin: 0;
}

.articleDetail_top .toc .tocList li .lead .tocDate {
	color: #999;
}

.articleDetail_top .nav {
	margin: 30px 0 50px;
}

.articleDetail_top .nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -4.5px -9px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.articleDetail_top .nav li {
	width: 32.343234323%;
	margin: 0 4.5px 9px;
}


.articleDetail_top .nav li a {
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 38px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.articleDetail_top .nav li a::before {
	position: absolute;
	top: 0;
	right: 18px;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-width: 8px 4px 0 4px;
	border-style: solid;
	border-color: #ea5b7a transparent transparent transparent;
}

.articleDetail_top .imgArea {
	width: 300px;
	margin: 0 0 17px;
}

.articleDetail_top .imgArea .img {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 300px;
	background: #ccc;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.articleDetail_top .imgArea .caption {
	margin: 6px 0 0;
	text-align: left;
}

.articleDetail_top .txtArea {
	margin: -9px 0 0;
}

.articleDetail_top .frBox {
	overflow: hidden;
}

.articleDetail_top .frBox .imgArea {
	float: right;
	margin-left: 30px;
}

.articleDetail_top .flBox {
	overflow: hidden;
}

.articleDetail_top .flBox .imgArea {
	float: left;
	margin-right: 30px;
}

.articleDetail_top .gridBox {
	margin: 30px 0 60px;
	padding: 22px 30px;
	border: solid 5px #fbeeee;
	border-radius: 5px;
}

.articleDetail_top .gridBox .title {
	font-size: 14px;
	font-weight: bold;
}

.articleDetail_top .gridBox p {
	font-size: 12px;
}

.articleDetail_top .gridBox p + p {
	margin: 2px 0 0;
}

.articleDetail_top .note {
	position: relative;
	margin: 30px 0;
	padding: 17px 0 0;
}

.articleDetail_top .note::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	content: '';
	background: url(../images/bg_dot.png) repeat left top;
}

.articleDetail_top .note p {
	font-size: 12px;
	line-height: 1.5;
}

.articleDetail_top .note p + p {
	margin: 0;
}

.articleDetail_top .itemBox {
	margin: 40px 0;
	padding: 25px 30px 30px;
	border-radius: 5px;
	background: #fbeeee;
}

.articleDetail_top .itemBox h3 {
	margin: 0 0 25px;
}

.articleDetail_top .itemBox .imgArea {
	width: 300px;
	margin: 0;
}

.articleDetail_top .itemBox .txtArea {
	width: 510px;
	margin: -5px 0 0;
}

.articleDetail_top .itemBox .txtArea p {
	font-size: 14px;
}

.articleDetail_top .itemBox .txtArea .subtitle {
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 10px;
}

.articleDetail_top .itemBox .txtArea .btn {
	margin: 22px auto 0;
}

.articleDetail_top .itemList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.articleDetail_top .itemList a .txt {
	display: block;
	font-size: 12px;
	line-height: 1.5;
	margin: 6px 0 0;
	padding: 0 0 17px;
}

.articleDetail_top .itemList .small {
	display: block;
	font-size: 11px;
	line-height: 1.5;
  margin: 10px 0 0;
}

.articleDetail_top .itemList a .img {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #ccc;
	background: #fff;
}

.articleDetail_top .itemList a .img img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.articleDetail_top .itemList a .img .hoverIcon {
	display: block;
	padding: 0;
}

.articleDetail_top .itemList a .img .hoverIcon::before {
	position: relative;
	margin: 0 auto 10px;
}

.articleDetail_top .itemList.item3 {
	margin: 0 -15px -30px;
}

.articleDetail_top .itemList.item3 li {
	width: 260px;
	margin: 0 15px 30px;
}

.articleDetail_top .itemList.item3 li .img {
	height: 312px;
}

.articleDetail_top .itemList.item4 {
	margin: 0 -10px -20px;
}

.articleDetail_top .itemList.item4 li {
	width: 195px;
	margin: 0 10px 20px;
}

.articleDetail_top .itemList.item4 li .img {
	height: 234px;
}

.articleDetail_top .itemList .btn {
	width: 100%;
	margin: 0 auto;
}

.articleDetail_top .itemList .btn a {
	font-size: 14px;
	line-height: 38px;
	height: 38px;
}

.articleDetail_top .movie {
	line-height: 0;
}

.articleDetail_top .movie iframe {
	width: 100%;
	height: 505px;
}

.articleDetail_top .talk {
	position: relative;
	margin: 63px 0 40px;
	padding: 30px;
}

.articleDetail_top .talk .title {
	position: absolute;
	top: -30px;
	right: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
}

.articleDetail_top .talk dl {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.articleDetail_top .talk dl + dl {
	margin: 30px 0 0;
}

.articleDetail_top .talk dl:nth-of-type(even) {
	margin-left: 110px;
}

.articleDetail_top .talk dl:nth-of-type(even) dt {
	margin: 0 0 0 30px;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}

.articleDetail_top .talk dl:nth-of-type(even) dd::before {
	right: -10px;
	left: inherit;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #fff;
}

.articleDetail_top .talk dl dt {
	overflow: hidden;
	width: 80px;
	height: 80px;
	margin: 0 30px 0 0;
	border-radius: 100%;
}

.articleDetail_top .talk dl dd {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 620px;
	padding: 15px 20px;
	border-radius: 5px;
	background: #fff;
}

.articleDetail_top .talk dl dd::before {
	position: absolute;
	top: 30px;
	left: -10px;
	display: block;
	width: 0;
	height: 0;
	content: '';
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent #fff transparent transparent;
}

.articleDetail_top .talk dl dd .name {
	font-size: 16px;
	font-weight: bold;
}

.articleDetail_top .talk dl dd p {
	font-size: 14px;
	line-height: 1.5;
}

.articleDetail_top .talk dl dd p + p {
	margin: 0;
}
table.article_detail .tagArea {
	position: relative;
	margin: 60px 0 0;
	padding: 30px 100px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}

table.article_detail .tagArea .title {
	font-size: 20px;
	line-height: 1.2;
	position: absolute;
	top: -13px;
	right: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
}

table.article_detail .tagArea .title span {
	position: relative;
	display: inline-block;
	padding: 0 10px;
	background: #fff;
	/* background: rgb(245, 245, 245); */
}

table.article_detail .tagList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -5px -10px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .tagList li {
	margin: 0 5px 10px;
}

table.article_detail .tagList li a {
	font-size: 11px;
	line-height: 24px;
	display: block;
	height: 24px;
	padding: 0 9px;
	-webkit-transition: color .3s;
	transition: color .3s;
	text-decoration: none;
	color: #b88951;
	border: solid 1px #b88951;
	border-radius: 24px;
	background: #fff;
}

table.article_detail .share {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 30px 0 5px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

table.article_detail .share > {
	display: block;
}

table.article_detail .share .title {
	line-height: 1.0;
	margin: 5px 20px 0 0;
}

table.article_detail .share ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -2.5px;
}

table.article_detail .share ul li {
	width: 80px;
	margin: 0 2.5px;
}

table.article_detail .share ul li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 26px;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	border-radius: 5px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table.article_detail .share ul li a > {
	display: block;
}

table.article_detail .share ul li.fb a {
	background: #315096;
	-webkit-box-shadow: 0 4px 0 0 #1a3572;
	box-shadow: 0 4px 0 0 #1a3572;
}

table.article_detail .share ul li.tw a {
	background: #55acee;
	-webkit-box-shadow: 0 4px 0 0 #2f84c5;
	box-shadow: 0 4px 0 0 #2f84c5;
}

table.article_detail .share ul li.line a {
	background: #00b900;
	-webkit-box-shadow: 0 4px 0 0 #008c00;
	box-shadow: 0 4px 0 0 #008c00;
}

table.article_detail .share ul li.hatena a {
	background: #00a4de;
	-webkit-box-shadow: 0 4px 0 0 #0085b4;
	box-shadow: 0 4px 0 0 #0085b4;
}

@media only screen and (min-width: 768px) {

.hoverTxt {
	-webkit-transition: border-color .3s .2s;
	transition: border-color .3s .2s;
}

.hoverTxt:hover {
	-webkit-transition: border-color .3s 0s;
	transition: border-color .3s 0s;
	border-color: #333;
}

.hoverImg img {
	-webkit-transition: -webkit-transform .3s .2s;
	transition: -webkit-transform .3s .2s;
	transition: transform .3s .2s;
	transition: transform .3s .2s, -webkit-transform .3s .2s;
}

.hoverImg:hover img {
	-webkit-transition: -webkit-transform .3s 0s;
	transition: -webkit-transform .3s 0s;
	transition: transform .3s 0s;
	transition: transform .3s 0s, -webkit-transform .3s 0s;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.hoverImg:hover .hover {
	-webkit-transition: all .3s 0s;
	transition: all .3s 0s;
	opacity: 1;
}

.newtab:hover::before {
	background-image: url(../images/icon_blank_b.png);
}

table.article_detail .pannelItem .imgArea a.on .hover {
	-webkit-transition: all .3s 0s;
	transition: all .3s 0s;
	opacity: 1;
}

table.article_detail .pannelItem .imgArea a.on img {
	-webkit-transition: -webkit-transform .3s 0s;
	transition: -webkit-transform .3s 0s;
	transition: transform .3s 0s;
	transition: transform .3s 0s, -webkit-transform .3s 0s;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

table.article_detail .pannelItem .txtArea a.on {
	-webkit-transition: border-color .3s 0s;
	transition: border-color .3s 0s;
	border-color: #333;
}

table.article_detail .pagenation li a:hover {
	color: #fff;
	border-color: #ea5b7a;
	background: #ea5b7a;
}

table.article_detail .pagenation li.prev a:hover,
table.article_detail .pagenation li.next a:hover {
	opacity: .5;
	color: #ea5b7a;
	border: none;
	background: none;
}

table.article_detail .menu .sns .snsList li a {
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

table.article_detail .menu .sns .snsList li a:hover {
	opacity: .5;
}

table.article_detail .categoryTag a:hover {
	font-weight: bold;
	color: #ea5b7a;
}

#sidebarTop .nav li a:hover {
	font-weight: bold;
	color: #eda33d;
}

table.article_detail .btn a:hover {
	-webkit-transition: all .3s 0s;
	transition: all .3s 0s;
	color: #fff;
	background: #ea5b7a;
}

table.article_detail .btn a:hover::before {
	-webkit-transition: all .3s 0s;
	transition: all .3s 0s;
	border-left-color: #fff;
}

table.article_detail .btn.on a {
	-webkit-transition: all .3s 0s;
	transition: all .3s 0s;
	color: #fff;
	background: #ea5b7a;
}

table.article_detail .btn.on a::before {
	-webkit-transition: all .3s 0s;
	transition: all .3s 0s;
	border-left-color: #fff;
}

table.article_detail .nav li a:hover::before {
	border-top-color: #fff;
	border-left-color: transparent;
}

table.article_detail .itemList a:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

table.article_detail .itemList a:hover .hover {
	opacity: 1;
}

table.article_detail .itemList a:hover .txt {
	text-decoration: underline;
	color: #333;
}

table.article_detail .itemList a.on .hoverImg img {
	-webkit-transition: -webkit-transform .3s 0s;
	transition: -webkit-transform .3s 0s;
	transition: transform .3s 0s;
	transition: transform .3s 0s, -webkit-transform .3s 0s;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

table.article_detail .itemList a.on .hover {
	-webkit-transition: opacity .3s 0s;
	transition: opacity .3s 0s;
	opacity: 1;
}

table.article_detail .itemList a.on .txt {
	-webkit-transition: color .3s 0s;
	transition: color .3s 0s;
	text-decoration: underline;
	color: #333;
}

table.article_detail .tagList li a:hover {
	color: #fff;
	border-color: #ea5b7a;
	background: #ea5b7a;
}

table.article_detail .share ul li a:hover {
	-webkit-transform: translate3d(0px, 4px, 1px);
	transform: translate3d(0px, 4px, 1px);
	opacity: .5;
	-webkit-box-shadow: none;
	box-shadow: none;
}

}

@media only screen and (max-width: 768px) {

.section {
	margin: 0;
}

table.article_detail .headline {
	padding: 0;
	background: none !important;
}

table.article_detail .headline small {
	margin: 0 0 3px;
}

.hoverTxt {
	border-bottom: none;
}

table.article_detail .tagtxt {
	font-size: 10px;
}

table.article_detail .new::before {
	font-size: 11px;
	top: 11px;
	left: 3px;
}

table.article_detail .pannel {
	display: block;
}

table.article_detail .headline + .pannel {
	margin-top: 0;
}

table.article_detail .pannelItem {
	width: auto;
	margin: 0 20px 20px;
}

table.article_detail .pannelItem .imgArea a {
	height: auto;
	padding-top: 31.940298507%;
}

table.article_detail .pannelItem .imgArea a img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

table.article_detail .pannelItem .txtArea {
	padding: 13px 15px;
}

table.article_detail .pannelItem .tagtxt {
	height: 15px;
	margin: 15px 0 0;
}

table.article_detail .pannelItem.col1 {
	margin: 0 0 20px;
	border-radius: 0;
}

table.article_detail .pannelItem.col1 .txtArea {
	padding: 13px 20px;
}

table.article_detail .pannelItem.col1 .imgArea a {
	height: auto;
	padding-top: 32%;
	border-radius: 0;
}

table.article_detail .pannelItem.col1 .title {
	font-size: 18px;
	line-height: 1.5;
	height: 54px;
	margin: 9px 0 0;
}

table.article_detail .pannelItem.col1 .tagtxt {
	height: 15px;
	margin: 12px 0 0;
}

table.article_detail .pannelItem.col1.new::after {
	border-radius: 0;
}

table.article_detail .pannelItem .title {
	font-size: 14px;
	line-height: 1.5;
	height: auto;
	margin: 9px 0 0;
}

table.article_detail .pannelItem .title a {
	display: block;
}

table.article_detail .pagenation {
	margin: 30px 20px 0;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

table.article_detail .pagenation li {
	width: 8.95522388%;
	min-width: 25px;
	height: auto;
	margin: 0 1.492537313%;
}

table.article_detail .pagenation li a {
	font-size: 18px;
	line-height: inherit;
	height: auto;
	padding-top: 0;
}

table.article_detail .pagenation li a::before {
	display: block;
	padding-top: 100%;
	content: '';
}

table.article_detail .pagenation li.prev a,
table.article_detail .pagenation li.next a {
	font-size: 17px;
}

table.article_detail .pagenation li.prev a::before,
table.article_detail .pagenation li.next a::before {
	padding: 0;
}

table.article_detail .pagenation li.prev {
	margin: 0 8.656716417% 0 0;
}

table.article_detail .pagenation li.next {
	margin: 0 0 0 7.761194029%;
}

table.article_detail .tabArea .tabWrap {
	overflow-x: auto;
	white-space: nowrap;
	background: #eda33d;
	-webkit-overflow-scrolling: touch;
}

table.article_detail .tabArea .tab {
	position: relative;
	display: table;
	width: 100%;
	padding: 5px 5px 0;
	background: #eda33d;
	box-sizing: border-box;
}

table.article_detail .tabArea .tab li {
	font-size: 14px;
	line-height: 40px;
	display: table-cell;
	height: 45px;
	padding: 0 20px;
	text-align: center;
	color: #fff;
}

table.article_detail .tabArea .tab li.active {
	font-weight: bold;
	color: #eda33d;
	background: #f3ebeb;
}

table.article_detail .tabArea .tab li.active span {
	padding: 0 0 5px;
	border-bottom: solid 2px #eda33d;
}

table.article_detail .tabArea .tabConts {
	display: none;
	padding: 0 20px;
	background: #f3ebeb;
}

table.article_detail .tabArea .tabConts.active {
	display: block;
}

table.article_detail .others {
	padding: 30px 0;
}

table.article_detail .others .section {
	margin: 0;
}

table.article_detail .others .section + .section {
	margin: 0;
	padding-top: 30px;
	border-top: solid 1px #ccc;
}

table.article_detail .others .pannel {
	margin: 15px 0 0;
}

table.article_detail .others .pannelItem {
	width: auto;
	margin: 0 20px 23px;
}

table.article_detail .others .pannelItem .imgArea a {
	height: auto;
	padding-top: 31.940298507%;
}

table.article_detail .others .pannelItem .txtArea {
	margin: 14px 0 0;
}

table.article_detail .others .date {
	margin: 3px 0 0;
}

table.article_detail .others .igfeed {
	padding: 0 20px;
}

table.article_detail .others .igfeed ul {
	margin: 15px -.149253731% -1px;
}

table.article_detail .others .igfeed ul li {
	width: 33.035714285%;
	height: auto;
	margin: 0 .148809523% 1px;
}

table.article_detail .others .igfeed ul li::before {
	display: block;
	padding-top: 100%;
	content: '';
}

table.article_detail .others .igfeed ul li:nth-child(10) {
	display: none;
}

table.article_detail .menu {
	padding: 60px 0 0;
}

table.article_detail .menu .inner {
	display: block;
}

table.article_detail .menu .sns {
	width: auto;
	margin: 0 20px;
	padding: 16px 20px;
}

table.article_detail .menu .sns .txt {
	font-size: 14px;
	margin: 0;
}

table.article_detail .menu .sns .snsGif02 {
	bottom: -38px;
	left: 8px;
	width: 55px;
}

table.article_detail .menu .sns .snsGif02 img {
	width: 100%;
}

table.article_detail .menu .sns .snsList {
	margin: 16px -.877192982% 0;
}

table.article_detail .menu .sns .snsList li {
	width: 17.24137931%;
	margin: 0 .862068965%;
	text-align: center;
}

table.article_detail .menu .shop {
	width: auto;
	margin: 50px 0 0;
}

table.article_detail .menu .shop .title {
	font-size: 15px;
	line-height: 54px;
	height: 50px;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #fff;
	background: #ea5b7a;
}

table.article_detail .menu .shop .row {
	display: block;
}

table.article_detail .menu .shop .nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	background: #fff;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

table.article_detail .menu .shop .nav:nth-child(2) {
	border-bottom: solid 1px #ccc;
}

table.article_detail .menu .shop .nav:nth-child(2) li:last-child {
	border-right: solid 1px #ccc;
	border-bottom: none;
}

table.article_detail .menu .shop .nav li {
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	padding: 0;
	border-bottom: solid 1px #ccc;
}

table.article_detail .menu .shop .nav li:nth-child(odd) {
	border-right: solid 1px #ccc;
}

table.article_detail .menu .shop .nav li:nth-child(odd) a {
	padding-right: 15px;
}

table.article_detail .menu .shop .nav li:nth-child(even) .shopIcon {
	left: 14px;
}

table.article_detail .menu .shop .nav li:nth-child(even) a {
	padding-left: 39.5px;
}

table.article_detail .menu .shop .nav li .shopIcon {
	top: 0;
	bottom: 0;
	left: 15px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: auto;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

table.article_detail .menu .shop .nav li a {
	line-height: 1.3;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 50px;
	padding: 0 20px 0 39.5px;
	background: #fff;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

table.article_detail .categoryTag {
	margin: 0;
	padding: 25px 20px 30px;
	border-radius: 0;
	background: none;
}

table.article_detail .categoryTag.malti-l {
	border-radius: 0;
}

table.article_detail .categoryTag .title {
	font-size: 14px;
	margin: 0 0 12px;
	text-align: center;
	letter-spacing: .1em;
}

table.article_detail .categoryTag a {
	max-width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
	border: solid 1px #ccc;
	border-radius: 40px;
	box-sizing: border-box;
	background: #fff;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

table.article_detail .categoryTag a > {
	display: block;
}

table.article_detail .categoryTag a.active {
	color: #fff;
	border-color: #eda33d;
	background: #eda33d;
}

table.article_detail .categoryTag ul {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 0 -.820895522% -10px;
}

table.article_detail .categoryTag ul li {
	width: auto;
	max-width: 100%;
	margin: 0 .807635829% 10px;
}


table.article_detail .categoryTag ul li::after {
	display: none;
}


table.article_detail .categoryTag.backnumber {
	margin: 20px;
	padding: 15px 20px 15px;
	border-radius: 5px;
	background: #fff;
}

table.article_detail .categoryTag.backnumber dl dt {
	line-height: 2.5;
}

table.article_detail .categoryTag.backnumber dl dd ul {
	margin: 0;
}

table.article_detail .categoryTag.backnumber dl dd ul li {
	width: auto;
	margin: 0;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
}

table.article_detail .categoryTag.backnumber dl dd ul li a {
	line-height: 2.5;
	display: inline-block;
	width: auto;
	height: auto;
	padding: 0 12px;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-decoration: none;
	border: none;
	background: none;
}

table.article_detail .categoryTag.backnumber dl dd ul li::after {
	display: inline-block;
}

table.article_detail {
	min-width: inherit;
}

#contents {
	padding: 0 0 30px;
}

#contents.article {
	padding: 0 0 34px;
}

.contentsInner {
	width: auto;
}

table.article_detail .inner {
	width: auto;
}

#sidebar {
	display: none;
}

#sidebarTop {
	width: auto;
}

#header .logo {
	left: 10px;
	width: 107px;
}

#header .logo a {
	height: 81px;
	padding: 0;
	text-indent: -9999px;
	background: url(../images/header_title_sp.png) center no-repeat;
	background-size: 107px 81px;
}

#header h1 {
	height: 81px;
	padding: 0;
	background: url(../images/header_title_sp.png) center no-repeat;
	background-size: 107px 81px;
}

#sidebarTop .widget {
	float: none;
	width: 100%;
	margin: 0;
	border-top: none;
	border-bottom: solid 1px #eda33d;
	border-radius: 0;
}

#sidebarTop .inner {
	padding: 0;
	border: none;
}

#sidebarTop .slidebox {
	font-size: 18px;
	font-weight: bold;
	line-height: 52px;
	position: relative;
	height: 50px;
	padding: 0 20px 0 47px;
	color: #eda33d;
}

#sidebarTop .slidebox .navIcon {
	line-height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	height: 20px;
	margin: auto;
}

#sidebarTop .slidebox::before {
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	display: block;
	width: 20px;
	height: 12px;
	margin: auto;
	content: '';
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	background: url(../images/arw_b.png) no-repeat center center;
	background-size: 20px 12px;
}

#sidebarTop .slidebox.active::before {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

#sidebarTop .nav {
	position: absolute;
	display: none;
	overflow: hidden;
	width: 100%;
	-webkit-transition: max-height .3s;
	transition: max-height .3s;
	border-top: solid 1px #e5e5e5;
	border-bottom: solid 1px #eda33d;
	background: #fff;
}

#sidebarTop .nav li a {
	font-size: 18px;
	line-height: 50px;
	height: 50px;
	padding: 0 20px 0 49px;
}

#sidebarTop .nav li a.active::after {
	display: none;
}

#sidebarTop .nav li .navIcon {
	left: 20px;
}

#sidebarTop .nav li.other {
	padding: 0;
}

#sidebarTop .nav li.other ul li a {
	padding: 0 20px 0 33px;
}

#sidebarTop .nav li.other ul li a::before {
	left: 20px;
}

#sidebarTop .nav li.other ul li + li {
	border-top: solid 1px #e5e5e5;
}

#sidebarTop.no-sidebar {
	border: none;
}

#sidebarTop.no-sidebar .widget {
	width: 100%;
	border-bottom: solid 1px #eda33d;
}

#sidebarTop.no-sidebar .nav {
	display: none;
	border: none;
	border-top: solid 1px #e5e5e5;
	border-bottom: solid 1px #eda33d;
}

#sidebarTop.no-sidebar .nav li {
	border-left: none;
}

#sidebarTop.no-sidebar .nav li + li {
	border-top: solid 1px #e5e5e5;
}

#sidebarTop.no-sidebar .nav li a {
	line-height: 50px;
	height: 50px;
	padding: 0 20px 0 49px;
}

#sidebarTop.no-sidebar .nav li a.active::before {
	display: none;
}

#sidebarTop.no-sidebar .nav li .navIcon {
	left: 20px;
}

#sidebarTop.no-sidebar .nav li.other ul {
	display: block;
}

#sidebarTop.no-sidebar .nav li.other ul li a {
	padding: 0 20px 0 33px;
}

#sidebarTop.no-sidebar .nav li.other ul li a::before {
	left: 20px;
}

#sidebarTop.no-sidebar .nav li.newatcl {
	width: 100%;
}

#sidebarTop.no-sidebar .nav li.campaign {
	width: 100%;
}

#sidebarTop.no-sidebar .nav li.feature {
	width: 100%;
}

#sidebarTop.no-sidebar .nav li.column {
	width: 100%;
}

#sidebarTop.no-sidebar .nav li.blog {
	width: 100%;
}

#sidebarTop.no-sidebar .nav li.other li.info {
	width: 100%;
}

#sidebarTop.no-sidebar .nav li.other li.backnumber {
	width: 100%;
}

table.article_detail {
	width: auto;
	margin-top: 0;
}

table.article_detail .articlebody {
	padding: 0 0 60px;
}

table.article_detail p {
	font-size: 14px;
	margin: 0 20px;
}

table.article_detail p + p {
	margin: 16px 20px 0;
}

table.article_detail div + p {
	margin: 20px 20px 0;
}

	
table.article_detail h2 {
	font-size: 18px;
	margin-bottom: 30px;
	padding: 15px 0 12px;
	color: #333 !important;
	background: none !important;
}

table.article_detail h3 {
	font-size: 16px;
	margin: 30px 20px 15px !important;
	padding: 0;
	border-left: none;
}

table.article_detail .checkTxt {
	top: -10px;
}

table.article_detail .checkTxt span {
	font-size: 10px;
	line-height: 20px;
	height: 20px;
	padding: 0 10px;
}

table.article_detail .checkTxt2 {
	font-size: 10px;
	line-height: 20px;
	height: 20px;
	margin: -3px 8px 0 0;
	padding: 0 10px;
}

table.article_detail .subtitle + p {
	margin: 0 20px;
}

table.article_detail .img {
	margin-right: 20px;
	margin-left: 20px;
}

table.article_detail .caption {
	margin: 4px 0 0;
}

table.article_detail .btn {
	width: auto;
	margin: 23px 20px 0;
}

table.article_detail .btn a {
	font-size: 14px;
}

table.article_detail .btn + .itemBox {
	margin: 30px 20px;
}

table.article_detail .head {
	padding: 27px 20px 25px;
	background: #fbeeee;
}

table.article_detail .head .headline {
	font-size: 22px;
	margin: 9px 0 0;
	color: #333 !important;
}

table.article_detail .headImg {
	margin: 30px 20px;
}

table.article_detail .toc {
	margin: 30px 20px;
}

table.article_detail .toc .tocInner {
	padding: 10px 15px 13px;
}

table.article_detail .toc .title {
	font-size: 18px;
	margin: 0 0 5px;
}

table.article_detail .toc dl + dl {
	margin: 5px 0 0;
}

table.article_detail .toc dl dt {
	font-size: 14px;
}

table.article_detail .toc dl dd {
	line-height: 1.75;
	padding: 0 0 0 13px;
}

table.article_detail .nav {
	margin: 30px 0 60px;
}

table.article_detail .nav ul {
	display: block;
	margin: 0;
}

table.article_detail .nav li {
	width: 100%;
	margin: 0;
	border-top: solid 1px #ccc;
}

table.article_detail .nav li:last-child {
	border-bottom: solid 1px #ccc;
}

table.article_detail .nav li a {
	height: 50px;
	padding: 0 20px;
	border: none;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

table.article_detail .nav li a::before {
	right: 20px;
}

table.article_detail .imgArea {
	width: auto;
	margin: 0 20px 19px;
}

table.article_detail .imgArea .img {
	height: auto !important;
	min-height: inherit;
	margin: 0;
	background: none;
}

table.article_detail .imgArea .caption {
	text-align: center;
}

table.article_detail .txtArea {
	margin: 0;
}

table.article_detail .frBox .imgArea {
	float: none;
	margin-left: 20px;
}

table.article_detail .flBox .imgArea {
	float: none;
	margin-right: 20px;
}

table.article_detail .gridBox {
	margin: 24px 20px 40px;
	padding: 15px;
}

table.article_detail .gridBox .title {
	margin: 0;
}

table.article_detail .note {
	margin: 20px 20px 0;
}

table.article_detail .note a {
	display: inline-block;
	padding-left: 20px;
}

table.article_detail .note a::before {
	right: -13px;
	bottom: 2px;
}

table.article_detail .note p {
	margin: 0;
}

table.article_detail .itemBox {
	margin: 30px 20px;
	padding: 26px 20px 30px;
}

table.article_detail .itemBox .row {
	display: block;
}

table.article_detail .itemBox h3 {
	margin: 0 0 15px !important;
}

table.article_detail .itemBox .imgArea {
	width: auto;
	margin: 0;
	text-align: center;
}

table.article_detail .itemBox .txtArea {
	width: 100%;
	margin: 14px 0 0;
}

table.article_detail .itemBox .txtArea p {
	font-size: 12px;
	margin-right: 0;
	margin-left: 0;
}

table.article_detail .itemBox .txtArea .subtitle {
	font-size: 14px;
	margin: 0 0 5px;
}

table.article_detail .itemBox .txtArea .btn {
	margin: 25px 0 0;
}

table.article_detail .itemList {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

table.article_detail .itemList a .txt {
	margin: 9px 0 0;
	padding: 0;
}

table.article_detail .itemList a .img {
	display: block;
}

table.article_detail .itemList a .img .hover {
	display: none;
}

table.article_detail .itemList a .img img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

table.article_detail .itemList.item3 {
	margin: 0 0 -30px;
	grid-template-columns: repeat(2, 1fr);
    column-gap: 4.255319149%;
}

table.article_detail .itemList.item3 li {
	/* width: 46.610169491%; */
	margin: 0 0 28px;
}

table.article_detail .itemList.item3 li .img {
	width: 100%;
	height: auto;
	margin: 0;
	padding-top: 119.636363636%;
}

table.article_detail .itemList.item4 {
	margin: 0 0 -30px;
	grid-template-columns: repeat(2, 1fr);
    column-gap: 4.255319149%;
}

table.article_detail .itemList.item4 li {
	/* width: 46.610169491%; */
	margin: 0 0 28px;
}

table.article_detail .itemList.item4 li .img {
	width: 100%;
	height: auto;
	margin: 0;
	padding-top: 119.636363636%;
}

table.article_detail .itemList .btn {
	margin: 15px 0 0;
}

table.article_detail .itemList .btn a {
	font-size: 12px;
}

table.article_detail .itemList .btn a::before {
	right: 8px;
}

table.article_detail .movie {
	position: relative;
	margin: 0 20px;
	padding-top: 54.533333333%;
}

table.article_detail .movie iframe {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

table.article_detail .talk {
	margin: 52px 20px 30px;
}

table.article_detail .talk dl {
	display: block;
}

table.article_detail .talk dl + dl {
	margin: 13px 0 0;
}

table.article_detail .talk dl:nth-of-type(even) {
	margin-left: 0;
}

table.article_detail .talk dl:nth-of-type(even) dt {
	margin: 2px 10px 15px 0;
}

table.article_detail .talk dl dt {
	float: left;
	width: 40px;
	height: 40px;
	margin: 2px 10px 10px 0;
}

table.article_detail .talk dl dd {
	width: auto;
	padding: 0;
	background: none;
}

table.article_detail .talk dl dd::before {
	display: none;
}

table.article_detail .talk dl dd .name {
	font-size: 14px;
	margin: 0;
}

table.article_detail .talk dl dd p {
	font-size: 12px;
}

	
	
/* 2022.09～スマホTOPページにて使用 */
.articleDetail_top {
	width: auto;
	margin-top: 0;
}

.articleDetail_top .articlebody {
	padding: 0 0 60px;
}

.articleDetail_top p {
	font-size: 14px;
	margin: 0 20px;
}

.articleDetail_top p + p {
	margin: 16px 20px 0;
}

.articleDetail_top div + p {
	margin: 20px 20px 0;
}

	
.articleDetail_top h2 {
	font-size: 18px;
	margin-bottom: 30px;
	padding: 15px 0 12px;
	color: #333 !important;
	background: none !important;
}

.articleDetail_top h3 {
	font-size: 16px;
	margin: 30px 20px 15px !important;
	padding: 0;
	border-left: none;
}

.articleDetail_top .checkTxt {
	top: -10px;
}

.articleDetail_top .checkTxt span {
	font-size: 10px;
	line-height: 20px;
	height: 20px;
	padding: 0 10px;
}

.articleDetail_top .checkTxt2 {
	font-size: 10px;
	line-height: 20px;
	height: 20px;
	margin: -3px 8px 0 0;
	padding: 0 10px;
}

.articleDetail_top .subtitle + p {
	margin: 0 20px;
}

.articleDetail_top .img {
	margin-right: 20px;
	margin-left: 20px;
}

.articleDetail_top .caption {
	margin: 4px 0 0;
}

.articleDetail_top .btn {
	width: auto;
	margin: 23px 20px 0;
}

.articleDetail_top .btn a {
	font-size: 14px;
}

.articleDetail_top .btn + .itemBox {
	margin: 30px 20px;
}

.articleDetail_top .head {
	padding: 27px 20px 25px;
	background: #fbeeee;
}

.articleDetail_top .head .headline {
	font-size: 22px;
	margin: 9px 0 0;
	color: #333 !important;
}

.articleDetail_top .headImg {
	margin: 30px 20px;
}

.articleDetail_top .toc {
	margin: 30px 20px;
}

.articleDetail_top .toc .tocInner {
	padding: 10px 15px 13px;
}

.articleDetail_top .toc .title {
	font-size: 18px;
	margin: 0 0 5px;
}

.articleDetail_top .toc dl + dl {
	margin: 5px 0 0;
}

.articleDetail_top .toc dl dt {
	font-size: 14px;
}

.articleDetail_top .toc dl dd {
	line-height: 1.75;
	padding: 0 0 0 13px;
}

.articleDetail_top .nav {
	margin: 30px 0 60px;
}

.articleDetail_top .nav ul {
	display: block;
	margin: 0;
}

.articleDetail_top .nav li {
	width: 100%;
	margin: 0;
	border-top: solid 1px #ccc;
}

.articleDetail_top .nav li:last-child {
	border-bottom: solid 1px #ccc;
}

.articleDetail_top .nav li a {
	height: 50px;
	padding: 0 20px;
	border: none;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.articleDetail_top .nav li a::before {
	right: 20px;
}

.articleDetail_top .imgArea {
	width: auto;
	margin: 0 20px 19px;
}

.articleDetail_top .imgArea .img {
	height: auto !important;
	min-height: inherit;
	margin: 0;
	background: none;
}

.articleDetail_top .imgArea .caption {
	text-align: center;
}

.articleDetail_top .txtArea {
	margin: 0;
}

.articleDetail_top .frBox .imgArea {
	float: none;
	margin-left: 20px;
}

.articleDetail_top .flBox .imgArea {
	float: none;
	margin-right: 20px;
}

.articleDetail_top .gridBox {
	margin: 24px 20px 40px;
	padding: 15px;
}

.articleDetail_top .gridBox .title {
	margin: 0;
}

.articleDetail_top .note {
	margin: 20px 20px 0;
}

.articleDetail_top .note a {
	display: inline-block;
	padding-left: 20px;
}

.articleDetail_top .note a::before {
	right: -13px;
	bottom: 2px;
}

.articleDetail_top .note p {
	margin: 0;
}

.articleDetail_top .itemBox {
	margin: 30px 20px;
	padding: 26px 20px 30px;
}

.articleDetail_top .itemBox .row {
	display: block;
}

.articleDetail_top .itemBox h3 {
	margin: 0 0 15px !important;
}

.articleDetail_top .itemBox .imgArea {
	width: auto;
	margin: 0;
	text-align: center;
}

.articleDetail_top .itemBox .txtArea {
	width: 100%;
	margin: 14px 0 0;
}

.articleDetail_top .itemBox .txtArea p {
	font-size: 12px;
	margin-right: 0;
	margin-left: 0;
}

.articleDetail_top .itemBox .txtArea .subtitle {
	font-size: 14px;
	margin: 0 0 5px;
}

.articleDetail_top .itemBox .txtArea .btn {
	margin: 25px 0 0;
}

.articleDetail_top .itemList {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.articleDetail_top .itemList a .txt {
	margin: 9px 0 0;
	padding: 0;
}

.articleDetail_top .itemList a .img {
	display: block;
}

.articleDetail_top .itemList a .img .hover {
	display: none;
}

.articleDetail_top .itemList a .img img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.articleDetail_top .itemList.item3 {
	margin: 0 0 -30px;
}

.articleDetail_top .itemList.item3 li {
	width: 46.610169491%;
	margin: 0 0 28px;
}

.articleDetail_top .itemList.item3 li .img {
	width: 100%;
	height: auto;
	margin: 0;
	padding-top: 119.636363636%;
}

.articleDetail_top .itemList.item4 {
	margin: 0 0 -30px;
}

.articleDetail_top .itemList.item4 li {
	width: 46.610169491%;
	margin: 0 0 28px;
}

.articleDetail_top .itemList.item4 li .img {
	width: 100%;
	height: auto;
	margin: 0;
	padding-top: 119.636363636%;
}

.articleDetail_top .itemList .btn {
	margin: 15px 0 0;
}

.articleDetail_top .itemList .btn a {
	font-size: 12px;
}

.articleDetail_top .itemList .btn a::before {
	right: 8px;
}

.articleDetail_top .movie {
	position: relative;
	margin: 0 20px;
	padding-top: 54.533333333%;
}

.articleDetail_top .movie iframe {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.articleDetail_top .talk {
	margin: 52px 20px 30px;
}

.articleDetail_top .talk dl {
	display: block;
}

.articleDetail_top .talk dl + dl {
	margin: 13px 0 0;
}

.articleDetail_top .talk dl:nth-of-type(even) {
	margin-left: 0;
}

.articleDetail_top .talk dl:nth-of-type(even) dt {
	margin: 2px 10px 15px 0;
}

.articleDetail_top .talk dl dt {
	float: left;
	width: 40px;
	height: 40px;
	margin: 2px 10px 10px 0;
}

.articleDetail_top .talk dl dd {
	width: auto;
	padding: 0;
	background: none;
}

.articleDetail_top .talk dl dd::before {
	display: none;
}

.articleDetail_top .talk dl dd .name {
	font-size: 14px;
	margin: 0;
}

.articleDetail_top .talk dl dd p {
	font-size: 12px;
}
	
	

table.article_detail .tagArea {
	margin: 30px 20px 0;
	padding: 20px 0;
}

table.article_detail .tagArea .title {
	font-size: 16px;
	top: -10px;
}

table.article_detail .tagList {
	margin: 0 -2.5px -10px;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

table.article_detail .tagList li {
	margin: 0 2.5px 10px;
}

table.article_detail .tagList li a {
	font-size: 10px;
	line-height: 18px;
	height: 18px;
	padding: 0 9px;
}

table.article_detail .share {
	display: block;
	margin: 18px 20px 0;
}

table.article_detail .share .title {
	margin: 0;
	text-align: center;
}

table.article_detail .share ul {
	margin-top: 13px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table.article_detail .share ul li a {
	height: 36px;
}

}

@media only screen and (max-width: 768px) and (max-width: 360px) {

table.article_detail .menu .shop .nav li:nth-child(odd) a {
	padding-right: 5px;
}

}

@media only screen and (max-width: 360px) {

table.article_detail .pagenation li a {
	font-size: 15px;
}

table.article_detail .pagenation li.prev a,
table.article_detail .pagenation li.next a {
	font-size: 16px;
}

table.article_detail .menu .shop .nav li a {
	font-size: 12px;
	padding: 0 10px 0 43.5px;
}

}


/*# sourceMappingURL=maps/style_override.css.map */



/* ================
過去記事CSSここまで
=================== */


/* html :is(*):not(#external-header):not(#external-header *):not(#external-footer):not(#external-footer *):not([id*="forcms_block"]):not([id*="forcms_block"] *) {
    box-sizing: border-box;
} */

.breadcrumb {
    font-size: var(--txt-12);

    a,
    span:last-child {
        color: #eda33d;
    }

    .breadcrumb-item a {
        position: relative;
        padding-left: 20px;

        &::before {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background: url(/cms/img/usr/common/icon_article_tag.png) no-repeat center center / 100%;

        }
    }
}

div.wrapper_ {
    width: 100%;
    background-color: #F5F5F5;
}

.container_ {
    max-width: 980px;
    width: 100%;
    margin: 80px auto;
    background-color: #fff;
    padding-block: 80px;
    padding-inline: 42px;
}

div.container_ div.contents_ div.mainframe_,
div.container_ div.contents_ {
    width: 100%;
}

.forcms_block {


    h2.event_title_ {
        display: none;
    }

    .article_detail {
        &>tbody {
            &>tr:not(:last-child) {
                display: none;
            }

            &>tr.data>th {
                display: none;
            }

            &>tr.data>td {
                width: 100%;
            }

        }

    }



    h1 {
        font-size: var(--txt-28);
        margin-bottom: 40px;
        padding: 0;
        font-family: var(--font-family-serif);
        text-align: center;
        font-weight: bold;
    }

    /* テキスト */
    [data-name="text"] {
        font-size: var(--txt-16);
    }

    .nav {
        font-family: var(--font-family-serif);
        font-weight: bold;
        margin-bottom: 64px;

        .article-flex-elm {
            flex: auto;

            a {
                max-width: stretch;
                padding: 0 25px;
                font-size: var(--txt-16);
            }

        }


        div[data-name="button"] a {
            background-color: inherit;
            color: #121212;
            border-radius: 0;
            box-sizing: border-box !important;
        }

        .article-flex-elm:first-child a {
            padding-inline: 0 30px;
        }

        .article-flex-elm:last-child a {
            padding-inline: 30px 0;
        }

        .article-flex-elm+.article-flex-elm {
            border-left: 1px solid #CCCCCC;
        }

    }

    .mv {
        text-align: center;
        margin-bottom: 40px;
    }

	/* .tocから.table-of-contentsに変更　新規モジュール */
    .table-of-contents {
        border-top: 1px solid #E2DDCF;
        border-bottom: 1px solid #E2DDCF;
        padding: 36px 24px;
        margin-bottom: 40px;

        .article-flex-elm {
            flex: auto;
        }

        .article-flex-elm:first-child {
            width: 105px;

            div[data-name="text"] {
                font-size: var(--txt-24);
                font-family: var(--font-family-serif);
                font-weight: 500;
            }
        }

        a {
            color: #121212;
            font-size: var(--txt-20);
            font-weight: bold;
            padding-left: 30px;
            position: relative;



            &::after {
                content: "";
                position: absolute;
                width: 22px;
                height: 14px;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                background: url(/cms/img/usr/common/icon_arrow_gray.svg) no-repeat center center / 100%;
            }

            span {
                color: #707070;
                font-size: var(--txt-16);
                font-weight: normal;
                padding-left: 24px;
            }
        }

        .article-flex-elm:last-child [data-name="html"] {
            transition: all .4s;
        }

        .article-flex-elm:last-child [data-name="html"]:hover {
            transition: all .4s;
            transform: translateX(15px);

            a {
                color: #CE931D;

                span {
                    color: #CE931D;
                }
            }

        }

        .article-flex-elm:last-child>div+div {
            margin-top: 24px;
        }
    }


    .headingA {
        margin-bottom: 44px;
        padding-inline: 10px;
    }

    .headingB,
    .headingC,
    .headingD {
        position: relative;
        margin-bottom: 44px;
        padding: 12px 10px 0;
    }

    .headingA .article-elm-child:not(.catch),
    .headingB .article-elm-child:not(.catch),
    .headingC .article-elm-child:not(.catch),
    .headingD .article-elm-child:not(.catch) {
        font-size: var(--txt-24);
        background-color: #F6F1E7;
        text-align: center;
        font-family: var(--font-family-serif);
        font-weight: bold;
        padding: 13px 13px 16px;
    }

    .catch {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        font-size: var(--txt-16);
        font-family: var(--font-family-base);
        font-weight: 500;
        color: #2E8BB3;
    }

    .headingB::before,
    .headingB::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 1px;
        background-color: #B5A04B;
        transform: rotate(315deg);
    }

    .headingB::before {
        top: 20px;
        left: -4px;
    }

    .headingB::after {
        bottom: 11px;
        right: -5px;
    }

    .headingC,
    .headingD {
        overflow: hidden;
        z-index: 1;
        padding: 50px 10px 10px;

        .catch {
            top: 26px;
        }
    }

    .headingC .article-elm-child:not(.catch),
    .headingD .article-elm-child:not(.catch) {
        background-color: #fff !important;
        max-width: 500px;
        width: 100%;
        margin: auto;
        padding: 0 26px !important;
        position: relative;
    }

    /* .headingC::before {
        content: "";
        position: absolute;
        width: 99%;
        height: 54px;
        border: 1px solid #BBBBBB;
        top: 70px;
        left: 50%;
        transform: translate(-50%);
        border-radius: 42px;
        border-bottom: none;
        z-index: -1;
    } */

    .headingC .article-elm-child:not(.catch)::before {
        content: "";
        top: 50%;
        right: 100%;
        background: url(/cms/img/usr/common/icon_corner.svg) no-repeat center bottom / 100%;
        background-size: 196px 54px;
        width: 196px;
        height: 54px;
        position: absolute;
        transform: translateY(-50%);
        z-index: -1;
    }

    .headingC .article-elm-child:not(.catch)::after {
        content: "";
        top: 50%;
        left: 100%;
        background: url(/cms/img/usr/common/icon_corner.svg) no-repeat center bottom / 100%;
        background-size: 196px 54px;
        width: 196px;
        height: 54px;
        position: absolute;
        transform: translateY(-50%) scale(-1, 1);
        z-index: -1;
    }


    .headingC::after,
    .headingD::after {
        content: "";
        position: absolute;
        width: 36px;
        height: 24px;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        z-index: -1;
        background: url(/cms/img/usr/common/icon_feature_basic.svg) no-repeat center center / 100%;
    }

    .headingD {
        .catch {
            color: #2A7538;
        }
    }

    .headingD .article-elm-child:not(.catch)::after {
        content: "";
        top: 50%;
        right: 0;
        background: url(/cms/img/usr/common/icon_wave.svg) repeat-x center bottom / 100%;
        background-size: 146px 8px;
        left: calc(50% - 50vw);
        width: 100vw;
        position: absolute;
        height: 9px;
        transform: translateY(-50%);
        z-index: -1;
    }


    /* 商品アイテム */
    .product-title {
        font-size: var(--txt-20);
        font-family: var(--font-family-serif);
        background-color: #F6F1E7;
        font-weight: bold;
        padding: 40px 53px 0;
    }

    .product-grid {
        background-color: #F6F1E7;
        padding: 24px 52px 40px;
        display: grid;
        margin-bottom: 40px;


        &.cols-3 {
            gap: 40px 29px;
            grid-template-columns: repeat(3, 1fr);
        }

        &.cols-4 {
            gap: 40px 18px;
            grid-template-columns: repeat(4, 1fr);
        }

        div[data-name="button"] {
            margin-top: 15px;

            a {
                font-size: var(--txt-16);
                max-width: stretch;
                background-color: #fff;
                color: #121212;
                border-radius: 6px;
                text-align: center;
                padding-block: 15px 14px;
                border: 1px solid #707070;
                transition: all .4s;

                &:hover {
                    background-color: #631E20;
                    color: #fff;
                    transition: all .4s;
                }
            }
        }

        div[data-name="image"]+div[data-name="text"] {
            font-size: var(--txt-16);
            font-weight: 500;
            color: #B5A04B;
            text-decoration: underline;
            margin-top: 20px;
            padding: 0;
        }

        div[data-name="text"]:last-child {
            font-size: var(--txt-12);
            margin-top: 24px;
            line-height: 1.8;
            padding: 0;
        }
    }


    /* テキストリンク */
    .link-ocean,
    .link-mustard,
    .link-black {
        margin-bottom: 5px;
        line-height: 1.6;

        a {
            max-width: 100%;
            background-color: inherit;
            color: #121212;
            text-align: left;
            padding: 0;
            font-size: var(--txt-12);
            text-decoration: underline;
            font-weight: 600;

            &::before {
                content: '';
                width: 6px;
                height: 6px;
                display: inline-block;
                background: url(/cms/img/usr/common/icon_diamond.svg) no-repeat left bottom / 100%;
                background-size: 6px 6px;
                top: 50%;
                left: 0;
                margin-right: 4px;
            }

            &::after {
                content: '';
                width: 12px;
                height: 12px;
                display: inline-block;
                -webkit-mask-image: url('/cms/img/usr/common/icon_external_link.svg');
                mask-image: url(/cms/img/usr/common/icon_external_link.svg);
                mask-repeat: no-repeat;
                mask-size: contain;
                background: #121212;
                margin-left: 5px;
            }
        }
    }

    .link-ocean a {
        color: #2E8BB3;

        &::after {
            background: #2E8BB3;
        }
    }

    .link-mustard a {
        color: #CE931D;

        &::after {
            background: #CE931D;
        }
    }

    /* 注釈テキスト */
    .annotation {
        font-size: var(--txt-12);
    }




}


/*====================
 SBS流用モジュール
 ==================== */
.u-mb-xxxl {
    margin-bottom: 72px !important;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

ol li {
    margin-left: 0;
    list-style: none;
}

p:not(:last-child) {
    margin-bottom: 1em;
}

.c-heading {
    margin-bottom: .5em;
    line-height: 1.5;
}

.c-heading.-medium {
    font-size: 2.8rem;
}

/* 番号付きリスト */
.c-list.-order li {
    font-size: var(--txt-16);
    line-height: 1.8;

    p {
        font-size: var(--txt-16);
    }
}

.c-list.-order:not(.-note)>li {
    counter-increment: order01;
    padding-left: 1.5em;
    position: relative;
}

.c-list.-order:not(.-note)>li::before {
    content: counter(order01) ".";
    font-size: 2.2rem;
    color: #000;
    position: absolute;
    top: -0.3em;
    left: 0;
}

.c-list.-order:not(.-note)>li:not(:last-child) {
    margin-bottom: 12px;
}

.c-list.-order:not(.-note).-nest>li {
    counter-increment: order02;
    font-size: var(--txt-14);
}

.c-list.-order:not(.-note).-nest>li::before {
    content: counter(order02) ")";
    font-size: 1.8rem;
}

/* QAリスト */
.c-faq+.c-faq {
    margin-top: 32px;
    border-top: 1px dashed #707070;
    padding-top: 16px;
}

.c-faq__ques {
    padding-left: 32px;
    text-indent: -22px;
    margin-bottom: 16px;
    font-size: var(--txt-16);
}

.c-faq__ques::before {
    content: "Q";
    display: inline-block;
    width: 18px;
    font-size: 2.2rem;
    text-align: center;
    color: #CE931D;
}

.c-faq__ans {
    padding-left: 32px;
    text-indent: -22px;
    font-size: var(--txt-16);
}

.c-faq__ans::before {
    content: "A";
    display: inline-block;
    width: 18px;
    font-size: 2.2rem;
    text-align: center;
}


/* テーブル */

.c-table {
    width: 100%;
    border-color: inherit;
    border-collapse: collapse;
    border-top: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
}

th {
    text-align: left;
    font-weight: bold;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

.c-table td.c-table__body {
    font-size: 1.4rem;
    padding: 16px 16px;
}


.c-table th.c-table__head {
    background: #F7F7F7;
    padding: 12px 16px;
    vertical-align: middle;
}

.c-table__head,
.c-table__body {
    border-bottom: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
}

.c-table__head.-w25p,
.c-table__body.-w25p {
    width: 25%;
}

.c-table__head.-w33p,
.c-table__body.-w33p {
    width: 33.333%;
}

.c-list.-mark>li {
    padding-left: 1em;
    position: relative;
}

.c-list.-mark>li:not(:last-child) {
    margin-bottom: 24px;
}

.c-list.-mark>li::before {
    content: "";
    display: block;
    width: 3px;
    height: 24px;
    background: #2e8bb3;
    position: absolute;
    top: .15em;
    left: 0;
}


/* テーブルスクロール */
.c-table-wrap {
    overflow-x: scroll;
    width: 100%;
    max-width: 896px;
}

.c-table-wrap .c-table {
    box-sizing: content-box !important;
    max-width: max-content;
}

.c-table__head.-w16p,
.c-table__body.-w16p {
    width: 16.66%;
}

/* Parts */
.u-mb-l {
    margin-bottom: 48px !important;
}

.c-tab__index {
    display: flex;
    flex-wrap: wrap;
}

.c-tab__contents {
    background: #F7F7F7;
}

.c-tab__contents>div {
    width: 100%;
    padding: 40px 24px;
    box-sizing: border-box !important;
}

.c-tab__contents>div:not(:first-child) {
    display: none;
}

.c-tab__btn {
    border: none;
    background: #F6F1E7;
    padding: 16px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .16);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 64px;
    text-align: center;
    position: relative;
    z-index: 98;
    cursor: pointer;
}

.c-tab__btn.-col3 {
    width: 33.3%;
}

.c-tab__btn.-active {
    z-index: 99;
    pointer-events: none;
    border-left: 10px solid #2e8bb3;
}

.c-tab__btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: .3s all;
}

.c-tab__btn.-active::before {
    background: #fff;
    z-index: -1;
}

.c-tab__btn.-col2 {
    width: 50%;
}

.c-tab__btn.-col3 {
    width: 33.3%;
}

/* アコーディオン */
.c-accordion {
    border-bottom: 1px solid #ddd;
}

.c-accordion+.c-accordion {
    margin-top: 24px;
}

.c-accordion__head {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 16px 24px;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
}

.c-accordion__body {
    display: none;
    padding: 8px 24px 24px;
}

.u-fs-xl {
    font-size: 2.8rem !important;
}

.u-fs-l {
    font-size: 2.4rem !important;
}

/* .c-accordion__head::after {
    content: "";
    font-family: "icomoon";
    font-weight: 400;
    color: #e55a00;
    font-size: 3.4rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0);
    transition: .3s all;
}

.c-accordion__head.-active::after {
    content: "";
}

.c-accordion__head:hover::after {
    color: #fff;
    background: #e55a00;
} */

.toggle-icon {
    height: 40px;
    width: 40px;
    display: block;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    border-radius: 50%;
    transition: all 0.4s;
    /* width: 8%; */
}

.c-accordion__head:hover .toggle-icon {
    background: #2e8bb3;
}

.c-accordion__head:hover .toggle-icon:before,
.c-accordion__head:hover .toggle-icon:after {
    background: #fff;
}

.toggle-icon:before,
.toggle-icon:after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    background-color: #2e8bb3;
    height: 3px;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.toggle-icon:before {
    transform: rotate(90deg);
    left: 4px;
    top: 19px;
}

.c-accordion__head.-active .toggle-icon:before {
    transform: rotate(0deg);
}

/* sp */
@media screen and (max-width: 769px) {
    .breadcrumb {
        padding-inline: 4.17vw;
    }

    .container_ {
        padding-inline: 0;
    }


    .forcms_block {

        h1 {
            margin-bottom: 10.83vw;
            text-align: center;
        }


        .nav {
            row-gap: 4.17vw;
            padding-inline: 4.17vw;
            margin-bottom: 10.83vw;
            display: flex;
            flex-wrap: wrap;

            .article-flex-elm {
                a {
                    padding: 0 4.17vw;
                }
            }

            .article-flex-elm:first-child a {
                padding-inline: 0 4.17vw;
            }

            .article-flex-elm:last-child a {
                padding-inline: 4.17vw 0;
            }

        }

        .mv {
            margin-bottom: 8.33vw;
            padding-inline: 4.17vw;
        }

        .toc {
            padding: 5.42vw 8.33vw;
            margin-bottom: 40px;

            .article-flex-elm:first-child {
                width: 100%;
                margin-bottom: 5.83vw;
            }

            a {
                padding-left: 6.25vw;
                display: flex;
                flex-direction: column;
                align-items: start;

                &::after {
                    width: 4.58vw;
                    height: 2.92vw;
                    top: 1vw;
                    transform: none;
                }

                span {
                    padding-left: 0;
                    margin-top: 1.67vw;
                    font-size: var(--txt-12);
                }
            }

            .article-flex-elm:last-child>div+div {
                margin-top: 5vw;
            }
        }

        .headingA .article-elm-child:not(.catch),
        .headingB .article-elm-child:not(.catch),
        .headingC .article-elm-child:not(.catch),
        .headingD .article-elm-child:not(.catch) {
            padding: 3.75vw 4vw;
            letter-spacing: -0.03em;
            line-height: 1.5;
        }

        .catch {
            top: -0.5vw;
        }

        .headingC,
        .headingD {
            padding: 9vw 2.08vw 0;

            .catch {
                top: 5vw;
                z-index: 10;
            }
        }

        .headingC .article-elm-child:not(.catch),
        .headingD .article-elm-child:not(.catch) {
            padding: 0 11vw !important;
            width: 100%;
            max-width: 100%;
            margin: 0;
            box-sizing: border-box !important;
            min-height: 11.25vw;
            height: 100%;
            vertical-align: middle;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .headingC::before {
            width: 97%;
            height: 12vw;
            top: auto;
            bottom: -4vw;
            border-radius: 26vw;
        }

        .headingC .article-elm-child:not(.catch)::before {
            left: 0;
            right: auto;
            background: url(/cms/img/usr/common/icon_corner_sp.svg) no-repeat left bottom / 100%;
            background-size: 9.38vw 11.25vw;
            width: 9.38vw;
            height: 11.25vw;
            z-index: 0;
        }

        .headingC .article-elm-child:not(.catch)::after {
            left: auto;
            right: 0;
            background: url(/cms/img/usr/common/icon_corner_sp.svg) no-repeat left bottom / 100%;
            background-size: 9.38vw 11.25vw;
            width: 9.38vw;
            height: 11.25vw;
            z-index: 0;
        }

        .headingD .article-elm-child:not(.catch)::before {
            content: "";
            top: 50%;
            left: 0;
            background: url(/cms/img/usr/common/icon_wave.svg) repeat-x center bottom / 100%;
            background-size: 146px 8px;
            width: 11vw;
            position: absolute;
            height: 9px;
            transform: translateY(-50%);
            z-index: 0;
        }

        .headingD .article-elm-child:not(.catch)::after {
            top: 50%;
            right: 0;
            left: auto;
            background: url(/cms/img/usr/common/icon_wave.svg) repeat-x center bottom / 100%;
            background-size: 146px 8px;
            width: 11vw;
            z-index: 0;
        }


        .product-title {
            padding: 9.38vw 4.17vw 0;
            margin: 0 4.17vw;
        }

        .product-grid {
            padding: 5.21vw 4.17vw 9.38vw;
            margin: 0 4.17vw 8.33vw;

            &.cols-3 {
                grid-template-columns: repeat(2, 1fr);
                gap: 4.17vw 8.33vw;
            }

            &.cols-4 {
                grid-template-columns: repeat(2, 1fr);
                gap: 4.17vw 8.33vw;
            }

            div[data-name="image"]+div[data-name="text"] {
                margin-top: 2.71vw;
                line-height: 1.5;
            }

            div[data-name="button"] {
                margin-top: 3.33vw;
            }

            div[data-name="text"]:last-child {
                margin-top: 3.33vw;
            }

        }

        /* テキストリンク */
        .link-ocean,
        .link-mustard,
        .link-black {
            padding-inline: 4.17vw;
        }

        /* テキスト */
        [data-name="text"] {
            font-size: var(--txt-16);
            padding-inline: 4.17vw;
        }
    }




    /*====================
 SBS流用モジュール
 ==================== */
    .wrap_article_body * {
        line-height: 1.8;
        font-size: var(--txt-16);
    }

    .u-mb-xxxl {
        padding: 4.17vw 0;
    }

    /* タブ */
    .c-tab__btn {
        font-size: var(--txt-12);
    }

    /* テーブル */
    .c-table.-sp-column th,
    .c-table.-sp-column td {
        display: block;
        width: 100%;
        box-sizing: border-box !important;
    }

    .c-list.-mark>li {
        font-size: var(--txt-14);
    }

    .c-table-wrap {
        max-width: 90vw;
    }

    .c-table-wrap .c-table {
        width: 750px !important;
    }



    /* spここまで */
}