@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
*/

/* ヘッダー内CTAボタンのスタイル */
/* 方法1: クラス名で指定（ショートコードに class="cta-button" を追加する場合） */
.w-header .p-blogParts.cta-button .swell-block-button__link,
/* 方法2: ブログパーツIDで直接指定 */
.w-header .p-blogParts[data-partsID="35"] .swell-block-button__link {
	width: 200px !important;
	height: 50px !important;
	padding: 10px !important;
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

/* ボタン間のマージン */
.w-header .p-blogParts.cta-button .swell-block-button__link:not(:last-child),
.w-header .p-blogParts[data-partsID="35"] .swell-block-button__link:not(:last-child) {
	margin-right: 8px !important;
}

/* ホバー時の色 */
.w-header .p-blogParts.cta-button .swell-block-button__link:hover,
.w-header .p-blogParts[data-partsID="35"] .swell-block-button__link:hover {
	background-color: #787878 !important;
}

/* ヘッダー内の要素を中央揃え */
.l-header__inner {
	align-items: center !important;
}

/* メニューの高さ調整 */
.c-gnav > li > a {
	position: relative;
	height: auto !important;
	min-height: auto !important;
	padding-top: 0.5em !important;
	padding-bottom: 0.5em !important;
}

/* SWELLのデフォルトホバーエフェクト（ラインの出現）を無効化 */
.c-gnav a::after {
	display: none !important;
}

/* メニューのホバーエフェクト：上に白い丸 + テキストをグレーに */
.c-gnav > li:hover > a::before,
.c-gnav > .-current > a::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background-color: #ffffff;
	border-radius: 50%;
}

.c-gnav > li:hover > a,
.c-gnav > .-current > a {
	color: #808080 !important;
}

/* Hero（メインビジュアル）タイポ：ヒエラルキー強化 */
.p-mainVisual__slideTitle {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.03em;
	margin-bottom: 16px;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.p-mainVisual__slideText {
	margin-top: 0;
	font-size: clamp(14px, 1.5vw, 20px);
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.04em;
	opacity: 0.95;
	max-width: 90%;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* スマホメニュー：画面右端まで完全にスライド */
@media not all and (min-width: 960px) {
	.p-spMenu__inner {
		width: 100vw !important;
	}
	
	.p-spMenu.-right .p-spMenu__inner {
		transform: translateX(100vw) !important;
	}
	
	[data-spmenu="opened"] .p-spMenu.-right .p-spMenu__inner {
		transform: translateX(0) !important;
	}
	
	/* スマホメニュー下部のCONTACTセクション */
	.p-spMenu__bottom .sp-menu-divider {
		border: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		margin: 0;
		padding: 0;
	}
	
	.p-spMenu__bottom .sp-menu-contact-item {
		margin: 20px 0;
	}
	
	.p-spMenu__bottom .sp-menu-contact-label {
		font-size: 12px;
		color: rgba(255, 255, 255, 0.6);
		margin-bottom: 8px;
		letter-spacing: 0.05em;
	}
	
	.p-spMenu__bottom .sp-menu-contact-link {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-decoration: none;
		color: #ffffff;
		padding: 12px 0;
		transition: opacity 0.3s;
	}
	
	.p-spMenu__bottom .sp-menu-contact-link:hover {
		opacity: 0.8;
	}
	
	.p-spMenu__bottom .sp-menu-contact-title {
		display: block;
		font-size: 32px;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 4px;
		letter-spacing: 0.02em;
	}
	
	.p-spMenu__bottom .sp-menu-contact-tel {
		display: block;
		font-size: 36px;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 4px;
		letter-spacing: 0.02em;
	}
	
	.p-spMenu__bottom .sp-menu-contact-desc {
		display: block;
		font-size: 13px;
		color: rgba(255, 255, 255, 0.9);
		margin-top: 4px;
		line-height: 1.5;
	}
	
	.p-spMenu__bottom .sp-menu-contact-link i {
		font-size: 20px;
		margin-left: auto;
		opacity: 0.8;
	}
	
	/* ウィジェットタイトルを非表示にする場合 */
	.p-spMenu__bottom .c-widget__title {
		display: none;
	}
	
	/* スマホでのメインビジュアル調整 */
	.p-mainVisual__slideTitle {
		font-size: clamp(24px, 5vw, 36px);
		line-height: 1.4;
		margin-bottom: 12px;
	}
	
	.p-mainVisual__slideText {
		font-size: clamp(13px, 2vw, 16px);
		line-height: 1.9;
		margin-top: 8px;
		max-width: 100%;
	}
}
