@charset "utf-8";
/*===================
  TOP
====================*/
/*== TOP ==*/
.send_sns {
	padding-top: 100px;
	padding-bottom: 50px;
	background-color: #dbdeab;
	text-align: center;
}
.search_area {
	display: inline-block;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 30px;
	box-sizing: border-box;
	background-color: #fefbf4;
	position: relative;
}
textarea#targetbox {
	width: 100%;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 28px;
	font-size: 18px;
	margin-left: 20px;
	cursor: pointer;
}
.btn_send {
	position: absolute;
	top: 40px;
	right: 60px;
}
button.send {
	position: relative;
	background-image: url(../images/common/pc/icon_send.svg);
	background-repeat: no-repeat;
	background-size: 60px;
	width: 60px;
	height: 50px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}


/*== 話題　新着リアルタイム ==*/
.topicrealtime {}

.topicrealtime .ttl_box {
	/*background-color: #f9f2f8;*/
	background-color: #dbdeab;
    padding: 10px 0;
}
.topicrealtime .ttl_box h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
    padding-left: 20px;
}
/*キーワード検索*/
.search_box {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 5%;
	padding-right: 5%;
	text-align: center;
	background-color: #dbdeab;
}
.search_box form {
	display: flex;
	justify-content: center;
	max-width: 600px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	overflow: hidden;
}
.search_box input[type="text"] {
	flex: 1;
	padding: 12px 15px;
	font-size: 16px;
	border: none;
	outline: none;
}
.search_box button {
	background: #3b8e3b; /* 緑ベース */
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 0 20px;
	border: none;
	cursor: pointer;
	transition: 0.2s;
}
.search_box button:hover {
	background: #2f6f2f;
}
.topicrealtime .category_box {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #2b8838;
	justify-content: center;
	gap: 30px;
	display: flex;
}
.topicrealtime .category_box li {
	/*padding: 20px;*/
}
.topicrealtime .category_box li a {
	display: inline-block;
	padding: 5px 20px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50px;
	background-color: #000;
}

.masonry-wrapper,
.masonry {
  box-sizing: border-box;
}
.masonry-wrapper {
	width: 100%;
	padding: 30px 0 150px;
	padding-left: 20px;
	padding-right: calc(20px + 15px); /* スクロールバーの分を考慮 */
	position: relative;
	clip-path: inset(0);
	min-height: 100vh;
}
.masonry-wrapper > img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -99;
}
.masonry {
	position: relative;
}
.masonry .search_result p {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.masonry .post_card {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
}
.masonry .post_card a {
	color: #333;
}
/*.masonry .img_photo {
	height: 200px;
	overflow: hidden;
}*/
.masonry .img_photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 以下共通部分 */
.masonry .user_info {
	display: flex;
	align-items: center;
	padding: 12px 10px;
	background-color: #f5f5f5;
}
.masonry .user_icon img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
}
.masonry .user_name {
	font-size: 20px;
	font-weight: bold;
    text-align: left;
    line-height: 1;
}

.masonry .post_body {
	padding: 10px 15px 8px;
}
.masonry .post_text {
	font-size: 20px;
	margin-bottom: 8px;
	border-bottom: 1px solid #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    line-height: 1.75;
}
.masonry .post_meta {
	display: flex;
	align-items: baseline;
	line-height: 1;
	gap: 30px;
}
.masonry .post_date {
	font-size: 15px;
	color: #888;
}
.masonry .category_tag {
	color: #000;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 16px;
	position: relative;
}
.masonry .category_tag:before {
	content: "";
	position: absolute;
	top: 3px;
	left: -9px;
	background-image: url(../images/common/pc/icon_cat.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	width: 15px;
	height: 16px;
}
.masonry .post_footer {
	padding: 12px 16px;
	background-color: #534741;
	display: flex;
	justify-content: flex-end;
}
.masonry .post_stats {
	line-height: 1.5;
}
.masonry .thanks_box,
.masonry .comment_box {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-left: 23px;
}
.masonry .thanks_box:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	background-image: url(../images/common/pc/icon_thanks_w.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	width: 15px;
	height: 16px;
}
.masonry .comment_box:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	background-image: url(../images/common/pc/icon_comment_w.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	width: 15px;
	height: 16px;
}
.masonry .more_view {
	/*margin-top: 8px;*/
	text-align: right;
}
.masonry .more_view span {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	margin-right: 30px;
	position: relative;
}
.masonry .more_view span:before {
	content: "";
	position: absolute;
	top: 0;
	right: -36px;
	background-color: #39b54a;
	width: 30px;
	height: 30px;
	border-radius: 30px;
}
.masonry .more_view span:after {
	content: "";
	position: absolute;
	top: 7px;
	right: -26px;
	width: 7px;
	height: 7px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: translateY(20%) rotate(45deg);
}


@media screen and (max-width:1024px) {
	.send_sns {
		padding-top: 50px;
		padding-bottom: 0;
	}
	.search_area {
		padding: 15px;
	}
	.btn_send {
		top: 30px;
		right: 35px;
	}
	button.send {
		background-size: 30px;
		width: 30px;
		height: 30px;
	}
	textarea#targetbox {
		padding-top: 21px;
	}
	.topicrealtime .ttl_box {
		padding-top: 20px;
		padding-bottom: 0;
	}
	.topicrealtime .ttl_box h3 {
		padding-left: 5%;
	}
	.topicrealtime .category_select {
		/*background-color: #f9f2f8;*/
		background-color: #dbdeab;
		/*padding: 20px 5% 0;*/
		padding: 0 5%;
	}
	.topicrealtime .category_select h4 {
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		padding-left: 35px;
		position: relative;
	}
	.topicrealtime .category_select h4:before {
		content: "";
		position: absolute;
		top: 3px;
		left: 0;
		background-image: url(../images/common/pc/icon_cat.svg);
		background-repeat: no-repeat;
		background-size: 20px;
		width: 20px;
		height: 22px;
	}
	.topicrealtime .category_select select {
		font-size: 20px;
		text-align: left;
		padding-left: 10px;
		width: 100%;
		height: 55px;
		margin-top: 0;
		border: 1px solid #999;
		border-radius: 5px;
	}
	.masonry-wrapper {
		padding-right: 20px;
		/*background-color: #f9f2f8;*/
		background-color: #dbdeab;
		/*padding-top: 30px;*/
		padding-top: 20px;
		padding-bottom: 50px;
	}
	.masonry .post_card {
		position: static!important;
		width: 100%!important;
	}
	.masonry .post_card + .post_card {
		margin-top: 30px;
	}
	.masonry .img_photo {
		/*height: 200px;*/
		/*overflow: hidden;*/
	}
	.masonry .img_photo img {
		width: 100%;
		height: 180px;
		display: block;
		object-fit: contain;
	}
	.masonry-wrapper > img {
		display: none;
	}
}


/*===================
  話題詳細
====================*/
/*== 話題詳細 ==*/
.post_detail {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	/*padding-bottom: 80px;*/
}
.post_detail .post_card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	transform: translateY(0);
}
.post_detail .img_photo img {
  width: 100%;
  height: auto;
  display: block;
}
.post_detail iframe {
	width: 100%;
	height: 400px;
}
.post_detail .user_info {
	display: flex;
	align-items: center;
	padding: 12px 10px;
	/*background-color: #f5f5f5;*/
}
.post_detail .user_icon {
	width: 80px;
}
.post_detail .user_icon img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 10px;
}
.post_detail .user_name {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
}
.post_detail .user_rink {
	width: 650px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
}
.post_detail .user_rink a {
	display: inline-block;
	font-weight: bold;
	color: #f7931e;
	border: 2px solid;
	border-radius: 50px;
	width: 200px;
	text-align: center;
	height: 40px;
	line-height: 38px;
	padding-left: 18px;
	box-sizing: border-box;
}
.post_detail .user_rink a span {
	position: relative;
}
.post_detail .user_rink a span:before {
	content: "";
	position: absolute;
	top: 0;
	left: -22px;
	background-image: url(../images/common/pc/icon_user_o.svg);
	background-repeat: no-repeat;
	background-size: 18px;
	width: 18px;
	height: 22px;
}

