@charset "UTF-8";
/*======================================
tab-swich（grid・完成版）
======================================*/
.tab-swich {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  width: 100%;
  margin: 0 auto;
}
/* 共通 */
.tab-swich li {
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(.6em, 2.2vw, 1em);
  white-space: nowrap;
  min-width: 0;
  text-align: center;
  line-height: 40px;
  font-size: 90%;
  border: 1px solid rgb(var(--navy-rgb) / .2);
  border-radius: 100px;
  display: grid;
  place-items: center;
}
/* ALL：1行目中央・少し大きめ */
.tab-swich li:first-child {
  grid-column: 1 / -1;
  width: min(320px, 90%);
  padding: 0;
  justify-self: center;
}
/* hover / active */
.tab-swich li:hover {
  background: rgb(var(--navy-rgb) / .08);
}
.tab-swich li.active {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
/*======================================
PC：1行4等分
======================================*/
@media (min-width: 769px) {
  .tab-swich {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .tab-swich li {
    line-height: 45px;
    padding: 0;
    white-space: normal;
  }
  .tab-swich li:first-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}
/* ======================================
  archive-list01
====================================== */
.archive-list01 ul {
  margin: 0 0 2em;
}
.archive-list01 li {
  font-size: 90%;
  line-height: 1.5;
  padding: 1em 0;
  border-bottom: 1px dotted rgb(var(--navy-rgb) / .2);
}
.archive-list01 li.no-posts {
  border: none;
}
.archive-list01 li .date {
  width: 100%;
  text-align: left;
  letter-spacing: 3px;
  opacity: .7;
}
.archive-list01 .panel:first-of-type li .date {
  flex: 1;
}
.archive-list01 li .desc {
  width: 100%;
  text-align: left;
  padding: 0;
  align-items: flex-start;
  gap: .6em 1em;
}
.archive-list01 li .post-type {
  position: relative;
  flex: 0 0 30%;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 90%;
}
.archive-list01 .panel:first-of-type li .post-type {
  width: 30%;
  flex: none;
  margin-top: -3px;
  margin-right: 1em;
  font-size: 90%;
}
.archive-list01 li .post-type::before {
  position: absolute;
  content: "";
  width: 100%;
  padding: 1em;
  border: 1px solid rgb(var(--navy-rgb) / .2);
  border-radius: 100px;
}
.archive-list01 li .desc {
  margin-top: .5em;
}
.archive-list01 li .desc h3 {
  flex: 1;
  min-width: 0;
  text-align: justify;
  font-weight: normal;
}
.archive-list01 li .desc h3 a, .archive-list01 li .desc h3 i {
  display: inline;
  margin: 0;
}
.archive-list01 li .desc p {
  margin: 0;
}
@media (min-width: 768px) {
  .archive-list01 ul {
    min-width: 700px;
  }
  .archive-list01 li {
    padding: 1em 0;
  }
  .archive-list01 .panel:first-of-type li .date, .archive-list01 li .date {
    flex: none;
    width: 15%;
    max-width: 120px;
  }
  .archive-list01 li .desc {
    flex: 1;
    width: 80%;
    margin-top: 0;
  }
  .archive-list01 .panel:first-of-type li .post-type, .archive-list01 li .post-type {
    flex: 0 0 20%;
    font-size: 80%;
    margin-top: 3px;
    max-width: 120px;
  }
  .archive-list01 li .desc h3 {
    text-align: justify;
    font-weight: normal;
  }
} /*END */
/* ======================================
  archive-list02
====================================== */
#archive .archive-list02 {
  background-color: rgb(var(--white-rgb) / .8);
}
.archive-list02 h2 {
  text-align: center;
  font-size: 120%;
  letter-spacing: 5px;
  font-weight: 300;
  letter-spacing: 5px;
}
.archive-list02 h2 span {
  display: block;
  font-size: 150%;
  margin-bottom: .5em;
}
.archive-list02 .grid-CMN {
  grid-template-columns: repeat(1, 1fr);
  gap: 2em 0;
}
.archive-list02 li {
  background: var(--white);
}
.archive-list02 li .thumbnail {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.archive-list02 li .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-list02 li .inner {
  padding: 1em;
}
.archive-list02 li .inner .time {
  text-align: left;
  font-size: 80%;
  font-weight: 300;
  color: rgb(var(--navy-rgb) / .7);
  letter-spacing: 3px;
  margin: .7em auto;
}
.archive-list02 li .inner h3 {
  text-align: justify;
  font-size: 120%;
  line-height: 1.3em;
  letter-spacing: 2px;
  margin: .5em auto;
}
.archive-list02 li .inner .excerpt p {
  text-align: justify;
  line-height: 1.5em;
  letter-spacing: 2px;
}
.archive-list02 li .inner .excerpt span {
  font-size: 90%;
  font-weight: 300;
  color: rgb(var(--navy-rgb) / .7);
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .archive-list02 .grid-CMN {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .archive-list02 li .inner {
    font-size: 100%;
    padding: 1em;
  }
  .archive-list02 li .inner .excerpt p {
    font-size: 85%;
  }
} /*END query*/
/* ======================================
  archive-list03
====================================== */
.archive-list03 h3 {
  text-align: center;
  font-size: 120%;
  font-weight: 400;
  letter-spacing: 5px;
}
.archive-list03 h3 span {
  display: block;
  font-size: 150%;
  margin-bottom: .5em;
}
.archive-list03 .grid-CMN {
  grid-template-columns: repeat(1, 1fr);
  gap: 2em 0;
}
.archive-list03 li {
  background: var(--white);
}
.archive-list03 li .thumbnail {
  position: relative;
  float: right;
  margin: 0 0 .5em .7em;
  width: 40%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background-color: #ccc;
}
.archive-list03 li .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-list03 li .inner {
  padding: 1em;
}
.archive-list03 li .inner .time {
  text-align: left;
  font-size: 80%;
  font-weight: 300;
  color: rgb(var(--navy-rgb) / .7);
  letter-spacing: 3px;
  margin: .7em auto;
}
.archive-list03 li .inner h3 {
  text-align: justify;
  font-size: 120%;
  line-height: 1.3em;
  letter-spacing: 2px;
  margin: .5em auto;
}
.archive-list03 li .inner .excerpt p {
  text-align: justify;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 2px;
}
.archive-list03 li .inner .excerpt span {
  font-size: 90%;
  font-weight: 300;
  color: rgb(var(--navy-rgb) / .7);
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .archive-list03 .grid-CMN {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .archive-list03 li .thumbnail {
    position: relative;
    float: none;
    margin: 0 auto;
    width: 100%;
  }
  .archive-list03 li .inner {
    font-size: 100%;
    padding: 1em;
  }
  .archive-list03 li .inner .excerpt p {
    font-size: 85%;
  }
} /*END query*/
/* ======================================
  archive-list04
====================================== */
.archive-list04 li {
  scroll-margin-top: 120px;
}
.archive-list04 li:not(:last-of-type) {
  margin-bottom: 4em;
}
.archive-list04 li .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-list04 li h3 {
  text-align: justify;
  font-weight: normal;
  font-size: 120%;
  line-height: 1.3em;
  letter-spacing: 2px;
  margin: 1em auto;
}
.archive-list04 li .desc {
  display: block;
}
.archive-list04 li .desc p {
  text-align: justify;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 2px;
}
.archive-list04 li iframe {
  width: 100% !important;
  max-width: none !important;
  margin: 1.5em auto 0 !important;
  min-height: 200px !important;
}
@media (min-width: 1024px) {} /*END query*/