@charset "utf-8";


h2, h3 {
	font-weight: 400;
}

/* 内部リンク調整 */
:target::before {
  content: "";
  display: block;
  height: 148px; /* ヘッダーの高さに合わせて調整 */
  margin-top: -148px; /* ヘッダーの高さ分をマイナスにして位置を調整 */
}

/* 共通タイトル基準 */
.ContentsHead {
	text-align: center;
	margin: 0 auto 96px;
}
.ContentsHead h2.Type1 {
font-size: clamp(1.2rem, 4vw, 40px);
  margin: 24px auto 48px;
  background: #021538; /* 濃紺ベース */
  display: inline-block;
  color: #FFF;
  padding: 8px 16px;
  letter-spacing: 0.1em;
  font-weight: 600; /* ちょっと強めに */
}
.ContentsHead h2.Type2 {
    font-size: clamp(1.2rem, 4vw, 40px);
    margin: 24px auto 48px;
	padding: 0 1rem;
	letter-spacing: 0.1em;
	color: #021538;
}
.ContentsHead p.SubText {
	font-size: clamp(0.8rem, 2vw, 1.0rem);
    margin: 0 auto 48px;
    max-width: 780px;
    letter-spacing: 0.05em;
    line-height: 2.0;
}
.ContentsHead p.SubTitle {
    font-size: clamp(1.0rem, 2vw, 1.0rem);
    margin: 0 auto;
    letter-spacing: 0.05em;
    line-height: 2.0;
    display: inline-block;
    padding: 4px 1rem;
}
.Cont1 .ContentsHead p.SubTitle {
    background: #021538;
    color: #FFF;
}
.Cont2 .ContentsHead p.SubTitle {
    background: #C9A22A;
    color: #021538;
}
.Cont2 .ContentsHead h2.Type2 {
    color: #021538;
}
.Cont3 .ContentsHead p.SubTitle {
    background: #F88F00;
    color: #FFFFFF;
}
.Cont3 .ContentsHead h2.Type2 {
    color: #F88F00;
}
.SubTitle {
	font-family: "Montserrat", sans-serif;
}
/* 共通コンテンツ */
.Cont1 {
	background: #FFFFFF;
}
.Cont2 {
	background: #E8EBF2;
	color: #021538;
}
.Cont4 {
	background: #D9D9D9;
	padding: 96px 0;
}
section {
    padding: 120px 0 80px;
    position: relative;
}
.Contents {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
	position: relative;
}
.CommonBox {
	margin-top: 16px;
	padding: 16px;
	background: #f3f3f3;
	border: 3px solid #505050;
	border-radius: 8px;
}
.CommonBox p {
	margin: 0;
	color: #333;
}
@media (max-width: 1023px) {
/* 共通コンテンツ */
.Contents {
	max-width: 100%;
}
}
@media (max-width: 767px) {
/* 共通タイトル基準 */
.ContentsHead {
	text-align: center;
	margin: 0 auto 40px;
}
section {
    padding: 80px 0 48px;
    position: relative;
}
.Cont4 {
	padding: 48px 0;
}
}



