@charset "EUC-JP";

:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --brand: #1f4aa8;
    --accent: #f59e0b;
    --line: #e5e7eb;
    --soft: #f1f5f9;
    --soft2: #f8fafc;
    --card: #ffffff;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-size: 62.5%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "hiragino-kaku-gothic-pron", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    letter-spacing: .02em;
    font-size: 1.6rem;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 18px;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: fixed;
    width: 100%;
    z-index: 50;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 5px;
}

@media (min-width: 768px) {
    .topbar__inner {
        padding: 10px;
    }
}

@media (min-width: 1200px) {
    .topbar__inner {
        padding: 10px 0;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 150px;
	margin-left:5px;
}

@media (min-width: 768px) {
    .brand {
        gap: 5px;
        min-width: 180px;
		margin-left:0px;
    }
}

@media (min-width: 1200px) {
    .brand {
        min-width: 220px;
    }
}

.brand:hover {
    opacity: 0.8;
}

.brand__logo {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
}

@media (min-width: 768px) {
    .brand__logo {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .brand__logo {
        width: 80px;
        height: 80px;
    }
}

.brand__logo img {
    width: 100%;
    height: auto;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand__name {
    font-weight: 800;
    font-size: 1.6rem;
    color: #1d2087;
    margin-left: 2px;
}

@media (min-width: 768px) {
    .brand__name {
        font-size: 1.8rem;
        margin-left: 3px;
    }
}

@media (min-width: 1200px) {
    .brand__name {
        font-size: 2.2rem;
        margin-left: 5px;
    }
}

.brand__tag {
    font-size: 2.8rem;
    color: #ea4b00;
    letter-spacing: -2.5px;
}

@media (min-width: 768px) {
    .brand__tag {
        font-size: 3.2rem;
        letter-spacing: -3px;
    }
}

@media (min-width: 1200px) {
    .brand__tag {
        font-size: 4rem;
        letter-spacing: -3.5px;
    }
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav a {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.nav a:hover {
    color: #ea4b00;
}

.topbar__cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
}
@media screen and (max-width:1024px){
	.smp_nav{
		
	}
	.smp_nav a{
		border-bottom:2px solid #fff;
	}
}
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.hamburger i {
    font-size: 3.6rem;
    color: #333;
    transition: .3s;
}
.hamburger i.fa-xmark{
    color: #fff;
}

/* メニューが開いたときにアイコンを変更 */
.nav-toggle:checked + .hamburger .fa-bars {
    display: none;
}

.nav-toggle:checked + .hamburger .fa-xmark {
    display: block;
}

.hamburger .fa-xmark {
    display: none;
}

main{
	margin-top:115px;
}
@media (max-width: 1200px) {
	main{
		margin-top:80px;
	}
}
/* スマホ・タブレット用メニュー */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background:#52559F;
		color:#fff;
        flex-direction: column;
        align-items: flex-start;
        padding:100px 15px 20px;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
        transition: right 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }
	main{
		margin-top:60px;
	}
    .nav a {
        font-size: 1.6rem;
		color:#fff;
    }

    .nav-toggle:checked ~ .nav {
        right: 0;
    }

    .topbar__cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 999;
        position: relative;
    }
}
@media screen and (max-width:640px){
	.nav a {
        font-size:2.0rem;
    }
}
/* 電話番号 */
.tel {
    font-size: 2.4rem;
    color: #1b1464;
    line-height: 130%;
    text-align: center;
    letter-spacing: -1px;
    margin-top: -5px;
}

@media (min-width: 768px) {
    .tel {
        font-size: 3rem;
        margin-top: 8px;
    }
	
}

@media (min-width: 1200px) {
    .tel {
        font-size: 3.8rem;
        margin-top: 10px;
    }
}

.tel i {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .tel i {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .tel i {
        font-size: 2.4rem;
    }
}

.Tsub {
    font-size: 0.9rem;
    display: block;
    letter-spacing: 0;
    margin-top: -6px;
}

@media (min-width: 768px) {
    .Tsub {
        font-size: 1.2rem;
        margin-top: -15px;
    }
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid transparent;
    padding: 8px 12px;
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    transition: .15s transform, .15s opacity, .15s background, .15s border-color;
    white-space: nowrap;
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .btn {
        padding: 10px 14px;
        font-size: 1.6rem;
    }
}

@media (min-width: 1200px) {
    .btn {
        font-size: 1.8rem;
    }
}

.btn:hover {
    transform: translateY(-5px);
    opacity: .95;
    text-decoration: none;
}

.btn--primary {
    background-image: linear-gradient(180deg, rgba(255, 86, 0, 1), rgba(235, 147, 24, 1));
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	line-height: 120%;
    padding: 12px 15px;
    margin-top: 0px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background: #f9eade;
    color: #333;
    padding: 40px 0 20px;
	position:relative;
}

.footer__brand {
    text-align: center;
    margin-bottom: 30px;
	zoom:130%;
}

.footer__brand .brand {
   margin: auto;
    padding: 0;
    text-decoration: none;
    width: 180px;
}

#foot_top{
	position: absolute;
    bottom: 50px;
    font-size: 4.6rem;
    right: 10px;
}
#foot_top a{
	color:#333;
}
#foot_top a:hover{
	color:#999;
}

