  @charset "UTF-8";
  /*==============
      profile
  ===============*/
  #profile .flexbox {
    display: flex;
    align-items: center;
  }
  #profile .flexbox div.left {
    width: 50%;
  }
  #profile .flexbox div.left {
    background-image: url(../img/profile2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 750px;
    top: 0;
    display: grid;
    left: 0;
    background-position: right;
  }
  #profile .flexbox div.right {
    padding: 50px 60px 0;
    width: calc(50% - 120px);
  }
  #profile .flexbox div.right .name {
    font-size: clamp(3.2rem, 7.27vw, 3.8rem);
    font-family: var(--en);
    margin-bottom: clamp(24px, calc(24px + 8 * ((100vw - 320px) / 1120)), 32px);
    font-weight: inherit;
    border-bottom: 1px solid var(--black);
    padding-bottom: clamp(24px, calc(24px + 8 * ((100vw - 320px) / 1120)), 32px);
  }
  #profile .flexbox div.right .name .jp {
    font-size: 1.4rem;
    font-family: var(--en);
    font-weight: bold;
    color: #aaa;
  }
  #profile .flexbox div.right .date-wrap dl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0px;
  }
  #profile .flexbox div.right .date-wrap dl dt {
    width: 30%;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--en);
  }
  #profile .flexbox div.right .date-wrap dl dd {
    width: 70%;
  }
  #profile .flexbox div.right .work h3 {
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-family: var(--jp);
    font-size: 1.8rem;
    font-weight: initial;
    color: var(--black);
    font-weight: bold;
  }
  #profile .flexbox div.right .work .container {
    margin-bottom: 40px;
  }
  #profile .flexbox div.right .work .container h5 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    background-color: var(--gray);
    padding: 12px 16px;
    font-weight: bold;
  }
  #profile .flexbox div.right .work .container h6 {
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 20px;
    margin-bottom: 8px;
  }
  #profile .flexbox div.right .work .container dl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 0 20px;
  }
  #profile .flexbox div.right .work .container dl.border {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  #profile .flexbox div.right .work .container dl dt {
    width: 15%;
    font-size: 1.4rem;
  }
  #profile .flexbox div.right .work .container dl dd {
    width: calc(85% - 24px);
    line-height: 1.5;
    font-size: 1.4rem;
  }
  #profile .br-1000 {
    display: none;
  }
  @media screen and (max-width: 1000px) {
    #profile .br-1000 {
      display: block;
    }
  }
  @media screen and (max-width: 768px) {
    #profile .flexbox {
      display: block;
    }
    #profile .flexbox div.left {
      width: 100%;
      position: initial;
      height: 550px;
    }
    #profile .flexbox div.right {
      width: 100%;
      padding: 50px 0 0;
    }
    #profile .flexbox div.right .date-wrap dl dd {
      width: 100%;
    }
  }
  @media screen and (max-width: 500px) {
    #profile .flexbox div.right .date-wrap dl {
      gap: 8px 32px;
    }
    #profile .flexbox div.right .date-wrap dl dt {
      font-size: 1.4rem;
    }
    #profile .flexbox div.right .work .container dl {
      gap: 8px 8px;
    }
    #profile .flexbox div.right .work .container dl dt {
      width: 20%;
    }
    #profile .flexbox div.right .work .container dl dd {
      width: calc(80% - 8px);
    }
  }
  /* 251225 */
.link-site{
    background: var(--color1);
    color: #fff;
    padding: 10px 40px;
    display: inline-block;
    border-radius: 50px;
    margin-top: 32px;
    transition: 0.4s all;
    border: 2px solid var(--color1);
    font-family: var(--en);
}
.link-site:hover{
    background: #fff;
    color: var(--color1);
}
  @media screen and (max-width: 500px) {
    .link-site{
      width: calc(100% - 80px);
      text-align: center;
    }
  }