/* 共通テキスト */
.ann {
	font-size: 12px;
}
span.marker {
    background: linear-gradient(transparent 70%, #FFEB3B 70%);
}
/*共通BG*/
.Bg1 {
	background: #FFFFFF;
}

/* 共通 注釈ボックス */
.AnnBox {
  margin-top: 16px;
  padding: 0 16px;
  background: #f1fcff;
  border: 3px solid #505050;
  border-radius: 8px;
  font-size: 12px; /* フォントサイズを12pxに */
  max-height: 72px; /* 縦幅を最小限に設定 */
  overflow-y: auto; /* 縦方向にスクロールを許可 */
  color: #333;
}

.AnnBox p {
  margin: 0;
  line-height: 1.5; /* 行間を少し広げて読みやすく */
}

/* リンクアクションボタン共通 */
.Button {
	display: flex;
    justify-content: center;
	margin-top: 48px;
}
.Button a {
background-image: linear-gradient(110deg, #021538 0%, #0A2F70 100%);
    border-radius: 9999px;
    display: inline-block;
    transition: transform 0.2s ease;
    width: 100%;
    text-align: center;
    color: #FFFFFF; /* 白文字 */
    padding: 16px 1rem;
    text-decoration: none;
    max-width: 380px;
    font-weight: 600;
}
.Button a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ページリンクボタン共通 */
.PlinkButton {
	display: flex;
    justify-content: center;
	margin-top: 48px;
}
.PlinkButton a {
background-image: linear-gradient(110deg, #021538 0%, #0A2F70 100%);
    border-radius: 8px;
    display: inline-block;
    transition: transform 0.2s ease;
    width: 100%;
    text-align: center;
    color: #FFFFFF; /* 白文字 */
    padding: 16px 1rem;
    text-decoration: none;
    max-width: 380px;
    font-weight: 600;
}
.PlinkButton a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* 下部追尾ボタン */
#sticky-footer {
    position: fixed;
    bottom: -100px; /* 初期状態で隠しておく */
    width: 100%;
    background-color: #333;
    padding: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: bottom 0.5s ease; /* スライドの動きをスムーズに */
    visibility: hidden; /* 初期状態で非表示 */
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}
.footer-content a {
    line-height: 0;
    display: block;
}

.footer-content a img {
    padding: 0 8px;
}

/* 横幅が768px以下のときに表示 */
@media screen and (max-width: 480px) {
    #sticky-footer {
        visibility: visible;
    }
}



/* 共通toggleスタイル */
.toggle-title {
  cursor: pointer;
  background: #F88F00;
  color: #FFFFFF;
  padding: 16px 24px 16px 16px;
  border-radius: 5px;
  margin: 0px auto 48px;
  font-size: clamp(1.0rem, 2vw, 32px);
  position: relative;
  font-weight: 400;
}

.toggle-icon {
	position: absolute;
    right: 2%;
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    font-weight: bold;
    padding-left: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.toggle-content {
    position: relative;
    top: -53px;
    padding: 16px;
    display: none;
    background: #FEE9CC;
    text-align: left;
    overflow-x: auto;
    border-radius: 0 0 8px 8px;
}

.toggleText {
	display: flex;
	color: #333;
	text-align: left;
    font-size: clamp(0.8rem, 2vw, 1.0rem);
    align-items: center;
}
.toggleText .A {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.0rem, 2vw, 32px);
}
.toggleText p {
	margin: 0;
	text-align: left;
}
/* トグルコンテンツのテーブル-レスポンシブ */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  color: #333;
}

.responsive-table th,
.responsive-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.responsive-table thead {
  background-color: #2ea2cc;
  color: #FFF;
}



@media (max-width: 680px) {
.responsive-table th,
.responsive-table td {
    font-size: 14px; /* 小さいデバイス向けにフォントサイズを調整 */
    padding: 8px;
}
}
/****** 新着orページネーションスライド ******/
.Results .swiper-horizontal {
	padding-bottom: 6px;
}
.Results .swiper-container {
  width: 100%;
  height: 300px; /* 高さは調整できます */
}

.Results .swiper-slide {
	background-color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .34);
    border-radius: 5px;
    position: relative;
	color: #333;
	min-height: 156px;
}
.Results .swiper-inner {
	padding: 16px;
}
.Results .swiper-inner h3 {
	margin: 0 auto;
}
.Results .swiper-inner h3 a {
	margin: 0 auto 10px;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    line-height: 1.5;
	color: #505050;
}
.Results .swiper-inner strong {
	margin: 0 auto 8px;
    font-size: 1.0rem;
    display: inline-block;
    background: #4BB5EB;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 500;
}
.Results .swiper-inner p {
	margin: auto;
    font-size: clamp(0.8rem, 1.0vw, 1.0rem);
}
.Results .article-thumbnail img {
  width: 100%; /* 幅をコンテナに合わせる */
  object-fit: cover; /* 画像の比率を保ちながら高さに合わせてクロップ */
  border-radius: 5px 5px 0 0;
}
/* タグのスタイル */
.Results .article-tags {
  margin-top: 10px;
}

.Results .article-tags .tag-label {
  font-weight: bold;
  color: #505050;
}

.Results .article-tags a {
    display: inline-block;
    background-color: #4BB5EB;
    color: #FFF;
    padding: 0px 5px 2px;
    border-radius: 4px;
    text-decoration: none;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
}

.Results .article-tags a:hover {
  background-color: #505050;
  color: #ffffff;
}
@media (max-width: 680px) {
.Results .article-thumbnail img {
  height: 150px; /* 高さを固定 */
}
}
/****** 査定スライド ******/
.Sateits .swiper-horizontal {
	padding-bottom: 6px;
}
.Sateits .swiper-container {
  width: 100%;
  height: 300px; /* 高さは調整できます */
}

