@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.content_title{
  max-width:720px;
	margin:0 auto !important;
}

.future_title {
	counter-reset: heading-counter;
}

.future_title h3:not(.step-label) {
	position: relative;
	counter-increment: heading-counter;
}

.future_title h3:not(.step-label)::before {
	content: counter(heading-counter, decimal-leading-zero);
	display: block;
	font-style: italic;
	position: absolute;
	bottom: -20px;
	left: -10px;
	z-index: -1;
	line-height: 1;
	font-size: 6rem;
	color: #fff;
	opacity: 0.3; /* 背景番号なら推奨 */
}


.challenge .is-style-dent_box{
	border-radius:12px;
}

.future_title .is-style-dent_box{
	border-radius:12px;
}

/* フローティングバナー */
#footer-floating {
	visibility: hidden;
}

@media not all and (min-width: 960px) {
	[data-scrolled=true] #footer-floating {
	    opacity: 1; /* 不透明度 0～1で調整 */
    	-webkit-transform: translateY(0);
    	transform: translateY(0);
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: ; /* 背景色（必要に応じて変更） */
		z-index: 1000; /* 他の要素の上に表示 */
    	visibility: visible;
	}
	#footer-floating .swell-block-column:first-child .swell-block-button a {
		background-color: # !important; /* 左のカラム（青） */
		color: # !important; /* 文字色を白 */
	}
	#footer-floating .swell-block-column:last-child .swell-block-button a {
		background-color: # !important; /* 右のカラム（緑） */
		color: # !important; /* 文字色を白 */
	}
	/* アイコンの色も白に統一 */
	#footer-floating .swell-block-button a svg {
		fill: #fff !important;
	}
	#footer-floating .is-style-more_btn{
		padding:0;
	}
	/* 上に戻るボタンの下余白を調整 */
	.p-fixBtnWrap {
		bottom: 5em;
	}
	    .l-footer__inner {
        padding-bottom: 4em;
    }
}

/* 対象リンクのみ */

.arrow-link {
	padding-left: 70px;
	position: relative;
	color: #fff;
	text-decoration: none;
}

/* 共通 */
.arrow-link::before,
.arrow-link::after {
	content: "";
	position: absolute;
	bottom: 20%;
	left: 0;
	height: 1px;
	background-color: #fff;
	transform: translateY(-50%);
	transition: transform 0.3s ease, width 0.3s ease;
}

/* 横線 */
.arrow-link::before {
	width: 50px;
}

/* 矢印 */
.arrow-link::after {
	width: 14px;
	transform-origin: right center;
	transform: translate(36px, -50%) rotate(25deg);
}

/* hover：右へスライド */
.arrow-link:hover::before {
	transform: translate(12px, -50%);
}

.arrow-link:hover::after {
	transform: translate(48px, -50%) rotate(25deg);
}

/* カード全体 */
.price-card {
	max-width: 600px;
	margin: 32px auto;
	background: #333;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
	color: #eee;
	display: flex;
	flex-direction: column;
	height: 100%; /* Gridの高さを受け取る */
}

/* タイトル（画像の上） */
.price-card .card-title {
	padding:4px;
	font-size: 1.1rem;
	font-weight: 700;
	background: #333;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 画像エリア */
.price-card .card-image {
	position: relative;
}

/* 画像：アスペクト比維持 */
.price-card img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* 価格（画像右下） */
.price-card .card-price {
	position: absolute;
	right: 0;
	bottom: -16px;
	background: #333;
	padding: 2px 14px;
	font-size: 0.8em;
	font-weight: 700;
	border-radius: 14px 0 0 0;
}

.price-card .card-description {
	padding: 10px;
	background: #333;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #ddd;
	text-align: justify;
}