* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Agrandir";
  }

  @import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');

  li {
    list-style: none;
    border-bottom: 1px solid white;
    text-align: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
  }
  a {
    text-decoration: none;
  }
  h1 {
    color: #231f20;
  }
  header, footer {
    height: 65px;
    width: 100%;
    background-color: #005133;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  header {
    position: fixed;
    top: 0;
    z-index: 10;
  }
  footer .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  footer p {
    color: #b3aeb5;
    font-size: 12px;
    padding: 0 25px;
    margin: 0;
  }
  .menu {
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  .menu a {
    line-height: 65px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    padding: 0 20px;
    font-weight: bold;
  }
  
  .menu a:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  /* モバイルメニューアイコン */
  .menu-icon {
    display: none;
    color: white;
    font-size: 25px;
    padding: 20px;
    cursor: pointer;
  }

  /* ページ全体のレイアウトを中央揃えに */
  .wrapper {
    max-width: 1170px;
    margin: 0 auto;
    
  }
  header .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  footer .wrapper {
    align-items: center;
    height: 100%;
  }
  ul {
    margin: 0;
  }
  .container {
    border: 1px solid #231f20;
    margin: 20px 60px;
    height: 90%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flame {
    width: 50%;
    padding-right: 20px;
    text-align: center;
  }
  .imageflame {
    width: 40%;
  }
  .imageflame img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .top-wrapper {
    padding: 50px 0;
    background-color: #D8C28A;
    margin-top: 20px;
    height: 100vh;
  }
  
  .top-wrapper h1 {
    opacity: 0.7;
    font-size: 45px;
    letter-spacing: 5px;
  }
  
  .top-wrapper p {
    opacity: 0.7;
  }
  
  
  
  .icon-wrapper img {
    margin: 10px 0;
  }
  .icon {
    font-size: 32px;
    padding: 8px 24px;
    color: #231f20;
    display: inline-block;
  }
  .fa.fa-twitter{
    font-family:sans-serif;
  }
  .fa.fa-twitter::before{
    content:"𝕏";
  }
  .icon:hover {
    opacity: 0.7;
  }
  
  .fa {
    margin-right: 5px;
  }
  
  
  .heading {
    text-align: center;
    color: #423f32;
    position: relative;
    padding: 20px 0;
  }
  
  .heading h2 {
    font-weight: bold;
    font-size: 32px;
    margin: 0 auto;
    padding: 20px 0;
    width: fit-content;
    position: relative;
  }
  .bio-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    color: white;
    background-color: #e7dfd8;
    height: 100vh;
  }
  
  .bio-wrapper .contents-item {
    width: 50%;
    
  }
  .bio-wrapper .text-section {
    background-color: #005133;
    height: 100vh;
  }
  .bio-wrapper li {
    font-size: 18px;
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 40px;
  }
  .bio-wrapper .image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
  }
  .bio-wrapper .image-section img {
    width: 70%;
    height: auto;
    object-fit: scale-down;
    background-color: #e7dfd8;
  }
 
  
  
 
  .contact-wrapper .heading h2 {
    text-align: center;
  }
  .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
  }

  .contact-form-container {
    flex: 1;
    max-width: 500px;
  }

  .contact-image {
    flex: 1;
  }

  .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }

  .form-group p {
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
  }

  .required {
    color: #ff4b4b;
    margin-left: 4px;
  }

  input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dee7ec;
    border-radius: 4px;
    font-size: 16px;
    text-align: left;
  }

  textarea {
    min-height: 120px;
    resize: vertical;
  }

  .contact-submit {
    background-color: #005133;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 auto;
    display: block;
    min-width: 200px;
  }

  .contact-submit:hover {
    background-color: #003d27;
  }

  .contact-form {
    text-align: center;
  }

  
  
  
  