@charset "UTF-8";
            
/*---------- section_01 ----------*/  

    .interview__title {
      margin: 0 0 40px;
      text-align: center;
      font-size: 1.8em;
      line-height: 1.4;
      font-weight: bold;
    }
    .interview__grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .interview-card {
      position: relative;
      display: block;
      padding: 0;
    }
    .interview-card__image {
      position: relative;
      z-index: 1;
      overflow: hidden;
		padding: 0.7em;
    }
.active {
  
	background-color: #e2efe0;
}
    .interview-card__image img {
      width: 100%;
      object-fit: cover;
      object-position: center top;
    }

    @media (max-width: 640px) {
      .interview__title {
        margin-bottom: 32px;
        font-size: 1.14em;
      }
      .interview__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .interview-card {
        padding: 0;
      }

    }

/*---------- section_02 ----------*/  

.section_02{background: #dfeedd;}
    .interview_detail {
      padding: 56px 20px 80px;
		box-sizing: border-box;
      
    }

    .interview_detail__inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .profile {
      position: relative;
      display: grid;
      grid-template-columns: 360px 1fr;
      grid-template-areas: "photo info";
      gap: 70px;
      align-items: center;
      padding: 52px 86px 0px;
      border: 2px solid #009944;
      border-radius: 8px;
      background: #fff;
    }

    .profile::before,
    .profile::after,
    .profile__dots::before,
    .profile__dots::after {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      border: 2px solid #009944;
      border-radius: 50%;
      background: #dfeedd;
    }

    .profile::before { top: 22px; left: 22px; }
    .profile::after { top: 22px; right: 22px; }
    .profile__dots::before { bottom: 22px; left: 22px; }
    .profile__dots::after { bottom: 22px; right: 22px; }

    .profile__photo {
      grid-area: photo;
    }

    .profile__info {
      grid-area: info;
    }

    .profile__photo img {
      width: 100%;
      object-fit: cover;
    }

    .profile__name {
      margin: 0 0 24px;
      font-size: 2.2em;
      line-height: 1.2;
      font-weight: normal;
    }

    .profile__table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1.2em;
      font-weight: normal;
    }

    .profile__table th,
    .profile__table td {
      padding: 12px 0;
      border-bottom: 1px dashed #59bd77;
      text-align: left;
    }

    .profile__table th {
      width: 90px;
      color: #2fa83a;
    }

    .qa_area {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 40px 40px;
      margin-top: 70px;
      align-items: start;
    }

    .qa_list {
      display: contents;
    }

    .qa:nth-child(n+3) {
      grid-column: 1 / -1;
    }

    .qa_image {
      grid-column: 2;
      grid-row: 1 / span 2;
    }

    .qa_image img {
      border-radius: 12px;
      width:95%;
      object-fit: cover;
    }

    .qa__q {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-width: 420px;
      min-height: 50px;
      padding: 10px 28px;
      border: 2px solid #231815;
      border-radius: 999px;
      background: #fff;
      font-size: 1.2em;
      font-weight: normal;
		line-height: 1.4em;
    }

    .qa__q::after {
      content: "";
      position: absolute;
      left: 48%;
      bottom: -12px;
      width: 32px;
      height: 24px;
      background: #fff;
      border-left: 2px solid #231815;
      border-bottom: 2px solid #231815;
      transform: skewY(-34deg);
    }
.qa__q span.z1{position: relative;z-index: 1;}

    .qa__q-mark {
      margin-right: 10px;
      color: #e95513;
      font-size: 1.6em;
      line-height: 1;
      font-weight: normal;
    }

    .qa__a {
      margin: 34px 0 0;
      font-size: 1.2em;
      line-height: 1.8;
      font-weight: normal;
    }

    .qa__a-mark {
      margin-right: 10px;
      color: #2fa83a;
      font-size: 1.6em;
      line-height: 1;
      font-weight: normal;
    }

    @media (max-width: 640px) {
      .interview_detail {
        padding: 0px 0px;
      }

      .profile {
        display: block;
        padding: 50px 18px 50px;
      }

      .profile::before,
      .profile::after,
      .profile__dots::before,
      .profile__dots::after {
        width: 10px;
        height: 10px;
      }

      .profile__photo {
        margin-bottom: 16px;
      }

      .profile__photo img {
        
      }

      .profile__name {
        font-size: 1.6em;
        margin-bottom: 5px;
      }

      .profile__table {
        font-size: 0.84em;
      }

      .profile__table th {
        width: 76px;
      }

      .qa_area {
        display: flex;
        flex-direction: column;
        gap: 44px;
        margin-top: 48px;
      }
      .qa_list {
        display: grid;
      }

      .qa:nth-child(n+3) {
        grid-column: auto;
      }
      .qa_image {
        order: 1;
      }

      .qa_list {
        order: 2;
        gap: 34px;
      }

      .qa_image img {
        width: 100%;
      }

      .qa__q {
        width: 100%;
        min-width: 0;
        justify-content: center;
        min-height: 52px;
        padding: 10px 10px;
        font-size: 0.84em;
		  box-sizing: border-box;
      }

      .qa__q::after {
        left: 43%;
        bottom: -11px;
		  width: 25px;
      height: 17px;
      }

      .qa__q-mark,
      .qa__a-mark {
		  margin-right: 5px;
        font-size: 1.4em;
      }

      .qa__a {
        margin-top: 27px;
        font-size: 0.84em;
        line-height: 1.4;
      }
    }


/*
===================================================
 tb タブレット解像度
===================================================
*/
@media screen and (max-width:1000px) {




	}
/*
===================================================
 sp スマホ解像度
===================================================
*/
@media screen and (max-width:640px) {

}