.post_detail .slide_img {
	position: relative;
	margin-bottom: 0 !important;
}
/*矢印・小*/
.post_detail .slide_img .slick-next,
.post_detail .slide_img .slick-prev {
	display: inline-block;
	z-index: 999;
	position: absolute;
	top: 46%;
	width: 50px;
	height: 50px;
	z-index: 99;
	bottom: auto;
	transition: .2s;
	transform: translateX(0);
	background-color: #fff;
	border-radius: 50px;
}
.post_detail .slide_img .slick-next {
	right: -25px;
	order: 2;
}
.post_detail .slide_img .slick-prev {
	left: -25px;
	order: 0;
}
.post_detail .slide_img .slick-next:before,
.post_detail .slide_img .slick-prev:before {
	content: "";
	top: 16px;
	left: 20px;
	position: absolute;
	height: 10px;
	width: 10px;
	opacity: 1;
	border-top: 3px solid #2b8838;
	border-right: 3px solid #2b8838;
	transition: .2s;
}
.post_detail .slide_img .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.post_detail .slide_img .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.post_detail .slide_img .slick-next:hover,
.post_detail .slide_img .slick-prev:hover {
	opacity: .8;
	transition: .2s;
}
.post_detail .slide_img .slick-next:focus,
.post_detail .slide_img .slick-prev:focus {
	opacity: .8;
	transition: .2s;
}
.post_detail .slide_img .slick-dots {
	bottom: -60px;
	position: static;
	order: 1;
	width: auto;
	height: 30px;
}
.post_detail .slide_img .slick-dots li button:before {
	content: '';
	font-size: 0;
	opacity: 1;
	background-color: #c9c9c9;
	border-radius: 3px;
}
.post_detail .slide_img .slick-dots li.slick-active button:before {
	opacity: 1;
	background-color: #2b8838;
}

