body {
	  font-family: "Noto Sans JP", sans-serif;
	color: #020000;
	line-height: 1.6;
	background-image: url("../images/bg1.png");
background-repeat: repeat;   /* 繰り返す */
background-size: 100px 100px; /* 幅100px × 高さ100pxでタイル状に配置 */

}
.container {
	max-width: 1000px;
	width: 100%;
	margin: auto;
}

.text-highlight {
	color: #D01610;
}

.text-negative {
	color: #005a87;
}

/* 基本レイアウト */
.header {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
/* 
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */


.header-container {
 max-width: 1000px;
 width: 98%;
  margin: 0 auto;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.header-left {
  flex: 1;
}

.header-sub {
  font-size: 14px;
  color: #333;
  margin: 0 0 10px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

.logo-sub {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}

.logo-small {
  font-size: 12px;
  color: #666;
  max-width: 200px;
}

.logo-small svg {
	width: 100%;
}


.header-right {
  text-align: right;
}

.header-label {
  font-size: 14px;
  margin: 0;
}

.highlight {
  background: #ff6600;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.tel {
  font-size: 24px;
  font-weight: bold;
	display:flex;
}

.tel a {
  color: #ff6600;
  text-decoration: none;
}

.time {
  font-size: 13px;
  color: #333;
}

/* 📱 スマホ（750px以下） */
@media (max-width: 750px) {
  .header-inner {
    align-items: flex-start;
  }
  .header-right {
    text-align: left;
  }
  .tel {
    font-size: 18px;
  }
  .logo {
    font-size: 20px;
  }
  .logo-sub {
	font-size: 12px;
  }
  .header-left {
	max-width: 150px;
  }
  .header-sub {
	font-size: 12px;
  }
}

/* 事例 */

.case-bg {
	background: linear-gradient(to bottom, #FEF7E9 0%, #F7E4BE 100%);
	padding: 90px 0;
}
.case-heading2 {
	width: fit-content;
	margin: auto;
	transform: translateY(40px);
}
.case-container1 {
	margin-bottom: 60px;
}
.case-container .heading3 {
	display: block;
	margin: 0 auto 60px;
	width: fit-content;
}
.case-container .heading3 img {
	margin: auto;
}
.case-content+.case-content {
margin-top: 20px;
}

@media (max-width: 768px) {
	.case-bg {
		padding: 70px 0;
	}
	
	.case-container1 {
		margin-bottom: 30px;
	}
	.case-container1 .heading3 {
width: 80%;
margin: 0 auto 30px;
	}
	.case-container2 .heading3 {
width: 70%;
margin: 0 auto 30px;
	}
	#merit {
		margin-top:40px
	}
}

/* 解決策 */

#solution2 .heading2 {
	display: block;
	margin: 0 auto;
	width: fit-content;
}
.profile-section {
background: linear-gradient(180deg, #FDF689 0%, #FEF9B5 100%);
  padding: 40px 20px;
}

/* PC：横並び（flex） */
@media screen and (min-width: 751px) {
  .profile-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }

  .profile-img {
    flex: 0 0 250px;
    text-align: center;
  }

  .profile-img img {
    width: 100%;
  }

  .name {
    margin-top: 10px;
    font-weight: bold;
  }

  .profile-text {
    flex: 1;
  }
}

/* スマホ：floatで画像にテキストを回り込ませる */
@media screen and (max-width: 750px) {
  .profile-img {
    float: left;
    width: 40%;
    margin: 0 15px 10px 0;
    text-align: center;
  }

  .profile-img img {
    width: 100%;
    height: auto;

  }

  .name {
    font-weight: bold;
    margin-top: 5px;
  }

  .profile-text {
    font-size: 15px;
  }
}

/* セクションの上下余白 */
#feature {
  padding: 40px 0;
}

/* ul を flexbox にする */
.feature-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;             /* 要素同士の間隔 */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  list-style: none;      /* ●を消す */
}

/* li を均等3列に */
.feature-inner li {
  flex: 1 1 calc(33.333% - 12px);
}


/* 📱 スマホ: 1列表示 */
@media (max-width: 750px) {
  .feature-inner {
    flex-direction: column;
    gap: 12px;
  }
  .feature-inner li {
    flex: 1 1 100%;
	margin: auto;
  }
}

#reason {
	margin-top: 30px;
}
#reason .heading2 {
	margin-bottom: 60px;
}
.reason-container li + li {
	margin-top: 40px;
}

.rason-end {
	font-weight: bold;
	font-size: 22px;
	margin: 60px 25px 0;
}

@media (max-width: 768px) {
	.rason-end {
		font-size: 20px;
		margin-top: 40px;
	}
	#reason .heading2 {
		margin-bottom:40px
	}
	.reason-container li + li {
		margin-top:20px;
	}
}

