@charset "UTF-8";

/* ===================================
 * 変数定義（カラーパレット等）
 * =================================== */
:root {
  --primary-color: #2563eb; /* 信頼感のあるモダンなブルー */
  --primary-hover: #1d4ed8;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-white: #ffffff;
  --bg-light: #f8fafc; /* セクション区切り用のほんのり青みがかったグレー */
  --border-color: #e2e8f0;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--bg-white);
}

/* ===================================
 * ヘッダー
 * =================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px); /* 背景を少しぼかすモダンな手法 */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

/* ===================================
 * ヒーローセクション
 * =================================== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("../images/hero-nanairo.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  animation: heroZoom 8s ease-out forwards;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 文字を読みやすくするため少し暗く */
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

.hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

/* ===================================
 * 共通セクション設定
 * =================================== */
section {
  padding: 100px 20px;
}

/* 背景色：白（奇数番目） */
#about, #works, #overview {
  background-color: var(--bg-white) !important;
}

/* 背景色：薄オレンジ（偶数番目） */
#service, #admission, #contact {
  background-color: var(--bg-light) !important;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

h2, .about-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-subtitle, .about-subtitle {
  text-align: center;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* セクションの背景色を交互にする */
#about, #works, #company, #contact {
  background: var(--bg-white); /* 白背景のグループ */
}

#news, #service, #faq, #ceo {
  background: var(--bg-light); /* 灰色背景のグループ */
}

/* ===================================
 * About
 * =================================== */
#about p {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 16px;
}

/* ===================================
 * Service
 * =================================== */
.service-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  flex: 1;
  min-width: 300px;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}







/* ===================================
 * レスポンシブ対応（スマホの場合は縦並びに）
 * ※この部分は一番下の @media (max-width: 768px) { ... } の中に入れてもOKです
 * =================================== */
@media (max-width: 768px) {
  .news-container {
    padding: 20px;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .news-meta {
    min-width: auto;
  }
}

/* ===================================
 * Works
 * =================================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.work-item {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.work-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.work-item h3 {
  font-size: 18px;
  margin: 20px 20px 10px;
}

.work-item p {
  font-size: 14px;
  margin: 0 20px 20px;
  color: var(--text-muted);
}

.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}


/* ===================================
 * Company
 * =================================== */
.company-table {
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
}

.company-table th,
.company-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 25%;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===================================
 * CEO Greeting
 * =================================== */
.ceo-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.ceo-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ceo-message p {
  font-size: 16px;
  line-height: 1.9;
}

/* ===================================
 * Contact
 * =================================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form button {
  padding: 16px;
  background: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  background: var(--primary-hover);
}
/* ===================================
 * プライバシーポリシー
 * =================================== */
.privacy-section {
  max-width: 800px;
  margin: 0 auto 100px; /* 上のContactセクションとの距離感 */
  padding: 0 20px;
}

.privacy-details {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* サイト全体の丸みに合わせる */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* 他のカードと影を統一 */
  overflow: hidden;
}

.privacy-details summary {
  padding: 18px 20px;
  background: var(--bg-light);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  text-align: center;
  transition: background 0.3s ease;
}

.privacy-details summary::-webkit-details-marker {
  display: none;
}

.privacy-details summary:hover {
  background: #e2e8f0; /* ホバー時に少しだけ色を濃く */
}

/* 右側の矢印アイコン */
.privacy-details summary::after {
  content: '▼';
  position: absolute;
  right: 20px;
  font-size: 12px;
  color: var(--primary-color); /* 矢印はテーマカラーの青 */
  transition: transform 0.3s ease;
}

.privacy-details[open] summary::after {
  transform: rotate(180deg);
}

.privacy-content {
  padding: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted); /* 文章は少し落ち着いたグレーに */
}

.privacy-content h3 {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 5px;
}

.privacy-content h3:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin-bottom: 15px;
}

.privacy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 5px;
}

/* ===================================
 * フッター (明るく優しいデザインに変更)
 * =================================== */
.site-footer {
  background: #fff7ed; /* 背景を黒から薄いオレンジ（セクション背景と同じ）に変更 */
  color: #4b5563; /* 文字色をダークグレーにして読みやすく */
  padding: 60px 20px 20px;
  font-size: 14px;
  border-top: 2px solid #fdba74; /* 上部にアクセントのラインを追加 */
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #fed7aa; /* 区切り線も明るい色に */
  padding-bottom: 40px;
}

/* 左側の会社情報 */
.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #f97316; /* ロゴをテーマカラーのオレンジに */
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-address, 
.footer-tel {
  line-height: 1.8;
  margin-bottom: 10px;
  color: #6b7280;
}

/* 右側のリンク集 */
.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links li {
  margin-bottom: 15px;
  list-style: none;
}

