/*
Theme Name: My Original Theme
Theme URI: https://example.com
Author: Your Name
Description: オリジナルテーマ
Version: 1.0
*/

/* =========================
   Reset CSS（実務用）
   ========================= */

/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* margin / padding reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* body */
body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

/* list */
ol,
ul {
  list-style: none;
}

/* link */
a {
  color: inherit;
  text-decoration: none;
}

/* image */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* form */
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}
/*ローディング*/
/* 全画面ローディング */
#loading {
  position: fixed;
  inset: 0;
  background: #FFF3E9;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ロゴ */
.loading-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.loading-logo img {
  width: 300px;
  margin-bottom: 90px;
}

.loading-logo .company {
  font-size: 18px;
  color: #000;
}

.loading-logo .company span {
  font-weight: bold;
  color: #f08a32;
  margin-left: 6px;
}

/* プログレス */
.loading-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.progress-line {
  width: 100%;
  height: 3px;
  background: #F48221;
  position: relative;
}

/* 丸 */
.progress-dot {
  width: 12px;
  height: 12px;
  background: #F48221;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 0;
}

/* パーセント */
.progress-percent {
  margin-top: 8px;
  font-size: 14px;
  color: #f08a32;
  transform: translateX(-50%);
  position: absolute;
  left: 0;
}

/* focus */
:focus {
  outline: none;
}
body {
	margin:0px;
	font-family: "fot-tsukuardgothic-std", sans-serif;
font-weight: 700;
}
.pc-menu {
	display:flex;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  align-items: stretch;
  height: 65px;
	justify-content: space-between;
}

.header-logo {
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 45px;
}

/* PC NAV */
.pc-nav-list {
  display: flex;
  height: 100%;
	margin-right: 20px;
}

.pc-nav-list li {
  width: auto;
	padding-left:13px;
	padding-right:13px
}

.pc-nav-list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #333;
}

.pc-nav-list img {
  width: auto;
	height:20px;
}

.pc-nav-list span {
  font-size: 14px;
  font-weight: 700;
}

/* PC CTA */
.pc-cta {
  display: flex;
  height: 100%;
  margin-left: auto;
}