.Sateits .swiper-slide {
	background-color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .34);
    border-radius: 5px;
    position: relative;
	color: #333;
}
.Sateits .swiper-inner {
	padding: 16px;
}
.Sateits .swiper-inner h3 {
	margin: 0 auto 10px;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    line-height: 1.5;
}
.Sateits .swiper-inner strong {
	margin: 0 auto 8px;
    font-size: 1.0rem;
    display: inline-block;
    background: #4BB5EB;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 500;
}
.Sateits .swiper-inner p {
	margin: auto;
    font-size: clamp(1.0rem, 1.0vw, 1.0rem);
}
.Sateits .article-thumbnail img {
  width: 100%; /* 幅をコンテナに合わせる */
  height: 200px; /* 高さを固定 */
  object-fit: cover; /* 画像の比率を保ちながら高さに合わせてクロップ */
  border-radius: 5px 5px 0 0;
}
/* タグのスタイル */
.Sateits .article-tags {
  margin-top: 10px;
}

.Sateits .article-tags .tag-label {
  font-weight: bold;
  color: #505050;
}

.Sateits .article-tags a {
    display: inline-block;
    background-color: #4BB5EB;
    color: #FFF;
    padding: 0px 5px 2px;
    border-radius: 4px;
    text-decoration: none;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
}

.Sateits .article-tags a:hover {
  background-color: #505050;
  color: #ffffff;
}
/* swiper1 */
.Satei .swiper1 img {
	border-radius: 8px;
}
.Satei .swiper1 h3 {
	margin: 0 auto 16px;
	line-height: 1.3;
}
.Satei .swiper1 h3 a {
	font-size: clamp(0.8rem, 2vw, 1.0rem);
	color: #505050;
}
.Satei .swiper1 .swiper-inner {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
}
.article-tags span.Cat a{
	background: #505050;
	color: #FFFFFF;
	text-decoration: none;
    padding: 0 0.5rem;
    font-size: clamp(0.7rem, 1vw, 12px);

}
.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: clamp(0.7rem, 0.8vw, 14px);
	
}

.price-table th {
    background: #021538;
    color: #FFF;
    padding: 10px;
    border: 1px solid #DDD;
    text-align: center;
}

.price-table td {
    padding: 10px;
    border: 1px solid #DDD;
    text-align: center;
}

.price-table tr.Price th {
    background: #C9A22A; /* ゴールドで強調 */
    color: #021538;      /* 濃紺文字で高級感 */
}

.price-table tr.Price td {
    color: #C1272D; /* 査定価格の数字を赤色に */
    font-weight: bold;
    text-align: center;
    font-size: clamp(1.0rem, 2vw, 18px);
}


@media (max-width: 680px) {
.Sateits .article-thumbnail img {
  height: 150px; /* 高さを固定 */
}
}


/* 仮 */
.Contact {
	background: #FFF;
}
/*******************************
* フォームの設定
********************************/

/* バッジの色 */
.wpcf7 p span.must,
.wpcf7 p span.free {
    font-weight: 400;
    color: #FFF;
}
.wpcf7 p span.Fcol01 {
    font-weight: 400;
    color: #fb0101;
}
.themeform input[type="submit"] {
    position: relative;
    margin: auto;
    left: 0;
    right: 0;
}
.wpcf7 input[type="submit"] {
  -webkit-appearance: none;
}
/* 必須マーク */
.must {
	background: #F88F00;
}

/* 任意マーク */
.free {
	background: #999;
}