@media (min-width: 768px) {
    .footer__brand .brand {
        width: 250px;
		zoom:100%;
    }
	#foot_top{
		position: absolute;
		bottom: 1px;
		font-size: 4.6rem;
		right: 20px;
	}
}

.footgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .footgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 900px) {
    .footgrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }
}

.foot__column {
    padding: 0 10px;
}

.foot__column h3 {
    font-size: 2.0rem;
    font-weight: 900;
    margin: 0 0 15px;
    padding-bottom:0px;
	position: relative;
    color: #333;
}
.foot__column h3:before {
	content: '';
    position: absolute;
    left: 0px;
    bottom: -3px;
    display: inline-block;
    width: 30px;
    height: 5px;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    background-color: #ea4b00;
}
.foot__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot__column ul li {
    margin-bottom: 8px;
}

.foot__column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
    display: inline-block;
    padding: 3px 0;
    transition: color 0.3s;
	text-decoration: underline
}

.foot__column ul li:before {
    font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: 900;
    margin-right: 5px;
	display:inline-block;
}

.foot__column ul li a:hover {
    color: #ea4b00;
}

.foot a {
    color: #333;
}

.foot small {
    color: #9ca3af;
}
@media screen and (min-width:768px){
	.foot__column ul li {
		margin-bottom: 0px;
	}
}
.note {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

footer p.foot_p{
	font-size:1.4rem;
	text-align:center;
}
footer p.foot_p a{
	text-decoration:underline;
}
footer p.foot_p a:hover{
	opacity:0.5;
}
/* Copyright */
address {
    font-style: normal;
    text-align: center;
    padding: 15px 20px;
    font-size: 1.2rem;
    background: #333;
    color: #fff;
    margin: 0;
}

@media (min-width: 768px) {
    address {
        font-size: 1.4rem;
        padding: 20px;
    }
}

address strong {
    font-weight: 700;
}

/* Sticky CTA（スマホ用固定ボタン） - 常に表示 */
.sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
    display: block;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.sticky .btn {
    flex: 1;
    font-size: 2.0rem;
    padding:8px;
}

.sticky .btn--ghost {
    background: #fff;
    color: #1b1464;
    border: 2px solid #1b1464;
}

.sticky .btn--ghost:hover {
    background: #1b1464;
    color: #fff;
}

@media (min-width: 768px) {
    .sticky .btn {
        font-size:2.0rem;
        padding:8px 10px;
    }
}

/* Sticky CTA表示時のbody下部パディング調整 */
@media (max-width: 1200px) {
    body {
        padding-bottom: 70px;
    }
}

@media (min-width: 1201px) {
    .sticky {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* フォント */
.hiraginoW3 {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.hiraginoW6 {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.karuta {
    font-family: ab-karuta-bold, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.genjiB {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.genjiH {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* レスポンシブ画像 */
img {
    max-width: 100%;
    height: auto;
}

/* グリッド */
.grid {
    display: grid;
    gap: 14px;
}

.grid--2 {
    grid-template-columns: 1fr;
}

.grid--3 {
    grid-template-columns: 1fr;
}

.grid--4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* カード */
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(2, 6, 23, .06);
    padding: 16px;
}

.card__tag {
    font-weight: 900;
    color: var(--brand);
    font-size: 12px;
}

.card__title {
    margin: 6px 0;
    font-size: 16px;
}

.card__text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}






/* 固定表示のLINEボタン */
.line-widget-fixed-btn-2025 {
	position: fixed;
	right: 20px;
	bottom: 170px;
	transform: translateY(-50%);
	z-index: 99999;
	background:#3cb056;
	color: white;
	border: none;
	border-radius: 10px;
	padding: 10px;
	cursor: pointer;
	box-shadow: 0 4px 8px #666;
	font-size: 1.8rem;
	font-weight: bold;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	writing-mode: horizontal-tb;
	white-space: nowrap;
}

.line-widget-fixed-btn-2025:hover {
	background: #3cb056;
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 6px 12px #666;
}

.line-widget-fixed-btn-2025:active {
	transform: translateY(-50%) scale(0.98);
}

.line-widget-icon-2025 {
		display:block;
		font-weight: 900;
		font-size: 3.2rem;
		margin-bottom:5px;
		text-shadow:1px 1px 1px #666;
    }

/* PC用テキスト */
.line-widget-text-pc-2025 {
	display:block;
	text-shadow:1px 1px 1px #666;
}

/* スマホ用テキスト */
.line-widget-text-mobile-2025 {
	display: none;
}

/* モーダルオーバーレイ */
.line-widget-modal-overlay-2025 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 100000;
	justify-content: center;
	align-items: center;
	animation: line-widget-fadeIn-2025 0.3s ease;
}

.line-widget-modal-overlay-2025.line-widget-active-2025 {
	display: flex;
}

/* モーダルコンテンツ */
.line-widget-modal-content-2025 {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	max-width: 400px;
	width: 90%;
	position: relative;
	animation: line-widget-slideUp-2025 0.3s ease;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* 閉じるボタン */
.line-widget-close-btn-2025 {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #999;
	line-height: 1;
	padding: 5px;
	transition: color 0.2s;
}

.line-widget-close-btn-2025:hover {
	color: #333;
}

/* モーダルタイトル */
.line-widget-modal-title-2025 {
	text-align: center;
	margin: 0 0 10px 0;
	font-size:1.8rem;
	color: #333;
	font-weight: bold;
}

/* エリアボタン */
.line-widget-area-buttons-2025 {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.line-widget-area-link-2025 {
	display: block;
	background: #3cb056;
	color: white;
	text-decoration: none;
	padding: 18px 30px;
	border-radius: 12px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px #666;
	text-shadow:1px 1px 1px #666;
}

.line-widget-area-link-2025:hover {
	background: #3cb056;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px #666;
}

.line-widget-area-link-2025:active {
	transform: translateY(0);
}

/* アニメーション */
@keyframes line-widget-fadeIn-2025 {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes line-widget-slideUp-2025 {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media screen and (max-width:1024px){
	.line-widget-icon-2025 {
		display: inline-block;
		vertical-align: top;
		margin: 8px 0px 0px;
	}
	.line-widget-text-pc-2025 {
		display: inline-block;
	}
	.line-widget-fixed-btn-2025 {
		right: 80px;
		bottom:unset;
		top: 40px;
		padding:5px 10px;
		font-size:1.8rem;
	}
}
/* スマホ対応 */
@media (max-width: 768px) {
	.line-widget-fixed-btn-2025 {
		font-size:1.6rem;
	}
	
	.line-widget-icon-2025 {
		font-size: 2.0rem;
	}
	.line-widget-modal-content-2025 {
		padding: 30px 20px;
		width: 85%;
	}
	
	.line-widget-modal-title-2025 {
		font-size: 20px;
		margin-bottom: 25px;
	}
	
	.line-widget-area-link-2025 {
		padding: 16px 25px;
		font-size: 16px;
	}
}
@media screen and (max-width:640px){
	/* PC用テキストを非表示、スマホ用テキストを表示 */
	.line-widget-text-pc-2025 {
		display: none;
	}
	
	.line-widget-text-mobile-2025 {
		display: inline;
	}
}
/* さらに小さい画面用 */
@media (max-width: 480px) {
	.line-widget-fixed-btn-2025 {
		padding: 8px;
        font-size: 1.4rem;
        bottom: unset;
        top: 30px;
        border-radius: 5px;
		right:65px;
		box-shadow: 0 2px 4px #666;
		z-index: 99;
	}
	.line-widget-icon-2025 {
		font-size: 2.0rem;
		display:inline;
	}
	.line-widget-text-mobile-2025{
		letter-spacing: 0px;
        font-size: 1.6rem;
	}
}
@media (max-width:375px) {
	.line-widget-text-mobile-2025{
        font-size: 1.4rem;
	}
}
@media (max-width: 400px) {
	.line-widget-fixed-btn-2025 {
		padding: 3px;
		width:110px;
	}
	.line-widget-text-pc-2025 {
		display: block;
	}
	
	.line-widget-text-mobile-2025 {
		display: none;
	}
	.line-widget-icon-2025 {
		display:none;
	}
}