.post_detail .post_body {
	padding: 15px 15px 8px;
}
.post_detail .post_text {
	font-size: 20px;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid #888;
	line-height: 1.75;
}
.post_detail .post_text p + p {
	margin-top: 25px;
}
.post_detail .post_meta {
	display: flex;
	align-items: baseline;
	line-height: 1;
	gap: 30px;
}
.post_detail .post_date {
	font-size: 15px;
	color: #888;
}
.post_detail .category_tag {
	color: #000;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 16px;
	position: relative;
}
.post_detail .category_tag:before {
	content: "";
	position: absolute;
	top: 4px;
	left: -9px;
	background-image: url(../images/common/pc/icon_cat.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	width: 15px;
	height: 16px;
}
.post_detail .post_footer {
	padding: 12px 16px;
	background-color: #534741;
	display: flex;
	justify-content: space-between;
}
.post_detail .post_stats {
	line-height: 1.5;
	display: flex;
	gap: 30px;
}
.post_detail .thanks_box,
.post_detail .comment_box {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding-left: 23px;
	color: #fff;
}
.post_detail .thanks_box:before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	background-image: url(../images/common/pc/icon_thanks_w.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	width: 15px;
	height: 16px;
}
.post_detail .comment_box:before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	background-image: url(../images/common/pc/icon_comment_w.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	width: 15px;
	height: 16px;
}

.post_detail .btn_box {
	padding: 50px 20px;
	text-align: center;
	gap: 50px;
	justify-content: center;
	flex-wrap: wrap;
}

/*== ありがとうボタン ==*/
.thanks_btn {
	text-align: center;
}

.thanks_btn button {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #2b8838;
	padding-left: 30px;
	box-sizing: border-box;
	border-radius: 50px;
	border: none;
	cursor: pointer;
}
.thanks_btn button:hover {
	background-color: #C33E1E;
}
.thanks_btn button span {
	position: relative;
}
.thanks_btn button span:before {
	content: "";
	position: absolute;
	top: 3px;
	left: -29px;
	background-image: url(../images/common/pc/icon_thanks_w.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 17px;
}

.favorite-btn button {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #f7931e;
	padding-left: 30px;
	box-sizing: border-box;
	border-radius: 50px;
	border: none;
	cursor: pointer;
}
.favorite-btn button:hover {
	background-color: #C33E1E;
}
.favorite-btn button span {
	position: relative;
}
.favorite-btn button span:before {
	content: "";
	position: absolute;
	top: 2px;
	left: -27px;
	background-image: url(../images/common/pc/icon_star_line.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
}
.favorite-btn button.active span:before {
	background-image: url(../images/common/pc/icon_star.svg);
}

/*== コメント ==*/
.comment_list {
	padding-top: 50px;
	padding-bottom: 100px;
}
.comment_list .inner {
	max-width: 690px;
	margin: 0 auto;
}
.comment_area {
	margin-top: 10px;
}
.comment_area .textarea_box {
	background: #f5f5dc;
	border-radius: 8px;
	padding: 10px;
	font-size: 0;
}
.comment_area .textarea_box textarea#targetbox {
	width: 100%;
	height: 80px;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 10px;
	font-size: 18px;
	line-height: 1.75;
	resize: vertical;
	box-sizing: border-box;
	cursor: text;
	margin-left: 0;
	transition: height 0.3s ease, border-color 0.3s ease;
}
/* フォーカス時（クリックされたら広がる） */
.comment_area .textarea_box  textarea#targetbox:focus {
	height: 200px;
	border-color: #2b8838;
	outline: none;
}

.comment_submit_wrap {
	text-align: right;
	margin-top: 8px;
}

.btn_comment_submit {
	background: #444;
	color: #fff;
	font-size: 18px;
	padding: 8px 20px 8px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.2s;
	line-height: 18px;
}
.btn_comment_submit:hover {
	background: #222;
}

.comment_list h3 {
	font-size: 36px;
	font-weight: bold;
	position: relative;
	border-bottom: 1px solid #333;
	padding-left: 35px;
	margin-top: 30px;
}
.comment_list h3:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	background-image: url(../images/common/pc/icon_comment.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	width: 30px;
	height: 32px;
}
.comment_list ul {}
.comment_list ul li {
	margin-top: 30px;
}
.comment_list ul li .comment_user {
	display: flex;
	align-items: center;
}
.comment_list ul li .comment_user .profile_icon {
	width: 80px;
	height: 80px;
	border: 1px solid #534741;
	border-radius: 80px;
	overflow: hidden;
	position: relative;
}
.comment_list ul li .comment_user .profile_icon img {
	height: 100%;
	/*width: auto;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.comment_list ul li .comment_user .name {
	font-size: 24px;
	font-weight: bold;
	margin-left: 10px;
}
.comment_list ul li .comment_text {
	padding: 30px 20px;
	background-color: #fefbf4;
	border: 1px solid #534741;
	border-radius: 8px;
	margin-top: 10px;
	position: relative;
}
.comment_list ul li .comment_text:before {
	content: "";
	position: absolute;
	top: -8px;
	left: 30px;
	height: 10px;
	width: 10px;
	border-top: 1px solid #534741;
	border-right: 1px solid #534741;
	transform: translateY(20%) rotate(-45deg);
	background-color: #fefbf4;
}
.comment_list ul li .comment_bottom {
	display: flex;
	justify-content: space-between;
}
.comment_list ul li .comment_bottom .times {
	font-size: 16px;
	font-weight: bold;
	color: #5b5b5b;
	padding-left: 10px;
}
.comment_list ul li .comment_bottom button {
	border: none;
	background-color: transparent;
	display: flex;
	gap: 5px;
	margin-top: 0px;
	align-items: center;
}
.comment_list ul li .comment_bottom button img {
	width: 18px;
}
.comment_list ul li .comment_bottom button span {
	font-size: 16px;
	color: #5b5b5b;
}
.comment_list .reply_list {
  margin-left: 0;
  margin-top: 10px;
  border-left: 2px solid #ddd;
  padding-left: 15px;
}
.comment_list .reply_item {
  margin-top: 20px;
  background: #f5f5dc;
  border-radius: 6px;
  padding: 8px 12px;
}
.comment_list .reply_item a {
	display: flex;
}
.comment_list ul li ul .reply_item .comment_user .profile_icon.small {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.comment_list .reply_content {
	margin-top: 10px;
}
.comment_list .reply_content .name {
	font-weight: bold;
	margin-bottom: 3px;
}
.comment_list .reply_content .comment_text {
	margin: 0;
	line-height: 1.5;
	background-color: #fff;
}
.comment_list .reply_btn {
	background: #444;
	color: #fff;
	font-size: 18px;
	padding: 8px 20px 8px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.2s;
	line-height: 18px;
	margin-top: 5px;
}

.comment_meta_row {
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center;
  margin-top: 6px;
  font-size: 13px;
}

.comment_meta_row .left_meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment_meta_row .date {
  color: #666;
}

.comment_meta_row .right_meta {
  display: flex;
  align-items: center;
}

.comment_meta_row .comment_clap_btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #777;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: 0.2s;
  position: relative;
}
.comment_meta_row .comment_clap_btn:before {
	content: "";
	position: absolute;
	top: -2px;
	left: -21px;
	background-image: url(../images/common/pc/icon_applause.svg);
	background-repeat: no-repeat;
	background-size: 24px;
	width: 24px;
	height: 24px;
}

.comment_meta_row .comment_clap_btn span {
	font-size: 18px;
	color: #333;
}
.comment_meta_row .comment_clap_btn img {
	display: none!important;
}
.comment_meta_row .comment_clap_btn.active {
}
.comment_meta_row .comment_clap_btn:hover {
  transform: scale(1.1);
}


@media screen and (max-width:1024px) {
	/*== 話題詳細 ==*/
	.post_detail {
		padding-top: 50px;
		padding-bottom: 30px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.post_detail .ttlThips h2 {
		font-size: 24px;
	}
	.post_detail .user_rink {
		display: block;
		padding-left: 10px;
		padding-right: 0;
	}
	.post_detail .user_icon img {
	    width: 50px;
	    height: 50px;
	    margin-right: 0;
	}
	.post_detail .user_name {
		font-size: 24px;
		padding-bottom: 5px;
	}
	.post_detail iframe {
		height: 250px;
	}
	.post_detail .btn_box {
		gap: 20px;
		padding: 30px 0 0;
		flex-wrap: nowrap;
	}
	.thanks_btn button {
		width: 160px;
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	.thanks_btn button span:before {
		top: 3px;
		left: -24px;
		background-size: 18px;
		width: 18px;
		height: 16px;
	}
	.favorite-btn button {
		width: 160px;
		height: 55px;
		line-height: 55px;
		font-size: 18px;
	}
	.favorite-btn button span:before {
		top: 0px;
		left: -24px;
	}


	/*== コメント ==*/
	.comment_list {
		padding-top: 30px;
		padding-bottom: 50px;
	}
	.comment_list .inner {
		padding-left: 5%;
		padding-right: 5%;
	}
	.comment_list .comment_area {
	}
	.comment_list .comment_area .textarea {
		padding: 15px 10px;
	}
	.comment_list .comment_area .textarea textarea#targetbox {
		/*padding-top: 20px;*/
		/*margin-left: 15px;*/
	}
	.comment_list .comment_area .textarea .btn_send {
		top: 28px;
		right: 26px;
	}
	.comment_list h3 {
		font-size: 24px;
	}
	.comment_list h3:before {
		top: 7px;
		left: 0;
		background-size: 30px;
		width: 30px;
		height: 32px;
	}
	.comment_list ul {
	}
	.comment_list ul li {
		margin-top: 25px;
	}
	.comment_list ul li .comment_user .profile_icon {
		width: 40px;
		height: 40px;
	}
	.comment_list ul li .comment_user .name {
		font-size: 20px;
	}
	.comment_list ul li .comment_text {
		padding: 15px 10px;
	}
}


/*===================
  話題投稿
====================*/
/*== 話題投稿 ==*/
.post {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
}
.post form {
	background-color: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	transform: translateY(0);
}
.post .content_box {
	padding: 20px;
}
.post .content_box dl + dl {
	margin-top: 30px;
}
.post .content_box dl dt {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	padding-left: 35px;
	position: relative;
}
.post .content_box dl dt:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
}
.post .content_box dl.upload dt:before {
	top: 5px;
	background-image: url(../images/common/pc/icon_photo.svg);
	background-size: 25px;
	width: 25px;
	height: 25px;
}
.post .content_box dl.message dt:before {
	top: 7px;
	background-image: url(../images/common/pc/icon_message.svg);
	background-size: 25px;
	width: 25px;
	height: 23px;
}
.post .content_box dl.category dt:before {
	top: 10px;
	background-image: url(../images/common/pc/icon_cat.svg);
	background-size: 20px;
	width: 20px;
	height: 22px;
}
.post .content_box dl.sponsor dt:before {
	top: 3px;
	left: 2px;
	background-image: url(../images/common/pc/icon_ribbon.svg);
	background-size: 20px;
	width: 20px;
	height: 26px;
}
.post .content_box dl dd {
	width: 100%;
}

.post .content_box dl.upload dd {
	margin-top: 10px;
}
/*.post .content_box dl.upload dd input {
	width: 100%;
	height: 300px;
	background-color: #e6e6e6;
	border: none;
}
.post .content_box dl.upload dd input span {
	display: inline-block;
	font-size: 36px;
	font-weight: bold;
	padding-top: 75px;
	position: relative;
}
.post .content_box dl.upload dd input span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-image: url(../images/common/pc/icon_up.svg);
	background-repeat: no-repeat;
	background-size: 72px;
	width: 72px;
	height: 72px;
}*/
.post .content_box dl.upload dd .preview_area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.post .content_box dl.upload dd .preview_item {
	position: relative;
	display: inline-block;
}
.post .content_box dl.upload dd .preview_item img {
	max-width: 160px;
	height: auto;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.post .content_box dl.upload dd .delete_btn {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: #dc3232;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 18px;
	cursor: pointer;
	line-height: 18px;
	padding: 0;
}

.post .content_box dl.message dd {
	margin-top: 10px;
}
.post .content_box dl.message dd textarea {
	width: 100%;
	height: 300px;
	border: none;
	background-color: #e6e6e6;
	font-size: 18px;
	line-height: 1.75;
	padding: 10px;
	box-sizing: border-box;
}

.post .content_box dl.category dd {
	margin-top: 10px;
}
.post .content_box dl.category dd select {
	width: 100%;
	height: 70px;
	font-size: 24px;
	border: 1px solid #515151;
	border-radius: 5px;
}
.post .content_box dl.sponsor dd {
	margin-top: 10px;
}
.post .content_box dl.sponsor dd .radio {
	font-size: 20px;
}
.post form .btn_box {
	padding: 30px 20px 50px;
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}
.post form .btn_box .send_btn button {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	background-color: #2b8838;
	border-radius: 50px;
	padding-left: 10px;
	box-sizing: border-box;
	border: none;
	cursor: pointer;
}
.post form .btn_box .send_btn button span {
	position: relative;
}
.post form .btn_box .send_btn button span:before {
	content: "";
	position: absolute;
	top: 3px;
	left: -35px;
	background-image: url(../images/common/pc/icon_send_w.svg);
	background-repeat: no-repeat;
	background-size: 24px;
	width: 24px;
	height: 21px;
}


@media screen and (max-width:1024px) {
	/*== 話題投稿 ==*/
	.post {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.post .ttlThips h2 {
		font-size: 24px;
	}
	.post .content_box {
		padding: 20px 15px;
	}
	.post .content_box dl + dl {
		margin-top: 25px;
	}
	.post .content_box dl dt {
		font-size: 24px;
	}
	.post .content_box dl.upload dt:before {
		top: 0;
	}
	.post .content_box dl.upload dd .upload_box button {
		height: 250px;
	}
	.post .content_box dl.upload dd .upload_box button span {
		font-size: 28px;
	}
	.post .content_box dl.upload dd .upload_box button span:before {
		background-size: 60px;
		width: 60px;
		height: 60px;
	}
	.post .content_box dl.message dt {
		padding-left: 28px;
	}
	.post .content_box dl.message dt:before {
		top: 2px;
	}
	.post .content_box dl.upload dd .preview_item img {
		max-width: 145px;
		height: auto;
	}
	.post .content_box dl.message dd textarea {
		height: 250px;
	}
	.post .content_box dl.category dt {
		padding-left: 28px;
	}
	.post .content_box dl.category dt:before {
		top: 3px;
	}
	.post .content_box dl.category dd select {
		font-size: 20px;
		text-align: left;
		padding-left: 10px;
		height: 55px;
	}
	.post .content_box dl.sponsor dt:before {
		top: 0;
		left: 4px;
		background-size: 16px;
		width: 16px;
		height: 22px;
	}

	.post .content_box dl.sponsor dd .radio {
		display: block;
	}
	.post .content_box dl.sponsor dd .radio + .radio {
		margin-top: 20px;
	}
	.post form .btn_box {
		text-align: center;
		padding: 20px 20px 30px;
		gap: 30px;
	}
}


/*===================
  マイページ
====================*/
/*== アイコン ==*/
.my_page {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
}
.my_page .inner {
	background-color: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	transform: translateY(0);
	padding: 20px;
	box-sizing: border-box;
}
.my_page .profile_icon {
	margin: 0 auto;
	position: relative;
}
.my_page .profile_icon > img {
	border-radius: 10px;
	overflow: hidden;
}
.my_page .nickname {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
	line-height: 1;
	display: flex;
	justify-content: center;
    align-items: center;
    gap: 6px;
}
.my_page .nickname img {
    height: 25px;
    width: auto;
    vertical-align: middle;
}
.my_page .point {
	text-align: center;
	display: inline-block;
	width: 100%;
    margin-top: 10px;
	line-height: 1;
}
.my_page .point .num {
	display: inline-block;
	font-size: 36px;
	font-weight: bold;
	color: red;
}
.my_page .point .unit {
	font-size: 24px;
}

/*== クラス区分バッジ ==*/
.profile_badge {
    position: absolute;
    top: -7px;
    left: -7px;
    height: 35px;
}
.profile_badge img {
    height: 100%;
}


/*== ありがとう称号システム ==*/
.thanks-title-area {
	position: relative;
	display: inline-block;
	cursor: pointer;
	text-align: center;
	width: 100%;
	font-size: 20px;
}
.thanks-detail-popup {
	display: none;
	position: absolute;
	top: 120%;
	left: 0;
	background: #fffbea;
	border: 1px solid #e6d17a;
	padding: 8px 12px;
	font-size: 20px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	z-index: 10;
	max-width: 80vw;
	line-height: 1.5;
	white-space: normal;
	word-break: break-word;
}
.thanks-title-area:hover .thanks-detail-popup {
	display: block;
}
.title-stars.gold-star {
	color: gold;
	text-shadow: 0 0 5px gold;
}


/*== フォロー機能 ==*/
/* ボタン */
.follow-section {
	margin-top: 20px;
}
.follow-nav {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}
.follow-tab-btn {
	padding: 8px 10px;
	border: 1px solid #0073aa;
	background: #fff;
	color: #0073aa;
	border-radius: 4px;
	cursor: pointer;
	transition: all .2s;
	width: 50%;
	font-size: 16px;
}
.follow-tab-btn:hover {
	background: #0073aa;
	color: #fff;
}
.follow-tab-btn span {
	font-size: 20px;
}
/* モーダル */
.follow-section .modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0,0,0,0.6);
}
.follow-section .modal-content {
	background: #fff;
	margin: 20px;
	padding: 20px;
	border-radius: 8px;
	position: relative;
}
.follow-section .modal-content h3 {
	margin-top: 10px;
	margin-bottom: 0;
}
.follow-section .modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
}
.follow-section .user-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	justify-content: space-between;
}
.follow-section .user-card a {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #333;
	padding: 6px 0;
}
.follow-section .user-card a:hover {
	background: #f5f5f5;
	border-radius: 4px;
}
.follow-section .user-card a img {
	width: 80px;
	height: 80px;
}
.follow-section .user-card a span {
	font-size: 20px;
}

