@charset "utf-8";
/* CSS Document */
    body {
      font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
      background-color: #D7EEFA;  /*背景色*/
      margin: 0;
      padding: 0;
      color: #333;
}

    .card {
      max-width: 400px;
      margin: 30px auto;
      background: #fff;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }

    .header {
  background-image: url('img/sora.jpeg'); /*画像パス指定*/
  background-size: cover;      /* 全体に拡大縮小 */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
  color: #fff;
  text-align: center;
  padding: 10px 20px 10px;
    }

    .profile-pic {
      width: 120px;
      height: 120px;
      margin: 0 auto 15px;
      border-radius: 50%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .profile-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .name {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 3px;
		color:blue;
    }

    .contact-section {
    padding: 10px;
	background-color: #D7EEFA;  /*背景色*/
    }

    .contact-title {
      font-weight: 700;
      margin-bottom: 10px;
      color: #555;
      background-color: #D7EEFA;  /*背景色*/
    }
   .contact-title2 {
      font-weight: 700;
      color: #555;
      background-color: #D7EEFA;  /*背景色*/
    }

.social{
	background-color: #D7EEFA;  /*背景色*/
	text-align: left;
    }

    ul.contact-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    ul.contact-list li {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      margin-bottom: 12px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    ul.contact-list li:hover {
      background-color: #f0f0f0;
    }

    ul.contact-list li .icon {
      width: 30px;
      display: flex;
      justify-content: center;
      margin-right: 15px;
      font-size: 20px;
    }

    ul.contact-list li .icon img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }

    ul.contact-list li a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      flex: 1;
    }

.product-thumbnails{
  display: grid;
  grid-template-columns:repeat(2,1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}

.product-thumbnails li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.footer{
	background-color: #D7EEFA;  /*背景色*/
	font-size:13px;
	text-align: center;
}