:root {
  --main-color: #1a2947;
  --accent-color: #23335c;
  --line-color: #e0e3e8;
  --btn-bg: #1a2947;
  --btn-hover: #23335c;
  --btn-text: #fff;
  --headline-line: #b0b6be;
}

body {
  font-family: 'Noto Sans JP', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--main-color);
  min-height: 100vh;
  transition: background 0.6s;
  letter-spacing: 0.02em;
}

header, .header-inner {
  background: #fff;
  border-bottom: 2px solid var(--line-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  transition: box-shadow 0.3s;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  transition: padding 0.3s;
  position: relative;
}
.logo {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--main-color);
  background: none;
  -webkit-text-fill-color: initial;
}
.logo-link {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px 18px 6px 10px;
  margin-right: 18px;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-list li a {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
}
.nav-list li a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s;
}
.nav-list li a:hover::after {
  width: 100%;
}
.nav-list li a:hover {
  color: var(--accent-color);
}

.main-visual {
  width: 100vw;
  height: 100vh;
  min-height: 400px;
  max-height: 900px;
  margin: 0;
  padding: 0;
  position: relative;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.main-visual-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('images/back-top.jpg') center center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.92) grayscale(0.08);
}
.mv-copy {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: #fff;
  text-align: center;
  position: static;
  top: 0;
  margin: 0 auto;
  max-width: 90vw;
}
.mv-copy-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: mvFadeUp 1.2s cubic-bezier(0.4,0,0.2,1) 0.2s both;
  background: rgba(26,41,71,0.13);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(26,41,71,0.13);
}
.mv-copy-overlay h2, .mv-copy-overlay p, .mv-copy-overlay .en {
  color: #fff;
  text-shadow: 0 4px 24px rgba(26,41,71,0.85), 0 1px 0 #1a2947;
}
.mv-copy-overlay h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.mv-copy-overlay .en {
  color: #fff;
  opacity: 0.92;
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 8px;
  text-shadow: 0 2px 12px rgba(26,41,71,0.7);
}
.mv-copy-overlay p {
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .mv-copy-overlay h2 {
    font-size: 1.3rem;
  }
  .mv-copy-overlay p {
    font-size: 0.98rem;
  }
}

section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 48px 32px;
  margin: 56px auto;
  max-width: 980px;
  animation: fadeIn 1.2s;
}
section h2, section h3 {
  font-family: 'Noto Sans JP', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  font-size: 2.1rem;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
section h2 .en, section h3 .en {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-right: 8px;
}
section h2::after, section h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--headline-line);
  border-radius: 2px;
  margin-top: 8px;
}
.business-list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  flex-wrap: wrap;
}
.business-list li {
  flex: 1 1 220px;
  background: linear-gradient(120deg, #f4f6fa 60%, #e8ecf3 100%);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(26,41,71,0.06);
  border: 1px solid #e0e3e8;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeIn 1.2s;
  display: flex;
  flex-direction: column;
}
.business-list li:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,119,182,0.18);
}
.business-list h4 {
  color: var(--main-color);
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
}
.business-list li .btn {
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.01rem;
  margin-top: auto;
  box-shadow: none;
  border: none;
}
.business-list li .btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.news-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
.news-list li:nth-child(1) { animation-delay: 0.2s; }
.news-list li:nth-child(2) { animation-delay: 0.4s; }
.news-list li:nth-child(3) { animation-delay: 0.6s; }
.news-list .date {
  color: #0077b6;
  font-weight: bold;
  margin-right: 8px;
}

footer, .footer-inner {
  background: var(--main-color);
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 56px;
  box-shadow: none;
  border-top: none;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.3s;
}
.footer-nav a:hover {
  color: #fff;
  opacity: 0.8;
}
.footer-nav a:hover::after {
  width: 100%;
}
.footer-info p {
  margin: 4px 0;
  font-size: 0.97rem;
  color: #fff;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0,119,182,0.07);
  border-radius: 8px;
  overflow: hidden;
}
.company-table th, .company-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  text-align: left;
}
.company-table th {
  background: #e6f0fa;
  color: #1a3a5e;
  width: 140px;
  font-weight: bold;
}
.company-table td a {
  color: #0077b6;
  text-decoration: underline;
}