.footer-links a {
  color: #4b5563; /* リンクの色を読みやすいグレーに */
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* ホバー時はオレンジに */
.footer-links a:hover {
  color: #f97316; 
}

/* 一番下のコピーライト */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: #9ca3af;
}

/* スマホ対応（色の調整に合わせて微調整） */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}

/* ===================================
 * アニメーション
 * =================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* スマホ表示用 */
@media (max-width: 768px) {
  .news-detail-container {
    padding: 30px 20px;
  }
  .news-title-main {
    font-size: 22px;
  }
}
/* ===================================
 * なないろ保育園用：追加スタイル（ここから）
 * =================================== */
:root {
  --primary-color: #f97316; /* 温かみのあるオレンジ */
  --primary-hover: #ea580c;
  --bg-light: #fff7ed;
}

/* ナビゲーションボタンエリアのスタイル */
.nav-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.btn-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 80px;
  background-color: var(--primary-color);
  color: #fff !important;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
  text-align: center;
}

.btn-nav:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(249, 115, 22, 0.4);
}

/* スマホでは縦並び・横幅いっぱいにする */
@media (max-width: 768px) {
  .btn-nav {
    width: 100%;
    height: 60px;
  }
}

/* ホバー時にフィルターを薄くして明るく見せる演出 */
.btn-nav:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
}

/* ごあいさつセクションの横並びレイアウト */
.about-flex-container {
  display: flex;
  align-items: center; /* 縦の中央で揃える */
  justify-content: space-between;
  gap: 40px; /* テキストと画像の間の隙間 */
  max-width: 1000px;
  margin: 0 auto;
}

/* 左側のテキスト設定 */
.about-text {
  flex: 1; /* 横幅を均等にする */
}

/* 元のCSSにあった中央寄せ設定を上書きして左寄せにする */
#about .about-text p {
  text-align: left;
  margin: 0 0 20px 0;
  max-width: none;
}

/* 右側の画像設定 */
.about-image {
  flex: 1; /* 横幅を均等にする */
}

.about-image img {
  width: 100%; /* 枠に合わせて画像を縮小・拡大 */
  height: auto;
  border-radius: 12px; /* 画像の角を少し丸くする */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 軽い影をつける */
}

/* スマホ閲覧時は縦並びにする設定 */
@media (max-width: 768px) {
  .about-flex-container {
    flex-direction: column; /* 横並びから縦並びに変更 */
  }
  #about .about-text p {
    text-align: left; /* スマホでも左寄せ（中央寄せが良い場合は center に） */
  }
}

/* ===================================
 * 保育目標（かわいいカードアレンジ）
 * =================================== */
/* カード全体の基本設定を上書き */
#service .card {
  border: 3px dashed #fff; /* もこもこステッチ風の点線枠 */
  border-radius: 20px; /* 角をもっと丸っこく */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* 影はふんわり優しく */
  transform: rotate(-1deg); /* ほんの少し左に傾けて手作り感を出す */
  transition: transform 0.3s ease;
}

/* 偶数番目のカードは右に傾ける（ジグザグにする） */
#service .card:nth-child(even) {
  transform: rotate(1.5deg);
}

