@charset "utf-8";
/* CSS Document */

/* 共通 */

#main_col {
	margin: 30px auto 150px;
}

body .post_content p,
body .post_content li,
body .post_content dt,
body .post_content dd {
	font-size: 18px;
	line-height: 1.7em;
}

#post_title {
	max-width: 1160px;
	margin: 0 auto;
}

.top-text {
	max-width: 1160px;
	margin: 0 auto;
}

.post_content .lead {
	margin-top: 1.8em;
}

.post_content .lp_h2 {
	font-size: 36px;
	font-weight: 800;
	margin: 0 auto 20px;
	padding: 0 0 8px 0;
	border-bottom: #067E8E solid 4px;
}

.post_content .lp_h3 {
	font-size: 30px;
	font-weight: 800;
	color: #067E8E;
	padding-bottom: 4px;
	margin: 2em 0 10px 0;
	border-bottom: #4b9da3 solid 2px;
}

.media-text {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

span.small {
	font-size: 75%;
}

#sec1,
#sec2,
#sec3,
#sec4,
#sec5,
#sec6,
#sec7,
#sec8,
#faq {
	margin: 3.6em 0;
}


.post_content ol,
.post_content ul {
	list-style: none;
	margin-left: 0;
}

img.hover-darken {
	transition: all 0.3s ease-out;
}

img.hover-darken:hover {
	filter: brightness(0.7);
}

a.underline {
	color: #067E8E;
	text-decoration: underline;
	font-weight: 500;
	transition: all 0.3s ease-out;
}

a.underline:hover {
	color: #007180;
	text-decoration: none;
}


.pc_hid {
	display: none;
}

.sp_hid {
	display: block;
}

.post_content .link_button {
	height: 3em;
	display: inline-flex;
	margin: 5px 0 0 10px;
	align-items: center;
	justify-content: center;
	background: #067E8E;
	padding: 0 24px;
	border-radius: 10vh;
	color: #fff;
	font-weight: 400;
	transition: all 0.3s ease-out;
}

.post_content .link_button i {
	margin-left: 10px;
}

.post_content .link_button:hover {
	background: #007180;
}

/* お問い合わせボタン */
.lp_contact {
	background: #f2e820;
	display: inline-flex;
	align-items: flex-end;
	justify-content: center;
	padding: 18px 26px 16px 40px;
	margin: 20px 0 0 0;
	box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 25%);
	transition: all 0.3s ease-out;
}

.lp_contact:hover {
	background: #e0d504;
	transform: translateY(2px);
}

.post_content .lp_contact p {
	background: #fff;
	padding: 14px 20px;
	border-radius: 16px;
	margin-right: 22px;
	font-weight: 800;
	line-height: 1.6em;
}

.lp_contact span {
	font-size: 22px
}

/* お問い合わせボタン2 */
.lp_contact2 {
	background: #f2e820;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 22px 0 30px;
	margin: 10px 0;
	box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 25%);
	transition: all 0.3s ease-out;
}

.lp_contact2:hover {
	background: #e0d504;
	transform: translateY(2px);
}

.post_content .lp_contact2 p {
	font-size: 20px;
	background: #fff;
	padding: 14px 20px;
	border-radius: 16px;
	margin-right: 22px;
	font-weight: 800;
	line-height: 1.6em;
}

.lp_contact2 span {
	font-size: 22px
}

/* 目次 */

.post_content .toc {
	border: #A0A0A0 solid 2px;
	background: #fff;
	border-radius: 20px;
	padding: 6px 4em 20px;
	margin: 20px auto 0 auto;
	width: 80%;
}

.post_content .toc h2 {
	font-size: 18px;
	margin-left: 3em;
}

.post_content .toc ul {
	padding-left: 4em;
	list-style: none;
	margin: -2px 0 5px;
}

.post_content .toc .hid {
	display: none;
}

.toc .fa-circle-check {
	padding-right: 10px;
	color: #363636;
}

.post_content .toc a {
	color: #222;
	line-height: 1.7em;
}

.post_content .toc h2+ul>li {
	font-size: 17px;
	font-weight: 700;
}

.post_content .toc ul ul {
	display: flex;
	flex-wrap: wrap;
}

.post_content .toc ul ul li {
	font-size: 15px;
	font-weight: normal;
}

.post_content .toc ul ul li:not(:last-child) {
	margin-right: 2.4em;
}

/* FAQ */
.post_content .accordion-header {
	margin: 1em 0 0 2px;
	padding: 0 2em;
	height: 3em;
	line-height: 2.3em;
	font-size: 120%;
	font-weight: 600;
	border: #ddd solid 3px;
	border-radius: 50vh;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

.accordion-header:hover {
	border: #067E8E solid 3px;
	background: rgba(6, 126, 142, 0.1);
}

.accordion-header::after {
	content: '+';
	color: #666;
	position: absolute;
	top: 45%;
	right: 4%;
	transform: translateY(-50%);
	transition: transform 0.3s;
	font-size: 40px;
}

.accordion-header.open {
	border: #067E8E solid 4px;
	background: rgba(6, 126, 142, 0.1);
}

.accordion-header.open::after {
	transform: translateY(-50%) rotate(45deg);
}

.accordion-header span {
	display: inline-block;
	color: #067E8E;
	font-weight: 800;
	margin: 4px 1em 0 0;
	vertical-align: sub;
	font-size: 200%;
}

.accordion-content {
	display: flex;
	margin: 0 0 4em 2em;
	padding: 2em 0;
}

.accordion-content .answer {
	line-height: 1;
	display: inline-block;
	color: #f2e820;
	font-weight: 800;
	margin-right: 2%;
	font-size: 400%;
	transform: translateY(-10px);
}


/* カレンダー */
.xo-event-calendar table.xo-month button span.nav-next {
	border-right: 2px solid #ddd;
	border-top: 2px solid #ddd;
}

.xo-event-calendar table.xo-month button span.nav-prev {
	border-bottom: 2px solid #999;
	border-left: 2px solid #999;
}

.xo-event-calendar table.xo-month .month-header {
	color: #ddd;
	font-size: 15px;
	line-height: 24px;
}


/*トランシーバーLP
--------------------------------------------------------------*/

/* TOP */
body.postid-35869.single-post #main_col {
	display: block;
	max-width: 1200px;
	margin-top: 0;
}

.postid-35869 #key_visual_wrap {
	/*background: url(/wp-content/uploads/2025/06/lp_top1.jpg) no-repeat center 50%;*/
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	/*min-height: 15vh;*/
	height: 180px;
	background: repeating-conic-gradient(rgba(242, 232, 32, 1) 0deg 5deg,
			rgba(242, 232, 32, 0.4) 5deg 10deg);
}

.postid-35869 h1#post_title {
	font-size: 45px;
	font-weight: 800;
	color: #067E8E;
	position: relative;
	top: 45px;
	max-width: 28ch;
	margin: 0 auto;
	text-align: left;
	padding: 0 350px 0 0;
}

.postid-35869 .top-text {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	/*position: relative;*/
	padding: 0 40px;
	max-width: 1160px;
	margin: 0 auto;
	transform: translateY(-50px);
}

.feature-keywords {
	display: flex;
	margin-right: 20px;
}

.feature-keywords li {
	position: relative;
	padding: 12px 18px;
	/*color: #fff;*/
	background: rgb(255 255 255/0.9);
	color: #067E8E;
	padding: 8px 12px;
	border: #067E8E solid 2px;
	border-radius: 6px;
	font-size: 20px;
	font-weight: 800;
	z-index: 99;
}

.feature-keywords li:not(:last-child) {
	margin-right: 10px;
}