.follow-section .unfollow-btn,
.follow-section .remove-follower-btn {
	padding: 4px 10px;
	background: #d9534f;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 20px;
}
.follow-section .unfollow-btn:hover,
.follow-section .remove-follower-btn:hover {
	background: #c9302c;
}

/*== メインボタン群 ==*/
.mypage_menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	list-style: none;
}
.mypage_menu li {
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
}
.mypage_menu li.disabled {
	cursor: none;
	pointer-events: none;
	opacity: .8;
}
.mypage_menu li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	padding: 12px 0;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.mypage_menu .orange a {
	background-color: #f7931e;
}
.mypage_menu .orange a:hover {
	background-color: #d67a10;
}
.mypage_menu .green a {
	background-color: #2f8d4b;
}
.mypage_menu .green a:hover {
	background-color: #27783f;
}

.mypage_menu .brown a {
	background-color: #5c544a;
}
.mypage_menu .brown a:hover {
	background-color: #4a433c;
}

.mypage_menu .icon_img {
	width: 28px;
	height: 28px;
	margin-bottom: 6px;
}
.mypage_menu .icon_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.mypage_menu a span {
	font-size: 20px;
}

/*ありがとうを言える回数*/
.my_page .count {
	margin-top: 30px;
	display: flex;
	align-items: center;
	padding-left: 48px;
	position: relative;
}
.my_page .count:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 5px;
	background-repeat: no-repeat;
	background-image: url(../images/common/pc/icon_heart_r.svg);
	background-size: 36px;
	width: 36px;
	height: 32px;
}
.my_page .count p {
	font-size: 28px;
	font-weight: bold;
}
.my_page .count .box {
	margin-left: 10px;
    display: flex;
    align-items: center;
}
.my_page .count .box .num {
	background-color: #fff;
    border: 2px solid #555;
    border-radius: 6px;
    padding: 5px 15px;
    font-size: 18px;
    letter-spacing: 2px;
	font-weight: bold;
}
.my_page .count .box .unit {
	font-size: 28px;
	font-weight: bold;
    margin-left: 7px;
}

/*招待ｺｰﾄﾞ*/
.invite-code {
	margin-top: 20px;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 48px;
}
.invite-code:before {
	content: "";
	position: absolute;
	top: 14px;
	left: 3px;
	background-image: url(../images/common/pc/icon_code.svg);
	background-repeat: no-repeat;
	background-size: 35px;
	width: 35px;
	height: 20px;
}

.invite-code p {
	font-weight: bold;
	font-size: 28px;
	font-weight: bold;
	margin-right: 10px;
}
.invite-code .box {
	display: inline-block;
	background: #fff;
	border: 2px solid #555;
	border-radius: 6px;
	padding: 5px 15px;
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: bold;
}


/*自分の投稿*/
.delete_post {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #e60012;  /* 赤色 */
	color: #fff!important;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50%;
	text-decoration: none;
	transition: 0.3s;
}

.delete_post:hover {
	background: #c4000f; /* 濃い赤に */
}


