@charset "UTF-8";
.contents {}
.contents_col {}
.contents_col-main {
	width: 69.5%;
	max-width: 720px;
}
.contents_col-side {
	width: 27.3%;
	max-width: 300px;
	margin-left: auto;
	padding-top: 20px;
}
.contents_inner {}
.contents_cols {
	display: flex;
}
.searchTagNav {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.searchTagNav_title {
	margin-bottom: 22px;
}
.searchTagNav_title > img {
	display: block;
}
.searchTagNav_list {
	list-style: none;
}
.searchTagNav_list > li {}
.searchCatNav {
	margin-bottom: 76px;
	margin-top: 75px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.searchCatNav_title {}
.searchCatNav_title > img {
	display: block;
}
.searchCatNav_list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 20px;
}
.searchCatNav_list > li {}
.searchCatNav_list > li > a {}
.contents_side {}
.sideCatNav {
	margin-bottom: 48px;
}
.sideCatNav_title {}
.sideCatNav_list {
	list-style: none;
}
.sideCatNav_list > li {}
.sideCatNav_list > li > a {}
.sideCatNav_list > li:nth-child(n+2) {
	margin-top: 14px;
}
.sideCatTag {
	margin-bottom: 37px;
}
.sideCatTag_title {}
.sideCatTag_list {
	list-style: none;
	column-gap: 10px;
	row-gap: 10px;
}
.sideCatTag_list > li {}
.sideCatTag_list > li.isHidden {
	display: none;
}
.sideCatTag_list.isShow > li.isHidden {
	display: block;
}
.sideCatTag_list > li > a {
	padding: 4px 6px;
}
.sideCatTag_btn {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: var(--color-medium-gray);
	margin-left: auto;
	padding: 10px 0;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.sideCatTag_btn[aria-expanded="true"] {
	display: none;
}
.bnrBlog {}
.bnrBlog > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: opacity, visibility;
}
.bnrBlog > a > img {
	display: block;
	width: 100%;
	height: auto;
}
.sideArticleNav {
	margin-bottom: 37px;
}
.sideArticleNav_title {}
.sideArticleNav_list {
	list-style: none;
	background-color: var(--color-mint-white);
	padding: 6px 19px 21px;
}
.sideArticleNav_list > li {
	border-bottom: 1px solid var(--color-dark-gray);
}
.sideArticleNav_list > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: opacity;
}
.sideArticleNav_item {
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 12px;
	align-items: center;
	padding: 16px 0 10px;
}
.sideArticleNav_num {
	width: 44px;
	height: 44px;
	background-color: var(--color-white);
	color: #B0AFAF;
	font-size: 30px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding-bottom: 2px;
}
.sideArticleNav_num-no1 {
	background-color: #E0C153;
	color: var(--color-white);
}
.sideArticleNav_num-no2 {
	background-color: #B0AFAF;
	color: var(--color-white);
}
.sideArticleNav_num-no3 {
	background-color: #B29582;
	color: var(--color-white);
}
.sideArticleNav_text {
	font-size: 14px;
	line-height: 1.7143;
	font-weight: 500;
}
.recentNav {}
.recentNav_title {
	margin-bottom: 20px;
}
.recentNav_title > img {
	display: block;
}
.recentNav_list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 5.5%;
	row-gap: 40px;
}
.recentNav_list > li {}
.articleItem {
	background-color: var(--color-white);
	box-shadow: var(--shadow-card);
	border-radius: 8px;
	position: relative;
	height: 100%;
}
.articleItem_anchor {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0);
	box-sizing: border-box;
	transition-duration: .3s;
	transition-property: border-color;
}
.articleItem_image {
	position: relative;
	padding-bottom: 55.88%;
	overflow: hidden;
	background-color: var(--color-mint-white);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.articleItem_image > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
	transition-property: transform;
}
.articleItem_areaText {
	padding: 24px 15px 24px;
}
.articleItem_areaText_inner {
	max-width: 284px;
	margin: 0 auto;
}
.articleItem_info {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 15px;
	column-gap: 5px;
}
.articleItem_cat {
	position: relative;
	z-index: 2;
}
.articleItem_cat > a {}
.articleItem_update {
	font-size: 14px;
	line-height: 20px;
}
.articleItem_update > time {}
.articleItem_title {
	font-size: 18px;
	line-height: 1.667;
	font-weight: 500;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.articleItem_tagList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	column-gap: 8px;
	row-gap: 8px;
	margin-top: 9px;
}
.articleItem_tagList > li {}
.articleItem_tagList > li > a {
	text-decoration: none;
	color: inherit;
	background-color: #F0F3F5;
	border-radius: 4px;
	font-size: 14px;
	line-height: 20px;
	color: #3B4043;
	padding: 4px 7px;
	transition-duration: .3s;
	transition-property: background-color, color;
	position: relative;
	z-index: 2;
}
.recentNav_link {
	max-width: 300px;
	margin: 54px auto 0;
}
.recentNav_link > a {}
.recentNav_link > a > .icon {}
.topVis {
	margin-bottom: 88px;
}
.topVis_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	height: 846px;
	z-index: -1;
}
.topVis_bg_head {
	display: block;
	width: 841px;
	height: 447px;
	position: absolute;
	z-index: 0;
	left: 50%;
	transform: translateX(-50%);
	top: -121px;
	margin-left: 204px;
	opacity: .1;
}
.topVis_bg_foot {
	display: block;
	width: 881px;
	height: 569px;
	position: absolute;
	z-index: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: .1;
	bottom: 0;
	margin-left: -327px;
}
.topVis_inner {}
.topVis_cols {
	display: flex;
	flex-direction: row-reverse;
	max-width: 1072px;
}
.topVis_col {}
.topVis_col-img {
	width: calc(100% - 510px);
	max-width: 510px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.topVis_image {
	min-width: 480px;
}
.topVis_image > img {
	display: block;
}
.topVis_col-text {
	padding-top: 86px;
	position: relative;
	z-index: 1;
}
.topVis_title {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.667;
	letter-spacing: 0.05em;
	margin-bottom: 21px;
}
.topVis_text {
	font-size: 18px;
	font-weight: 500;
	line-height: 2.2;
}
.topVis_link {
	max-width: 300px;
	margin-top: 77px;
}
.topVis_link > a {}
.topVis_link > a > .icon {}
.searchTagNav_btn {
	display: none;
}
.articleItem_new {
	background-color: var(--color-red-new);
	border: 1px solid var(--color-white);
	border-radius: 0;
	height: 27px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: var(--color-white);
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 2px;
	position: absolute;
	top: -14px;
	z-index: 2;
	right: -5px;
	width: 66px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.5s;
	transition-property: opacity, visibility;
}
.articleItem_new.isShow {
	opacity: 1;
	visibility: visible;
}
.articleItem_new::after {
	content: "";
	background-image: url(/assets_v2/img/common/bg-fukidashi-tip.svg?date=250619);
	display: block;
	width: 14px;
	height: 9px;
	position: absolute;
	top: 100%;
	right: 13px;
	background-size: 14px 9px;
	background-repeat: no-repeat;
	background-position: 0 0;
}
.sideCatTag_btnWrap {}
.sideCatTag_btnWrap.isHidden {
	display: none;
}
.articles {}
.articles_inner {}
.articles_title {}
.articles_title > img {
	display: block;
}
.articles_list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 3.6%;
	row-gap: 40px;
}
.articles_list > li {}
.pager {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 8px;
	margin-top: 57px;
	justify-content: center;
}
.pager_arrow {
	height: 40px;
	color: var(--color-main-blue);
	font-size: 23px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.pager_arrow > .icon {}
.pager_link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 4px;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 20px;
	color: var(--color-main-blue);
	font-weight: 500;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.pager_link-current {
	background-color: var(--color-main-blue);
	color: var(--color-white);
	font-weight: bold;
}
.pager_extend {
	color: var(--color-main-blue);
}
.searchTagNav + .bnrBlog {
	display: none;
}
.blogs {}
.blogs_title {}
.blogs_title > img {
	display: block;
}
.blogs_list {
	list-style: none;
}
.blogs_list > li {}
.blogs_list > li:nth-child(n+2) {
	margin-top: 28px;
}
.blogs_list > li > a {
	text-decoration: none;
	color: inherit;
}
.blogs_item {
	background-color: var(--color-white);
	display: grid;
	grid-template-columns: 140px 1fr;
	column-gap: 8px;
	align-items: center;
	border-bottom: 2px solid var(--color-sky-blue);
}
.blogs_image {
	position: relative;
	overflow: hidden;
	padding-bottom: 100%;
}
.blogs_image > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: .4s;
	transition-property: transform;
}
.blogs_areaText {
	padding: 10px 15px;
}
.blogs_update {
	color: var(--color-medium-gray);
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 6px;
}
.blogs_update > time {}
.blogs_headline {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 500;
	max-height: 3.2em;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.blogs_areaText_inner {
	max-width: 507px;
	margin: 0 auto;
}
.sideArticles {
	margin-bottom: 41px;
}
.sideArticles-hidden {
	display: none;
}
.sideArticles_title {
	margin-bottom: 15px;
}
.sideArticles_list {
	list-style: none;
}
.sideArticles_list > li {}
.sideArticles_list > li:nth-child(n+2) {
	margin-top: 21px;
}
.sideArticles_list > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.sideArticles_image {
	position: relative;
	padding-bottom: 55.88%;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--shadow-card);
}
.sideArticles_image > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.4s;
	transition-property: transform;
}
.sideArticles_text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.625;
	margin-top: 8px;
}
.related {
	display: none;
}
.related_title {}
.related_swiper {
	overflow: visible;
}
.related_swiper_wrapper {}
.related_swiper_slide {}
.related_swiper_slide > a {
	text-decoration: none;
	color: inherit;
}
.related_item {}
.related_image {}
.related_image > img {
	display: block;
}
.related_headline {}
.related_link {}
.related_link > a {}
.related_link > a > .icon {}
.related_areaBtn {
	display: block;
}
.related_btn {
	display: block;
}
.related_btn-prev {}
.related_btn-prev > .icon {}
.related_btn-next {}
.related_btn-next > .icon {}
.related_areaBtn_inner {}
.aboutIntro {
	background-image: url(/assets_v2/img/about/bg-about.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 8px;
	background-color: #ebf8fa;
	padding-top: 83px;
	padding-bottom: 78px;
	margin-bottom: 64px;
}
.aboutIntro_inner {}
.aboutIntro_title {
	font-size: 30px;
	text-align: center;
	font-weight: 500;
	color: #08a5f0;
	line-height: 1.6;
	margin-bottom: 69px;
}
.aboutIntro_text {
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	line-height: 2;
	margin-bottom: 2em;
}
.aboutIntro_text:last-child {
	margin-bottom: 0;
}
.aboutIntro_title_text {
	display: block;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	padding-left: 0.1em;
}
.aboutIntro_title_image {
	max-width: 285px;
	margin: 39px auto 0;
	display: block;
}
.aboutIntro_title_image > img {
	display: block;
}
.aboutSect {
	margin-bottom: 63px;
}
.aboutSect_inner {
	max-width: 710px;
	margin: 0 auto;
}
.aboutSect_title {
	margin-bottom: 26px;
	font-weight: 500;
	font-size: 26px;
	line-height: 1.5;
	color: var(--color-main-blue);
}
.aboutSect_text {
	margin-top: 2em;
}
.aboutSect_list {
	list-style: none;
}
.aboutSect_list > li {
	text-indent: -1em;
	padding-left: 1em;
}
.aboutSect_link {
	max-width: 300px;
	margin: 63px auto 0;
}
.aboutSect_link > a {}
.aboutSect_link > a > .icon {}
.corpBanner {
	max-width: 917px;
	margin: 70px auto 0;
}
.corpBanner > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: opacity;
}
.corpBanner > a > img {
	display: block;
}
.error {}
.error_title {
	color: var(--color-main-blue);
	text-align: center;
	font-size: 60px;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 30px;
}
.error_title_main {
	font-size: 150px;
	display: block;
}
.error_title_sub {
	display: block;
}
.error_headline {
	font-size: 25px;
	font-weight: normal;
	text-align: center;
}
.error_text {
	font-size: 18px;
	text-align: center;
}
.error_link {
	max-width: 300px;
	margin: 40px auto 0;
}
.error_link > a {}
.entry {}
.entry_info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 19px;
}
.entry_cat {}
.entry_cat > a {}
.entry_update {
	font-size: 12px;
	color: var(--color-medium-gray);
}
.entry_update > time {}
.entry_title {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 24px;
}
.entry_tagList {
	list-style: none;
	margin-bottom: 38px;
	column-gap: 8px;
	row-gap: 8px;
}
.entry_tagList > li {}
.entry_tagList > li > a {
	line-height: 20px;
	font-size: 14px;
	padding: 4px 7px;
}
.entry_youtube {
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	margin-bottom: 57px;
}
.entry_youtube > iframe {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.entry_mainImage {
	margin-bottom: 57px;
}
.entry_mainImage > img {
	display: block;
	width: 100%;
	height: auto;
}
.entry_intro {
	margin-bottom: 57px;
}
.entry_intro_title {}
.entry_intro_time {
	color: var(--color-medium-gray);
	font-size: 12px;
	text-align: right;
	margin-bottom: 19px;
}
.entry_intro_text {}
.toc {
	margin-bottom: 72px;
}
.toc_title {
	margin-bottom: 10px;
}
.toc_title > img {
	display: block;
}
.toc_oList {
	list-style: none;
}
.toc_oList > li {}
.toc_oList > li > a {
	text-decoration: none;
	color: inherit;
	font-size: 18px;
	line-height: 26px;
	padding: 16px 0;
	display: block;
	border-bottom: 1px solid #CECECE;
	position: relative;
	padding-left: 1.2em;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.toc_oList > li > a::before {
	content: "■";
	display: block;
	position: absolute;
	top: 29px;
	left: 0;
	transform: translateY(-50%);
}
.entryBody {
	font-size: 16px;
	line-height: 2;
	font-weight: normal;
	margin-bottom: 50px;
}
.entryBody p {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	display: block;
	margin: 0.8em 0;
}
.entryBody p:first-child {
	margin-top: 0;
}
.entryBody p:last-child {
	margin-bottom: 0;
}
.entryBody h2 {
	font-size: 26px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--color-main-blue);
	margin-bottom: 30px;
	margin-top: 60px;
	position: relative;
}
.entryBody h2:first-child {
	margin-top: 0;
}
.entryBody h2:last-child {
	margin-bottom: 0;
}
.entryBody h3 {
	font-weight: bold;
	font-size: 22px;
	margin-top: 60px;
	margin-bottom: 29px;
	line-height: 1.5;
}
.entryBody h3:first-child {
	margin-top: 0;
}
.entryBody h3:last-child {
	margin-bottom: 0;
}
.entryBody h4 {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin: 0.5em 0;
	margin-top: 34px;
}
.entryBody h4:first-child {
	margin-top: 0;
}
.entryBody h4:last-child {
	margin-bottom: 0;
}
.entryBody .asset-image {
	max-width: 100%;
	height: auto;
	display: block;
}
.entryBody .mt-figure {
	margin: 38px 0;
}
.entryBody .mt-figure:first-child {
	margin-top: 0;
}
.entryBody .mt-figure:last-child {
	margin-bottom: 0;
}
.entryBody .mt-figure > figcaption {
	display: block;
	font-size: 14px;
	line-height: 1.7857;
	margin-top: 7px;
}
.profileBox_info {
	line-height: inherit;
	line-height: 1.4;
	margin: 1em 0 0.8em;
	margin-top: 16px;
}
.profileBox_info:last-child {
	margin-bottom: 0;
}
.entryBody .profileBox_name {
	font-weight: bold;
	margin-right: 1em;
	margin-top: 0;
	margin-bottom: 0;
	display: inline-block;
	vertical-align: baseline;
}
.profileBox_name_sub {
	line-height: inherit;
}
.profileBox_name_sub::after {
	content: "：";
}
.profileBox_name_main {
	line-height: inherit;
	font-size: 22px;
}
.entryBody .profileBox_position {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
	display: inline-block;
	vertical-align: baseline;
}
.profileBox {
	line-height: inherit;
	background-color: #ecf5f5;
	padding: 23px 20px 40px;
	border-radius: 8px;
	margin-bottom: 72px;
}
.profileBox:last-child {
	margin-bottom: 0;
}
.profileBox_inner {
	line-height: inherit;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.entryBody .profileBox_title {
	margin-bottom: 28px;
}
.profileBox_body {
	line-height: inherit;
}
.profileBox_body > p {}
.intvBlock {
	line-height: inherit;
	margin: 25px 0;
}
.intvBlock_cols {
	display: flex;
	line-height: inherit;
}
.intvBlock_col {
	line-height: inherit;
}
.intvBlock_col-fig {
	width: 90px;
}
.intvBlock_fig {
	line-height: inherit;
}
.intvBlock_fig > img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
	border-radius: 50%;
}
.intvBlock_fig > figcaption {
	text-align: center;
	display: block;
	line-height: 1.2;
	margin-top: 4px;
}
.intvBlock_col-txt {
	width: calc(100% - 105px);
	margin-left: auto;
	padding-top: 0;
	max-width: 570px;
}
.intvBlock_text {
	color: #000;
	line-height: inherit;
	font-weight: 500;
}
.entryBody_h3_inner {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	line-height: inherit;
	padding-bottom: 5px;
}
.profileBox hr {
	border: none;
	height: 1px;
	width: auto;
	display: block;
	background-color: #fff;
	margin: 24px 0;
}
.mt-be-columns {
	display: grid;
	grid-template-columns: 47.2% 47.2%;
	column-gap: 5.6%;
	margin-top: 35px;
	margin-bottom: 35px;
}
.intvBlock_text a {
	color: var(--color-main-blue);
	text-decoration: underline;
}
.entryBody p a {
	color: var(--color-main-blue);
	text-decoration: underline;
}
.entryShare {}
.entryShare_title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 21px;
}
.entryShare_list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 2.7%;
}
.entryShare_list > li {}
.entryShare_btn {
	border: 1px solid #EBEBEB;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	text-decoration: none;
	font-size: 22px;
	transition-duration: .3s;
	transition-property: border-color;
}
.entryShare_btn-white {
	border-color: var(--color-white);
}
.entryShare_btn-x {}
.entryShare_btn-facebook {
	color: var(--color-fb-blue);
}
.entryShare_btn-line {
	color: var(--color-line-green);
}
.entryShare_btn-link {
	color: var(--color-gray);
}
.entryShare_btn > .icon {
	display: block;
}
.otherEntry {
	margin-top: 62px;
}
.otherEntry-hidden {
	display: none;
}
.otherEntry_title {}
.otherEntry_title > img {
	display: block;
}
.otherEntry_rectBlog {}
.otherEntry_rectBlog > a {
	text-decoration: none;
	color: inherit;
	display: block;
}
.otherEntry_rectBlog_item {
	display: flex;
	align-items: flex-end;
}
.otherEntry_rectBlog_image {
	width: 249px;
	height: 140px;
	position: relative;
	overflow: hidden;
}
.otherEntry_rectBlog_image > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.4s;
	transition-property: transform;
}
.otherEntry_rectBlog_areaText {
	width: calc(100% - 277px);
	margin-left: auto;
	border-bottom: 4px solid var(--color-sky-blue);
	padding-bottom: 19px;
}
.otherEntry_rectBlog_info {
	display: flex;
	line-height: 20px;
	font-size: 14px;
	align-items: center;
	margin-bottom: 16px;
}
.otherEntry_rectBlog_cat {
	font-weight: bold;
}
.otherEntry_rectBlog_hr {
	display: block;
	width: 1px;
	height: 14px;
	background-color: currentColor;
	margin: 0 8px;
}
.otherEntry_rectBlog_update {
	color: #656565;
}
.otherEntry_rectBlog_update > time {}
.otherEntry_rectBlog_headline {
	font-size: 18px;
	line-height: 1.56;
	max-height: 3.12em;
	font-weight: 500;
}
.entry_infoBlog {
	display: flex;
	font-size: 14px;
	line-height: 20px;
	align-items: center;
	margin-bottom: 32px;
}
.entry_infoBlog_cat {
	font-weight: bold;
}
.entry_infoBlog_hr {
	display: block;
	height: 14px;
	width: 1px;
	margin: 0 8px;
	background-color: currentColor;
}
.entry_infoBlog_update {}
.entry_infoBlog_update > time {}
.entryBody-blog h2 {
	font-size: 24px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--color-black);
	margin-bottom: 21px;
	margin-top: 35px;
}
.entryBody-blog h2::before {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background-color: var(--color-main-blue);
	margin-bottom: 6px;
}
.entryBody-blog h3 {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-main-blue);
	line-height: 1.56;
	padding-left: 33px;
	position: relative;
	margin-top: 21px;
	margin-bottom: 18px;
}
.entryBody-blog h3::before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	border: 3px solid var(--color-sky-blue);
	box-sizing: border-box;
	position: absolute;
	top: 0.78em;
	left: 0;
	transform: translateY(-50%);
}
.textLink {}
.textLink > a {}
.textLink > a > .icon {
	margin-left: 6px;
}
.otherEntry_article {}
.otherEntry_article > a {
	text-decoration: none;
	color: inherit;
}
.otherEntry_article_item {
	display: grid;
	grid-template-columns: 249px 1fr;
	background-color: var(--color-white);
	border-radius: 8px;
	box-shadow: var(--shadow-card);
	align-items: center;
}
.otherEntry_article_image {
	padding-bottom: 140px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}