.postid-35869 .top-text::after {
	content: "";
	display: inline-block;
	width: 214px;
	height: 150px;
	background: url(/wp-content/uploads/2025/05/device.png) no-repeat center top;
	background-size: contain;
	position: relative;
	left: 0;
	bottom: 40px;
}


/* 目次 */
.transceiver_toc .selection,
.transceiver_toc .types {
	display: flex;
}

.transceiver_toc .selection li:not(:last-child),
.transceiver_toc .types li:not(:last-child) {
	margin-right: 3.2em;
}


/* トランシーバー・無線機とは */
.transceiver_intro {
	padding: 3em 0 4em 0;
	;
}

.post_content .transceiver_intro .lp_h2 {
	padding-right: 54px;
}

.transceiver_intro .media-text {
	margin: 0 0 4em 0;
}

.transceiver_intro .media-text img {
	margin-left: 20px;
}

.transceiver_intro .about_list {
	margin: 3em 0 4em;
}

.about_list .number {
	font-size: 100px;
	font-weight: 800;
	color: rgba(75, 157, 163, 0.6);
	margin-right: 3%;
	line-height: 1em;
}

.about_list div {
	width: 64%;
	margin-top: 12px;
}

.post_content .about_list h3 {
	font-size: 30px;
	font-weight: 800;
	color: #067E8E;
	padding-top: 0;
}

.post_content .about_list h3 span {
	margin-left: 10px;
}

.about_list li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 24px 0;
	padding-bottom: 20px;
}

.about_list li:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.about_list li img {
	width: 15%;
	margin: 14px 0 20px 5%;
}

.out-of-coverage {
	border: #067E8E solid 2px;
	background: #fff;
	border-radius: 2px;
	padding: 12px 30px 0;
	display: flex;
	justify-content: space-around;
}

.out-of-coverage p {
	margin-top: 1em;
}

.out-of-coverage p a {
	font-weight: 600;
	display: inline-block;
	text-decoration: underline;
}

.out-of-coverage p a:hover {
	text-decoration: none;
}

.out-of-coverage ul {
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 1;
	flex-basis: 540px;
	list-style: none;
	align-items: flex-start;
	margin: 16px 0 10px;
}

.out-of-coverage li {
	font-weight: 600;
}

.out-of-coverage li:not(:last-of-type) {
	margin-right: 20px;
}

.out-of-coverage li a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	text-align: center;
	line-height: 1.2em;
	color: #067E8E;
}

.out-of-coverage img {
	margin-bottom: 8px;
	transition: all 0.3s ease-out;
}

.out-of-coverage img:hover {
	filter: brightness(0.7);
}


/* 種類と特徴 */

.transceiver_types {
	background: #DCEDEF;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding: 5em 0 10px 0;
}

.transceiver_types_wrap {
	max-width: 1200px;
	margin: 40px auto 80px;
	padding: 0 20px;
}

.types_inner {
	background: #fff;
	padding: 2em 4em;
	margin-bottom: 2em;
}

.types_inner h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 1.1em;
	line-height: 1.5;
}

.post_content .types_inner h3 a {
	color: #222;
}

.types_inner h3 .fa-square {
	margin-right: 10px;
}

.types_inner h3 span {
	font-size: 23px;
	font-weight: 800;
	padding-bottom: 3px;
}

.types_inner #types2+p {
	margin-bottom: 14px;
}

.types_inner #types4 span {
	border-bottom: none;
}

.types_inner dl:first-of-type {
	margin-top: 4em;
}

.types_inner dl {
	margin: 10px 0 0 0;
	display: flex;
}

.types_inner dl:last-of-type,
.types_inner dl:not(:first-of-type) {
	border-top: 1px solid #ddd;
	padding-top: 1.8em;
}

.types_inner dl dd span {
	font-size: 14px;
}

.types_inner dl+p {
	font-size: 14px;
}

.types_inner .fa-play {
	margin-right: 6px;
	color: #067E8E;
}

.types_inner dt {
	font-size: 20px;
	font-weight: 700;
	min-width: 10em;
	color: #067E8E;
}

.types_inner dd div {
	display: flex;
	flex-wrap: nowrap;
}

.types_inner dd div img {
	width: 23%;
	margin: 10px 1%;
	height: auto;
}

.types_inner dd p {
	font-size: 15px;
}

.types_inner h4 {
	font-size: 23px;
	font-weight: 800;
	color: #067E8E;
	padding: 0;
}

.types_inner h4 .fa-circle {
	margin-right: 6px;
	font-size: 10px;
	vertical-align: middle;
}

.types_inner.other>span {
	font-size: 24px;
	padding-top: 20px;
}

.types_inner.other>div {
	display: flex;
	align-items: flex-start;
}

.types_inner.other>div>div {
	width: 73%;
}

.types_inner.other img {
	width: 25%;
	height: auto;
	margin: 30px 0 6px 2%;
}

.license_support {
	display: inline-block;
}

.post_content a.link-digital-cr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 460px;
	margin: 8px auto 30px 0;
	background: #067E8E;
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	padding-left: 20px;
	position: relative;
	filter: drop-shadow(4px 4px rgba(0, 0, 0, 0.1));
	transition: all 0.3s ease-out;
}

.post_content a.link-digital-cr span {
	font-size: 140%;
	padding-left: 3px;
}

a.link-digital-cr::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 26%;
	height: 100%;
	background: #4b9da3;
	border-top-left-radius: 75% 100%;
	border-bottom-right-radius: 0% 100%;
}

a.link-digital-cr img {
	margin-left: 26px;
	z-index: 1;
}

.post_content a.link-digital-cr:hover {
	filter: brightness(0.8);
	transform: translateY(2px);
}

/* 選び方 */

.transceiver_selection {
	margin: 5em 0;
}

.post_content .transceiver_selection h3 {
	font-size: 26px;
	font-weight: 600;
	margin: 0 0 14px;
}

.transceiver_selection h3:not(:first-of-type) {
	margin: 48px 0 14px;
}

.transceiver_selection h3#selection2+p+h4 {
	margin: 20px 0 14px;
}

.transceiver_selection h3 .fa-square {
	margin-right: 10px;
}

.transceiver_selection .range {
	display: flex;
	margin: 0 0 10px 0;
	align-items: center;
	justify-content: center;
	position: relative;
}

.transceiver_selection .range_box_wrap {
	flex: 1;
}

.transceiver_selection .range_box {
	height: 260px;
	padding: 20px;
}

.transceiver_selection .short {
	background: #f4b016;
	margin-right: 10px;

}

.transceiver_selection .middle {
	background: #d9545c;
	margin-right: 10px;
}

.transceiver_selection .long {
	background: #236297;
	margin-right: 10px;
}

.transceiver_selection .other_radio {
	background: #585988;
}

.transceiver_selection .range_box h5 {
	color: #222;
	padding: 10px 5px;
	border-radius: 6px;
	border: #A0A0A0 solid 2px;
	background: #fff;
	text-align: center;
	font-weight: 600;

}

.transceiver_selection .range_box h5 small {
	font-size: 15px;
}

.transceiver_selection .range_box a {
	color: #222;
}

.transceiver_selection .range_box a h5,
.transceiver_selection .range_box a h6 {
	transition: all 0.3s ease-out;
}

.transceiver_selection .range_box a h5:hover,
.transceiver_selection .range_box a h6:hover {
	transform: translateY(2px);
	background: rgb(255 255 255 / 0.8);
}


.post_content .transceiver_selection .drc h5 {
	position: absolute;
	left: 10%;
	top: 65%;
	min-width: 25%;
	z-index: 0;
}