form label {
  font-weight: 500;
  color: #1a3a5e;
}
form input, form textarea {
  width: 100%;
  max-width: 420px;
  padding: 8px 10px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #bcdffb;
  border-radius: 6px;
  font-size: 1rem;
  background: #f8fafc;
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
form textarea {
  min-height: 120px;
  resize: vertical;
}
form input:focus, form textarea:focus {
  border: 1.5px solid #0077b6;
  box-shadow: 0 0 0 2px #bcdffb;
  outline: none;
}

@media (max-width: 800px) {
  .header-inner, .footer-inner, section {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .business-list {
    flex-direction: column;
    gap: 16px;
  }
  .mv-copy {
    padding: 18px 6vw;
    margin-top: -40px;
    top: -40px;
  }
  section {
    padding: 24px 4vw;
    margin: 32px auto;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100vw;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 150;
    padding: 18px 0 18px 0;
    border-radius: 0 0 12px 12px;
  }
  .nav-list.open {
    display: flex !important;
  }
  .nav-list li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .nav-list li:last-child {
    border-bottom: none;
  }
  .header-inner {
    padding: 10px 8px;
  }
}
@media (max-width: 500px) {
  .main-visual, .main-visual-bg {
    min-height: 320px;
    height: 60vw;
    max-height: none;
  }
  .mv-copy-overlay {
    width: 100vw;
    padding: 12px 4vw;
    top: 55%;
  }
  .mv-copy-overlay h2 {
    font-size: 1.35rem;
  }
  .mv-copy-overlay p {
    font-size: 1.05rem;
  }
  .btn {
    padding: 10px 10vw;
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .logo-img {
    height: 36px;
  }
  .logo-link {
    padding: 4px 10px 4px 6px;
    margin-right: 8px;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100vw;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 150;
    padding: 18px 0 18px 0;
    border-radius: 0 0 12px 12px;
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .nav-list li:last-child {
    border-bottom: none;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    padding: 10px 8px;
  }
  .btn {
    width: 100%;
    min-width: 0;
    padding: 12px 0;
    font-size: 1.1rem;
    border-radius: 18px;
    margin-top: 10px;
  }
  section, .footer-inner {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .business-list li, .business-detail-item {
    padding: 12px 6px;
  }
  .company-table th, .company-table td {
    padding: 7px 6px;
    font-size: 0.97rem;
  }
  form input, form textarea {
    font-size: 1.05rem;
    padding: 12px 8px;
  }
}

.about-visual {
  background: linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)), url('images/back-company.jpg') center/cover no-repeat;
}

.business-visual {
  background: linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)), url('images/back-service.jpg') center/cover no-repeat;
}

.group-visual {
  background: linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)), url('images/company3.jpg') center/cover no-repeat;
}

.news-visual {
  background: linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)), url('images/company4.jpg') center/cover no-repeat;
}

.recruit-visual {
  background: linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)), url('images/back-recruit.jpg') center/cover no-repeat;
}

.contact-visual {
  background: linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)), url('images/back-contact.jpg') center/cover no-repeat;
}

.business-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.business-detail-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,119,182,0.06);
  padding: 18px 20px;
  gap: 24px;
}
.business-detail-text {
  flex: 1;
}
.business-detail-item .btn {
  align-self: center;
  min-width: 120px;
  margin-top: 0;
  margin-left: 24px;
}
.business-detail-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 700px) {
  .business-detail-item {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 8px;
  }
  .business-detail-item .btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    min-width: 0;
  }
  .business-detail-item .btn {
    width: 100%;
    min-width: 0;
  }
}

/* --- ハンバーガーメニュー --- */
.hamburger {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  z-index: 200;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #1a3a5e;
  border-radius: 2px;
  transition: 0.3s;
}

.btn, a.btn {
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 28px;
  border: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 18px;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.btn:hover, a.btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
}

section h2::after, section h3::after {
  background: var(--headline-line);
  height: 2px;
  width: 48px;
  margin-top: 8px;
}
footer, .footer-inner {
  background: var(--main-color);
  color: #fff;
  border-top: none;
}

