@charset "utf-8";

/* postContent
------------------------------------------------------------------- */
body.post #postContent > .inner {
	padding: 0;
}

/* compact_posts
------------------------------------------------------------------- */
.compact_posts {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.compact_posts .item {
	margin: 0;
	display: flex;
}
.compact_posts .item > a {
	display: flex;
	width: 100%;
	border: 1px solid #e8e8e8;
	background-color: #fff;
	border-radius: 8px;
	padding: 16px;
	text-decoration: none;
}
.compact_posts .item .photo {
	width: 43.47%;
}
.compact_posts .item .photo_in {
	position: relative;
	text-align: center;
	padding-top: 66.25%;
	height: 0;
	border-radius: 8px;
}
.compact_posts .item .photo_in img {
	height: auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
	border-radius: 8px;
}
.compact_posts .item .txt {
	display: flex;
	flex-direction: column;
	width: calc(100% - 43.47%);
	padding-left: 24px;
}
.compact_posts .item .txt > *:first-child { margin-top: 0; }
.compact_posts .item .txt > *:last-child { margin-bottom: 0; }

.compact_posts .item .txt .title {
	font-size: 16px;
	line-height: 1.35;
	font-weight: bold;
	margin: 0;
	margin-bottom: 4px;
}
.compact_posts .item .txt .date {
	display: block;
	margin-top: auto;
	font-size: 12px;
	font-weight: bold;
	color: #8F8F8F;
}

@media screen and (min-width : 768px) {
	.compact_posts:not(.slide) .item {
		width: calc((100% - 20px) / 2);
		margin-top: 20px;
		margin-left: 20px;
	}
	.compact_posts:not(.slide) .item:nth-child(-n+2) {
		margin-top: 0;
	}
	.compact_posts:not(.slide) .item:nth-child(2n+1) {
		margin-left: 0;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {

	.compact_posts .item {
		width: calc((100% - 8px) / 2);
		margin-top: 8px;
		margin-left: 8px;
	}
	.compact_posts .item:nth-child(-n+2) {
		margin-top: 0;
	}
	.compact_posts .item:nth-child(2n+1) {
		margin-left: 0;
	}
	.compact_posts .item > a {
		flex-direction: column;
		padding: 8px;
	}
	.compact_posts .item .photo {
		width: 100%;
	}
	.compact_posts .item .photo_in {
		padding-top: 53%;
	}
	.compact_posts .item .txt {
		flex-grow: 1;
		width: 100%;
		padding: 0;
		margin-top: 16px;
	}
	.compact_posts .item .txt .title {
		font-size: 14px;
		line-height: 1.35;
		margin-bottom: 4px;
	}
}

/* compact_posts.slide
------------------------------------------------------------------- */
.compact_posts_slide_outer {
	position: relative;
}
.compact_posts_slide_outer .slick-arrows {
	position: absolute;
	top: 50%;
	width: 100%;
}

.compact_posts_slide_wrap .slick-track {
	display: flex;
	align-items: stretch;
}
.compact_posts_slide_wrap .slick-slide {
	height: auto;
}

.compact_posts.slide:not(.slick-initialized) {
	opacity: 0;
	flex-wrap: nowrap;
}
.compact_posts.slide {
	width: calc(100% + 100px);
	max-width: calc(100% + 100px);
}

/* arrow */
.compact_posts.slide .slick-arrow {
	display: none!important;
}
.compact_posts_slide_outer .slick-arrow {
	width: 40px;
	height: 40px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
	border-radius: 50%;
	z-index: 10;
	border: 1px solid #e8e8e8;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.compact_posts_slide_outer .slick-arrow.slick-disabled {
	display: none!important;
}
.compact_posts_slide_outer .slick-arrow:before {
	content: '';
}
.compact_posts_slide_outer .slick-prev {
	left: -20px;
	background-image: url(../img/btn/ico_arrow_left_bk.svg);
}
.compact_posts_slide_outer .slick-next {
	right: -20px;
	background-image: url(../img/btn/ico_arrow_right_bk.svg);
}

@media screen and (max-width : 1400px) {
	.compact_posts.slide {
		width: calc(100% + 82px);
		max-width: calc(100% + 82px);
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 950px) {
	.compact_posts.slide {
		width: calc(100% + 40px);
		max-width: calc(100% + 40px);
	}
	.compact_posts.slide .item {
		width: 300px;
	}
}
@media screen and (min-width : 768px) {
	.compact_posts.slide .item {
		width: 424px;
		margin-top: 0;
	}
	.compact_posts.slide .item + .item {
		margin-left: 16px;
	}

	.compact_posts_slide_wrap {
		overflow: hidden;
		padding: 12px 0;
		margin: -12px 0;
		border-right: 1px solid #e8e8e8;
	}

	/* arrow */
	.compact_posts_slide_outer .slick-arrow {
		transition: all 0.07s linear;
	}
	.compact_posts_slide_outer .slick-arrow:hover {
		width: 48px;
		height: 48px;
		border-color: #FAD2B7;
	}
	.compact_posts_slide_outer .slick-arrow.slick-prev:hover {
		background-image: url(../img/btn/ico_arrow_left.svg);
		left: -24px;
	}
	.compact_posts_slide_outer .slick-arrow.slick-next:hover {
		background-image: url(../img/btn/ico_arrow_right.svg);
		right: -24px;
	}
}
@media screen and (max-width : 1200px) and (min-width : 768px) {}
@media screen and (max-width : 767px) {
	.compact_posts.slide {
		width: calc(100% + 18px);
	}
	.compact_posts.slide:not(.slick-initialized) {
		overflow-x: hidden;
	}
	.compact_posts.slide .item {
		width: 232px;
		margin-top: 0;
	}
	.compact_posts.slide .item + .item {
		margin-left: 16px;
	}

	.serviceinfo_compact_posts_slide_wrap {
		margin-top: 32px;
		padding: 29px 18px 32px;
		margin-left: -18px;
		width: calc(100% + 36px);
		max-width: calc(100% + 36px);
		background-color: #F8F8F8;
	}
	.serviceinfo_compact_posts_slide_wrap h2 {
		margin-top: 0!important;
	}

	/* arrow */
	.compact_posts_slide_outer .slick-arrows {
		display: none!important;
	}
	.compact_posts.slide > .slick-arrow {
		display: none!important;
		width: 26px;
		height: 26px;
		background-size: 9px;
	}
	.compact_posts.slide > .slick-prev {
		left: 12px;
	}
	.compact_posts.slide > .slick-next {
		right: 12px;
	}
}

/* compact_posts.layout_side
------------------------------------------------------------------- */
.compact_posts.layout_side {
	border-bottom: 1px solid #e8e8e8;
}
.compact_posts.layout_side .item > a {
	padding: 12px 0;
	border: 0;
	border-radius: 0;
	border-top: 1px solid #e8e8e8;
}
.compact_posts.layout_side .item,
.compact_posts.layout_side .item:nth-child(2n+1),
.compact_posts.layout_side .item:nth-child(-n+2) {
	width: 100%;
	margin: 0;
}
.compact_posts.layout_side .item .photo {
	width: 80px;
	height: 60px;
}
.compact_posts.layout_side .item .photo_in {
	padding-top: 75%;
}
.compact_posts.layout_side .item .photo_in img {
	border-radius: 4px;
}
.compact_posts.layout_side .item .txt {
	padding-left: 16px;
	width: calc(100% - 80px);
}
.compact_posts.layout_side .item .txt .title {
	font-size: 14px;
	line-height: 1.41;
	font-weight: 500;
}
.compact_posts .item .txt .date {
	display: none;
}

/* in sidebar */
.compact_posts.layout_side,
.compact_posts.layout_side .item:last-child,
.compact_posts.layout_side .item:last-child > a {
	border-radius: 0 0 8px 8px;
}


@media screen and (min-width : 768px) {
	.compact_posts.layout_side .item .txt .title {
		transition: color 0.07s linear;
	}
	.compact_posts.layout_side .item > a:hover .txt .title {
		color: #ED6103;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.compact_posts.layout_side {
		border-radius: 0;
	}
	.compact_posts.layout_side .item > a {
		flex-direction: row;
	}
	.compact_posts.layout_side .item .txt {
		margin-top: 0;
	}
	.compact_posts.layout_side .item .txt .title {
		font-size: 14px;
	}
	.compact_posts.layout_side .item .txt .date {
		margin-top: 2px;
	}
}

/* compact_posts.layout_side_in_fund
------------------------------------------------------------------- */
.compact_posts.layout_side_in_fund {}
.compact_posts.layout_side_in_fund .item > a {
	padding: 24px;
	border: 0;
	border-radius: 0;
	border-top: 1px solid #e8e8e8;
}
.compact_posts.layout_side_in_fund .item:nth-child(2n+1),
.compact_posts.layout_side_in_fund .item:nth-child(-n+2) {
	width: 100%;
	margin: 0;
}
.compact_posts.layout_side_in_fund .item .photo {
	width: 80px;
	height: 80px;
}
.compact_posts.layout_side_in_fund .item .photo_in {
	padding-top: 100%;
}
.compact_posts.layout_side_in_fund .item .photo_in img {
	border-radius: 8px;
}
.compact_posts.layout_side_in_fund .item .txt {
	padding-left: 16px;
	width: calc(100% - 80px);
	align-items: flex-start;
}
.compact_posts.layout_side_in_fund .item .txt .title {
	font-size: 12px;
	line-height: 1.65;
	font-weight: bold;
	margin: 0;
}
.compact_posts.layout_side_in_fund .item .txt .date {
	display: none;
}
.compact_posts.layout_side_in_fund .item .txt:after {
	display: inline-block;
	content: 'この記事を読む';
	margin-top: 12px;
	font-size: 12px;
	font-weight: bold;
	padding-right: 15px;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 11px;
	background-image: url(../img/ico_window.svg);
}

/* in sidebar */
.compact_posts.layout_side_in_fund,
.compact_posts.layout_side_in_fund .item:last-child,
.compact_posts.layout_side_in_fund .item:last-child > a {
	border-radius: 0 0 8px 8px;
}


@media screen and (min-width : 768px) {
	.compact_posts.layout_side_in_fund .item .txt:after {
		transition: color 0.07s linear;
	}
	.compact_posts.layout_side_in_fund .item > a:hover .txt:after {
		color: #ED6103;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.compact_posts.layout_side_in_fund .item > a {
		flex-direction: row;
	}
	.compact_posts.layout_side_in_fund .item .txt {
		display: block;
		margin-top: 0;
	}
	.compact_posts.layout_side_in_fund .item .txt:after {
		content: '';
		width: 15px;
		height: 1em;
		margin: 0;
	}
	.compact_posts.layout_side_in_fund .item .txt .title {
		display: inline;
		font-size: 14px;
	}
}

/* writer
------------------------------------------------------------------- */
#postWriter {
	margin: 56px 0 32px;
	background-color: #F8F8F8;
	padding: 32px;
	display: flex;
	flex-wrap: wrap;
}
#postWriter div.photo {
	width: 88px;
}
#postWriter div.photo img {
	border-radius: 50%;
	height: auto;
}
#postWriter div.name {
	width: calc(100% - 118px);
	margin-left: auto;
}
#postWriter div.name > *:first-child { margin-top: 0; }
#postWriter div.name > *:last-child { margin-bottom: 0; }
#postWriter div.name span.prefix {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #ED6103;
	margin-bottom: 8px;
}
#postWriter div.name h2 {
	font-size: 24px;
	margin: 0;
	line-height: 1.2;
}
#postWriter div.name span.job {
	display: block;
	font-size: 14px;
	font-weight: bold;
}
#postWriter p {
	margin: 24px 0 0;
	width: 100%;
	font-size: 14px;
	line-height: 1.6;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	#postWriter {
		margin: 46px 0 48px;
	}
	#postWriter div.name {
		margin-left: 16px;
	}
	#postWriter div.name span.prefix {
		font-size: 12px;
	}
	#postWriter div.name h2 {
		font-size: 18px;
	}
	#postWriter div.name span.job {
		font-size: 12px;
	}
	#postWriter p {
		margin-top: 22px;
	}
}