.transceiver_selection .lan h5 {
	position: absolute;
	left: 10%;
	top: 80%;
	min-width: 56%;
	z-index: 0;
}

.post_content .transceiver_selection .range_box h6 {
	font-size: 14px;
	background: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-weight: 600;
	display: inline-block;
	padding: 5px 2px 6px 2px;
}

.post_content .transceiver_selection .range_box h6 {
	margin-right: 2px;
}

.post_content .transceiver_selection h4 {
	font-size: 24px;
	font-weight: 600;
	margin: 40px 0 20px;
}

.transceiver_selection h4 .fa-play {
	margin-right: 6px;
}

.transceiver_selection h4.range {
	text-align: center;
	font-size: 21px;
}

.transceiver_selection h4 small {
	font-size: 19px;
}

.transceiver_selection h4 img {
	margin-left: 10px;
}

.selection2_wrap {
	display: flex;
}

.selection2_wrap p {
	font-size: 16px;
}

.selection2_wrap li {
	border: 1px solid #ddd;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.selection2_wrap.device li {
	width: 32%;
	margin: 0 2% 0 0;
}

.selection2_wrap.option li,
.selection2_wrap.durability li {
	width: 24%;
}

.selection2_wrap.option li:not(:last-child),
.selection2_wrap.durability li:not(:last-child) {
	margin-right: 1%;
}

.post_content .selection2_wrap h5 {
	color: #067E8E;
	font-size: 24px;
	font-weight: 800;
}

.selection2_wrap.device li {
	position: relative;
}

.selection2_wrap.device h5 {
	position: absolute;
	left: 20px;
}

.selection2_wrap li img {
	margin-bottom: 20px;
}

.post_content ul.extra_wrap {
	display: flex;
	margin-bottom: 65px;
}

.extra_inner {
	position: relative;
	width: 30%;
	margin-right: 2%;
}

.extra_wrap .bubble {
	position: relative;
	border: #4b9da3 solid 4px;
	border-radius: 10px;
	padding: 20px 20px 30px;
	font-size: 18px;
	margin: 0 0 1em 0;
	min-height: 3em;
}

.extra_inner img {
	position: absolute;
	z-index: 99;
	bottom: 3em;
	left: 20px;
}

.extra_inner .bubble::after {
	content: '';
	position: absolute;
	background-color: #4b9da3;
	width: 44px;
	height: 4px;
	bottom: -10px;
	left: 32%;
	transform: rotate(-45deg);
}

.extra_inner li {
	text-align: right;
	font-size: 16px;
	line-height: 1.5;
}

.extra_inner li:last-of-type {
	font-size: 14px;
}

.rental_banner {
	margin-top: 20px;
}

.selection4_wrap {
	display: flex;
	flex-wrap: wrap;
}

.maker_wrap {
	width: 48%;
	border: #ddd solid 2px;
	box-sizing: border-box;
}

.maker_wrap:nth-child(odd) {
	margin: 8px 1.6% 26px 0;
}

.maker_wrap:nth-child(even) {
	margin: 8px 0 26px 1.6%;
}

body .post_content .maker_wrap ul {
	font-size: 16px;
	padding: 7px 20px 18px 34px;
	list-style: disc;
	margin: 0;
}

body .post_content .maker_wrap a {
	color: #222;
	display: flex;
	flex-direction: column;
	align-items: center;

}

/*.selection4_wrap li{
	transition: all 0.3s ease-out;
}*/

.maker_wrap:hover {
	border: #067E8E solid 3px;
}

.post_content .maker_wrap h4 {
	background: #067E8E;
	padding: 20px 5px;
	box-sizing: border-box;
	margin: -12px 0 5px 0;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.maker_wrap h4 span {
	font-weight: 600;
	font-size: 22px;
}

.transceiver_usage {
	background: #DCEDEF;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding: 5em 0 8em 0;
}

.transceiver_usage_wrap {
	max-width: 1200px;
	margin: 40px auto 80px;
	padding: 0 20px;
}

.transceiver_usage_wrap h3 {
	position: relative;
	top: 10px;
}

.transceiver_usage_wrap h3 span {
	background: #067E8E;
	border: #fff solid 6px;
	padding: 14px 20px;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
}

.usage_wrap {
	position: relative;
	z-index: 99;
	display: block;
	width: 60%;
	padding: 52px 0 0 0;
}

.usage_wrap::before {
	content: '';
	position: absolute;
	width: 540px;
	height: 540px;
	background: rgb(255 255 255 / 0.8);
	clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
	transform: rotate(15deg);
	top: 0;
	z-index: -99;
}

.usage_wrap:first-of-type {
	margin: 30px auto 0 0;
}

.usage_wrap:nth-of-type(3) {
	margin: -80px auto 0 0;
}

.usage_wrap:nth-of-type(2) {
	margin: -80px 0 0 auto;
}

.usage_wrap:last-of-type {
	margin: 0 0 0 auto;
}

.usage_wrap:nth-of-type(2) h3 {
	top: 20px;
	left: 40px;
}

.usage_wrap:last-of-type h3 {
	top: -20px;
	left: 40px;
}

.transceiver_recommend_inner {
	display: flex;
	justify-content: space-between;
	height: 250px;
	margin: 40px 0 60px;
}

.transceiver_recommend_inner a {
	width: 24%;
	display: block;
	min-height: 236px;
	box-sizing: border-box;
	transition: all 0.2s ease-out;
}

.transceiver_recommend_inner a:hover {
	transform: translateY(3px);
}


.transceiver_recommend_inner a:not(:last-child) {
	margin: 0 1% 40px 0;
}

.transceiver_recommend {
	padding: 5em 0 10px 0;
}

.recommend-industry {
	border: #067E8E solid 6px;
	background: #DCEDEF;
	position: relative;
}

.recommend-industry::after {
	content: '';
	position: absolute;
	border: #067E8E solid 2px;
	width: 90%;
	height: 90%;
	top: 5%;
	left: 5%;
}

.post_content .recommend-industry h3 {
	text-align: center;
	font-weight: 800;
	font-size: 24px;
	margin: 16px 0 0 0;
}

.recommend-industry span {
	display: inline-block;
	background: #067E8E;
	border-radius: 50vh;
	color: #fff;
	margin: 2px 2px 10px 0;
	width: 80px;
	height: 80px;
	font-size: 50px;
	text-align: center;
	line-height: 80px;
}

.post_content .recommend-industry p {
	transform: rotate(-8deg);
	font-weight: 800;
	text-align: right;
	font-size: 20px;
	margin: 20px 10px 0 auto;
	background: linear-gradient(transparent 50%, #fff 10%);
	display: inline-block;
	position: absolute;
	right: 0;
	top: 60%;
}

.recommend-industry .fa-play {
	padding-left: 10px;
}

.recommend-rental {
	background: url(/wp-content/uploads/2025/05/recommend-rental.jpg) no-repeat left top;
	padding: 14px 1.4%;
	background-size: contain;
	position: relative;
}

.recommend-rental::before {
	content: '';
	position: absolute;
	background: rgb(44 143 181/0.6);
	width: 90%;
	height: 90%;
	top: 5%;
	left: 0;
}

.post_content .recommend-rental h3 {
	color: #fff;
	font-size: 60px;
	font-weight: 800;
	text-shadow: #04579b 1px 1px 2px;
	margin: 0;
	line-height: 1em;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.recommend-rental p {
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	text-shadow: #04579b 1px 1px 2px;
	line-height: 1.8em;
	position: relative;
	z-index: 1;
}

.recommend-case {
	background: url(/wp-content/uploads/2025/05/recommend-case.jpg) no-repeat left top;
	padding: 14px 20px;
	background-size: contain;
}

.recommend-case h3 {
	padding: 10px 20px 0 0;
	width: 15ch;
}

.recommend-case h3 span {
	display: inline-block;
	background: #fff;
	width: 76px;
	height: 76px;
	line-height: 80px;
	text-align: center;
	color: #222;
	border: #B51919 solid 4px;
	font-weight: 800;
	font-size: 72px;
}

.recommend-case p {
	color: #B51919;
	font-weight: 800;
	line-height: 1em;
	font-size: 24px;
	text-shadow: #fff 1px 0 10px;
	transform: translate(180px, -34px);
}

.recommend-contact {
	border: #f2e820 solid 9px;
	position: relative;
	display: inline-block;
	width: 200px;
	height: 200px;
	padding: 1.2em;
	color: #000;
	text-decoration: none;
	z-index: 0;
}

.recommend-contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f2e820;
	border: 4px solid #f2e820;
	border-bottom-left-radius: 100% 100%;
	border-bottom-right-radius: 100% 100%;
	z-index: -1;
}

.post_content .recommend-contact h3 {
	font-size: 42px;
	line-height: 1.3em;
	font-weight: 800;
	color: #067E8E;
	text-shadow: 3px 3px 0 #fff;
	text-align: center;
	padding: 0 0 0 0;
}

.recommend-contact div {
	position: relative;
}

.post_content .recommend-contact p {
	font-weight: 800;
	font-size: 20px;
	position: absolute;
	right: 0;
	top: 0;
}

.recommend-contact div::before {
	content: "";
	display: block;
	width: 95px;
	height: 70px;
	background-image: url('/wp-content/uploads/2025/05/mail.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	z-index: -1;
	bottom: -55px;
}



/*デジタル簡易無線とは？ 
--------------------------------------------------------------*/
body.postid-40838 {
	font-weight: 500;
}

body.postid-40838.single-post #main_col {
	display: block;
	margin-top: 0;
}

#key_visual_wrap.digital-cr {
	background: url(/wp-content/uploads/2025/09/top_img.jpg) no-repeat center 50%;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	min-height: 15vh;
	height: 180px;
}

#key_visual_wrap.digital-cr h1 {
	padding: 0 2%;
	color: #fff;
	text-align: center;
	font-size: clamp(20px, 5vw, 42px);
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
	text-shadow: #003d46 0 0 6px, #111 0 0 2px;
	line-height: 1.3em;
}

