@charset "utf-8";
/* CSS Document */
:root {
  --maxw: 1100px;
  --gap: 58px;
  --navy: #0b4a73;
  --muted: #555;
  --bg: #f8f9fb;
  --font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
* { box-sizing: border-box; }
body {
  font-family: var(--font-main);
  color: #222;
  margin: 0;
line-height: 1.6;
}


.branch {
  margin: 60px 0 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 0px;
  overflow: hidden;
}

.branch .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px;
  display: flex;
  gap: var(--gap);
  align-items: center;
  justify-content: space-between;
}


.branch .info {
  flex: 1;
}

/* 写真エリアを広くする */
.branch .photo {
  flex: 1.4; /* 以前より横幅を広く */
}

/* 写真は自然な横長になるように縦横比を指定 */
.branch .photo img {
  width: 100%;
  aspect-ratio: 16 / 10; /* 横長にする：16:10 または 16:9 も可 */
  object-fit: cover;
  display: block;
  border-radius: 12px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* ← 薄い影（自然） */	
}

/* ★ infoエリアをより洗練 */
.branch .info {
	padding-left: 24px;
	border-left: 4px solid #EBEBEB;
}

/* 見出しを少し大きく、より存在感を */
.branch .info h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* 住所など説明文 */
.branch .info p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* 連絡先リスト */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  margin: 10px 0;
  font-size: 1.05rem;
}
.contact-label {
  display: inline-block;
  min-width: 82px;
  font-weight: 600;
  color: var(--navy);
}
.mailto {
  word-break: break-all;
  color: var(--navy);
  text-decoration: none;
}
.mailto:hover { text-decoration: underline; }

/* 地図 */
.map-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-top: 20px;
}
.map-bleed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.branch + .branch { margin-top: 80px; }


/* ▼ スマホ */
@media (max-width: 768px) {
  .branch .container {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  /* スマホは写真をかなり大きく表示 */
  .branch .photo img {
    width: 100%;
    aspect-ratio: 4 / 3;  /* ← 大きい写真が綺麗に見える比率 */
    object-fit: cover;
    border-radius: 12px;
  }

  .branch .info {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
    border-left: none;
    border-top: 3px solid #EBEBEB;
    padding-top: 18px;
  }

  .contact-label {
    display: block;
    margin-bottom: 4px;
  }

  .map-bleed iframe {
    height: 300px;
  }
}