.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #F88F00;
}
.wpcf7 p {
    margin: 0 0px 3em;
}
/* フォーム入力項目 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="date"],
.wpcf7 input[type="tel"] {
	padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-indent: 0.5em;
	width: 80%;
}
.wpcf7 .wpcf7-select {
	padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-indent: 0;
}
.wpcf7 textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0 0 0;
    border: 1px solid #ddd;
    border-radius: 3px;
}
/* フォーム入力項目 */
.themeform select {
	padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
/* ファイル選択 */
.wpcf7 input[type="file"] {
    cursor: pointer;
    margin-bottom: 10px;
}
/* 送信ボタン */
input.sub-btn {
	width: 80%;
    padding: 16px 0;
    color: #FFF;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.2em;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    border: 0;
    margin: 0 auto;
    text-align: center;
    display: block;
    background-image: linear-gradient(110deg, #F88F00 33%, #E2DC52);
    border-radius: 8px;
}

/* 送信ボタンホバー */
input.sub-btn:hover{
	color: #FFF; 
	transform: translateY(-10px) scale(1.1);
}

/* 送信ボタン中央寄せ */
.center {
	text-align:center;
}
.themeform button, .themeform input, .themeform label, .themeform select, .themeform textarea {
    font-size: 16px;
}

/***** 固定LP *****/
.LpMv {
    background: #021538;
	    padding: 0;
    margin: 0;
	overflow: hidden;
	width: 100%;
	position: relative;
}
.LpMv .TitleHeader {
	text-align: center;
	margin: 0 auto 8px;
}
.LpMv .TitleHeader h1 {
    font-size: clamp(1.2rem, 2vw, 32px);
    margin: 8px auto;
    color: #FFF;
    text-align: center;
	font-weight: 400;
}
.LpMv .TitleHeader h1 span {
    font-size: clamp(1.0rem, 2vw, 24px);
    margin: 8px 0 8px 1rem;
    color: #FFF;
    text-align: center;
	font-weight: 500;
}
.LpMv .MvBox {
    padding: 16px 0;
}
.LpMv .MvBox p {
	color: #FFFFFF;
}
.LpMv .TitleHeader img {
    max-width: 150px;
}
.scrolling-images {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroll-row {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-content {
  display: flex;
  gap: 24px; /* 画像間の隙間 */
  animation: scroll-right-left 30s linear infinite;
  transform: translateX(-50%); /* 中央開始位置 */
}

.scroll-row.reverse .scroll-content {
  animation: scroll-left-right 30s linear infinite;
  transform: translateX(-50%); /* 中央開始位置 */
}

.scroll-content img {
  width: calc(100% - 48px); /* 左右の隙間を引いた幅 */
  height: auto;
  margin: 0;
  display: block;
  border-radius: 8px;
}

/* アニメーション: 右から左 */
@keyframes scroll-right-left {
  0% {
    transform: translateX(0); /* 初期位置（中央） */
  }
  100% {
    transform: translateX(-100%); /* 全体が左に移動 */
  }
}

/* アニメーション: 左から右 */
@keyframes scroll-left-right {
  0% {
    transform: translateX(-100%); /* 初期位置（左端） */
  }
  100% {
    transform: translateX(0); /* 全体が右に移動 */
  }
}
.container {
  overflow: hidden;
}
.box01 {
  color: #fff;
  background: #000066;
  border-bottom-left-radius: 800px 200px;
  border-bottom-right-radius: 800px 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 200px;
}

.box02 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.box03 {
  background: #000066;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 200px;
}
.RiyutBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: stretch;
	margin-bottom: 32px;
}
.RiyutBox .LeftImg {
	margin-right: 48px;
	flex-shrink: 0;
    width: 40%;
		border-radius: 8px;
}
.RiyutBox .LeftImg img {
	border-radius: 8px;
}
.RiyutBox .RightText {
	width: 60%;
}
.RiyutBox .RightText h3 {
	font-size: clamp(1.0rem, 2vw, 32px);
    margin: 0 auto;
    letter-spacing: 0.05em;
    line-height: 2.0;
    display: inline-block;
    padding: 4px 1rem;
    background: #C9A22A;
    color: #021538;
}
.RiyutBox .RightText p {
	font-size: clamp(0.8rem, 2vw, 16px);
}
.PointBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    border-radius: 8px;
    align-items: stretch;
    background: #F7F7F7;
	margin-bottom: 32px;
}
.PointBox .LeftImg {
	margin-right: 48px;
	flex-shrink: 0;
    width: 40%;
}
.PointBox .LeftImg img {
	border-radius: 8px;
}
.PointBox .RightText h3 {
	font-size: clamp(1.0rem, 2vw, 32px);
    margin: 0 auto;
    letter-spacing: 0.05em;
    line-height: 2.0;
    display: inline-block;
    padding: 4px 1rem;
    background: #C9A22A;
    color: #021538;
}
.PointBox .RightText p {
	font-size: clamp(0.8rem, 2vw, 16px);
}
.AreaContents {
    text-align: center;
    background: #F7F7F7;
    padding: 40px;
    margin-bottom: 40px;
}
.TextList {
    margin: 32px auto 0;
    border: solid 2px #021538;
    border-radius: 8px;
    background: #F7F7F7;
    padding: 16px;
    position: relative;
    max-width: 100%;
    text-align: left;
}
.TextList dl dt {
    font-size: clamp(1.0rem, 2vw, 18px);
    position: relative;
    padding: 0px 0 5px 2rem;
    margin: 10px 0;
    border-bottom: 1px solid #dcdcdc;
	font-weight: 700;
}
.TextList dl dt:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #021538;
    border-bottom: 2px solid #021538;
}
.TextList dl dt:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #021538;
    border-radius: 2px;
}
.TextList dl dd {
	margin-bottom: 20px;
}
/* ===== TextList: 内部要素のデザイン ===== */
.TextList {
  /* ここは指定済み（変更不可） */
  /* margin, border, border-radius, background, padding, position, max-width, text-align */
  /* 余白の最適化だけ追加（視認性UP） */
  line-height: 1.8;
}