/* postShare
------------------------------------------------------------------- */
#postShare {
	display: flex;
	justify-content: center;
	align-items: center;;
}
#postShare span {
	font-size: 14px;
	color: #8F8F8F;
	line-height: 1.37;
}
#postShare ul.share {
	margin: 0;
	margin-left: 16px;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	#postShare {
		flex-direction: column;
		align-items: center;
	}
	#postShare span {
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: 12px;
	}
	#postShare ul.share {
		margin: 0;
	}
}

/* .side_related_posts_in_post
------------------------------------------------------------------- */
.side_related_posts_in_post {
	margin-top: 0;
}
.side_related_posts_in_post h2 {
	margin: 0 0 14px;
	padding: 0;
	font-size: 14px;
	line-height: 1.8;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.side_related_posts_in_post {
		margin-top: 22px;
	}
}

/* .side_related_banner_in_post
------------------------------------------------------------------- */
.side_related_banner_in_post {
	margin-top: 32px;
	position: -webkit-sticky;
	position: sticky;
	top: 64px;
	background-color: #fff;
}
.login .side_related_banner_in_post {
	top: 109px;
}
.side_related_banner_in_post h2 {
	margin: 0 0 14px;
	padding: 0;
	font-size: 12px;
	line-height: 1.35;
	color: #797979;
}
.side_related_banner_in_post .side_related_banners {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.side_related_banner_in_post .side_related_banners .srb_item {
	margin: 0;
}
.side_related_banner_in_post .side_related_banners .srb_item + .srb_item {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #e8e8e8;
}
.side_related_banner_in_post .side_related_banners .srb_item img {
	height: auto;
}

/* item_lp */
.side_related_banner_in_post .side_related_banners .item_lp {
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 0 16px 16px;
}
.side_related_banner_in_post .side_related_banners .srb_item + .item_lp {
	padding-top: 0;
	margin-top: 48px!important;
	position: relative;
}
.side_related_banner_in_post .side_related_banners .srb_item + .item_lp:before {
	content: '';
	position: absolute;
	top: -24px;
	left: 0;
	width: 100%;
	height: 1px;
	border-top: 1px solid #e8e8e8;
}
.side_related_banner_in_post .side_related_banners .item_lp h3 {
	margin: 0 0 16px;
	margin-left: -16px;
	width: calc(100% + 32px);
	max-width: calc(100% + 32px);
	padding: 0 16px;
	height: 40px;
	line-height: 38px;
	font-size: 16px;
	font-weight: bold;
	background-color: #fff8eb;
	border-bottom: 1px solid #e8e8e8;
	border-radius: 8px 8px 0 0;
}
.side_related_banner_in_post .side_related_banners .item_lp h3 strong {
	color: #ED6103;
}
.side_related_banner_in_post .side_related_banners .item_lp .item_lp_img_wrap {
	position: relative;
}
.side_related_banner_in_post .side_related_banners .item_lp .item_lp_img_wrap:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
}
.side_related_banner_in_post .side_related_banners .item_lp p {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.5;
}
.side_related_banner_in_post .side_related_banners .item_lp .mod_btn {
	margin: 16px 0 0;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {

	.side_related_banner_in_post {
		margin-top: 48px;
	}
	/* item_spg */
	.side_related_banner_in_post .side_related_banners .item_spg img {
		width: 335px;
	}

	/* item_lp */
	.side_related_banner_in_post .side_related_banners .item_lp .mod_btn {
		height: 48px;
		line-height: 48px;
	}
}

/* .side_related_funds #sideRelatedFundsBtn
------------------------------------------------------------------- */
#sideRelatedFundsBtnWrap {
	display: none;
}
@media screen and (min-width : 768px) {
	#sideRelatedFundsBtnWrap {
		display: none!important;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	#sideRelatedFundsBtnWrap {
		position: fixed;
		bottom: 8px;
		left: 8px;
		width: calc(100% - 16px);
		height: 88px;
	}
	#sideRelatedFundsBtnWrapIn {
		position: relative;
		width: 100%;
		height: 88px;
	}
	#sideRelatedFundsBtn {
		display: flex;
		align-items: center;
		width: 100%;
		height: 88px;
		line-height: 88px;
		border-radius: 8px;
		padding: 8px 12px;
		font-size: 16px;
		font-weight: bold;
		text-decoration: none;
		background-color: #fff;
		background-repeat: no-repeat;
		background-position: right 16px center;
		background-size: 11px;
		background-image: url(../img/ico_arrow_dropdown_w.svg);
		border: 1px solid #e8e8e8;
		box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.16);
	}
	#sideRelatedFundsBtn:after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 32px;
		background-color: #ED6103;
		border-radius: 0 8px 8px 0;
		background-image: url(../img/btn/ico_arrow_right_w.svg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 10px;
	}
	#sideRelatedFundsBtn .photo {
		width: 80px;
	}
	#sideRelatedFundsBtn .photo img {
		height: auto;
	}
	#sideRelatedFundsBtn .txt {
		width: calc(100% - 80px - 32px);
		padding-left: 16px;
		padding-right: 8px;
	}
	#sideRelatedFundsBtn .title {
		font-weight: bold;
	}
	#sideRelatedFundsBtn .title strong {
		color: #E6732D;
	}
	#sideRelatedFundsBtn .title,
	#sideRelatedFundsBtn .lead {
		display: block;
		font-size: 14px;
		line-height: 1.35;
	}
	#sideRelatedFundsBtn .lead {
		margin-top: 6px;
		font-weight: 500;
	}
}

/* #sideRelatedFundsBtnWrap
------------------------------------------------------------------- */
#sideRelatedFundsBtnWrap {
	transition: bottom 0.12s ease-in-out;
}
#sideRelatedFundsBtnWrap.close {
	bottom: -80px;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	#sideRelatedFundsCloseBtn {
		position: absolute;
		right: 8px;
		bottom: calc(100% + 8px);
		width: 80px;
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		color: #fff;
		border-radius: 16px;
		background-color: rgba(53, 53, 53, 0.64);
		box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
		text-align: center;
		text-decoration: none;
	}
}