#specialist {
	margin: 80px 25px 0;
}

#specialist .heading2 {
	margin-bottom: 80px;
}
.specialist-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-family: "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.specialist-container + .specialist-container {
	margin-top: 80px;
}

.specialist-img img {
  max-width: 250px;
  height: auto;
  display: block;
}

.specialist-header {
  width: 65%;
}

.specialist-office {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.specialist-role {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.specialist-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.specialist-ruby {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.specialist-license {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Accordion Button */
.specialist-accordion-btn {
  width: 100%;
  padding: 1rem;
  background-color: #f26522;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.specialist-accordion-btn::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.specialist-accordion-btn.active::after {
  content: "-";
}

/* Accordion Panel */
.specialist-accordion-panel {
  background: #fafafa;
  margin-top: 0.5rem;
  border-radius: 6px;
  padding: 0 1rem;
}

.specialist-accordion-panel.open {
  padding: 1rem;
}

.panel {
  display: none; /* 最初は非表示 */
}


/* Responsive */
@media screen and (max-width: 750px) {
  .specialist-img img {
    max-width: 100%;
  }

  .specialist-name {
    font-size: 1.5rem;
  }

  .specialist-accordion-btn {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
.specialist-container {
	flex-wrap: wrap;
}
  .specialist-header {
	display: contents;
  }

  .specialist-img,
  .specialist-info{
	width: 48%;
  }
  .specialist-btn {
	width: 100%;
	margin-top: 30px;
  }
}

.strong-container + .strong-container {
	margin-top: 80px;
}

#strong {
	margin-top: 80px;
	padding: 80px 0;
	background: repeating-linear-gradient(
135deg, #ffbbac, #FEEADF 2px, #FEEADF 2px, #FEEADF 14px);
	margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.strong-container {
	max-width:1000px;
	margin:auto;
	
}

@media (max-width: 768px) {
	#strong {
		margin-top: 40px;
		padding: 40px 0;
	}
	.strong-container + .strong-container {
		margin-top: 40px;
	}
	.strong-container {
		width:90%;
		margin:auto;
	}
}

.access-container {
  padding: 40px 20px;
  background: #fff;
}

.access-heading {
  font-size: 26px;
  font-weight: bold;
  background: #f45b0c; /* オレンジ */
  color: #fff;
  padding: 12px;
  margin-bottom: 24px;
}

.access-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.access-info {
  flex: 1;
}

.access-info-row {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}

.access-map {
  flex: 1;
  min-width: 300px;
	max-width:100%;
}

.access-info-row {
  display: flex;
  align-items: flex-start; /* 所在地みたいに複数行でも揃う */
  margin-bottom: 8px;
}

.access-info-header {
  flex: 0 0 80px; /* 左の幅を固定したい場合 */
min-width: 150px;
display: inline-block;
}

.access-info-value {
  flex: 1;
}


.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* スマホ対応（750px以下で1列） */
@media (max-width: 750px) {
  .access-inner {
    flex-direction: column;
  }
  .access-map {
    margin-top: 20px;
	width: 100%;
  }

  .access-heading {
	font-size: 20px;
  }
  .access-info-row {
	font-size: 16px;
  }
}


#faq {
	margin: 40px 0;
	background:#fff;
	padding:30px 0;
}
#faq .heading2 {
	display: block;
	margin: 0 auto 60px;
	width: fit-content;
}
.faq-container {
	max-width: 900px;
	margin: 0 auto
}

#faq .heading2 img {
	margin: auto;
}
    .faq-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #222;
    }

    .faq-section {
      margin-bottom: 50px;
    }

    .faq-section h2 {
		display: flex;
		align-items: center;
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 15px;
	  color: #FF5D05;
	  border-bottom: 1px solid #FF5D05;
	  margin-bottom: 30px;
    }

	.faq-category-icon {
		margin-right: .5rem;
	}

	.faq-question {
		display: flex;
		align-items: center;
		margin-bottom: 30px;
	}

	.faq-question-title {
		color: #113E8F;
		font-size: 24px;
		font-weight: bold;
	}

	.faq-question-icon {
		margin-right: 15px;
		flex-shrink: 0;
		display: inline-block;
	}

	/* 既存 .panel を活かしつつ、背景は透明に */
.faq-container .panel {
  background: transparent;
  border: none;
  /* ここはあなたの既存値に合わせてOK */
  padding: 0 20px;
	margin-bottom:15px
}
.faq-container .panel.open { padding: 15px 20px; margin-bottom: 30px;}

/* 回答用の水色吹き出し */
.faq-answer-box {
  position: relative;
  background: #D8E4FA;           /* 水色 */
  padding: 16px 18px;
font-size: 20px;
font-weight: bold;
}

/* しっぽ（外枠） */
.faq-answer-box::before {
  content: "";
  position: absolute;
  top: -12px;         /* 上方向に突き出す */
  left: 28px;         /* しっぽの横位置（お好みで） */
  border-width: 0 10px 12px 10px;
  border-style: solid;
  border-color: transparent transparent #D8E4FA transparent; /* 外枠色 */
}

/* しっぽ（中身） */
.faq-answer-box::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;         /* ::before より少し右にして縁を見せる */
  border-width: 0 8px 10px 8px;
  border-style: solid;
  border-color: transparent transparent #D8E4FA transparent; /* 吹き出しの塗り */
}