.lead.digital-cr blockquote {
	font-size: 18px;
	position: relative;
	padding: 14px 22px 8px;
	margin: 0 10px;
}

.lead.digital-cr blockquote:first-child {
	margin: 30px 10px 24px;
}

.lead.digital-cr blockquote::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.2em;
	height: 1.2em;
	border-top: 3px solid #067E8E;
	border-left: 3px solid #067E8E;
	margin: 0;
}

.lead.digital-cr blockquote::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 1.2em;
	height: 1.2em;
	border-bottom: 3px solid #067E8E;
	border-right: 3px solid #067E8E;
	margin: 0;
}

.lead #sec2.digital-cr .merit-block:first-of-type {
	margin-top: 2em;
}

#sec2.digital-cr .merit-block .number {
	font-size: 100px;
	font-weight: 800;
	color: rgba(75, 157, 163, 0.6);
	margin-right: 3%;
	line-height: 1em;
}

#sec2.digital-cr .merit-block .number+div {
	margin-top: 10px;
}

#sec2.digital-cr .merit-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 0 28px 0;
	padding-bottom: 20px;
}

#sec2.digital-cr .merit-block>div {
	display: flex;
	width: 100%;
}

#sec2.digital-cr .merit-block:first-of-type>div {
	margin: 10px 0;
}


#sec2.digital-cr .merit-block:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

#sec2.digital-cr .merit-block img {
	margin: 10px 20px 0;
}

#sec2.digital-cr h3 {
	font-size: 30px;
	font-weight: 800;
	color: #067E8E;
	padding-top: 0;
}

#sec2.digital-cr .merit-block_list1 {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 16px 0 6px 0;
}

#sec2.digital-cr .merit-block_list1 li {
	/* width: 45%; */
	flex: 1 1 calc(44% - 10px);
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.post_content #sec2.digital-cr .merit-block_list2 {
	margin-left: 2em;
}

#sec2.digital-cr .merit-block_list2 li {
	list-style: disc;
}

#sec3.digital-cr h3 {
	font-size: 30px;
	font-weight: 800;
	color: #067E8E;
	padding: 0 0 0 46px;
	margin: 0 0 10px 0;
	position: relative;
}

#sec3.digital-cr h3:first-of-type {
	margin: 20px 0 10px 0;
}

#sec3.digital-cr h3::before {
	content: '';
	background: url('/wp-content/uploads/2025/07/triangle.png') no-repeat center / contain;
	display: inline-block;
	width: 36px;
	height: 36px;
	position: absolute;
	left: 0;
}

#sec3.digital-cr .demerit-block {
	margin: 0 4%;
}

.post_content #sec3.digital-cr .demerit-block ul {
	list-style: disc;
	margin: 0 0 0 4em;
}

.post_content #sec3.digital-cr .demerit-block .spaced-top {
	margin-top: 6px;
}

#sec3.digital-cr .demerit-block ul .note span {
	font-size: 115%;
	font-weight: 700;
}

#sec3.digital-cr .demerit-block li {
	margin: 5px 0 0 0;
}

#sec3.digital-cr .demerit-block .li-spaced {
	margin-top: 16px;
}

#sec4.digital-cr h3 img {
	vertical-align: middle;
}

#sec4.digital-cr table {
	width: 96%;
	margin: 20px auto 10px;
}

#sec4.digital-cr .note_block {
	margin: 0 0 0 6%;
}

.digital-cr .situation-list>div {
	display: flex;
	align-items: stretch;
	margin: 2em 0;
}

.digital-cr .situation-list dt {
	flex: 0 0 46%;
	padding: 22px 20px 18px 80px;
	margin: 0 58px 0 0;
	/* background: #DCEDEF; */
	border: #4b9da3 dotted 4px;
	box-sizing: border-box;
	border-radius: 10px;
	position: relative;
	font-size: 19px;
	display: flex;
	align-items: center;
}

.digital-cr .situation-list dt::before {
	content: "\f007";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 36px;
	color: #067E8E;
}

.digital-cr .situation-list dd {
	position: relative;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.digital-cr .situation-list dd::before {
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #067E8E;
	font-size: 36px;
	position: absolute;
	left: -40px;
	top: 20%;
}

.digital-cr .situation-list dd strong {
	font-size: 24px;
	font-weight: 600;
	background: #067E8E;
	color: #fff;
	padding: 6px 16px;
	border-radius: 3px;
}

.digital-cr .situation-list dd p {
	margin-top: 12px;
	font-size: 16px;
}

#sec4.digital-cr h4 {
	font-weight: 700;
	font-size: 19px;
}

#sec4.digital-cr h4 i {
	margin-right: 10px;
}

#sec4.digital-cr .lp_contact2 {
	margin-bottom: 3em;
}

#sec4.digital-cr li {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}


.digital-cr .radio-box {
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 10px 20px;
	width: 16em;
	text-align: center;
}

.post_content .digital-cr .possible-list {
	margin: 0;
}

.post_content .digital-cr .possible-list li:first-child {
	position: relative;
}

#sec4.digital-cr li .note_mark {
	position: absolute;
	font-size: 85%;
	bottom: 0;
	left: 56px;
}