.otherEntry_article_image > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.4s;
	transition-property: transform;
}
.otherEntry_article_areaText {
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.otherEntry_article_cat {}
.otherEntry_article_headline {
	font-size: 22px;
	line-height: 1.45;
	max-height: 2.9em;
	margin-top: 10px;
	font-weight: 500;
}
@media screen and (min-width:1366px) {
	.topVis_bg_foot {
		left: 0;
		transform: none;
		margin-left: -85px;
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	.otherEntry_article > a:hover {}
	a:hover .otherEntry_article_image > img {
		transform: scale(1.1);
	}
	.intvBlock_text a:hover {
		text-decoration: none;
	}
	.entryBody p a:hover {
		text-decoration: none;
	}
	.toc_oList > li > a:hover {
		color: var(--color-main-blue);
	}
	.entryShare_btn-x:hover {
		border-color: var(--color-black);
	}
	.entryShare_btn-facebook:hover {
		border-color: var(--color-fb-blue);
	}
	.entryShare_btn-line:hover {
		border-color: var(--color-line-green);
	}
	.entryShare_btn-link:hover {
		border-color: var(--color-gray);
	}
	.otherEntry_rectBlog > a:hover {}
	a:hover .otherEntry_rectBlog_image > img {
		transform: scale(1.08);
	}
	.corpBanner > a:hover {
		opacity: .8;
	}
	.sideArticles_list > li > a:hover {
		color: var(--color-main-blue);
	}
	a:hover .sideArticles_image > img {
		transform: scale(1.05);
	}
	.blogs_list > li > a:hover {}
	a:hover .blogs_image > img {
		transform: scale(1.1);
	}
	a:hover .blogs_headline {
		color: var(--color-main-blue);
	}
	.pager_link[href]:hover {
		background-color: var(--color-main-blue);
		color: var(--color-white);
	}
	.topVis_link > a:hover {}
	.sideCatTag_list > li > a:hover {}
	.sideCatTag_btn:hover {
		color: var(--color-main-blue);
	}
	.bnrBlog > a:hover {
		opacity: .7;
	}
	.sideArticleNav_list > li > a:hover {
		opacity: .7;
	}
	.articleItem_anchor:hover {
		border-color: var(--color-main-blue);
	}
	.articleItem_anchor:hover + .articleItem_image > img {
		transform: scale(1.04);
	}
	.articleItem_cat > a:hover {}
	a:hover ~ .articleItem_areaText .articleItem_title {
		color: var(--color-main-blue);
	}
	.articleItem_tagList > li > a:hover {
		background-color: var(--color-sky-blue);
		color: var(--color-white);
	}
	.recentNav_link > a:hover {}
	.pager_arrow-prev:hover {}
	.pager_arrow-next:hover {}
}
@media screen and (max-width:999px) {
	.contents {}
	.contents_col {}
	.contents_col-main {
		width: calc(100% - 240px);
	}
	.contents_col-side {
		padding: 0;
		width: 220px;
	}
	.contents_inner {}
	.contents_cols {}
	.searchTagNav {}
	.searchTagNav_title {}
	.searchTagNav_title > img {}
	.searchTagNav_list {}
	.searchTagNav_list > li {}
	.searchCatNav {}
	.searchCatNav_title {}
	.searchCatNav_title > img {}
	.searchCatNav_list {
		column-gap: 10px;
		row-gap: 10px;
	}
	.searchCatNav_list > li {}
	.searchCatNav_list > li > a {}
	.contents_side {}
	.sideCatNav {}
	.sideCatNav_title {}
	.sideCatNav_list {}
	.sideCatNav_list > li {}
	.sideCatNav_list > li > a {}
	.sideCatNav_list > li:nth-child(n+2) {}
	.sideCatTag {}
	.sideCatTag_title {}
	.sideCatTag_list {}
	.sideCatTag_list > li {}
	.sideCatTag_list > li > a {}
	.sideCatTag_btn {}
	.bnrBlog {}
	.bnrBlog > a {}
	.bnrBlog > a > img {}
	.sideArticleNav {}
	.sideArticleNav_title {}
	.sideArticleNav_list {}
	.sideArticleNav_list > li {}
	.sideArticleNav_list > li > a {}
	.sideArticleNav_item {
		grid-template-columns: 34px 1fr;
	}
	.sideArticleNav_num {
		width: 34px;
		height: 34px;
		font-size: 22px;
	}
	.sideArticleNav_num-no1 {}
	.sideArticleNav_num-no2 {}
	.sideArticleNav_num-no3 {}
	.sideArticleNav_text {}
	.recentNav {}
	.recentNav_title {}
	.recentNav_title > img {}
	.recentNav_list {
		column-gap: 20px;
		row-gap: 20px;
	}
	.recentNav_list > li {}
	.articleItem {}
	.articleItem_anchor {}
	.articleItem_image {}
	.articleItem_image > img {}
	.articleItem_areaText {}
	.articleItem_areaText_inner {
		max-width: none;
	}
	.articleItem_info {}
	.articleItem_cat {}
	.articleItem_cat > a {}
	.articleItem_update {}
	.articleItem_update > time {}
	.articleItem_title {}
	.articleItem_tagList {}
	.articleItem_tagList > li {}
	.articleItem_tagList > li > a {}
	.recentNav_link {}
	.recentNav_link > a {}
	.recentNav_link > a > .icon {}
	.topVis {}
	.topVis_bg {}
	.topVis_bg_head {}
	.topVis_bg_foot {}
	.topVis_inner {}
	.topVis_cols {}
	.topVis_col {}
	.topVis_col-img {
		width: calc(100% - 460px);
	}
	.topVis_image {
		min-width: 340px;
	}
	.topVis_image > img {}
	.topVis_col-text {}
	.topVis_title {
		font-size: 35px;
	}
	.topVis_text {
		font-size: 16px;
	}
	.topVis_link {
		margin-top: 45px;
	}
	.topVis_link > a {}
	.topVis_link > a > .icon {}
	.articleItem_new {
		transform-origin: right top;
		transform: scale(0.7);
	}
	.articleItem_new::after {}
	.sideCatTag_btnWrap {}
	.articles {}
	.articles_inner {}
	.articles_title {}
	.articles_title > img {}
	.articles_list {
		column-gap: 20px;
		row-gap: 20px;
	}
	.articles_list > li {}
	.pager {}
	.pager_arrow {}
	.pager_arrow > .icon {}
	.pager_link {}
	.pager_link-current {}
	.pager_extend {}
	.blogs {}
	.blogs_title {}
	.blogs_title > img {}
	.blogs_list {}
	.blogs_list > li {}
	.blogs_list > li:nth-child(n+2) {}
	.blogs_list > li > a {}
	.blogs_item {
		grid-template-columns: 120px 1fr;
	}
	.blogs_image {}
	.blogs_image > img {}
	.blogs_areaText {}
	.blogs_update {}
	.blogs_update > time {}
	.blogs_headline {
		font-size: 16px;
	}
	.blogs_areaText_inner {}
	.sideArticles {}
	.sideArticles_title {}
	.sideArticles_list {}
	.sideArticles_list > li {}
	.sideArticles_list > li:nth-child(n+2) {}
	.sideArticles_list > li > a {}
	.sideArticles_image {}
	.sideArticles_image > img {}
	.sideArticles_text {
		font-size: 14px;
		margin-top: 6px;
	}
	.related {}
	.related_title {}
	.related_swiper {}
	.related_swiper_wrapper {}
	.related_swiper_slide {}
	.related_swiper_slide > a {}
	.related_item {}
	.related_image {}
	.related_image > img {}
	.related_headline {}
	.related_link {}
	.related_link > a {}
	.related_link > a > .icon {}
	.related_areaBtn {}
	.related_btn {}
	.related_btn-prev {}
	.related_btn-prev > .icon {}
	.related_btn-next {}
	.related_btn-next > .icon {}
	.related_areaBtn_inner {}
	.aboutIntro {}
	.aboutIntro_inner {}
	.aboutIntro_title {}
	.aboutIntro_text {}
	.aboutIntro_text:last-child {}
	.aboutIntro_title_text {}
	.aboutIntro_title_image {}
	.aboutIntro_title_image > img {}
	.aboutSect {}
	.aboutSect_inner {}
	.aboutSect_title {}
	.aboutSect_text {}
	.aboutSect_list {}
	.aboutSect_list > li {}
	.aboutSect_link {}
	.aboutSect_link > a {}
	.aboutSect_link > a > .icon {}
	.corpBanner {}
	.corpBanner > a {}
	.corpBanner > a > img {}
	.error {}
	.error_title {}
	.error_title_main {}
	.error_title_sub {}
	.error_headline {}
	.error_text {}
	.error_link {}
	.error_link > a {}
	.entry {}
	.entry_info {}
	.entry_cat {}
	.entry_cat > a {}
	.entry_update {}
	.entry_update > time {}
	.entry_title {}
	.entry_tagList {}
	.entry_tagList > li {}
	.entry_tagList > li > a {}
	.entry_youtube {}
	.entry_youtube > iframe {}
	.entry_mainImage {}
	.entry_mainImage > img {}
	.entry_intro {}
	.entry_intro_title {}
	.entry_intro_time {}
	.entry_intro_text {}
	.toc {}
	.toc_title {}
	.toc_title > img {}
	.toc_oList {}
	.toc_oList > li {}
	.toc_oList > li > a {}
	.toc_oList > li > a::before {}
	.entryBody {
		overflow: hidden;
	}
	.entryBody p {}
	.entryBody p:first-child {}
	.entryBody p:last-child {}
	.entryBody h2 {}
	.entryBody h2:first-child {}
	.entryBody h2:last-child {}
	.entryBody h3 {}
	.entryBody h3:first-child {}
	.entryBody h3:last-child {}
	.entryBody h4 {}
	.entryBody h4:first-child {}
	.entryBody h4:last-child {}
	.entryBody .asset-image {}
	.entryBody .mt-figure {}
	.entryBody .mt-figure:first-child {}
	.entryBody .mt-figure:last-child {}
	.entryBody .mt-figure > figcaption {}
	.profileBox_info {}
	.profileBox_info:last-child {}
	.entryBody .profileBox_name {}
	.profileBox_name_sub {}
	.profileBox_name_sub::after {}
	.profileBox_name_main {}
	.entryBody .profileBox_position {}
	.profileBox {}
	.profileBox:last-child {}
	.profileBox_inner {}
	.entryBody .profileBox_title {}
	.profileBox_body {}
	.profileBox_body > p {}
	.intvBlock {}
	.intvBlock_cols {}
	.intvBlock_col {}
	.intvBlock_col-fig {}
	.intvBlock_fig {}
	.intvBlock_fig > img {}
	.intvBlock_fig > figcaption {}
	.intvBlock_col-txt {}
	.intvBlock_text {}
	.entryBody_h3_inner {}
	.profileBox hr {}
	.mt-be-columns {}
	.intvBlock_text a {}
	.entryBody p a {}
	.entryShare {}
	.entryShare_title {}
	.entryShare_list {}
	.entryShare_list > li {}
	.entryShare_btn {}
	.entryShare_btn-x {}
	.entryShare_btn-facebook {}
	.entryShare_btn-line {}
	.entryShare_btn-link {}
	.entryShare_btn > .icon {}
	.otherEntry {}
	.otherEntry_title {}
	.otherEntry_title > img {}
	.otherEntry_rectBlog {}
	.otherEntry_rectBlog > a {}
	.otherEntry_rectBlog_item {}
	.otherEntry_rectBlog_image {
		width: 200px;
		height: 113px;
	}
	.otherEntry_rectBlog_image > img {}
	.otherEntry_rectBlog_areaText {
		width: calc(100% - 220px);
		padding-bottom: 15px;
		border-bottom-width: 3px;
	}
	.otherEntry_rectBlog_info {
		margin-bottom: 8px;
	}
	.otherEntry_rectBlog_cat {}
	.otherEntry_rectBlog_hr {}
	.otherEntry_rectBlog_update {}
	.otherEntry_rectBlog_update > time {}
	.otherEntry_rectBlog_headline {
		font-size: 16px;
	}
	.entry_infoBlog {}
	.entry_infoBlog_cat {}
	.entry_infoBlog_hr {}
	.entry_infoBlog_update {}
	.entry_infoBlog_update > time {}
	.entryBody-blog h2 {}
	.entryBody-blog h2::before {}
	.entryBody-blog h3 {}
	.entryBody-blog h3::before {}
	.textLink {}
	.textLink > a {}
	.textLink > a > .icon {}
	.otherEntry_article {}
	.otherEntry_article > a {}
	.otherEntry_article_item {
		grid-template-columns: 200px 1fr;
	}
	.otherEntry_article_image {
		padding-bottom: 112px;
	}
	.otherEntry_article_image > img {}
	.otherEntry_article_areaText {
		padding: 0 20px;
	}
	.otherEntry_article_cat {}
	.otherEntry_article_headline {
		font-size: 18px;
		margin-top: 4px;
	}
}
@media screen and (max-width: 767px) {
	.contents {}
	.contents_col {
		width: auto;
		max-width: none;
	}
	.contents_col-main {}
	.contents_col-side {
		display: none;
	}
	.contents_inner {}
	.contents_cols {
		display: block;
	}
	.searchTagNav {}
	.searchTagNav_title {}
	.searchTagNav_title > img {}
	.searchTagNav_list {}
	.searchTagNav_list > li {}
	.searchTagNav_list > li.isHidden {
		display: none;
	}
	.searchTagNav_list.isShow > li.isHidden {
		display: block;
	}
	.searchCatNav {
		margin-bottom: 43px;
		margin-top: 50px;
	}
	.searchCatNav_title {}
	.searchCatNav_title > img {}
	.searchCatNav_list {
		display: block;
	}
	.searchCatNav_list > li {}
	.searchCatNav_list > li:nth-child(n+2) {
		margin-top: 14px;
	}
	.searchCatNav_list > li > a {}
	.contents_side {}
	.sideCatNav {}
	.sideCatNav_title {}
	.sideCatNav_list {}
	.sideCatNav_list > li {}
	.sideCatNav_list > li > a {}
	.sideCatNav_list > li:nth-child(n+2) {}
	.sideCatTag {}
	.sideCatTag_title {}
	.sideCatTag_list {}
	.sideCatTag_list > li {}
	.sideCatTag_list > li > a {}
	.sideCatTag_btn {}
	.bnrBlog {
		max-width: 327px;
		margin-left: auto;
		margin-right: auto;
	}
	.bnrBlog > a {}
	.bnrBlog > a > img {}
	.sideArticleNav {}
	.sideArticleNav_title {}
	.sideArticleNav_list {}
	.sideArticleNav_list > li {}
	.sideArticleNav_list > li > a {}
	.sideArticleNav_item {}
	.sideArticleNav_num {}
	.sideArticleNav_num-no1 {}
	.sideArticleNav_num-no2 {}
	.sideArticleNav_num-no3 {}
	.sideArticleNav_text {}
	.recentNav {}
	.recentNav_title {
		margin-bottom: 24px;
	}
	.recentNav_title > img {}
	.recentNav_list {
		display: block;
	}
	.recentNav_list > li {}
	.recentNav_list > li:nth-child(n+2) {
		margin-top: 25px;
	}
	.recentNav_list > li:nth-child(n+4) {
		display: none;
	}
	.articleItem {}
	.articleItem_anchor {}
	.articleItem_image {}
	.articleItem_image > img {}
	.articleItem_areaText {
		padding-top: 23px;
		padding-bottom: 13px;
	}
	.articleItem_areaText_inner {}
	.articleItem_info {
		margin-bottom: 11px;
	}
	.articleItem_cat {}
	.articleItem_cat > a {}
	.articleItem_update {
		font-size: 12px;
		line-height: 18px;
	}
	.articleItem_update > time {}
	.articleItem_title {
		font-size: 16px;
		line-height: 1.625;
	}
	.articleItem_tagList {
		margin-top: 6px;
	}
	.articleItem_tagList > li {}
	.articleItem_tagList > li > a {
		font-size: 12px;
		line-height: 18px;
	}
	.recentNav_link {
		max-width: 280px;
		margin-top: 51px;
	}
	.recentNav_link > a {}
	.recentNav_link > a > .icon {}
	.topVis {
		margin-bottom: 38px;
	}
	.topVis_bg {
		height: 560px;
	}
	.topVis_bg_head {
		width: 420px;
		height: 223px;
		top: -57px;
		margin-left: 46px;
	}
	.topVis_bg_foot {
		width: 440px;
		height: 285px;
		transform: none;
		left: 0;
		margin-left: -90px;
	}
	.topVis_inner {}
	.topVis_cols {
		display: block;
	}
	.topVis_col {
		width: auto;
		max-width: none;
	}
	.topVis_col-img {
		max-width: 325px;
		margin: 0 auto 3px;
	}
	.topVis_image {
		min-width: 0;
		transform: translate(-3.8%, -2.6%);
	}
	.topVis_image > img {}
	.topVis_col-text {
		padding: 0;
	}
	.topVis_title {
		font-size: 28px;
		line-height: 1.429;
		letter-spacing: 0.0em;
		margin-bottom: 5px;
	}
	.topVis_text {
		font-size: 14px;
		line-height: 1.86;
	}
	.topVis_link {
		max-width: 280px;
		margin: 23px auto 0;
	}
	.topVis_link > a {}
	.topVis_link > a > .icon {}
	.sideCatTag-spNone {
		display: none;
	}
	.sideCatNav-spNone {
		display: none;
	}
	.sideArticleNav-spNone {
		display: none;
	}
	.searchTagNav_btn {
		display: block;
		color: var(--color-medium-gray);
		font-size: 14px;
		line-height: 20px;
		margin-left: auto;
		padding: 9px 0;
	}
	.searchTagNav_btn[aria-expanded="true"] {
		display: none;
	}
	.articleItem_new {
		transform: none;
	}
	.articleItem_new::after {}
	.sideCatTag_btnWrap {}
	.articles {}
	.articles_inner {}
	.articles_title {}
	.articles_title > img {}
	.articles_list {
		display: block;
	}
	.articles_list > li {}
	.articles_list > li:nth-child(n+2) {
		margin-top: 24px;
	}
	.pager {
		margin-top: 29px;
		margin-left: -15px;
		margin-right: -15px;
		column-gap: 7px;
		row-gap: 5px;
	}
	.pager_arrow {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.pager_arrow > .icon {}
	.pager_link {
		min-width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.pager_link-current {}
	.pager_extend {}
	.searchTagNav + .bnrBlog {
		display: block;
		margin-top: 28px;
	}
	.blogs {}
	.blogs_title {}
	.blogs_title > img {}
	.blogs_list {}
	.blogs_list > li {}
	.blogs_list > li:nth-child(n+2) {
		margin-top: 22px;
	}
	.blogs_list > li > a {}
	.blogs_item {
		grid-template-columns: 100px 1fr;
		column-gap: 0;
	}
	.blogs_image {
		padding-bottom: 144%;
	}
	.blogs_image > img {}
	.blogs_areaText {
		padding: 5px 17px;
	}
	.blogs_update {}
	.blogs_update > time {}
	.blogs_headline {
		font-size: 18px;
		line-height: 1.56;
		min-height: 4.68em;
		-webkit-line-clamp: 3;
	}
	.blogs_areaText_inner {}
	.sideArticles {}
	.sideArticles_title {}
	.sideArticles_list {}
	.sideArticles_list > li {}
	.sideArticles_list > li:nth-child(n+2) {}
	.sideArticles_list > li > a {}
	.sideArticles_image {}
	.sideArticles_image > img {}
	.sideArticles_text {}
	.related {
		display: block;
		margin-left: -24px;
		margin-right: -24px;
		padding-left: 24px;
		overflow: hidden;
		padding-top: 29px;
		padding-right: 24px;
		padding-bottom: 32px;
		margin-top: 43px;
	}
	.related-hidden {
		display: none;
	}
	.related_title {
		margin-bottom: 23px;
	}
	.related_swiper {
		padding-right: 24px;
		margin-right: -24px;
	}
	.related_swiper_wrapper {}
	.related_swiper_slide {
		width: 300px;
	}
	.related_swiper_slide > a {
		display: block;
	}
	.related_item {}
	.related_image {
		position: relative;
		padding-bottom: 55.88%;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: var(--shadow-card);
	}
	.related_image > img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.related_headline {
		font-size: 16px;
		line-height: 1.625;
		font-weight: 500;
		margin-top: 8px;
	}
	.related_link {
		max-width: 280px;
		margin: 1px auto 0;
	}
	.related_link > a {}
	.related_link > a > .icon {}
	.related_areaBtn {
		margin-top: 2px;
	}
	.related_btn {
		font-size: 14px;
		font-weight: 500;
		color: var(--color-medium-gray);
		display: flex;
		align-items: center;
		height: 40px;
		transition-duration: .3s;
		transition-property: opacity, visibility;
	}
	.related_btn[aria-disabled="true"] {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
	}
	.related_btn > .icon {
		transform: translateY(7%);
	}
	.related_btn-prev {}
	.related_btn-prev > .icon {
		display: block;
		margin-right: 4px;
	}
	.related_btn-next {}
	.related_btn-next > .icon {
		margin-left: 4px;
	}
	.related_areaBtn_inner {
		max-width: 287px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}
	.related-bgWhite {
		background-color: var(--color-white);
	}
	.related-favorite {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 69px;
	}
	.related_title-favorite {
		margin-bottom: 17px;
	}
	.recentNav_container {
		background-color: var(--color-mint-white);
		padding-left: 24px;
		padding-right: 24px;
		margin-left: -24px;
		margin-right: -24px;
		padding-top: 32px;
	}
	.related_info {
		display: grid;
		grid-template-columns: 44px 1fr;
		align-items: center;
		column-gap: 12px;
		margin-bottom: 13px;
	}
	.related_num {
		width: 44px;
		height: 44px;
		background-color: var(--color-white);
		color: #B0AFAF;
		font-size: 30px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		padding-bottom: 2px;
	}
	.related_num-no1 {
		background-color: #E0C153;
		color: var(--color-white);
	}
	.related_num-no2 {
		background-color: #B0AFAF;
		color: var(--color-white);
	}
	.related_num-no3 {
		background-color: #B29582;
		color: var(--color-white);
	}
	.related_text {
		font-size: 16px;
		line-height: 1.625;
		font-weight: 500;
	}
	.aboutIntro {
		background-image: url(/assets_v2/img/about/bg-about_sp.jpg);
		padding-top: 37px;
		padding-bottom: 37px;
	}
	.aboutIntro_inner {}
	.aboutIntro_title {
		font-size: 20px;
		line-height: 1.45;
		margin-bottom: 30px;
	}
	.aboutIntro_text {
		font-size: 18px;
	}
	.aboutIntro_text:last-child {}
	.aboutIntro_title_text {}
	.aboutIntro_title_image {
		max-width: 205px;
		margin-top: 20px;
	}
	.aboutIntro_title_image > img {}
	.aboutSect {
		margin-bottom: 45px;
	}
	.aboutSect_inner {}
	.aboutSect_title {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.aboutSect_text {
		margin-top: 1em;
	}
	.aboutSect_list {}
	.aboutSect_list > li {}
	.aboutSect_link {
		max-width: 280px;
		margin-top: 35px;
	}
	.aboutSect_link > a {}
	.aboutSect_link > a > .icon {}
	.corpBanner {}
	.corpBanner > a {}
	.corpBanner > a > img {
		margin-left: auto;
		margin-right: auto;
	}
	.error {}
	.error_title {
		font-size: 40px;
	}
	.error_title_main {
		font-size: 100px;
	}
	.error_title_sub {}
	.error_headline {
		font-size: 17px;
		margin-left: -15px;
		margin-right: -15px;
	}
	.error_text {
		font-size: 14px;
	}
	.error_link {
		max-width: 280px;
		margin-top: 25px;
	}
	.error_link > a {}
	.entry {}
	.entry_info {
		margin-bottom: 15px;
	}
	.entry_cat {}
	.entry_cat > a {}
	.entry_update {}
	.entry_update > time {}
	.entry_title {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 12px;
	}
	.entry_tagList {
		margin-bottom: 36px;
	}
	.entry_tagList > li {}
	.entry_tagList > li > a {}
	.entry_youtube {
		margin-bottom: 26px;
	}
	.entry_youtube > iframe {}
	.entry_mainImage {
		margin-bottom: 26px;
	}
	.entry_mainImage > img {}
	.entry_intro {
		margin-bottom: 40px;
	}
	.entry_intro_title {}
	.entry_intro_time {}
	.entry_intro_text {}
	.toc {
		margin-bottom: 26px;
	}
	.toc_title {
		font-size: 20px;
	}
	.toc_title > img {}
	.toc_oList {}
	.toc_oList > li {}
	.toc_oList > li > a {
		font-size: 16px;
	}
	.toc_oList > li > a::before {}
	.entryBody {
		margin-bottom: 20px;
	}
	.entryBody p {}
	.entryBody p:first-child {}
	.entryBody p:last-child {}
	.entryBody h2 {
		font-size: 20px;
		margin-bottom: 20px;
		margin-top: 43px;
	}
	.entryBody h2:first-child {}
	.entryBody h2:last-child {}
	.entryBody h3 {
		font-size: 18px;
		margin-bottom: 17px;
		margin-top: 32px;
	}
	.entryBody h3:first-child {}
	.entryBody h3:last-child {}
	.entryBody h4 {
		font-size: 16px;
		margin-top: 27px;
	}
	.entryBody h4::before {}
	.entryBody h4:first-child {}
	.entryBody h4:last-child {}
	.entryBody .asset-image {}
	.entryBody .mt-figure {
		margin: 30px 0;
	}
	.entryBody .mt-figure > figcaption {
		font-size: 14px;
		margin-top: 8px;
		line-height: 1.571;
	}
	.entryBody_inner {
		max-width: 87.2%;
	}
	.profileBox_info {
		display: block;
		margin-top: 15px;
	}
	.profileBox_info:last-child {}
	.entryBody .profileBox_name {
		margin-right: 0;
		display: block;
	}
	.profileBox_name_sub {
		font-size: 16px;
	}
	.profileBox_name_sub::after {}
	.profileBox_name_main {
		font-size: 20px;
	}
	.entryBody .profileBox_position {
		font-size: 14px;
		margin-top: 4px;
		display: block;
	}
	.profileBox {
		padding: 16px 25px 25px;
		font-size: 14px;
		margin-bottom: 47px;
	}
	.profileBox_inner {}
	.entryBody .profileBox_title {
		margin-bottom: 16px;
	}
	.profileBox_body {}
	.profileBox_body > p {}
	.intvBlock {
		margin: 23px 0;
	}
	.intvBlock_cols {}
	.intvBlock_col {}
	.intvBlock_col-fig {
		width: 64px;
	}
	.intvBlock_fig {}
	.intvBlock_fig > img {}
	.intvBlock_fig > figcaption {
		font-size: 12px;
	}
	.intvBlock_col-txt {
		width: calc(100% - 80px);
		padding-top: 5px;
	}
	.intvBlock_text {}
	.entryBody_h3_inner {}
	.profileBox hr {
		margin: 16px 0;
	}
	.mt-be-columns {
		display: block;
		margin: 25px 0;
	}
	.mt-be-column {
		margin-bottom: 30px;
	}
	.mt-be-column:last-child {
		margin-bottom: 0;
	}
	.entryShare {}
	.entryShare_title {
		font-size: 14px;
		line-height: 1.429;
		margin-bottom: 15px;
	}
	.entryShare_list {
		column-gap: 6px;
	}
	.entryShare_list > li {}
	.entryShare_btn {}
	.entryShare_btn-x {}
	.entryShare_btn-facebook {}
	.entryShare_btn-line {}
	.entryShare_btn-link {}
	.entryShare_btn > .icon {}
	.otherEntry {
		margin-bottom: 39px;
		margin-top: 32px;
	}
	.otherEntry-mbL {
		margin-bottom: 67px;
	}
	.otherEntry_title {}
	.otherEntry_title > img {}
	.otherEntry_rectBlog {}
	.otherEntry_rectBlog > a {}
	.otherEntry_rectBlog_item {
		display: block;
	}
	.otherEntry_rectBlog_image {
		width: auto;
		height: 0;
		padding-bottom: 56.27%;
		margin-bottom: 14px;
	}
	.otherEntry_rectBlog_image > img {}
	.otherEntry_rectBlog_areaText {
		width: auto;
		border-bottom-width: 4px;
		padding-bottom: 41px;
	}
	.otherEntry_rectBlog_info {
		margin-bottom: 11px;
	}
	.otherEntry_rectBlog_cat {}
	.otherEntry_rectBlog_hr {}
	.otherEntry_rectBlog_update {}
	.otherEntry_rectBlog_update > time {}
	.otherEntry_rectBlog_headline {
		font-size: 18px;
	}
	.related-bgBlue {
		background-color: var(--color-mint-white);
	}
	.entry_infoBlog {}
	.entry_infoBlog_cat {}
	.entry_infoBlog_hr {}
	.entry_infoBlog_update {}
	.entry_infoBlog_update > time {}
	.entryBody-blog h2 {}
	.entryBody-blog h2::before {}
	.entryBody-blog h3 {}
	.entryBody-blog h3::before {}
	.textLink {}
	.textLink > a {}
	.textLink > a > .icon {}
	.otherEntry_article {}
	.otherEntry_article > a {}
	.otherEntry_article_item {
		display: block;
	}
	.otherEntry_article_image {
		padding-bottom: 55.88%;
	}
	.otherEntry_article_image > img {}
	.otherEntry_article_areaText {
		padding: 14px 25px 23px;
	}
	.otherEntry_article_cat {}
	.otherEntry_article_headline {
		margin-top: 14px;
	}
}
@media screen and (max-width:374px) {
	.aboutIntro_text {
		font-size: 15px;
	}
}