/* 回答内のテキスト整え（任意） */
.faq-answer-box p { margin: 0 0 0.6em; }
.faq-answer-box p:last-child { margin-bottom: 0; }
.faq-answer-box ul { margin: 0.6em 0 0; padding-left: 1.2em; }

@media (max-width: 768px) {
	#faq .heading2 {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
		padding-left: 15px;
	}

	.faq-category-icon {
	width: 40px;
	display: inline-block;	
	}
	.faq-category-icon svg,
	.faq-question-icon svg
	{
		width: 100%;
		height: auto;
	}
	.faq-section {
		width:90%;
		margin:0 auto 50px;
	}
	.faq-section h2 {
		font-size: 24px;
	}

	.faq-question-icon {
		width: 40px;
	}
	.faq-question-title {
		font-size: 20px;
	}
.faq-answer-box {
	font-size: 18px;
}
	#danger {
		margin-top:30px
	}
}


.footer-info {
	width: fit-content;
	margin: auto;
}
.footer-inner {
	background: #fff;
	padding: 30px 15px;
}

.footer-inner ul {
	display: flex;
	align-items: center;
}

.footer-inner ul li {
	width: calc(100% / 7);
	text-align: center;
}

@media (min-width: 751px) {
	.footer-inner ul li:first-child {
	border-left: 1px solid #C9C9C9;
}
	
	.footer-inner ul li {
		border-right: 1px solid #C9C9C9;
	}
}


@media (max-width: 750px) {

	.footer-inner ul {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-inner ul li {
		width: 100%;
	padding-left: 15px;
	border-bottom: 1px solid #C9C9C9;
}
}

.footer-bottom {
	background: #FF3305;
	padding: 40px 0 150px 0;
	font-size: 14px;
	color: #fff;
}


.footer-info-row {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-info-row + .footer-info-row {
	margin-top: 5px;
}

.footer-copyright {
	margin-top: 15px
}
.footer-info-header {
	min-width: 80px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
}

.form-group {
  margin-bottom: 20px;
}

.required .form-label::after {
  content: " *";
  color: red;
  margin-left: 5px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-input,
.form-textarea,
.form-select
{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
	margin-top: 40px;
}

.form-submit input[type="submit"] {
  background-color: #141414;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
	max-width:300px;
	width:100%;
	font-size:20px;
}

.form-submit input[type="submit"]:hover {
  background-color: #005a87;
}

.contact {
	width: 100%;
	max-width: 100%;
	padding: 0 20px;
	margin: 40px auto;
}
.contact-message {
	border: 1px solid #FF3305;
	padding: 15px;
	margin-bottom: 40px;
	background: #fff;
}

.contact .heading_h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom:1rem;
	color: #ff6600;
	border-bottom: 2px solid;
	border-top: 2px solid;
	padding: 10px 0;
	background: #fff;
}

.contact .heading_h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom:1rem;	
}

.reservation-btn {
	margin: 40px auto;
		max-width:300px;
	width:100%;
	text-align:center
}
.reservation-btn {
	display: block;
	width: 100%;
  background-color: #141414;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
	font-size:20px;
	
}

.fix-btn {
	position: fixed;
	bottom: 0;
	width: 98%;
	left: 50%;
	max-width: 500px;
	transform: translate(-50%, 0);
}
.fix-btn-box {
	display: flex;
	justify-content: space-between;
	z-index: 10;
	position: relative;
	width: 95%;
	margin: auto;
	padding: 15px;
}

.fix-btn-box > * {
	width: 48%;
}

.fix-btn-bg {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fix-btn-bg img {
	width: 100%;
	height: 100%;
}


.sv-text01 {
	margin: 24px auto;
	width: fit-content;
	font-size:32px;
	color: #FF5D05;
	font-weight:bold;
}
.sv-text01 .color-navy {
	color: #113E8F;
}

.sv-text02 {
	margin:24px auto 0;
		width: fit-content;
	font-size:24px;
}

@media (max-width: 750px) {
	.sv-text01 {
		width: 90%;
		font-size:24px;
	}
	.sv-text02 {
		width: 90%;
		font-size:24px;
	}
}