/* マウスを乗せると「ぴょこん」と浮き上がるアニメーション */
#service .card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* カード内のタイトル設定 */
#service .card h3 {
  font-size: 19px;
  border-bottom: 2px dotted currentColor; /* タイトルの下にドット線 */
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* 各カードのカラー設定（背景色、枠線の色、文字色） */
.card-pink { background-color: #ffe4e1; border-color: #ffb6c1 !important; }
.card-pink h3 { color: #d87093; }

.card-yellow { background-color: #fffacd; border-color: #f0e68c !important; }
.card-yellow h3 { color: #daa520; }

.card-green { background-color: #f0fff0; border-color: #98fb98 !important; }
.card-green h3 { color: #2e8b57; }

.card-blue { background-color: #f0f8ff; border-color: #b0c4de !important; }
.card-blue h3 { color: #4682b4; }

/* 保育目標：横並び（フレックス）全体の調整 */
.service-flex-container {
  display: flex;
  align-items: flex-start; /* 上揃え */
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 左側のリスト部分 */
.service-list {
  flex: 1.2; /* テキスト側を少し広めに */
  display: flex;
  flex-direction: column; /* 縦に並べる */
  gap: 15px; /* カード同士の間隔 */
}

/* カードの設定（縦並び用に幅を上書き） */
#service .card {
  width: 100%;
  min-width: 0; /* 前の最小幅設定をリセット */
  margin: 0;
  text-align: left; /* 文字を左寄せ */
}

/* 右側の画像エリア */
.service-image {
  flex: 1;
  position: sticky; /* スクロール時に画像が追いかけてくる（PCのみ） */
  top: 120px;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 30px; /* 画像も角を丸くして可愛く */
  border: 8px solid #fff; /* 白枠をつけて写真風に */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* スマホ対応（縦1列にする） */
@media (max-width: 768px) {
  .service-flex-container {
    flex-direction: column;
  }
  .service-image {
    order: -1; /* スマホでは画像を先に表示 */
    position: static;
    margin-bottom: 20px;
  }
}

/* ===================================
 * 保育内容（ジグザグレイアウト）
 * =================================== */
.works-zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 60px; /* 各項目の間の余白 */
  max-width: 1000px;
  margin: 0 auto;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 2つ目の項目を反転させる設定 */
.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zigzag-text {
  flex: 1.2; /* テキストエリアを少し広めに */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.zigzag-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  border-bottom: 2px dashed rgba(0,0,0,0.1);
  padding-bottom: 10px;
}

.zigzag-text p {
  margin-bottom: 15px;
  text-align: left;
}
.zigzag-text p:last-child {
  margin-bottom: 0;
}

/* 背景色のバリエーション（保育目標とトーンを合わせる） */
.bg-orange { background-color: #fff3e0; color: #d84315; }
.bg-green  { background-color: #f1f8e9; color: #33691e; }
.bg-blue   { background-color: #e3f2fd; color: #0d47a1; }

.zigzag-image {
  flex: 1;
}

.zigzag-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: rotate(2deg); /* 写真を少し傾ける */
  transition: transform 0.3s ease;
}

/* 反転した列の写真は逆向きに傾ける */
.zigzag-row.reverse .zigzag-image img {
  transform: rotate(-2deg);
}

/* 全ての画像（反転しているものも含む）にホバー時の動きを適用する */
.zigzag-image img:hover,
.zigzag-row.reverse .zigzag-image img:hover {
  transform: rotate(0) scale(1.05); /* マウスを乗せると真っ直ぐ大きくなる */
}

/* スマホ閲覧時は全て縦並びに（画像が上、テキストが下） */
@media (max-width: 768px) {
  .zigzag-row, 
  .zigzag-row.reverse {
    flex-direction: column;
    gap: 20px;
  }
  .zigzag-image {
    order: -1; /* スマホでは必ず写真を先に表示 */
  }
  .zigzag-image img, 
  .zigzag-row.reverse .zigzag-image img {
    transform: rotate(0); /* スマホでは傾きをなくす */
  }
}

/* ===================================
 * 入園に際して（Admission）のスタイル
 * =================================== */
.admission-container {
  max-width: 1000px;
  margin: 0 auto;
}

.admission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.adm-card {
  padding: 25px;
  border-radius: 20px;
  border: 2px dashed rgba(0,0,0,0.1);
  text-align: left;
}

.adm-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: inherit;
}

.adm-card p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.small-text {
  font-size: 13px !important;
  color: #666;
  margin-top: 10px;
}

/* 時間外保育のボックス */
.admission-info-box {
  background: #fff;
  border: 3px solid #fecaca; /* 薄い赤の枠 */
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
}

.admission-info-box h3 {
  color: #e11d48;
  margin-bottom: 20px;
  text-align: center;
}

.info-flex {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.info-time {
  flex: 1;
  background: #fff1f2;
  padding: 20px;
  border-radius: 15px;
}

.free-badge {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.info-notes {
  flex: 1;
  list-style: "・";
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.8;
}

/* リスト形式の補足用 */
.small-list {
  list-style: none;
  font-size: 14px;
  margin-top: 10px;
  padding-left: 0;
}
.small-list li::before {
  content: "●";
  color: rgba(0,0,0,0.2);
  margin-right: 5px;
}

/* オレンジカード（給着用：背景と同化しないよう調整） */
.card-orange { 
  background-color: #ffffff !important; /* カード自体は白にして背景から浮かせる */
  border: 3px dashed #fb923c !important; /* 枠線を少し濃いオレンジの点線に */
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.2) !important; /* オレンジ系の影を薄くつける */
}

.card-orange h3 { 
  color: #ea580c !important; /* 見出しを濃いオレンジに */
}

/* ついでに、給食カード内の箇条書きも読みやすく調整 */
.card-orange .small-list li::before {
  color: #fb923c !important; /* リストの「●」もオレンジに */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .info-flex {
    flex-direction: column;
  }
  .adm-card {
    padding: 20px;
  }
}

/* ===================================
 * レスポンシブ対応（スマホ）
 * =================================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
    padding: 0 15px;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    padding: 60px 20px;
  }

  h2, .about-title {
    font-size: 28px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }
  
  .company-table th {
    border-bottom: none;
    padding-bottom: 5px;
  }

  .company-table td {
    padding-top: 0;
    margin-bottom: 10px;
  }

  .ceo-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .ceo-photo img {
    width: 200px;
    height: 200px;
  }
}