.digital-cr .possible-list li::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 6px solid #236297;
	border-radius: 50%;
	margin: 0 20px;
	bottom: 0;
	position: relative;
}

.digital-cr .possible-list .connector {
	width: 38px;
	border-top: 4px solid #236297;
	margin: 0 10px;
}

.digital-cr .impossible-list .connector {
	width: 38px;
	border-top: 4px dashed #8b8b8b;
	margin: 0 10px;
}

.digital-cr .impossible-list li::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f00d";
	margin: 0 20px;
	font-size: 48px;
	color: #8b8b8b;
	line-height: 1em;
}

.digital-cr .impossible-list li strong {
	font-size: 115%;
}

.digital-cr .possible-list li .bold,
.digital-cr .impossible-list li .bold {
	font-weight: 700;
	font-size: 115%;
}

.ptt_transceiver_link {
	min-height: 120px;
	background: repeating-conic-gradient(rgba(242, 232, 32, 1) 0deg 5deg, rgba(242, 232, 32, 0.4) 5deg 10deg);
	box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 25%);
	transition: all 0.3s ease-out;
}

.ptt_transceiver_link:hover {
	transform: translateY(2px);
	filter: brightness(0.9);
}

.ptt_transceiver_link a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 5%;
}

body .ptt_transceiver_link p {
	font-size: 25px;
	font-weight: 600;
	margin: 5px 0 0 0;
}

.ptt_transceiver_link img {
	margin: 0 0 0 20px;
}

#sec5.digital-cr h3 {
	font-weight: 700;
	margin-bottom: 0;
}

#sec5.digital-cr h3 span {
	font-size: 26px;
}

#sec5.digital-cr h4 {
	padding: 2px 0 0 0;
}

#sec5.digital-cr h4 a {
	font-size: 21px;
	font-weight: 600;
}

#sec5.digital-cr .model_wrap {
	padding: 10px 26px 26px 0px;
	position: relative;
	display: flex;
	align-items: center;
	/* margin: 2.4em 0 3em; */
	margin: 1.6em 0 6px 0;
	border: #ccc solid 2px;
	border-radius: 10px;
}

#sec5.digital-cr .model_wrap img {
	width: 190px;
}

#sec5.digital-cr .model_inner {
	flex-grow: 1;
}

#sec5.digital-cr .model_inner ul {
	margin: 0 0 0 20px;
	width: 65%;
}

#sec5.digital-cr .model_inner li {
	list-style: disc;
}

#sec5.digital-cr .model_detail {
	display: flex;
	align-items: flex-end;
	border-top: #067E8E solid 2px;
	padding: 18px 0 0 0;
}

#sec5.digital-cr .link_wrap {
	display: flex;
	justify-content: flex-end;
	gap: 7px;
	width: 18em;
	margin-left: 12px;
}

#sec5.digital-cr .link_wrap a {
	height: 3.6em;
	display: flex;
	align-items: center;
	padding: 0 12px;
	font-weight: 400;
	transition: all 0.3s ease-out;
	line-height: 1.2em;
	text-align: center;
	box-sizing: border-box;
}

#sec5.digital-cr .link_wrap .detail {
	background: #fff;
	color: #067E8E;
	border: #067E8E solid 2px;
}

#sec5.digital-cr .link_wrap .detail:hover {
	background: #DCEDEF;
}

#sec5.digital-cr .link_wrap .trial {
	background: #067E8E;
	color: #fff;
}

#sec5.digital-cr .model_inner .trial:hover {
	background: #007180;
}

#sec5.digital-cr .lp_contact2 {
	margin: 2px 0 28px 0;
}

#sec5.digital-cr .link_button {
	margin: 2px 0 28px 0;
}

#sec5.digital-cr .case_studies {
	min-width: 300px;
	display: inline-block;
	min-height: 100px;
	box-sizing: border-box;
	transition: all 0.2s ease-out;
	background: url(/wp-content/uploads/2025/12/back_casestudies.jpg) no-repeat left top;
	padding: 20px 16px;
	background-size: contain;
}

#sec5.digital-cr .case_studies:hover {
	transform: translateY(2px);
}

#sec5.digital-cr .case_studies span {
	display: inline-block;
	background: #fff;
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	color: #222;
	border: #B51919 solid 4px;
	font-weight: 800;
	font-size: 48px;
}

#sec5.digital-cr .case_studies span:not(:first-child) {
	border-left: none;
}

.banner.digital-cr .ptt_transceiver_link {
	margin-top: 2em;
}

/*従来のコラムページのフォントサイズ
--------------------------------------------------------------*/

body.postid-1474 p,
body.postid-1410 p,
body.postid-1614 p,
body.postid-5266 p,
body.postid-23352 p {
	font-size: 16x;
}

body.postid-1474 li,
body.postid-1410 li,
body.postid-1614 li,
body.postid-5266 li,
body.postid-23352 li {
	font-size: 16x;
}


/*フォーム
--------------------------------------------------------------*/
.post_content .wpcf7 {
	border: none;
	background: #fff;
	padding: 1em 0;
}

.post_content .wpcf7 p {
	font-size: 16px;
	margin-bottom: 1em;
}

.post_content .wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
	font-size: 16px;
}

.post_content .wpcf7 select {
	max-width: 100%;
}

.post_content .wpcf7 textarea {
	height: 100px;
}

.post_content .wpcf7 input[type="file"] {
	border: none;
	padding: 0;
}

.post_content .wpcf7 .wpcf7-not-valid {
	background: rgb(255, 243, 245);
}

body .form-group p {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 1em;
}

.wpcf7 .span {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	background: #d32626;
	padding: 0 6px 0 5px;
	margin: 0 10px 0 0;
	line-height: 18px;
}

.form-group>p>label {
	width: 23%;
	font-weight: 600;
}

.consent_wrap {
	margin-top: 2.6em;
}

.consent_wrap .wpcf7-list-item {
	margin: 5em 0 0 0;
}

.consent_wrap a {
	color: #067E8E;
	font-weight: 600;
	text-decoration: underline;
}

.consent_wrap a:hover {
	color: #007180;
}

.consent_wrap input[type=checkbox] {
	transform: scale(1.5);
	margin-right: 14px;
}

.consent_wrap .wpcf7-list-item-label {
	font-size: 15px;
}

.post_content .wpcf7 input.wpcf7-submit {
	width: 400px;
	font-size: 16px;
	background: #f2e820;
	color: #333;
	font-weight: 600;
	margin: 30px auto 0 0;
	box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 25%);
	transition: all 0.3s ease-out;
}

.post_content .wpcf7 input.wpcf7-submit:hover {
	background: #e0d504;
}

.post_content .wpcf7 .wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: auto;
	background: #ddd;
}

.post_content .wpcf7 .wpcf7-submit:disabled:hover {
	opacity: 0.6;
	cursor: auto;
	background: #ddd;
}

.form-bg {
	background-color: rgb(255, 243, 245);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	box-shadow: none;
	border: #555 solid 2.4px;
}