/* アクセント用のカスタムプロパティ（このブロック内だけ有効） */
.TextList {
  --c-primary: #021538;
  --c-bg: #F7F7F7;
  --c-text: #222;
  --c-muted: #6b7280; /* グレー系 */
  --c-bullet: #021538;
}

/* 見出し */
.TextList h3 {
  margin: 20px 0 10px;
  padding-left: 14px;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  color: var(--c-primary);
  position: relative;
  line-height: 1.6;
}
.TextList h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 2px;
  background: var(--c-primary);
}

/* 段落 */
.TextList p {
  margin: 0 0 12px 0;
  color: var(--c-text);
  font-size: clamp(14px, 2vw, 16px);
}

/* リスト（箇条書き） */
.TextList ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.TextList li {
  position: relative;
  padding-left: 24px;            /* アイコン分の余白 */
  margin: 8px 0;
  font-size: clamp(14px, 2vw, 16px);
}
.TextList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;                   /* 文字の中心に合わせる */
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-bullet);   /* カスタム色の丸ドット */
  transform: translateY(-50%);
  opacity: 0.9;
}

/* リスト内のラベル（<strong>）を視認性UP */
.TextList li > strong {
  color: var(--c-primary);
  font-weight: 800;
}

/* リンク（参考リンク想定） */
.TextList a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.TextList a:hover,
.TextList a:focus {
  opacity: 0.8;
}

/* セクション区切り（次のh3の前に薄い罫線） */
.TextList h3 + p,
.TextList h3 + ul {
  /* 直後要素は上の余白が詰まりがちなので微調整 */
  margin-top: 6px;
}
.TextList h3:not(:first-of-type) {
  margin-top: 26px;
}
.TextList h3:not(:first-of-type)::after {
  /* 見出しの上に薄い仕切り線 */
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: -14px;
  height: 1px;
  background: rgba(2, 21, 56, 0.12);
}

/* 参考：スマホで詰まりを防ぐ微調整 */
@media (max-width: 480px) {
  .TextList {
    padding: 14px;
  }
  .TextList h3::before {
    width: 3px;
  }
  .TextList li {
    padding-left: 22px;
  }
}

/* 参考：印刷時の最適化（背景と線を簡素化） */
@media print {
  .TextList {
    background: #fff !important;
    border-color: #000;
  }
  .TextList h3::before {
    background: #000;
  }
  .TextList li::before {
    background: #000;
  }
}

@media (max-width: 767px) {
.RiyutBox {
    display: block;
    margin-bottom: 32px;
}
.RiyutBox .LeftImg {
    margin-right: 0;
    width: 100%;
}
.RiyutBox .RightText {
    width: 100%;
}
.RiyutBox .RightText h3 {
    display: block;
    text-align: center;
}
.PointBox {
    display: block;
    padding: 16px;
}
.PointBox .LeftImg {
	margin-right: 0;
    width: 100%;
}
.PointBox .RightText h3 {
	display: block;
	text-align:center;
}
.AreaContents {
    padding: 16px;
}
}
@media (max-width: 480px) {
.LpMv .TitleHeader h1 span {
	display: block;
	margin: 0 auto;
}
}

#Areas .toggle-title {
  cursor: pointer;
  background: #021538; /* ここだけちがう */
  color: #FFF;
  padding: 16px;
  border-radius: 5px 5px 0 0; 
  margin: 8px auto 0;
	font-size: clamp(1.0rem, 1.6vw, 1.8rem);
  position: relative;
}

#Areas .toggle-icon {
	position: absolute;
    right: 2%;
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    font-weight: bold;
    padding-left: 8px;
    top: 50%;
    transform: translateY(-50%);
}
#Areas .toggle-content {
	position: relative;
  padding: 16px;
  display: none; /* デフォルトでは非表示 */
}
/* エリアページ */
#Areas {
	background: #FFF;
}
#Areas .toggle-content {
    display: block;
    background: #F7F7F7;
	top: inherit;
}