.pc-cta a {
  width: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.pc-cta img {
  width: auto;
	height:28px;
  margin-bottom: 4px;
}

.pc-line { background: #16c755; }
.pc-mail { background: #f7931e; }
.pc-job  { background: #0b5ea8; }

.pc-line:hover {
	opacity:0.7;
}

.pc-mail:hover {
	opacity:0.7;
}

.pc-job:hover {
	opacity:0.7;
}

/* Hamburger */
.hamburger {
  width: 48px;
  height: 48px;
  display: none;
  position: relative;
  background: none;
  border: none;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  background: #000;
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 23px;
}

.hamburger span:nth-child(3) {
  top: 32px;
}

/* SP MENU */
.sp-menu {
  position: fixed;
  inset: 0;
  background: #fff3e8;
  transform: translateX(100%);
  transition: .4s;
  z-index: 9999;
}

.sp-nav {
  margin-top: 80px;
	padding: 15px;
}

.sp-nav li {
  border-bottom: 1px solid #000;
}

.sp-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  font-size: 18px;
  font-weight: 700;
}

.sp-nav img {
  width: 20px;
}

.sp-contact {
  padding: 30px 20px;
	background: #fff;
}

.sp-copy {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}

.sp-tel {
  text-align: center;
  margin: 20px 0;
}


.sp-tel a {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.sp-line img { 
width:100%;
	margin-bottom:10px
}
.sp-mail img { width:100%; }

/* Responsive */
@media (max-width: 1024px) {
  .pc-nav,
  .pc-cta {
    display: none;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
}
/* ハンバーガー共通 */
.hamburger {
    width: 38px;
    height: 38px;
    position: absolute;
    background: none;
    border: none;
    display: block;
    top: 0;
	right:0;
	z-index: 1000;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  background: #000;
  transform: translateX(-50%);
  transition: transform .3s, opacity .3s;
}

/* 三本線状態 */
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 32px; }

/* 開いた状態（×） */
.hamburger.is-open span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}
.sp-menu {
  position: fixed;
  inset: 0;
  background: #fff3e8;
  transform: translateX(100%);
  transition: .4s;
  z-index: 99;
}

.sp-menu.is-open {
  transform: translateX(0);
}

.hamburger.is-open span {
  background: #000; /* ← デザインに合わせて白 or 黒 */
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 30px; }

.hamburger.is-open span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* PCでは非表示 */
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 969px) {
	.header-inner {
    display: flex;
    align-items: stretch;
    height: 40px;
    justify-content: space-between;
}
	.header-logo img {
    height: 35px;
}
}


/*=========================
 * フッター* 
 * =========================/
 /* ===== AREA ===== */
.area-section {
  background: #ffffff00;
  padding: 40px 20px;
}

.area-inner {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 0px;
  align-items: center;
}

.area-text {
  width: 52%;
}

.area-title {
  font-size: 75px;
  color: #F48221;
	position: relative;
}
.area-sub-title {
	font-size: 28px;
	color:#333;
	margin-top: 34px;
}
/* 丸7個 */
.area-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 200px;
    height: 14px;
    background-image: radial-gradient(circle, #FDE3CD 7px, transparent 7px);
    background-size: 29px 14px;
    background-repeat: repeat-x;
}

.area-desc {
  margin: 24px 0;
  line-height: 1.8;
  font-size: 18px;
}
.area-box {
    border: 2px solid #F48221;
    border-radius: 16px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.9;
    background-color: #fff;
}

/* ===== MAP ===== */
.area-map {
  width: 48%;
  position: relative;
}

.area-map img {
  width: 100%;
  display: block;
}
/* 背景画像 */
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* ===== SP ===== */
@media (max-width: 969px) {
  .area-inner {
    flex-direction: column;
	  gap: 20px;
  }
	.area-title {
    font-size: 55px;
    color: #F48221;
    position: relative;
}
	.area-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 150px;
    height: 14px;
    background-image: radial-gradient(circle, #FDE3CD 7px, transparent 7px);
    background-size: 22px 14px;
    background-repeat: repeat-x;
}

  .area-text,
  .area-map {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* フッター全体 */
.site-footer {
  background: #6b6b6b;
  color: #fff;
  padding: 60px 40px 30px;
  font-size: 14px;
}
.footer-wrpper {
    max-width: 1250px;
    margin: 0 auto;
}
/* 上段 */
.footer-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
	margin-bottom:30px;
}

/* 左 */
.footer-left {
  max-width: 420px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-left p {
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 0px;
}

.footer-sns img {
  width: auto;
  height: 23px;
}
.footer-sns a:hover {
	opacity:0.7;
}

/* 右 */
.footer-right {
  display: flex;
  gap: 60px;
}

.footer-nav li {
  margin-bottom: 14px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer-nav a:hover {
	opacity:0.7;
}

/* 下段 */
.footer-bottom {
  text-align: center;
  position: relative;
}
.footer-bottom-group {
	display:flex;
	justify-content:space-between
}
/* PAGE TOP */
.page-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 0px;
}

.page-top .arrow {
  font-size: 18px;
}

/* 点線 */
.footer-line {
  height: 2px;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 14px 2px; /* ← ここで「・と・の間隔」調整 */
  background-repeat: repeat-x;
	margin-bottom:15px;
	margin-top:30px;
}

/* コピーライト */
.copyright {
  font-size: 12px;
	text-align:left;
}

@media (max-width: 969px) {
.site-footer {
    background: #6b6b6b;
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 14px;
}
	.footer-inner {
		display:block;
	}
	.footer-right {
		margin-top:30px;
		display:block;
	}
}
/*TOPページ　FV */

.fv {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.fv-bg {
  position: absolute;
  inset: 0;
  background: url("..../img/bg.webp") center/cover no-repeat;
  z-index: 0;
}

/* 固定オレンジ丸 */
.fv-main-circle {
  position: absolute;
  left: 8%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 13;
}
.fv-main-circle img { 
	width: 80%; 
	max-width:650px;
}

/* 白文字 */
.fv-text-slider {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 2;
}

.text-track {
  white-space: nowrap;
  font-size:180px!important;
  font-weight: bold;
  color: #fff;
  will-change: transform;
	font-size:180px;
}

/* 丸写真 */
.fv-photo-slider {
  position: absolute;
  right: 0px;
  top: 40%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 2;
}
.slider-track {
  display: flex;
	gap:60px;
	align-items:end;
}
.photo {
  width: 380px;
  flex-shrink: 0;
}
.photo img {
  width: 100%;
  border-radius: 50%;
}

/* 下部 */
.fv-bottom-circles {
  position: absolute;
  left: 9.5%;
  bottom: 70px;
  display: flex;
  gap: 20px;
  z-index: 13;
}
.fv-bottom-circles img { width: 140px; }

/* 水玉 */
.bubbles span {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  z-index: 1;
}

/* 右上 MAP */

.fv-map img {
  width: 250px;
}

/* 下：家並び */
.fv-houses {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.fv-houses img {
  width: 100%;
  display: block;
}
.fv-consult-box {
  position: absolute;
  bottom: 25px;
  right: 7%;
  background: #fff;
  border-radius: 14px;
  text-align: center;
  z-index: 6;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  max-width: 420px;
  width: 90%;
}
.fv-consult-box {
  width: 420px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* 上の青帯 */
.consult-head {
  background: #005aa7;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 22px 16px;
}

/* 中身 */
.consult-body {
  padding: 26px 28px 30px;
}

/* チェックリスト */
.consult-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
	padding-left:30px;
}

.consult-list li {
  position: relative;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
	text-align: left;
}

/* チェックアイコン（CSS） */
.consult-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #005aa7;
  border-radius: 4px;
  color: #005aa7;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
}

/* ボタン */
/* ボタン本体 */
.consult-btn {
  position: relative;
  display: block;
  text-align: center;
  background: #f58220;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 40px 18px 40px; /* 右は矢印分広め */
  border-radius: 999px;
  text-decoration: none;
	border:solid 2px #f58220;
  transition: background .3s, color .3s;
}

/* 右の丸（＞） */
.consult-btn::before {
  content: "\f105"; /* Font Awesome > */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  color: #f58220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
	
}

/* hover：色反転 */
.consult-btn:hover {
  background: #fff;
  color: #f58220;
	border:solid 2px #f58220;
}

.consult-btn:hover::before {
  background: #f58220;
  color: #fff;
}
@media (min-width: 969px) {
	/* 右上 MAP */
.fv-map {
  position: absolute;
  top: 7%;
  right: 10%;
  z-index: 4;
}
}
@media (max-width: 969px) {
	.fv {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.fv-main-circle {
  position: relative;
  left: 0%;
  top: 20px;
  transform: translateY(0%);
  z-index: 2;
}
.fv-main-circle img { 
	width: 95%; 
	max-width:500px;
	margin: 0 auto;
}
	.photo {
  width:78%;
  flex-shrink: 0;
		max-width:400px;
}
	.slider-track {
  display: flex;
	gap:25px;
	align-items:end;
}
	.text-track {
  white-space: nowrap;
  font-weight: bold;
  color: #fff;
  will-change: transform;
	font-size:80px;
}
	.fv-text-slider {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  z-index: 2;
}
	.fv-bottom-circles img {
    width: 31%;
}
	.fv-bottom-circles {
    position: absolute;
    left: 0%;
    bottom: 20%;
    display: flex;
    gap: 8px;
    z-index: 13;
		margin:0 auto;
		right: 0;
		justify-content: center;
				max-width: 380px;
}
	.fv-consult-box {
		display:none;
	}
	
.fv-photo-slider {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 100%;
    height: auto;
    transform: translateY(0%);
    overflow: hidden;
    z-index: 2;
}
	.fv-map img {
    width: 140px;
}
	.fv-map {
    position: absolute;
    /* top: 7%; */
    right: 0%;
    z-index: 4;
}
	.fv-houses {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    z-index: 5;
}
}

/*TOPページ　body */

/* ===== 背景レイヤー ===== */
.page-bg {
  position: relative;
  background: url(../img/page-bg.webp) no-repeat center top / cover;
  overflow: hidden;
}
/* ===== MV ===== */
.mv {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}
.mv .about-service-dot {
	color:#FFF!important
}

.mv-inner {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
	margin-bottom:90px;
}

.mv-text { 
	width: 55%; 
}
.mv-text h2 { 
	margin-bottom:40px
}
.mv-text p { 
	line-height: 1.9; 
	margin-bottom:60px
}
.mv-text .consult-btn {
	width:65%
}

.mv-image { width: 45%; }
.mv-image img { width: 100%; }


/* ===== サービス ===== */
.service {
  padding: 120px 0;
  text-align: center;
}
.service-list {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
}
.service-card img { width: 100%; border-radius: 15px; }

/* ===== 4アイコン ===== */
.support {
  padding: 120px 0;
}
.support-inner {
  max-width: 1250px;
  margin: auto;
  background: #fff;
  border-radius: 40px;
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}
.support-icon {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  background: #fdf1e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-icon img {
  width: 80px;
}
.support-item h4 {
  text-align: center;
  color: #f3981d;
  margin: 20px 0;
}
.support-item p {
  font-size: 14px;
  line-height: 1.8;
}

/* ===== 浮遊丸 ===== */
.float-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .8;
  animation: float 6s ease-in-out infinite;
}
.c1 { width:80px;height:80px;background:#f3981d;top:15%;left:10%; }
.c2 { width:40px;height:40px;background:#7bb6d8;top:40%;right:20%; }
.c3 { width:60px;height:60px;background:#f5c78d;bottom:20%;left:30%; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}



/* ===== 下層トップ ===== */
/* ===== PAGETOP ===== */
.pagetop {
  position: relative;
  height: 470px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.pagetop-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.pagetop-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* 縦ライン */
.pagetop-line {
  width: 5px;
  height: 105px;
  background: #fff;
  margin-bottom: 20px;
}

/* テキスト */
.pagetop-sub {
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
	color:#fff;
	
}

.pagetop-title {
  font-size: 98px;
  letter-spacing: 0.1em;
  font-weight: 700;
	color:#fff;
}

.pagetop-text {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 15px;
	color:#fff;
}

/* ===== BREADCRUMB ===== */
.pagetop-breadcrumb {
  max-width: 1250px;
  margin: 40px auto 0;
  padding: 0 20px;
	margin-bottom:20px;
}

.pagetop-home {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pagetop-arrow {
  color: #999;
  font-size: 12px;
	margin-left:3px;
	margin-right:3px;
}
.pagetop-current {
  color: #333;
	font-size:15px;
}

.pagetop-home-icon {
  color: #f08c3a;
  font-size: 14px;
}


/* ===== SP ===== */
@media (max-width: 768px) {
	.mv-inner {
		display:block;
	}
	.mv-text .consult-btn {
	width:100%
}
	.mv-image {
    width: 100%;
		margin-top:40px;
}
	.mv-text {
    width: 100%;
}
  .pagetop {
    height: 270px;
    border-radius: 0 0 24px 24px;
  }

  .pagetop-line {
    height: 60px;
    margin-bottom: 13px;
  }

  .pagetop-title {
    font-size: 37px;
  }

  .pagetop-sub {
    font-size: 14px;
  }

  .pagetop-text {
    font-size: 12px;
  }
}

.privacy {
  padding: 80px 20px;
}

.privacy-inner {
  max-width: 1250px;
  margin: 0 auto;
  line-height: 1.9;
  color: #333;
  font-size: 16px;
	font-weight:500;
}

.privacy-inner p {
  margin-bottom: 40px;
}

/* SP */
@media (max-width: 768px) {
  .privacy-inner {
    font-size: 14px;
  }

}





/*ブログページ*/
.blog-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 30px 20px; /* 端末幅が狭いときの余白 */
}
.p-allArchive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px; /* 行間 / 列間 */
  list-style: none;
  margin: 0;
  padding: 0;
}


.p-allArchive__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.p-allArchive__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.p-allArchive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* サムネイル枠 */
.p-allArchive__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden; 
  position: relative;
}

/* 画像 */
.p-allArchive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease; 
}

/* ホバー時：画像だけ拡大 */
.p-allArchive__link:hover .p-allArchive__thumb img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .p-allArchive__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}