@charset "UTF-8";

/********************

common

**********************/

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
dt,
ul,
li {
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

.wrapper {
    margin: 0 auto;
    width: 1020px;
    padding: 80px 0;
}

@media screen and (max-width: 1020px) { 
  .wrapper {
      margin: 0 auto;
      width: 90vw;
  }
}

/********************

title

**********************/

.staff-title {
    text-align: center;
}

.staff-title h1 {
    color: #2C67AB;
    font-family: "Noto Serif JP", serif;
    font-size: 56px;
    font-weight: 500; 
    letter-spacing: .1em;   
}

.staff-title h3 {
    color: #2C67AB;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .12em;
}

@media screen and (max-width: 1020px) { 
    .staff-title h1 {
        font-size: 11vw; 
    }
    .staff-title h3 {
        font-size: 7vw;
    }
}

/********************

container

**********************/

.staff-content {
    margin-top: 80px;
}

.staff-content h4 {
    border-left: 4px solid #2C67AB;
    font-size: 20px;
    font-weight: 500;
    padding-left: 16px;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.staff-content p a {
    color: #14D1D1;
}

.staff-content p {
    letter-spacing: .06em;
    line-height: 24px;
}

.staff-content  a.staffBtn {
    align-items: center;
    background: #2C67AB;
    border: 1px solid #2C67AB;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    font-size: 24px;
    font-weight: 600;
    justify-content: space-between;
    letter-spacing: .1em;
    margin-top: 24px;
    padding: 24px;
    text-decoration: none;
    width: 100%;
}

.staff-content a.staffBtn:hover {
    background: #ffffff;
    color: #2C67AB;
}

.staff-content a.staffBtn svg {
    width: 64px;
}

@media screen and (max-width: 1020px) { 
  .staff-content  a.staffBtn {
        font-size: 4.8vw;
        padding: 3.2vw;    
        width: 80vw;    
  }
}