/* ==========================
   ロゴ 無限スクロール（確定版）
========================== */
.logo-scroll{
  overflow: hidden;
  box-sizing: border-box;
  width: min(700px, 100%);     /* ★PCは最大700px、SPは100% */
  margin-inline: auto;         /* ★必ず中央 */
}

/* SP：左右15px余白 */
@media (max-width: 768px){
  .logo-scroll{
    padding-inline: 15px;
  }
}

.logo-scroll__inner{
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.logo-scroll__inner img{
  width: 108px;
  height: 37px;
  flex: 0 0 auto;
  margin-right: 12px;
  display: block;
}

/* ===============================
   口コミスライダー
=============================== */

.review-slider {
  padding: 60px 0;
}

.review-slider-inner {
  width: 95%;
  margin: 0 auto;
  position: relative;
}

.review-head{
  display:flex;
  align-items:center;      /* 縦中央 */
  justify-content:center;  /* 横中央 */
  gap:12px;
}

.review-head img{
  width:25%!important;
  height:auto;
  display:block;
}

.review-name{
  font-size:17px;
  font-weight:700;
}

/* 矢印 */
.review-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 左右位置 */
.review-arrow.prev {
  left: 8px;
}

.review-arrow.next {
  right: 8px;
}

/* 中の三角（重要） */
.review-arrow::after {
  content: "";
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

/* 左 */
.review-arrow.prev::after {
  content: "◀";
}

/* 右 */
.review-arrow.next::after {
  content: "▶";
}

/* トラック */
.review-track-wrap {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* カード */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.review-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.review-stars {
  margin: 10px 0;
  font-size: 18px;
  color: #f5a623;
}

.review-text {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  overflow: hidden;
  max-height: 72px; /* 3行分 */
  transition: max-height .3s;
}

.review-card.is-open .review-text {
  max-height: 500px;
}

/* 続きを見る（完全プレーン・hover無変化） */
.review-more {
  margin-top: 8px;
  font-size: 12px;
  color: #666;

  background: transparent;
  border: none;
  padding: 0;

  cursor: pointer;
  text-decoration: underline;

  appearance: none;
  -webkit-appearance: none;

  box-shadow: none;
  outline: none;
}

/* hover / focus / active でも「何もしない」を明示 */
.review-more:hover,
.review-more:focus,
.review-more:active {
  color: #666;                 /* ← これが抜けていた */
  background: transparent;
  text-decoration: underline; /* ← 見た目維持 */
  box-shadow: none;
  outline: none;
}



/* ドット */

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* ★ buttonを完全にリセット */
.review-dots button {
  all: unset;                 /* ← 最重要 */
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;             /* ← button対策 */
  min-height: 8px;
  border-radius: 50%;
  background-color: #bdbdbd;
  cursor: pointer;
}

/* アクティブ */
.review-dots button.is-active {
  background-color: #333;
}

/* PC：5枚表示 */
@media (min-width: 1024px) {
  .review-card {
    width: calc((100% - 20px * 4) / 5);
    flex-shrink: 0;
  }
}

/* SP：1枚 */
@media (max-width: 768px) {
  .review-card {
    width: 100%;
    flex-shrink: 0;
  }
}

.review-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.45s ease; /* ← これが無かった */
}

/***********************************
 * 無料相談フォーム
 * *********************************/
.one-column-page{
    width:100%;
    padding:20px 20px;
    box-sizing:border-box;
}

.one-column-inner{
    width:100%;
	max-width:880px;
	margin-left:auto;
    margin-right:auto;
    box-sizing:border-box;
}

.one-column-inner img{
    max-width:100%;
    height:auto;
}

.one-column-inner .center{
    text-align:center;
}

.one-column-inner .center img{
    display:block;
    margin-left:auto;
    margin-right:auto;
}

/*ポータルアイコン*/
.satei_portal_icon_list{
	max-width:720px;
	margin:15px auto;
}

.satei_portal_icon_list ul{
	display:flex;
	flex-wrap:wrap;
	margin:0;
	padding:0;
	list-style:none;
}

.satei_portal_icon_list li{
	width:33.333%;
	padding:2px;
	box-sizing:border-box;
	text-align:center;
}

.satei_portal_icon_list img{
	display:block;
	width:100%;
	height:auto;
}

.gaibulink{
	text-align:center;
	margin-top:10px;
}
.custom-hr-green {
  margin-left: 0px;
  margin-right: 0px;
	margin-top : 25px;
	margin-bottom : 25px;
  border: none;
  border-top: 3px solid #6bc65d;
}
.sankaku-green-satei{
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #6bc65d;
	margin : -25px auto 30px;
}

/************************
代表挨拶（単独ページ
************************/
	.top-daihyou-box-page{
		max-width : 880px;
		background : #fff;
		margin : 20px auto;
		border : 1px solid #555151;
		border-radius : 15px;
		padding : 25px;
	}
.sign{
	text-align : right;
}

@media (max-width: 768px) {
	.top-daihyou-box-page{
		width : 100%;
		margin : 20px 0;
		padding : 15px;
	}
	}

/************************
会社概要
************************/

.company_box{
	max-width:860px;
	margin:30px auto;
}

.company_box table{
	width:100%;
	border-collapse:collapse;
}

.company_box th{
	width:30%;
	padding:15px;
	background:#f5f5f5;
	border:1px solid #ddd;
	text-align:left;
	vertical-align:top;
	font-weight:bold;
}

.company_box td{
	padding:15px;
	border:1px solid #ddd;
	vertical-align:top;
	line-height:1.8;
}

.company_box pre{
	margin:0;
	padding:0;
	white-space:normal;
	font-family:inherit;
	font-size:inherit;
	line-height:inherit;
}


/************************
スマホ
************************/

@media screen and (max-width:768px){

	.company_box{
		padding:0;
	}

	.company_box table,
	.company_box tbody,
	.company_box tr,
	.company_box th,
	.company_box td{
		display:block;
		width:100%;
		box-sizing:border-box;
	}

	.company_box tr{
		margin-bottom:15px;
		border:1px solid #ddd;
	}

	.company_box th{
		background:#f5f5f5;
		border:none;
		border-bottom:1px solid #ddd;
		padding:12px;
	}

	.company_box td{
		border:none;
		padding:12px;
	}
}

/************************
会社情報
************************/

.company_jyouhou{
	max-width:1080px;
	margin:40px auto;
	display:flex;
	gap:30px;
}

.company_jyouhou_left,
.company_jyouhou_right{
	flex:1;
}

.company_jyouhou_left img,
.company_jyouhou_right img{
	max-width:100%;
	height:auto;
}

.access_mini_title{
	background:#6ac65c;
	color:#fff;
	font-size:18px;
	font-weight:bold;
	padding:8px 15px;
	margin:20px 0 15px;
}

.jyouhou_text{
	line-height:1.8;
}

.jyouhou_text ul{
	margin:0;
	padding-left:20px;
}

.jyouhou_text li{
	margin-bottom:10px;
}


/************************
アクセス案内
************************/

.access_flow{
	max-width:1080px;
	margin:50px auto;
}

.access_title{
	background:#6ac65c;
	color:#fff;
	font-size:24px;
	font-weight:bold;
	text-align:center;
	padding:15px;
	margin-bottom:30px;
	line-height:1.5;
}

.access_flow ul{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	padding:0;
	margin:0;
	list-style:none;
}

.access_flow li{
	width:calc(33.333% - 14px);
}

.access_flow li img{
	width:100%;
	height:auto;
	display:block;
}

.a_text{
	margin-top:10px;
	line-height:1.8;
	font-size:14px;
	margin-bottom : 20px;
}


/************************
Googleマップ
************************/

.center{
	text-align:center;
}

.center img{
	max-width:1080px;
	width:auto;
	height:auto;
}


/************************
PC/SP切替
************************/

.pc{
	display:block;
}

.sp{
	display:none;
}

.br-sp{
	display:none;
}


/************************
スマホ
************************/

@media screen and (max-width:768px){

	.pc{
		display:none;
	}

	.sp{
		display:block;
	}

	.br-sp{
		display:inline;
	}

	.company_jyouhou{
		display:block;
		padding:0;
	}

	.company_jyouhou_left,
	.company_jyouhou_right{
		width:100%;
		margin-bottom:30px;
	}

	.access_flow{
		padding:0 15px;
	}

	.access_title{
		font-size:18px;
		padding:12px;
	}

	.access_flow ul{
		display:block;
	}

	.access_flow li{
		width:100%;
		margin-bottom:25px;
	}

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

/***********************
個人情報保護方針
***********************/

.policy_box_single{
	max-width:1080px;
	margin:0 auto 30px;
	font-size:15px;
	line-height:2;
	color:#333;
}

.policy-green-ttl{
	background:#6bc65d;
	margin:0 0 30px;
	padding:14px 20px;
	font-size:20px;
	font-weight:700;
	color:#fff;
	line-height:1.5;
	text-align:center;
}

.policy_box_single strong{
	display:block;
	margin:35px 0 10px;
	font-size:18px;
	font-weight:700;
	color:#222;
}

.policy_box_single ol{
	margin:15px 0 20px 0.5em;
	padding-left:1em;
}

.policy_box_single ol li{
	margin-bottom:10px;
	line-height:1.9;
}

.policy_box_single ol li::before{
	content:none !important;
}

.policy-box-bottom{
	max-width:700px;
	margin:50px auto;
	padding:28px;
	border:1px solid #6bc65d;
	text-align:center;
	line-height:2;
	box-sizing:border-box;
}

.policy-box-bottom span{
	font-size:18px;
	font-weight:700;
}

.policy-box-bottom a{
	word-break:break-all;
}

.google-logo{
	width:auto !important;
	max-width:100%;
	height:auto;
}

@media screen and (max-width:768px){

	.policy_box_single{
		padding:0;
		font-size:14px;
		line-height:1.9;
	}

	.policy-green-ttl{
		font-size:18px;
		padding:12px 15px;
	}

	.policy_box_single strong{
		font-size:16px;
		margin:28px 0 8px;
	}

	.policy-box-bottom{
		margin:40px 0px;
		padding:20px;
	}
}