@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #555555;
  --color-white: #fff;
  --color-navy: #485E87;
  --color-bgBlue: #EFF3F5;

  --zen-mincho: "Zen Old Mincho", serif;
  --zen-kaku: "Zen Kaku Gothic New", sans-serif;

  --medium: 500;
  --regular: 400;

  --fs-35: 2.33em;
  --fs-13: 0.866em;
  --fs-12: 0.8em;

  --l-100: 6.66em;
  --l-80: 5.33em;
  --l-75: 5em;
  --l-70: 4.66em;
  --l-60: 4em;
  --l-50: 3.33em;
  --l-40: 2.66em;
  --l-30: 2em;
  --l-25: 1.66em;
  --l-20: 1.33em;
  --l-10: 0.66em;

  --max-wid: 2000px;

  --header: clamp(0.1rem, 5.13vw, 20rem);
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --fs-35: 2.5em;
    --fs-13: 0.928em;
    --fs-12: 0.85em;

    --l-100: 7.12em;
    --l-80: 5.71em;
    --l-75: 5.35em;
    --l-70: 5em;
    --l-60: 4.28em;
    --l-50: 3.57em;
    --l-40: 2.85em;
    --l-30: 2.14em;
    --l-25: 1.78em;
    --l-20: 1.42em;
    --l-10: 0.71em;

    --header: 16.53vw;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  exampleArchive
 ================================================*/
#exampleArchive {
  padding-top: var(--l-50);
}

.example__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: var(--l-70);
}

.example__list li:not(:first-child) {
  border-top: 1px solid #707070;
  padding-top: 3.66em;
}

.example__list li .example__txt {
  width: 41.2%;
}

.example__list li .example__txt h3 {
  font-weight: bold;
}

.example__list li .example__txt h3 span {
  margin-left: 1em;
}

.example__list li .example__txt h2 {
  font-size: 2em;
  font-family: var(--zen-mincho);
  line-height: 1.466;
  margin: 0.3em 0 0.45em;
}

.example__list li .example__txt p span {
  color: var(--color-navy);
  font-size: var(--fs-13);
  padding: 0.2em 1em;
  border: 1px solid var(--color-navy);
  display: inline-block;
  line-height: 1;
}

.example__list li .example__txt p span:not(:first-of-type) {
  margin-left: 0.8em;
}

.example__list li .btnArea {
  margin-top: 2.33em;
}

.example__list li img {
  width: 52%;
  border-radius: var(--l-10);
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width:767px) {
  .example__list li .example__txt {
    width: 100%;
  }

  .example__list li .example__txt h2 {
    font-size: 1.42em;
  }

  .example__list li img {
    width: 100%;
    margin: 1em 0;
  }

  .example__list li .btnArea {
    margin-top: 1em;
  }
}


/*================================================
 * exampleDetail
 ================================================*/
#exampleDetail {
  padding-top: var(--l-50);
}

#exampleDetail .wrap {
  padding-bottom: var(--l-40);
  border-bottom: 1px solid #707070;
}

#exampleDetail .example__img {
  width: 41.2%;
}

#exampleDetail .example__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

#exampleDetail .example__cnt {
  width: 52%;
}

#exampleDetail .example__cnt h2.cnt__ttl {
  font-size: 2em;
  font-family: var(--zen-mincho);
  line-height: 1.466;
  margin: 0.86em 0 0.7em;
  width: 80%;
}

#exampleDetail .example__cnt p {
  margin-bottom: 1em;
}

#exampleDetail .example__cnt h3 {
  font-weight: bold;
}

#exampleDetail .example__cnt h3 span {
  margin-left: 1em;
}

.under__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: var(--l-50);
}

.under__cnt:nth-child(2n) {
  flex-direction: row-reverse;
}

.under__cnt .under__cnt--img {
  width: 52.2%;
}

.under__cnt .under__cnt--img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 522 / 292;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.under__cnt--txt {
  width: 45.3%;
}

.under__cnt--txt h4 {
  font-size: 1.66em;
  font-weight: bold;
  line-height: 1.44;
}

.under__cnt--txt p {
  margin-top: 1em;
}

@media screen and (max-width:767px) {
  #exampleDetail {
    padding-top: var(--l-70);
  }

  #exampleDetail .wrap {
    padding-bottom: 4.64em;
  }

  #exampleDetail .example__img {
    width: 100%;
  }

  #exampleDetail .example__cnt {
    width: 100%;
  }

  #exampleDetail .example__cnt h3 {
    margin-top: 3em;
  }

  #exampleDetail .example__cnt h2.cnt__ttl {
    font-size: 1.42em;
    width: 100%;
  }

  .under__cnt .under__cnt--img {
    width: 100%;
  }

  .under__cnt--txt {
    width: 100%;
    margin-bottom: 2em;
  }

  .under__cnt--txt h4 {
    font-size: 1.28em;
  }

  .under__cnt {
    padding-top: var(--l-75);
  }
}