/*--------------------------------------------------------------
スマートフォン
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {

	/* 共通 */
	body .post_content p,
	body .post_content li,
	body .post_content dt,
	body .post_content dd {
		font-size: 16px;
	}

	body .post_content p {
		margin: 0 0 6px 0;
	}

	body .post_content .lp_h2 {
		font-size: 26px;
	}

	.pc_hid {
		display: block;
	}

	.sp_hid {
		display: none;
	}

	/* お問い合わせボタン */
	.lp_contact {
		flex-wrap: wrap;
		padding: 18px;
		position: relative;
		width: 100%;
		box-sizing: border-box;
	}

	.lp_contact::after {
		content: '';
		width: 100px;
		height: 130px;
		background: url(/wp-content/uploads/2025/05/lp_contact.png) no-repeat center top;
		background-size: contain;
		position: absolute;
		right: 10px;
		bottom: -40px;
	}

	.post_content .lp_contact p {
		margin-right: 0;
		font-size: 14px;
	}

	.lp_contact span {
		font-size: 20px;
	}

	.lp_contact img {
		transform: translateY(-50px);
	}

	.lp_contact2 {
		padding: 12px 0 0 10px;
		justify-content: space-around;
	}

	.post_content .lp_contact2 p {
		font-size: 18px;
		padding: 12px;
	}

	.lp_contact2 img {
		width: 24%;
	}

	.post_content .link_button {
		margin: 0;
		font-size: 16px;
	}

	.post_content .link_button p {
		margin: 0;
	}


	/* FAQ */

	.post_content .accordion-header {
		height: auto;
		display: flex;
		align-items: center;
		padding: 1em 3.4em 1em 1em;
		line-height: 1.6em;
		margin: 1em -10px 0;
	}

	.accordion-header span {
		margin: 0 17px 0 0;
		font-size: 170%;
	}

	.accordion-header::after {
		font-size: 30px;
	}

	.accordion-content {
		display: block;
		margin: 0;
	}

	.accordion-content .answer {
		margin: 0;
	}





	/*トランシーバーLP
--------------------------------------------------------------*/

	/* TOP */

	.postid-35869 #key_visual_wrap {
		height: 220px;
	}

	.postid-35869 h1#post_title {
		width: 90%;
		font-size: 24px;
		top: 28px;
		padding: 0 20px;
	}

	.postid-35869 .top-text {
		width: 90%;
		height: 140px;
		margin: 0 auto;
		padding: 0 20px;
		transform: none;
	}

	.postid-35869 .top-text::after {
		width: 244px;
		height: 171px;
		left: -5px;
		bottom: -30px;
	}

	.feature-keywords {
		flex-wrap: wrap;
	}

	.feature-keywords li {
		font-size: 17px;
		padding: 6px 8px;
		width: 4em;
		text-align: center;
		margin: 0 5px 5px 0;
	}

	.feature-keywords li:not(:last-child) {
		margin-right: 5px;
	}


	/* 目次 */
	.post_content .toc {
		padding: 10px 8px 22px 14px;
		width: 90%;
	}

	.post_content .toc ul ul {
		padding-left: 2.3em;
	}

	.toc .fa-circle-check {
		padding-right: 8px;
	}

	.transceiver_toc .types,
	.transceiver_toc .selection {
		flex-wrap: wrap;
	}

	.post_content .toc h2 {
		margin-left: 0.4em;
		font-size: 16px;
	}


	.post_content .toc ul {
		padding-left: 0.8em;
	}

	.post_content .toc h2+ul>li {
		font-size: 15px;
	}

	.post_content .toc ul ul li {
		font-size: 13px;
	}

	/* トランシーバー・無線機とは */


	.post_content .transceiver_intro .lp_h2 {
		padding-right: 20px;
	}

	.media-text {
		flex-direction: column;
	}

	.transceiver_intro .about_list {
		margin: -2em 0 4em;
	}

	.about_list li {
		flex-direction: column;
		margin: -1em 0 0 0;
		padding-bottom: 1em;
	}

	.about_list div {
		width: 100%;
		margin: 0;
	}

	.post_content .about_list .number {
		margin: 0 0 10px 0;
		font-size: 48px;
		transform: translateY(66px);
	}

	.post_content .about_list h3 {
		padding-left: 76px;
		font-size: 24px;
		margin: 0 0 26px;
	}

	.post_content .about_list h3 span {
		margin-left: 0;
		font-size: 22px;
	}

	.about_list li img {
		width: 65%;
		margin: 0 auto 20px;
	}

	.out-of-coverage {
		flex-direction: column;
		padding: 12px 14px;
	}

	.out-of-coverage ul {
		margin: 0;
		justify-content: space-evenly;
		flex-basis: auto;
		padding: 0 2em;
	}

	.out-of-coverage li:not(:last-of-type) {
		margin-right: 0;
	}

	/* 種類と特徴 */

	.transceiver_types {
		padding: 2em 0 10px 0;
	}

	.types_inner {
		padding: 1em;
	}

	.types_inner dl {
		flex-direction: column;
	}

	.types_inner dl+p {
		font-size: 13px;
	}

	.types_inner dt {
		padding-bottom: 10px;
		font-size: 17px;
	}

	.types_inner dd div {
		flex-wrap: wrap;
	}

	.types_inner dd div img {
		width: 46%;
		margin: 10px 2%;
	}

	.types_inner.other>div {
		flex-direction: column;
		margin-bottom: 1em;
	}

	.types_inner.other>div>div {
		width: 100%;
	}

	.types_inner h4 {
		font-size: 20px;
	}

	.types_inner.other>span {
		font-size: 18px;
	}

	.types_inner.other img {
		width: 90%;
		margin: 0 auto 40px auto;
	}

	.selection2_wrap li {
		padding: 18px 12px 0;
		font-size: 15px;
	}

	.types_inner dd p {
		font-size: 13px;
	}

	.post_content a.link-digital-cr {
		width: 100%;
		box-sizing: border-box;
		font-size: 18px;
	}

	a.link-digital-cr img {
		margin-left: 24px;
		width: 46px;
	}

	.post_content .selection2_wrap li p {
		font-size: 15px;
	}

	.selection2_wrap.device li:first-child img {
		width: 220px;
	}

	.selection2_wrap.device li:last-child img {
		width: 110px;
	}

	.selection4_wrap li img {
		width: 75%;
	}

	.selection4_wrap li h4 {
		padding: 10px 0;
		font-size: 16px;
	}

	.selection4_wrap li h4 span {
		font-size: 18px;
	}

	.selection4_wrap p {
		font-size: 15px;
		padding: 6px 16px 4px 16px;
	}

	/* 選び方 */

	.transceiver_selection h3 {
		font-size: 20px;
	}

	.transceiver_selection h4.range {
		font-size: 17px;
	}


	.transceiver_selection h4 small {
		font-size: 15px;
	}

	.transceiver_selection .range_wrap {
		/*position: relative;
    	overflow-x: scroll;*/
		margin-bottom: 14px;
	}

	.transceiver_selection .range {
		width: 280px;
		justify-content: left;
	}

	.transceiver_selection .range_box h5 small {
		font-size: 13px;
	}

	.transceiver_selection .range_box h6 {
		font-size: 13px
	}

	.transceiver_selection .drc h5 {
		left: 50%;
		min-width: 100%;
	}

	.transceiver_selection .lan h5 {
		left: 50%;
		min-width: 215%;
	}

	.selection2_wrap {
		flex-direction: column;
	}

	.transceiver_selection h4 {
		font-size: 19px;
	}

	.selection2_wrap h5 {
		font-size: 18px;
	}

	.selection2_wrap.device li,
	.selection2_wrap.option li,
	.selection2_wrap.durability li {
		width: 100%;
		box-sizing: border-box;
		margin: 0 0 20px;
	}

	.post_content ul.extra_wrap {
		flex-direction: column;
		margin-bottom: 0;
	}

	.extra_inner {
		margin: 0 0 2em 0;
		font-size: 15px;
		width: 100%;
		box-sizing: border-box;
	}

	.extra_inner .fa-right-long {
		font-size: 12px;
	}

	.extra_inner img {
		width: 75px;
		bottom: 2.6em;
	}

	.extra_wrap .bubble {
		margin: 0 0 5px 0;
	}

	.extra_inner li {
		font-size: 14px;
	}

	.extra_inner li:last-of-type {
		font-size: 13px;
	}

	.post_content .selection4_wrap {
		flex-direction: column;
		margin-left: 0;
	}

	.maker_wrap {
		width: 100%;
		box-sizing: border-box;
	}

	.maker_wrap:nth-child(odd),
	.maker_wrap:nth-child(even) {
		margin: 0 0 10px 0;
	}

	.maker_wrap ul {
		font-size: 14px;
		padding: 7px 20px 18px 34px;
	}

	/* 使い方 */
	.usage_wrap:first-of-type,
	.usage_wrap:nth-of-type(2),
	.usage_wrap:nth-of-type(3),
	.usage_wrap:last-of-type {
		margin: 0;
	}

	.usage_wrap {
		width: 100%;
		box-sizing: border-box;
	}


	/* 使い方 */
	.transceiver_usage {
		padding: 3em 0 3em 0;
	}

	.usage_wrap::before {
		width: 360px;
		height: 360px;
	}

	.transceiver_usage_wrap h3 {
		top: -18px;
	}

	.transceiver_usage_wrap h3 span {
		font-size: 18px;
		padding: 9px 13px;
	}

	.usage_wrap:first-of-type,
	.usage_wrap:nth-of-type(2),
	.usage_wrap:nth-of-type(3),
	.usage_wrap:last-of-type {
		margin: 40px 0 0 0;
	}

	.usage_wrap:nth-of-type(2) h3 {
		top: -20px;
		left: 0;
	}

	.usage_wrap:last-of-type h3 {
		left: 0;
	}


	/* おすすめの機種・サービス紹介 */
	.transceiver_recommend_inner {
		flex-direction: column;
		height: auto;
	}

	.transceiver_recommend_inner a {
		width: 100%;
		min-height: 0;
		height: 180px;
		padding: 1.2em 1.5em;
	}

	.transceiver_recommend_inner a:not(:last-child) {
		margin: 0 auto 20px auto;
	}

	.recommend-rental,
	.recommend-case {
		background-size: cover;
	}

	.recommend-industry h3 {
		margin: 0;
		padding-top: 10px;
		line-height: 1em;
	}

	.recommend-industry p {
		right: 20px;
		top: 72%;
	}

	.recommend-industry span {
		width: 60px;
		height: 60px;
		font-size: 40px;
		line-height: 60px;
	}

	.recommend-rental h3 {
		font-size: 60px;
		padding-top: 14px;
	}

	.recommend-rental p {
		font-size: 19px;
		transform: translate(180px, -30px);
	}

	.recommend-case h3 {
		padding: 0;
	}

	.recommend-case h3 span {
		width: 65px;
		height: 65px;
		line-height: 65px;
		font-size: 60px;
	}

	.post_content .recommend-case p {
		font-size: 20px;
		transform: translate(240px, -26px);
	}

	.recommend-contact p {
		top: -14px;
		font-size: 18px;
	}

	.recommend-contact div::before {
		bottom: -20px;
	}

	/*デジタル簡易無線とは
--------------------------------------------------------------*/

	#key_visual_wrap.digital-cr {
		height: 120px;
		background: url(/wp-content/uploads/2025/09/top_img.jpg) no-repeat 72% 30% / cover;
	}

	#key_visual_wrap.digital-cr h1 {
		font-size: 24px;
		padding: 0 20px;
	}

	.lead.digital-cr blockquote {
		font-size: 16px;
		margin: 0;
		padding: 6px 12px;
		line-height: 1.7;
	}

	.lead.digital-cr blockquote:first-child {
		margin: 30px 0 24px;
	}

	.lead.digital-cr blockquote::before {
		left: -6px;
	}

	.lead.digital-cr blockquote::after {
		right: -6px;
	}

	#sec2.digital-cr .merit-block>div {
		flex-direction: column;
	}

	#sec2.digital-cr .merit-block {
		flex-direction: column;
	}

	.post_content #sec2.digital-cr .merit-block .number {
		font-size: 60px;
		margin: 0 0 10px 0;
	}

	#sec2.digital-cr h3 {
		font-size: 22px;
	}

	#sec2.digital-cr .merit-block_list1 li {
		width: 100%;
		padding: 20px 18px 10px;
		justify-content: flex-start;
	}

	#sec3.digital-cr .demerit-block {
		margin: 0;
	}

	#sec2.digital-cr .merit-block img {
		width: 80%;
		height: auto;
		aspect-ratio: 260 / 120;
		object-fit: contain;
		display: block;
		margin: 0 auto;
	}

	.post_content #sec3.digital-cr .demerit-block ul {
		margin: 0 0 0 2em;
	}

	#sec3.digital-cr h3 {
		font-size: 19px;
		padding: 0 0 0 28px;
	}

	#sec3.digital-cr h3::before {
		width: 23px;
		height: 23px;
	}

	#sec4.digital-cr h3 {
		font-size: 22px;
	}


	#sec4.digital-cr .note_block {
		margin: 0;
	}

	.digital-cr .situation-list>div {
		flex-direction: column;
		margin: 2em 0 3em;
	}

	.digital-cr .situation-list dt {
		margin: 0 0 26px 0;
		font-size: 17px;
		padding: 14px 18px 12px 68px;
	}

	.digital-cr .situation-list dd::before {
		transform: rotate(90deg);
		top: -35px;
		left: 50%;
		right: 50%;
	}

	.digital-cr .situation-list dd p {
		margin-top: 8px;
		font-size: 14px;
	}

	.digital-cr .situation-list dt::before {
		left: 18px;
		font-size: 32px;
	}

	.digital-cr .situation-list dd {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.digital-cr .situation-list dd strong {
		display: flex;
		justify-content: center;
		width: 65%;
		padding: 10px 16px;
	}

	.digital-cr .possible-list,
	.digital-cr .impossible-list {
		flex-direction: column;
	}

	.digital-cr .possible-list li,
	.digital-cr .impossible-list li {
		padding: 12px 0 0;
		margin: 0 0 16px 0;
	}

	.digital-cr .possible-list li::before {
		margin: 4px 8px 0 0;
		min-width: 20px;
		height: 20px;
	}

	#sec4.digital-cr li .note_mark {
		font-size: 75%;
		left: 24px;
	}

	.digital-cr .impossible-list li::before {
		font-size: 40px;
		margin: 0 8px 0 0;
		transform: none;
	}

	.digital-cr .possible-list .connector,
	.digital-cr .impossible-list .connector {
		width: 24px;
		margin: 0 5px;
	}

	.digital-cr .radio-box {
		padding: 10px 6px;
		font-size: 14px;
		margin: 0;
	}

	.digital-cr .impossible-list i {
		font-size: 36px;
	}

	.digital-cr .impossible-list {
		width: 100%;
		margin-left: 0;
	}

	#sec5.digital-cr .model_wrap {
		flex-direction: column;
		padding: 30px 20px 16px;
	}

	#sec5.digital-cr h3 {
		font-size: 16px;
		padding: 10px 6px 0;
	}

	#sec5.digital-cr h3 span {
		font-size: 22px;
	}

	#sec5.digital-cr h4 a {
		font-size: 18px;
		padding: 0 6px;
	}

	#sec5.digital-cr .model_inner ul {
		width: 94%;
	}

	#sec5.digital-cr .model_detail {
		flex-direction: column;
		align-items: center;
	}

	#sec5.digital-cr .link_wrap {
		margin: 20px auto 0;
		justify-content: center;
		width: 100%;
	}

	#sec5.digital-cr .link_wrap a {
		font-size: 16px;
	}

	#sec5.digital-cr .link_wrap .detail {
		margin: 0 0 10px 0;
	}






	.ptt_transceiver_link p {
		font-size: 19px;
		line-height: 1.5;
	}

	.ptt_transceiver_link img {
		width: 18%;
	}

	/*従来のコラムページのフォントサイズ
--------------------------------------------------------------*/

	body.postid-1474 p,
	body.postid-1410 p,
	body.postid-1614 p,
	body.postid-5266 p,
	body.postid-23352 p {
		font-size: 14px;
	}

	body.postid-1474 li,
	body.postid-1410 li,
	body.postid-1614 li,
	body.postid-5266 li,
	body.postid-23352 li {
		font-size: 14px;
	}

	/* 
お問い合わせフォーム
 */
	.post_content .wpcf7 p {
		font-size: 14px;
	}

	.post_content .wpcf7 select {
		max-width: 91%;
		font-size: 14px;
	}

	.post_content .form-group p {
		flex-wrap: wrap;
	}

	.post_content .form-group>p>label {
		width: 100%;
		margin-bottom: 5px;
		font-size: 16px;
	}

	.post_content .wpcf7 form {
		margin: 1.5em 0;
	}

	.post_content .wpcf7 input.wpcf7-submit {
		width: 300px;
	}

	#consent+span.wpcf7-list-item-label {
		font-size: 12px;
	}

	.wpcf7 input.wpcf7-submit {
		margin: 30px auto 0 auto;
	}

	.post_content .wpcf7 input.wpcf7-submit {
		width: 300px;
	}

}

