@charset "UTF-8";

/* --------------------------------------------------------
	2026.06
--------------------------------------------------------- */
sup,sub,span{
	color:inherit;
}

/*PC・SP*/
.only_pc{
	display:block;
}
.only_sp{
	display:none;
}
@media screen and (max-width: 480px) {
	.only_pc{
		display:none;
	}
	.only_sp{
		display:block;
	}
}

/*文字*/
.fc-red{
	color:#C03;
}
.fs-16{
	font-size:16px !important;
}

/*下線リンク*/
a.link_underline{
	text-decoration:underline;
}
a.link_underline:hover{
	text-decoration:none;
}

/*くの字*/
.link_arrow{
	display: inline-block;
	position: relative;
	top: -.1em;
	left: .3em;
	width: .5em;
	height: .5em;
	border-top: .13em solid #333;
	border-right: .13em solid #333;
	transform: rotate(45deg);
}

/*注釈などリスト*/
.list-notes{
	padding-left: 1.3em;
	text-indent: -1.3em;
	list-style-type: none;
	line-height:1.5;
}
.list-notes li{
	margin:0.5em 0;
}

/*中黒リスト*/
.list-disc{
	margin-left: 1.3em;
	padding: 0;
	list-style-type: disc;
	line-height:1.5;
}
.list-disc li{
	margin:0.5em 0;
}

/*メニュー画面画像*/
.menubtn_wrap{
	border: 1px solid #ddd;
	max-width: 400px;
	padding: 10px 3px;
	text-align: center;
	margin: 20px auto;
}
.menubtn_wrap img{
	display: block;
	width:100%;
}

/*ステップなど画像+タイトル*/
.step_ttl{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap:10px;
	margin:50px 0 20px;
}
.step_num{
	width:90px;
}
.step_num img{
	display:block;
	max-width:100%;
}
.step_txt{
	width:calc(100% - 90px - 10px);
	font-size:18px;
	font-weight:bold;
	line-height:1.4;
}

/*CTA PC時ボタン3個横並び*/
@media screen and (min-width: 769px) {
	.contact-info__item {
		width: auto;
	}
	.contact-info__item--buttons {
		width: auto;
	}
	.contact-info__item--buttons p:nth-of-type(even) {
		margin-right: 10px;
	}
}