@keyframes mvFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* --- 事業紹介フルワイド交互セクション --- */
.business-fullwide {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #f7fafd;
  padding: 0 0 48px 0;
}
.business-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  gap: 0;
  flex-wrap: wrap;
}
.business-row.reverse {
  flex-direction: row-reverse !important;
}
.business-img {
  flex: 1 1 50%;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 0;
}
.business-img img {
  width: 90%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transition: transform 0.3s;
}
.business-img img:hover {
  transform: scale(1.04) rotate(-1deg);
}
.business-text {
  flex: 1 1 50%;
  min-width: 280px;
  padding: 32px 40px;
  text-align: left;
}
.business-row.reverse .business-text {
  text-align: right;
}
.business-text h3 {
  font-size: 2rem;
  color: var(--main-color, #1a3a5e);
  margin-bottom: 18px;
  font-weight: 700;
}
.business-text p {
  font-size: 1.13rem;
  margin-bottom: 18px;
  color: #333;
}
.business-btn-center {
  text-align: center;
  margin-top: 0;
}
@media (max-width: 900px) {
  .business-row, .business-row.reverse {
    flex-direction: column !important;
    max-width: 98vw;
    margin-bottom: 36px;
  }
  .business-img, .business-text {
    min-width: 0;
    max-width: 100%;
    padding: 0 8vw;
  }
  .business-img img {
    width: 100%;
    height: 200px;
  }
  .business-text {
    padding: 24px 0 32px 0;
    text-align: center !important;
  }
}

/* --- 事業紹介 画像テキスト交互配置 --- */
.business-visual-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #f7fafd;
  padding: 0 0 64px 0;
}
.business-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}
.business-section-sub {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 0.5rem;
}
.business-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 56px auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(26,41,71,0.10);
  overflow: hidden;
  flex-wrap: nowrap;
  transition: box-shadow 0.2s;
}
.business-row.reverse {
  flex-direction: row-reverse !important;
}
.business-img-col, .business-text-col {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 50%;
  box-sizing: border-box;
}
.business-img-col img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  display: block;
}
.business-text-col {
  flex: 1 1 50%;
  min-width: 280px;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.business-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.business-title.fishery { color: var(--accent-color); }
.business-title.egg { color: #e09b2d; }
.business-title.vegetable { color: #10b981; }
.business-text-col p {
  font-size: 1.13rem;
  margin-bottom: 24px;
  color: #333;
  line-height: 1.8;
}
.business-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,41,71,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  border: none;
  gap: 0.5em;
}
.business-btn.fishery {
  background: var(--btn-bg);
}
.business-btn.egg {
  background: #e09b2d;
}
.business-btn.vegetable {
  background: #10b981;
}
.business-btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  box-shadow: 0 6px 24px rgba(26,41,71,0.18);
}
.business-btn.egg:hover {
  background: #c97c00;
}
.business-btn.vegetable:hover {
  background: #059669;
}

/* フェードインアニメーション */
.business-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.business-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .business-row, .business-row.reverse {
    flex-direction: column !important;
    max-width: 98vw;
    margin-bottom: 36px;
  }
  .business-img-col, .business-text-col {
    max-width: 100%;
  }
  .business-img-col img {
    max-height: 220px;
  }
  .business-text-col {
    padding: 28px 6vw 32px 6vw;
    text-align: center;
  }
}

/* お問い合わせフォーム用ラッパー */
.contact-form-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto 24px auto;
}
.contact-form-wrap form {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.98);
  padding: 32px 24px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,41,71,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-wrap label {
  margin-bottom: 4px;
  font-weight: 600;
  color: #23335c;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
}
.contact-form-wrap .btn {
  align-self: center;
  width: 60%;
  min-width: 120px;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .contact-form-wrap form {
    padding: 18px 4vw 14px 4vw;
    max-width: 98vw;
  }
  .contact-form-wrap .btn {
    width: 100%;
    min-width: 0;
  }
}

/* 入力欄の大きさ統一 */
.unified-input {
  width: 100%;
  min-width: 220px;
  max-width: 100%;
  height: 44px;
  font-size: 1.05rem;
  padding: 10px 18px 10px 45px;
  box-sizing: border-box;
  margin-bottom: 0;
  border-radius: 10px;
}
.form-textarea.unified-input {
  height: 120px;
  min-height: 120px;
  padding-left: 18px;
  resize: vertical;
}
.input-group {
  margin-bottom: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.input-group .form-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #23335c;
  margin-bottom: 6px;
  display: block;
}
.input-icon {
  position: absolute;
  left: 15px;
  top: 38px;
  transform: translateY(-50%);
  color: #6366f1;
  font-size: 1.1em;
  pointer-events: none;
}
.required {
  color: #e11d48;
  font-size: 0.95em;
  margin-left: 2px;
}

.label-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.label-icon-row .form-label {
  margin-bottom: 0;
}
.label-icon-row .input-icon {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  font-size: 1.1em;
  color: #6366f1;
  margin-left: 2px;
}

.mission {
  position: relative;
  overflow: hidden;
  padding: 48px 32px;
  margin: 56px auto;
  max-width: 980px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.mission::before {
  content: '120';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 200px;
  font-weight: 900;
  color: rgba(26, 41, 71, 0.04);
  line-height: 1;
  z-index: 0;
  font-family: 'Roboto', sans-serif;
}

.mission h3 {
  position: relative;
  z-index: 1;
}

.mission p {
  position: relative;
  z-index: 1;
  font-size: 1.13rem;
  line-height: 1.8;
  color: #333;
} 