/*タブレット
--------------------------------------------------------------*/
@media all and (min-width: 768px) and (max-width: 1024px) {

	/* 共通 */
	.post_content p,
	.post_content dd {
		font-size: 16px;
	}

	.post_content .lp_h2 {
		font-size: 30px;
	}

	/* 目次 */
	.post_content .toc {
		padding: 1em 1em 2em;
		width: 90%;
	}

	.post_content .toc h2 {
		margin-left: 0.6em;
	}

	.post_content .toc ul {
		padding-left: 2.6em;
	}


	/* トランシーバーLP */
	/* TOP */
	.postid-35869 #key_visual_wrap {
		height: 280px;
	}

	.postid-35869 h1#post_title {
		font-size: 34px;
		top: 32px;
		padding-left: 10px;
	}

	.postid-35869 .top-text {
		transform: translateY(-30px);
		justify-content: space-between;
		margin: 20px auto 0 auto;
	}


	/* トランシーバー・無線機とは？ */
	.transceiver_intro .lp_h2 span {
		font-size: 24px;
		margin-left: 50px;
	}

	.media-text {
		align-items: center;
	}

	.transceiver_intro .media-text img {
		width: 26%;
	}

	.about_list .number {
		font-size: 58px;
	}

	.about_list li img {
		width: 18%;
		margin: 36px 0 0 10px;
	}

	.about_list li {
		padding-bottom: 1.4em;
	}

	.about_list div {
		width: 68%;
	}

	.out-of-coverage {
		padding: 0 1.6em 0;
		flex-direction: column;
	}

	.out-of-coverage ul {
		flex-basis: auto;
	}

	/* 種類と特長 */

	.transceiver_types {
		padding: 2em 0 2px 0;
	}

	.types_inner {
		padding: 1em 2em;
	}


	/* 選び方 */

	.transceiver_selection h4.range {
		font-size: 18px;
	}

	.transceiver_selection h4 small {
		font-size: 16px;
	}

	.transceiver_selection h4 img {
		width: 42px;
	}

	.transceiver_selection .range_box h6 {
		font-size: 12px;
		padding: 2px 2px 3px 2px;
	}

	.transceiver_selection .range_box {
		height: 290px;
		padding: 20px 10px;
	}

	.extra_wrap .bubble {
		font-size: 17px;
		min-height: 4.8em;
		margin: 0 0 3em 0;
	}

	.extra_inner img {
		width: 80px;
		bottom: 6.4em;
		left: 10px;
	}

	.extra_inner .bubble::after {
		left: 42%;
	}

	.selection2_wrap h5 {
		font-size: 20px;
	}

	.selection2_wrap.device,
	.selection2_wrap.option,
	.selection2_wrap.durability {
		flex-wrap: wrap;
	}

	.selection2_wrap.device li,
	.selection2_wrap.option li,
	.selection2_wrap.durability li {
		width: 42%;
		margin-bottom: 8px;
	}

	/* 使い方 */

	.transceiver_usage {
		padding: 2em 0 2px 0;
	}

	.usage_wrap:nth-of-type(2),
	.usage_wrap:nth-of-type(4) {
		margin: -20px 0 0 auto;
	}

	.usage_wrap:nth-of-type(3) {
		margin: -20px auto 0 0;
	}

	.transceiver_usage_wrap h3 {
		top: 0;
	}

	.usage_wrap:nth-of-type(2) h3 {
		left: 76px;
		top: 12px;
	}

	.usage_wrap:last-of-type h3 {
		left: 76px;
		top: -5px;
	}

	.usage_wrap::before {
		width: 400px;
		height: 400px;
	}

	/* おすすめの機種・サービス紹介 */

	.transceiver_recommend_inner {
		height: 180px;
	}

	.transceiver_recommend_inner a {
		min-height: 160px;
		padding: 10px 8px;
	}

	.post_content .recommend-industry h3 {
		font-size: 16px;
		margin: 0;
		padding-top: 10px;
	}

	.recommend-industry h3 span {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 35px;
	}

	.recommend-industry p {
		margin: 12px 8px 0 auto;
	}

	.post_content .recommend-rental h3 {
		font-size: 38px;
	}

	.recommend-case,
	.recommend-rental {
		background-size: cover;
	}

	.post_content .recommend-case h3 {
		padding: 10px 10px 0 0;
	}

	.recommend-case h3 span {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 46px;
	}

	.recommend-case p {
		transform: translate(115px, -34px);
	}

	.recommend-contact {
		max-height: 160px;
	}

	.recommend-contact {
		padding: 1em;
	}

	.post_content .recommend-contact h3 {
		font-size: 26px;
	}


	/*デジタル簡易無線とは
--------------------------------------------------------------*/

	#key_visual_wrap.digital-cr {
		background: url(/wp-content/uploads/2025/09/top_img.jpg) no-repeat 72% 30% / cover;
	}

	#sec2.digital-cr .merit-block_list1 li {
		width: 42%;
	}

	.digital-cr .situation-list li div {
		flex: 0 0 28em;
	}



}

@media all and (min-width: 1025px) and (max-width: 1365px) {

	/* トランシーバーLP */

	.postid-35869 #key_visual_wrap {
		height: 220px;
	}

	.postid-35869 .top-text {
		transform: translateY(-10px);
	}

	.transceiver_recommend_inner {
		height: 220px;
	}

	.recommend-rental,
	.recommend-case {
		background-size: cover;
	}

	.recommend-industry span {
		width: 70px;
		height: 70px;
		line-height: 70px;
	}

	.post_content .recommend-industry h3 {
		font-size: 16px;
	}

	.post_content .recommend-rental h3 {
		font-size: 50px;
	}

	.recommend-case p {
		transform: translate(150px, -10px);
	}

	.post_content .recommend-contact h3 {
		font-size: 36px;
	}
}

@media screen and (max-width: 365px) {
	.postid-35869 .top-text::after {
		bottom: -30px;
	}

	.feature-keywords li {
		font-size: 15px;
		padding: 6px;
	}

	.recommend-case h3 {
		padding: 0 80px 0 0;
	}

	.post_content .recommend-case p {
		transform: translate(160px, -30px);
	}



}