/* リストアイテムをグリッドレイアウトにする */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* 個々のアイテムスタイル */
.area-list li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  font-size:clamp(1.0rem, 1.6vw, 1.2rem);
}
.area-list li a {
	display: block;
}
.area-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* モバイル・タブレット対応 */
@media (max-width: 768px) {
  .area-list {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .area-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

/*****  メーカーリスト  *****/
/* グリッド全体 */
.maker-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
  padding: 0;
}

/* カード */
.maker-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 見出し（メーカー名） */
.maker-card .maker-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #eee;
  color: #333;
}

/* モデルリスト */
.maker-card .maker-name {
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem); /* 画面幅に応じて拡縮 */
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid #0073aa; /* 強調ライン（青系、好みで変更可） */
  color: #222; /* 少し濃いグレーで力強く */
  letter-spacing: 0.5px;
  position: relative;
}

/* 下線を装飾的に追加するなら */
.maker-card .maker-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0073aa, #00b7ff);
  border-radius: 2px;
}
.maker-card .model-list {
  list-style: none;   /* ●消す */
  margin: 0;          /* 全体の ul 指定をリセット */
  padding: 0;         /* 左インデントも消す */
}

.maker-card .model-list li {
  margin: 0.4em 0;    /* 行間はここで調整 */
  padding-left: 0;    /* 念のためリセット */
}
.maker-card .model-list li {
  margin: 6px 0;
}
.maker-card .model-list a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #0073aa;
  background: #f7f9fa;
  transition: background 0.2s, color 0.2s;
}
.maker-card .model-list a:hover {
  background: #0073aa;
  color: #fff;
}

/****** 固定サービスページ ******/
/* =========================
   訴求エリア（Sokyu）専用
   ========================= */

/* カテゴリ別アクセント色（必要に応じて上書き） */
:root {
  --base-dark: #021538;  /* ネイビー */
  --base-gold: #C9A22A;  /* ゴールド */
  --accent: #3B82F6;     /* デフォルト：除雪機ブルー */
  --accent-soft: rgba(59,130,246,.12);
}

/* 除雪機 */
body[data-cat="snow"] {
  --accent: #3B82F6;
  --accent-soft: rgba(59,130,246,.12);
}

/* 農機 */
body[data-cat="agri"] {
  --accent: #22C55E;
  --accent-soft: rgba(34,197,94,.12);
}

/* 重機 */
body[data-cat="heavy"] {
  --accent: #F59E0B;
  --accent-soft: rgba(245,158,11,.12);
}

/* ボックス全体 */
.SokyuBox{
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(16,24,40,.06);
}

/* リスト：PCは2カラム、SPは1カラム */
.SokyuBox ul{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}
@media (max-width: 767px){
  .SokyuBox ul{
    grid-template-columns: 1fr;
    gap: 12px 0;
  }
}

/* 各項目 */
.SokyuBox li{
  position: relative;
  padding: 12px 12px 12px 42px;
  line-height: 1.8;
  font-size: 16px;
  color: #0f172a;
  background: linear-gradient(180deg, rgba(2,6,23,.0), rgba(2,6,23,.02));
  border-radius: 10px;
}
.SokyuBox li::before{
  content: "✔";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}
@media (hover:hover){
  .SokyuBox li{
    transition: background .2s ease, transform .2s ease;
  }
  .SokyuBox li:hover{
    background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.05));
    transform: translateY(-1px);
  }
}

/* リード文（強調パネル） */
.SokyuBox .SokyuLead{
  position: relative;
  margin: 16px 0 0;
  padding: 18px 20px 18px 64px;
  background: color-mix(in srgb, #0b1220 92%, var(--accent-soft));
  color: #e5e7eb;
  border-radius: 14px;
  font-size: 16.5px;
  line-height: 1.9;
}
.SokyuBox .SokyuLead::before{
  content: "i";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #C9A22A;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  box-shadow: 0 0 0 6px color-mix(in srgb, #C9A22A 20%, transparent);;
}
.SokyuBox .SokyuLead strong{
  font-weight: 700;
background: linear-gradient(transparent 70%,color-mix(in srgb, #C9A22A 80%, #fff) 0);
  padding: 0 .06em;
}
@media (max-width: 767px){
  .SokyuBox .SokyuLead{
    padding: 16px 16px 16px 56px;
    font-size: 15.5px;
    border-radius: 12px;
  }
  .SokyuBox .SokyuLead::before{
    left: 14px;
    width: 26px; height: 26px; line-height: 26px; font-size: 14px;
  }
}

