/* =====================================================
   Reset / Base
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================================================
   Breadcrumb
===================================================== */
.breadcrumb {
  background-color: #e3dfd1;
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 11px;
  color: #333;
}

.breadcrumb-inner a {
  color: #333;
}

/* =====================================================
   Hero
===================================================== */
.hero {
  position: relative;
  width: 100%;
}

.hero img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  display: block;
}

.hero-title {
	position: absolute;
	left: max(24px, calc(50% - 550px + 24px));
	bottom: 20px;
	font-size: 32px;
	font-weight: 500;
	color: #ffffff;
	padding: 8px 0;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-title h1{
  background: rgba(0, 0, 0, 0.15);
}


/* =====================================================
   Main Content
===================================================== */
.content {
  max-width: 1100px;
  margin: 80px auto 120px;
  padding: 0 24px;
}

/* =====================
  Greeting
===================== */

.greeting-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin: 0px auto 100px;
}

.greeting-text {
  flex: 1;
}

.greeting-text h2 {
  font-size: 26px;
  font-weight: 500;
  color: #505050;
  margin-bottom: 20px;
  color: #000;
}

.greeting-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.greeting-photo {
  width: 320px;
  flex-shrink: 0;
}

.greeting-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.greeting-photo .name {
  font-size: 16px;
  margin-top: 16px;
  text-align: right;
  color: #333;
  font-weight: 500;
}

/* =====================
  Profile
===================== */

.profile {
  max-width: 1100px;
  margin: 0 auto 100px;
}

.profile h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

.profile-table {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  border: 1px solid #e0e0e0;
  padding: 24px 32px;
  font-size: 15px;
  line-height: 1.6;
}

.profile-table th {
  width: 240px;
  background: #d8f4ef;
  text-align: center;
  font-weight: 550;
  color: #333;
}

.profile-table td {
  background-color: #fff;
  color: #444;
}

/* =====================
  Access
===================== */

.access {
  max-width: 1100px;
  margin: 0 auto 120px;
}

.access h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

.access p {
  font-size: 16px;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.8;
}

.map {
  width: 100%;
}

.map img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================
  Responsive
===================== */

@media screen and (max-width: 768px) {

  .page-hero img {
    height: 200px;
  }

  .page-hero-inner {
    padding: 24px 16px;
  }

  .greeting-inner {
    flex-direction: column;
    gap: 32px;
  }

  .greeting-photo {
    width: 100%;
    max-width: 240px;
  }

  .profile-table th {
    width: 120px;
  }
}