/*発送ﾎﾟｯﾌﾟｱｯﾌﾟ通知画面*/
.ship-popup {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.ship-popup .ship-popup-content {
	background: #fff;
	padding: 25px 35px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
	animation: fadeIn 0.3s ease;
}

.ship-popup .ship-popup-content h3{
	font-size: 24px;
}
.ship-popup .ship-popup-content p {
	font-size: 20px;
}
.ship-popup .ship-popup-content p a.popup-link {
	background: #28a745;
	color: #fff;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	display: block;
	margin: 25px 0 30px;
	text-align: center;
}
.ship-popup .popup-close {
	cursor: pointer;
	color: #0073aa;
	text-decoration: none;
	font-weight: bold;
	padding: 8px 20px;
	border-radius: 6px;
}
@keyframes fadeIn {
	from {opacity: 0; transform: translateY(-10px);}
	to {opacity: 1; transform: translateY(0);}
}




@media screen and (max-width: 1024px) {
	.my_page {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.my_page .inner {
		padding: 10px;
	}
	.follow-nav {
		display: flex;
		gap: 10px;
		margin-bottom: 10px;
	}
	.mypage_menu {
		gap: 10px;
	}
	.my_page .count {
		display: block;
	}
	.my_page .count:before {
		top: 3px;
		left: 5px;
		background-size: 30px;
		width: 30px;
		height: 27px;
	}
	.my_page .count p {
		font-size: 20px;
	}
	.my_page .count .box {
		margin-top: 10px;
		margin-left: 0;
	}
	.my_page .count .box .num {
		font-size: 20px;
	}
	.my_page .count .box .unit {
		font-size: 20px;
	}

	/*招待ｺｰﾄﾞ*/
	.invite-code {
		margin-top: 30px;
		display: block;
	}
	.invite-code:before {
		top: 5px;
		left: 5px;
	}
	.invite-code p {
		font-size: 20px;
	}
}


/*== マイページ編集用 ==*/
.my_profile {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
}
.my_profile .inner {
	background-color: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	transform: translateY(0);
	padding: 50px 20px;
	box-sizing: border-box;
}
.my_profile .profile_icon {
	/*max-width: 400px;*/
	margin: 0 auto;
}

.my_profile dl {
	margin-top: 30px;
}
.my_profile dl dt {
	font-size: 36px;
	font-weight: bold;
	padding-left: 45px;
	position: relative;
}
.my_profile dl dt:before {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	background-repeat: no-repeat;
}
.my_profile dl.name dt:before {
	top: 13px;
	background-image: url(../images/common/pc/icon_user.svg);
	background-size: 32px;
	width: 32px;
	height: 38px;
}
.my_profile dl.birthday dt:before {
	top: 16px;
	background-image: url(../images/common/pc/icon_cake.svg);
	background-size: 32px;
	width: 32px;
	height: 38px;
}
.my_profile dl.address dt:before {
	top: 16px;
	background-image: url(../images/common/pc/icon_house.svg);
	background-size: 38px;
	width: 38px;
	height: 33px;
}
.my_profile dl.profile dt:before {
	top: 16px;
	background-image: url(../images/common/pc/icon_message.svg);
	background-size: 38px;
	width: 38px;
	height: 35px;
}
.my_profile dl dd {
}
.my_profile dl dd span,
.my_profile dl dd input,
.my_profile dl dd select,
.my_profile dl dd textarea {
	display: inline-block;
	width: 100%;
	background-color: #e6e6e6;
	border-radius: 5px;
	font-size: 28px;
	padding: 20px;
	box-sizing: border-box;
	border: none;
}
.my_profile dl dd textarea {
    min-height: 300px;
}

/*サポーターさん*/
.my_profile h3 {
	font-size: 36px;
	font-weight: bold;
	margin-top: 80px;
	text-align: center;
	margin-bottom: 30px;
}

.my_profile dl.relationship dt:before {
	top: 18px;
	background-image: url(../images/common/pc/icon_relationship.svg);
	background-size: 38px;
	width: 38px;
	height: 35px;
}
.my_profile .btn_box {
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}
.my_profile .change_btn {
	text-align: center;
	margin-top: 50px;
}
.my_profile .change_btn a,
.my_profile .save_btn button,
.settings_page .save_btn button,
.password_reset_request_page .save_btn button {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #2b8838;
	border-radius: 50px;
	padding-left: 20px;
	border: none;
}
.my_profile .change_btn a span,
.my_profile .save_btn button span,
.settings_page .save_btn button span,
.password_reset_request_page .save_btn button span {
	position: relative;
}
.my_profile .change_btn a span:before,
.my_profile .save_btn button span:before,
.settings_page .save_btn button span:before,
.password_reset_request_page .save_btn button span:before {
	content: "";
	position: absolute;
	top: 0px;
	left: -29px;
	background-image: url(../images/common/pc/icon_update.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 24px;
}
.my_profile .save_btn button span:before {
	top: 2px;
}

@media screen and (max-width:1024px) {
/*== マイページ編集 ==*/
	.my_profile {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.my_profile .ttlThips h2 {
		font-size: 24px;
	}
	.my_profile .inner {
		padding: 15px;
	}
	.my_profile dl dt {
		font-size: 21px;
	}
	.my_profile dl.name dt:before {
		top: -2px;
		background-size: 25px;
		width: 25px;
		height: 30px;
	}
	.my_profile dl.birthday dt:before {
		top: -3px;
		background-size: 28px;
		width: 28px;
		height: 31px;
	}
	.my_profile dl.address dt:before {
		top: 0px;
		background-size: 32px;
		width: 32px;
		height: 28px;
	}
	.my_profile dl.profile dt:before {
		top: 0px;
		background-size: 30px;
		width: 30px;
		height: 27px;
	}
	.my_profile dl dd span,
	.my_profile dl dd input,
	.my_profile dl dd select,
	.my_profile dl dd textarea {
		font-size: 20px;
		padding: 10px 15px;
	}

	
	.my_profile h3 {
		font-size: 24px;
		margin-top: 50px;
		margin-bottom: 25px;
	}
	.my_profile dl.relationship dt:before {
		top: 4px;
		background-size: 30px;
		width: 30px;
		height: 23px;
	}

	.my_profile .btn_box {
		gap: 20px;
		margin-top: 30px;
		flex-wrap: nowrap;
	}
	.my_profile .change_btn a,
	.my_profile .save_btn button,
	.settings_page .save_btn button,
	.password_reset_request_page .save_btn button {
	    width: 160px;
	    height: 55px;
	    line-height: 55px;
	    font-size: 20px;
	}
	.my_profile .save_btn button span:before {
	    top: -2px;
	}
}


/*===================
  プロフィール
====================*/
/*== プロフィール ==*/
.user_profile {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
}
.user_profile .inner {
	background-color: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	transform: translateY(0);
	padding: 50px 20px;
	box-sizing: border-box;
}
.user_profile .profile_icon {
	margin: 0 auto;
	position: relative;
}
.user_profile .profile_icon img {
	overflow: hidden;
	border-radius: 10px;
}
.user_profile dl {
	margin-top: 30px;
}
.user_profile dl dt {
	font-size: 36px;
	font-weight: bold;
	padding-left: 45px;
	position: relative;
}
.user_profile dl dt:before {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	background-repeat: no-repeat;
}
.user_profile dl.name dt:before {
	top: 13px;
    left: 8px;
	background-image: url(../images/common/pc/icon_user.svg);
	background-size: 32px;
	width: 32px;
	height: 38px;
}
.user_profile dl.birthday dt:before {
	top: 16px;
	background-image: url(../images/common/pc/icon_cake.svg);
	background-size: 32px;
	width: 32px;
	height: 38px;
}
.user_profile dl.status dt:before {
	top: 7px;
	background-image: url(../images/common/pc/icon_badge.svg);
	background-size: 32px;
	width: 32px;
	height: 40px;
}
.user_profile dl.address dt:before {
	top: 16px;
	background-image: url(../images/common/pc/icon_house.svg);
	background-size: 38px;
	width: 38px;
	height: 33px;
}
.user_profile dl.profile dt:before {
	top: 16px;
	background-image: url(../images/common/pc/icon_message.svg);
	background-size: 38px;
	width: 38px;
	height: 35px;
}
.user_profile dl dd {
	background-color: #e6e6e6;
	font-size: 28px;
	padding: 20px;
	border-radius: 5px;
}
.user_profile dl.status dd {
    display: flex;
    align-items: center;
	gap: 6px;
}
.user_profile dl.status dd img {
    height: 23px;
    width: auto;
    vertical-align: middle;
}

.user_profile dl.relationship dt:before {
	top: 18px;
	background-image: url(../images/common/pc/icon_relationship.svg);
	background-size: 38px;
	width: 38px;
	height: 35px;
}
.user_profile dl.relationship dd a {
	display: flex;
	gap: 20px;
	color: #333;
	font-weight: bold;
	align-items: center;
	line-height: 1;
}
.user_profile dl.relationship dd a .user_icon {
	max-width: 50px;
}
.user_profile .btn_box {
	text-align: center;
	margin-top: 50px;
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}
.user_profile .follow_btn button {
	display: inline-block;
	/*width: 250px;
	height: 65px;
	line-height: 65px;*/
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #f7931e;
	/*border-radius: 50px;*/
	/*padding-left: 20px;*/
	border: none;
	cursor: pointer;
    padding: 8px 16px 9px;
    border: 1px solid #0073aa;
    background: #fff;
    color: #0073aa;
    border-radius: 4px;
}
.user_profile .follow_btn button:before {
	content: "";
	position: absolute;
	top: 6px;
	left: -29px;
	/*background-image: url(../images/common/pc/icon_present.svg);*/
	background-repeat: no-repeat;
	background-size: 24px;
	width: 24px;
	height: 28px;
}

@media screen and (max-width:1024px) {
/*== プロフィール ==*/
	.user_profile {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.user_profile .ttlThips h2 {
		font-size: 24px;
	}
	.user_profile .inner {
		padding: 15px;
	}
	.user_profile dl dt {
		font-size: 21px;
	}
	.user_profile dl.name dt:before {
		top: -2px;
		background-size: 25px;
		width: 25px;
		height: 30px;
	}
	.user_profile dl.birthday dt:before {
		top: -3px;
		background-size: 28px;
		width: 28px;
		height: 31px;
	}
	.user_profile dl.status dt:before {
		top: -8px;
	    left: 7px;
		background-size: 27px;
		width: 27px;
		height: 36px;
	}
	.user_profile dl.address dt:before {
		top: 0px;
		background-size: 32px;
		width: 32px;
		height: 28px;
	}
	.user_profile dl.profile dt:before {
		top: 0px;
		background-size: 30px;
		width: 30px;
		height: 27px;
	}
	.user_profile dl dd {
		font-size: 20px;
		padding: 10px 15px;
	}
	.user_profile dl.relationship dt:before {
		top: 0;
	}
	.user_profile .btn_box {
	    margin-top: 30px;
	}
}



/*===================
  景品交換ページ
====================*/
/*== ポイント利用商品 ==*/
.exchange_box {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
}

/* プレゼント交換ページ - ユーザーポイント表示 */
.exchange_box .user_point {
	background: #fff;
	border: 2px solid #f2c94c;
	border-radius: 4px;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	box-shadow: 0 2px 4px rgba(0,0,0,0.08);
	max-width: 730px;
	margin: 0 auto;
    box-sizing: border-box;
	margin-top: 30px;
}
.exchange_box .user_point span {
	color: #f2994a;
	font-size: 28px;
	font-weight: 700;
}

/*申請履歴を見る*/
.history_btn_box { 
	text-align: right;
	max-width: 730px;
	margin: 0 auto;
	margin-top: 10px;
}
.history_btn {
	display: inline-block;
	background: #ff9900;
	color: #fff;
    padding: 12px 20px 10px;
    border-radius: 4px;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
}
.history_btn:hover { 
	opacity: 0.8;
}

/*景品一覧*/
.exchange_box form {
	background-color: #fefbf4;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	margin-top: 10px;
	transform: translateY(0);
	padding: 50px 20px;
	box-sizing: border-box;
}
.exchange_box .btn_box {
	padding: 50px 20px 0;
	text-align: center;
	gap: 50px;
	display: flex;
	justify-content: center;
}

.exchange_box .send_btn {
}
.exchange_box .send_btn button {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #f7931e;
	border-radius: 50px;
	border: none;
	padding-left: 20px;
	box-sizing: border-box;
	cursor: pointer;
}
.exchange_box .send_btn button:hover {
	background-color: #C33E1E;
}
.exchange_box .send_btn button span {
	position: relative;
}
.exchange_box .send_btn button span:before {
	content: "";
	position: absolute;
	top: -2px;
	left: -28px;
	background-image: url(../images/common/pc/icon_present.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 24px;
}

.exchange_box form .point_list {}
.exchange_box form .point_list li + li {
	margin-top: 50px;
}
.exchange_box form .point_list li .point {
	padding-left: 30px;
}
.exchange_box form .point_list li .point .num {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	color: #f7931e;
}
.exchange_box form .point_list li .point .unit {
	font-size: 24px;
	font-weight: bold;
}
.exchange_box form .point_list li h3 {
	background-color: #e6e6e6;
	padding: 15px 20px;
	font-size: 24px;
	font-weight: bold;
	border-radius: 5px;
}
.exchange_box form .point_list li .img_photo {
	background-color: #e6e6e6;
	padding: 20px;
	margin-top: 20px;
	box-shadow: 5px 5px 5px rgba(0,0,0,.1);
}
.exchange_box form .point_list li .exchange_desc {
	margin-top: 20px;
}
.exchange_box form .point_list li .exchange_desc p {
	font-size: 20px;
}

/* カードを相対位置にしてバッジ位置を固定 */
.exchange_label {
	position: relative;
	display: block;
}

/* ラジオボタンを右上に見せる */
.exchange_label input[type="radio"] {
	position: absolute;
	top: 20px;
	left: 12px;
	width: 22px;
	height: 22px;
	cursor: pointer;
	z-index: 2;
	opacity: 1;
}

/* カード本体 */
.exchange_label .exchange_content {
	position: relative;
	display: block;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 16px;
	text-align: center;
	background-color: #fff;
	transition: all 0.25s ease;
	cursor: pointer;
	box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* 選択中（checked） */
.exchange_label input[type="radio"]:checked + .exchange_content {
	border-color: #ff9800;
	background-color: #fff8e1;
	box-shadow: 0 0 10px rgba(255,152,0,0.4);
}

/* 選択中バッジ */
.exchange_label input[type="radio"]:checked + .exchange_content::after {
	content: "✔ 選択中";
	position: absolute;
	top: -12px;
	left: -12px;
	background: #ff9800;
	color: #fff;
	font-size: 0.8rem;
	font-weight: bold;
	padding: 3px 10px;
	border-radius: 12px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* =====================================================
   個数選択セクション
   ===================================================== */
.quantity_box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	padding: 8px 12px;
	background: #fff7d6;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
}

.quantity_box label {
	margin-right: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #444;
}

.quantity_box select {
	font-size: 1.2rem;
	padding: 6px 10px;
	border: 2px solid #aaa;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	min-width: 70px;
	text-align: center;
	transition: all 0.2s ease;
}

.quantity_box select:hover {
	border-color: #ff9900;
	box-shadow: 0 0 6px rgba(255,153,0,0.4);
}



@media screen and (max-width:1024px) {
/*== ポイント利用商品 ==*/
	.exchange_box {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.exchange_box form {
		padding: 15px;
	}
	.exchange_box form .point_list li h3 {
		font-size: 20px;
	}
	.exchange_box form .point_list li + li {
		margin-top: 30px;
	}
	.exchange_box .btn_box {
		padding: 10px 0 30px;
		flex-wrap: wrap;
		gap: 30px;
	}
	.exchange_box .btn_box .back_btn a {
		width: 250px;
		height: 65px;
		line-height: 65px;
		font-size: 20px;
	}
	.exchange_box .btn_box .back_btn a span:before {
		top: 3px;
	}
	.exchange_box .btn_box .send_btn {
		margin-top: 30px;
	}
}


/*===================
  景品交換申請フォーム
====================*/
.exchange_form_page {
	background-color: #dbdeab;
	padding: 80px 0;
}

.exchange_form_box {
	background: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	max-width: 730px;
	margin: 0 auto;
	padding: 50px 30px;
	box-sizing: border-box;
}

/* タイトル・ポイント */
.exchange_form_box h2 {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.exchange_form_box .user_point {
	text-align: center;
	background: #fff;
	border: 2px solid #f2c94c;
	border-radius: 50px;
	display: inline-block;
	padding: 6px 14px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	box-shadow: 0 2px 4px rgba(0,0,0,0.08);
	margin: 0 auto 30px;
	display: block;
}
.exchange_form_box .user_point strong {
	color: #f2994a;
	font-size: 28px;
	font-weight: 700;
}

/* 商品プレビュー */
.exchange_form_box .item_preview {
	text-align: center;
	background-color: #e6e6e6;
	border-radius: 10px;
	padding: 25px 20px;
	margin-bottom: 40px;
}
.exchange_form_box .item_preview h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}
.exchange_form_box .item_preview img {
	width: 200px;
	height: auto;
	border-radius: 8px;
	margin-bottom: 10px;
}
.exchange_form_box .item_preview p {
	font-size: 18px;
	font-weight: bold;
	color: #f7931e;
	text-align: center;
}

/* ラベルと入力項目 */
.exchange_form_box label {
	display: block;
	font-size: 20px;
	font-weight: bold;
	margin-top: 25px;
	margin-bottom: 5px;
}
.exchange_form_box label .required {
	color: #c33e1e;
	font-size: 16px;
	margin-left: 4px;
}

.exchange_form_box input[type="text"],
.exchange_form_box input[type="file"],
.exchange_form_box textarea {
	width: 100%;
	background-color: #e6e6e6;
	border-radius: 6px;
	border: none;
	font-size: 18px;
	padding: 12px 14px;
	box-sizing: border-box;
}
.exchange_form_box input + input {
	margin-top: 10px;
}
.exchange_form_box textarea {
	min-height: 120px;
	resize: vertical;
}

/* プレビューエリア */
.exchange_form_box .item_preview {
	background: #f7f7f7;
	border-radius: 12px;
	padding: 20px 25px;
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.exchange_form_box .item_preview h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.exchange_form_box .item_preview img {
	max-width: 300px;
	width: 100%;
	margin: 10px auto 15px;
	display: block;
	border-radius: 8px;
}

.exchange_form_box .item_preview p {
	margin: 6px 0;
	color: #444;
	font-size: 20px;
}

.exchange_form_box .item_preview label {
	font-weight: 600;
	display: block;
	margin: 12px 0 4px;
	font-size: 18px;
	color: #222;
}

.exchange_form_box .item_preview select {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 20px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.exchange_form_box .item_preview p strong {
	color: #f58634;
	font-weight: 700;
	font-size: 24px;
}


/* ボタンエリア */
.exchange_form_box .btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 50px;
	flex-wrap: wrap;
}

/* 申請ボタン */
.exchange_form_box .apply_btn {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #2b8838;
	border-radius: 50px;
	border: none;
	padding-left: 20px;
	cursor: pointer;
	transition: 0.2s;
}
.exchange_form_box .apply_btn:hover {
	background-color: #C33E1E;
}

/* 戻るボタン */
.exchange_form_box .back_btn {
	display: inline-block;
	width: 250px;
	height: 65px;
	line-height: 65px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #5c544a;
	border-radius: 50px;
	text-decoration: none;
	text-align: center;
	padding-left: 20px;
	box-sizing: border-box;
	transition: 0.2s;
}
.exchange_form_box .back_btn:hover {
	background-color: #3e382f;
}



@media screen and (max-width:1024px) {
	.exchange_form_page {
		padding: 50px 5%;
	}
	.exchange_form_box {
		padding: 30px 20px;
	}
	.exchange_form_box h2 {
		font-size: 24px;
	}
	.exchange_form_box label {
		font-size: 18px;
	}
	.exchange_form_box input[type="text"],
	.exchange_form_box textarea {
		font-size: 16px;
		padding: 10px 12px;
	}
	.exchange_form_box .btn_box {
		gap: 25px;
		margin-top: 30px;
	}
	.exchange_form_box .apply_btn,
	.exchange_form_box .back_btn {
		width: 200px;
		height: 55px;
		line-height: 55px;
		font-size: 18px;
	}
}

/*===================
  景品交換申請履歴
====================*/
.exchange_history {
	padding-top: 80px;
	padding-bottom: 80px;
}

.exchange_list {
	margin-top: 15px;
}
.exchange_list li {
	border-bottom: 1px solid #e5e5e5;
	padding: 14px 8px;
}
.exchange_list li a {
	text-decoration: none;
	color: #333;
	display: block;
}
.exchange_list .info_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.exchange_list .date {
	font-size: 0.85em;
	color: #777;
	flex-shrink: 0;
	width: 80px;
}
.exchange_list .message {
	flex: 1;
	font-size: 1em;
	line-height: 1.4;
}
.exchange_list .label.exchange {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 14px;
	font-size: 0.85em;
	color: #fff;
	flex-shrink: 0;
}
.no_notice {
	text-align: center;
	color: #666;
	margin: 40px 0;
}


.exchange_history .back_link {
	margin-top: 20px;
}


/*===================
  通知
====================*/
/*== 一覧ページ ==*/
.notice_page {
	padding: 30px 20px;
	background: #fff;
	border-radius: 8px;
	max-width: 800px;
	margin: 0 auto;
}
.notice_page .page_title {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.notice_list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.notice_list li {
	border-bottom: 1px solid #ddd;
	padding: 12px 5px;
}
.notice_list li.unread {
	background: #f7fbe9;
}
.notice_list li.read {
	background: #fff;
}
.notice_list li a {
	display: block;
	color: #333;
	text-decoration: none;
}
.notice_list .message {
	font-size: 15px;
	margin-bottom: 4px;
}
.notice_list .date {
	font-size: 12px;
	color: #888;
}
.no_notice {
	text-align: center;
	color: #666;
	padding: 40px 0;
}



/*== 詳細ページ ==*/
.notice_detail {
	max-width: 760px;
	margin: 60px auto;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 40px 30px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.notice_detail .title {
	font-size:22px;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 8px;
	line-height: 1.4;
}
.notice_detail .date {
	color: #888;
	font-size: 16px;
	margin-bottom: 20px;
	display:block;
}

.notice_detail .content {
	padding-top: 20px;
	border-top: 1px solid #e5e5e5;
	margin-bottom: 40px;
}

.notice_detail .content p {
	font-size: 20px;
	margin-bottom: 1.4em;
}

.notice_back {
	text-align: right;
}

.notice_back a {
	font-size: 14px;
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid #aaa;
	transition: 0.2s;
}

.notice_back a:hover {
	color: #000;
	border-color: #000;
}


@media screen and (max-width:1024px) {
	.notice_detail {
		margin: 30px auto 60px;
		width: 90%;
		box-sizing: border-box;
		padding: 30px 20px;
	}
	.notice_detail .title {
		font-size: 24px;
	}
}




/*===================
  設定
====================*/
/*== 一覧ページ ==*/
/* 背景 */
.setting-page {
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
	min-height: 70vh;
}

/* 中央カード */
.setting-container {
	background: #fafae2;
    border-radius: 10px;
	padding: 20px;
	width: 100%;
	max-width: 700px;
	text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    box-sizing: border-box;
}

/* タイトル */
.setting-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	text-align: center;
}

.setting-subtitle {
	font-size: 18px;
	color: #555;
	margin-bottom: 5px;
}

/* 一覧リンク */
.setting-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.setting-item {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 8px;
	padding: 14px 16px;
	text-decoration: none;
	color: #333;
	transition: 0.2s;
	border: 1px solid #e4e4e4;
}
.setting-item:hover {
	background: #f9f9f9;
}
.setting-icon img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}
.setting-text {
	flex: 1;
	text-align: left;
}
.setting-name {
	font-weight: bold;
	font-size: 20px;
}
.setting-desc {
	font-size: 16px;
	color: #666;
	padding-right: 10px;
}
.setting-arrow {
	font-size: 25px;
	color: #6abf4b;
	font-weight: bold;
}


@media screen and (max-width:1024px) {
	.setting-page {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.setting-page .inner {
		padding-left: 5%;
		padding-right: 5%;
	}
	.setting-item {
	    padding: 10px;
	}
}

/*== メール通知設定 ==*/
.settings_page {
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
	min-height: 70vh;
}
.settings_page .inner {
}
.settings_page .page_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
.settings_page form {
	max-width: 700px;
	margin: 0 auto;
}
.settings_page .desc {
	font-size: 18px;
}
.settings_page .notify_box {
	background: #fafae2;
	border-radius: 10px;
	padding: 20px;
}
.settings_page .notify_toggle {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 9px 15px;
	margin-bottom: 10px;
	font-size: 20px;
	cursor: pointer;
	gap: 10px;
}

.settings_page .notify_toggle.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.settings_page .notify_toggle input[type="checkbox"] {
  position: relative;
  width: 50px;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ccc;
  border-radius: 15px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.settings_page .notify_toggle input[type="checkbox"]::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
	transition: left 0.3s ease;
}

.settings_page .notify_toggle input[type="checkbox"]:checked {
	background-color: #4CAF50;
}

.settings_page .notify_toggle input[type="checkbox"]:checked::before {
	left: 27px;
}


.settings_page .btn_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}

@media screen and (max-width:1024px) {
	.settings_page {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.settings_page .inner {
		padding-left: 5%;
		padding-right: 5%;
	}
	.settings_page .btn_box {
		margin-top: 30px;
		flex-wrap: nowrap;
		gap: 20px;
	}
}


/*== 退会 ==*/
.setting-footer {
    margin-top: 30px;
    text-align: center;
}
.setting-delete-link {
    color: #b44;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.8;
}
.setting-delete-link:hover {
    opacity: 1;
}

.retire_box {
    max-width: 700px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 14px;
    padding: 25px 28px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.retire_intro {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.retire_list {
    margin-left: 18px;
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 15px;
    color: #333;
}

.retire_list li {
    list-style: disc;
    font-size: 20px;
}

.retire_caution {
    font-size: 24px;
    color: #b33;
    font-weight: 600;
}

@media screen and (max-width:1024px) {
	.retire_box {
	    padding: 20px;
	}
	.retire_intro {
        font-size: 24px;
    }
    .retire_caution {
        font-size: 20px;
    }
}



/*===================
  スポンサー広告系
====================*/
/*== スポンサー紹介ページ ==*/
.sponsor-detail {
    background-color: #dbdeab;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* 内側コンテナ（白カード） */
.sponsor-detail .inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* バナー画像 */
.sponsor-banner {
    text-align: center;
    margin-bottom: 30px;
}

.sponsor-banner img {
	max-width: 100%;
    border-radius: 4PX;
}

/* タイトル */
.sponsor-title {
    font-size: 28px;
    font-weight: 700;
    padding: 0.4em 0;
    border-top: 1px solid #2b8838;
    border-bottom: 1px solid #2b8838;
    margin: 0 0 20px;
}

.sponsor-divider {
    border: 0;
    border-bottom: 1px solid gray;
    margin: 1.2em 0;
}

/* 本文 */
.sponsor-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}
.sponsor-content img {
	width: auto;
}
.sponsor-content iframe {
    width: 100%;
    max-width: 100%;
    height: 450px;
    /*margin: 20px 0;*/
}
.yt-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.yt-wrapper iframe {
  width: 100%;
  height: 100%;
  pointer-events: none !important; /* ← iframe内部を完全に無効化 */
}

.yt-overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}


/*===============================
  スポンサー紹介ページ：記事本文スタイル復活
================================*/

/*------------------------------
  共通（PC・スマホ両方）
------------------------------*/
.sponsor-detail .sponsor-content p {
    margin-bottom: 1.2em;
    line-height: 1.9;
    color: #333;
}

/* 太字復活 */
.sponsor-detail .sponsor-content strong,
.sponsor-detail .sponsor-content b {
    font-weight: 700 !important;
}

/* リスト復活 */
.sponsor-detail .sponsor-content ul,
.sponsor-detail .sponsor-content ol {
    padding-left: 1.4em;
    margin: 14px 0;
}

.sponsor-detail .sponsor-content ul li {
    list-style: disc;
    margin: 6px 0;
}

.sponsor-detail .sponsor-content ol li {
    list-style: decimal;
    margin: 6px 0;
}

/* 引用復活 */
.sponsor-detail .sponsor-content blockquote {
    border-left: 4px solid #ccc;
    padding-left: 1em;
    margin: 18px 0;
    color: #555;
    font-style: italic;
}


/* コード & pre の崩れ対策 */
.sponsor-detail .sponsor-content pre {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    background: #f4f4f4;
    padding: 12px;
    border-radius: 6px;
}


/*------------------------------
  見出し（PC用）
------------------------------*/
.sponsor-detail .sponsor-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 26px 0 16px;
    color: #333;
}

.sponsor-detail .sponsor-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0 14px;
    color: #333;
}

.sponsor-detail .sponsor-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 22px 0 12px;
    color: #333;
}

.sponsor-detail .sponsor-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.sponsor-detail .sponsor-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0 8px;
}

.sponsor-detail .sponsor-content h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0 6px;
}

/* ボタンリンク */
.sponsor-post-link-wrap {
    text-align: center;
    margin-top: 40px;
}

.sponsor-post-link-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #2b8838;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.sponsor-post-link-btn:hover {
    background: #c33e1e;
}






@media screen and (max-width:1024px) {
	.sponsor-detail {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	
    .sponsor-detail .inner {
        padding: 20px 15px 30px;
    }
	.sponsor-banner {
	    margin-bottom: 20px;
	}
    .sponsor-title {
        font-size: 20px;
	    margin-bottom: 20px;
    }
    .sponsor-post-link-wrap {
    	margin-top: 30px;
    }
}


/*------------------------------
  スマホ（768px以下）調整
------------------------------*/
@media (max-width: 768px) {
	.sponsor-content img {
		width: 100%;
	}
	.sponsor-content iframe {
	    width: 100%;
	    height: 200px;
	}

    /* 見出しを一回り小さくしてスマホに最適化 */
    .sponsor-detail .sponsor-content h1 {
        font-size: 22px;
        margin: 15px 0 5px;
    }
    .sponsor-detail .sponsor-content h2 {
        font-size: 20px;
        margin: 15px 0 5px;
    }
    .sponsor-detail .sponsor-content h3 {
        font-size: 19px;
        margin: 15px 0 5px;
    }
    .sponsor-detail .sponsor-content h4 {
        font-size: 18px;
        margin: 10px 0 5px;
    }
    .sponsor-detail .sponsor-content h5 {
        font-size: 17px;
        margin: 10px 0 5px;
    }
    .sponsor-detail .sponsor-content h6 {
        font-size: 16px;
	    margin: 10px 0 5px;
    }

    /* 段落も少し広めに */
    .sponsor-detail .sponsor-content p {
        margin-bottom: 15px;
        line-height: 1.75;
    }
    .sponsor-detail .sponsor-content a {
		overflow-wrap: anywhere;
		word-break: break-all;
    }

    /* リストの余白調整 */
    .sponsor-detail .sponsor-content ul,
    .sponsor-detail .sponsor-content ol {
        padding-left: 1.2em;
    }

    .sponsor-detail .sponsor-content ul li,
    .sponsor-detail .sponsor-content ol li {
        margin: 5px 0;
    }

    /* 引用も少し余白広げる */
    .sponsor-detail .sponsor-content blockquote {
        padding-left: 0.8em;
        margin: 16px 0;
    }
}
