/*--
  font-family
--*/
/*--
  font-weight
  Noto Sans
--*/
/*--
  colors
--*/
/*--
  break points
--*/
/*--
  width
--*/
/**
 * font-size
 *
 * @param $fontSize
 */
/**
 * letter-spacing
 *
 * @param $letterSpacingValue
 * @param $isMinus
 */
/**
 * line-height
 *
 * @param $fs
 * @param $lh
 */
/*--
  media queries
--*/
.other-information {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 24px;
  background-color: #EAF6FD;
}
@media screen and (max-width: 768px) {
  .other-information {
    display: grid;
    gap: 0 16px;
    align-items: flex-start;
    grid-template-columns: 1fr 30px;
    grid-template-areas: "text button" "link link";
    padding: 8px 16px;
  }
}
.other-information__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  .other-information__text {
    grid-area: text;
  }
}
.other-information__links {
  display: flex;
  gap: 8px;
  grid-column: 2/3;
  justify-self: center;
}
@media screen and (max-width: 768px) {
  .other-information__links {
    grid-area: link;
    flex-direction: column;
  }
}
.other-information__link {
  width: fit-content;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 8px 34px 8px 8px;
  text-align: center;
  border-radius: 5px;
  border: 2px solid #009FE8;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23024ea2" d="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z" /></svg>');
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 8px center;
}
@media screen and (max-width: 768px) {
  .other-information__link {
    width: 100%;
    font-size: 1.125rem;
    text-align: center;
  }
}
.other-information__link[target=_blank] {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23024ea2" d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z" /></svg>');
}
.other-information__button {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .other-information__button {
    grid-area: button;
  }
}
@media screen and (max-width: 768px) {
  .other-information__button svg {
    width: 30px;
  }
}

.main-visual {
  position: relative;
  width: 100%;
}
.main-visual__image {
  width: 100%;
}
.main-visual__pr-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: block;
  width: 28vw;
}
@media screen and (max-width: 768px) {
  .main-visual__pr-link {
    position: static;
    width: 100%;
  }
}

.section {
  max-width: 1000px;
  padding: 109px 0 0;
  margin: -109px auto 160px;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 78px 0 0;
    margin: -78px auto 80px;
  }
}
@media screen and (max-width: 768px) {
  .section__body {
    padding: 0 20px;
  }
}
.section__title-h2 {
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 17/5;
  font-weight: 800;
  font-size: 2.5rem;
  color: #0068B6;
  margin: 0 auto 18px;
  text-align: center;
  background-image: url("../images/title-h2-bg.png");
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .section__title-h2 {
    width: 100%;
    font-size: 1.5rem;
    margin: 0 auto 24px;
    background-position: center;
    background-size: 79% auto;
  }
}
.section__title-h2 span:nth-of-type(2) {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .section__title-h2 span:nth-of-type(2) {
    font-size: 1.125rem;
  }
}
.section__title-h3 {
  max-width: 1000px;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  padding: 8px 24px;
  margin: 0 auto 24px;
  background-color: #024EA2;
  background-image: url("../images/title-h3-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .section__title-h3 {
    padding: 16px;
  }
}
.section__child {
  padding: 109px 0 0;
  margin: -109px auto 70px;
}
@media screen and (max-width: 768px) {
  .section__child {
    padding: 78px 0 0;
    margin: -78px auto 70px;
  }
}

.information {
  padding: 189px 0 0;
  margin: -109px auto 160px;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 78px 0 0;
    margin: 2px auto 80px;
  }
}
.information__list {
  display: flex;
  gap: 32px;
  flex-direction: column;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .information__list {
    padding: 0 20px;
    margin: 0 0 30px;
  }
}
.information__list__item {
  padding: 0 0 12px;
  border-bottom: 2px solid #009FE8;
}
.information__list__item.hidden {
  display: none;
}
.information__list__item a .link__title {
  color: #024EA2;
  text-decoration: underline;
}
.information__list__item .link {
  display: flex;
  flex-direction: column;
  letter-spacing: -0.05em;
  line-height: 1.75;
}
.information__list__item .link:not([href]) {
  text-decoration: none;
}
.information__list__item .link__title p {
  margin: 0;
}
.information__button {
  display: block;
  width: 36%;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 24px;
  margin-inline: auto;
  text-align: center;
  border-radius: 50px;
  background-color: #024EA2;
}
@media screen and (max-width: 768px) {
  .information__button {
    grid-column: unset;
    display: block;
    width: 50%;
    margin: 0 auto;
  }
}

.anchor-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 0 40px;
}
.anchor-link__item {
  font-weight: 500;
  font-size: 1.125rem;
  padding: 8px 48px 8px 24px;
  background-color: #D9ECFA;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23024ea2" d="M1169.966,2016.5a1.736,1.736,0,0,1,.018,2.454l-10.371,10.529a1.735,1.735,0,0,1-2.473,0l-10.372-10.529a1.736,1.736,0,0,1,2.473-2.436l9.135,9.274,9.135-9.274A1.736,1.736,0,0,1,1169.966,2016.5Z" transform="translate(-1146.269 -2016)" /></svg>');
  background-repeat: no-repeat;
  background-size: 24px 14px;
  background-position: right 24px center;
}
.anchor-link__item:nth-of-type(odd) {
  background-color: #C9DAF0;
}

.date__list {
  display: grid;
  grid-template-columns: 100px 1fr;
  width: fit-content;
  font-size: 1.125rem;
  margin-inline: auto;
}
.date__list__text {
  margin: 0 0 1em;
}
.date__list__text:last-child {
  margin: 0;
}

.method__pink {
  width: fit-content;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 24px 40px;
  margin-inline: auto;
  box-shadow: 1px 5px 3px 0 rgba(0, 0, 0, 0.2);
  background-color: #FFCFFA;
}
@media screen and (max-width: 768px) {
  .method__pink {
    padding: 24px 20px;
    font-size: 1.125rem;
  }
}

.place__wrapper {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .place__wrapper {
    grid-template-columns: 100%;
  }
}
.place__wrapper__box {
  display: flex;
  gap: 1px;
  flex-direction: column;
}
.place__wrapper__box:first-of-type .place__detail {
  background-color: #CDE7E6;
}
.place__wrapper__box:first-of-type .place__detail:nth-of-type(even) {
  background-color: #DCEEE9;
}
.place__wrapper__box:last-of-type .place__detail {
  background-color: #DCEEE9;
}
.place__wrapper__box:last-of-type .place__detail:nth-of-type(even) {
  background-color: #CDE7E6;
}
.place__detail {
  padding: 8px 24px;
}
.place__detail[open] .place__detail__summary {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 34 5"><path fill="%23024ea2" d="M2.313,0H31.687A2.313,2.313,0,0,1,34,2.313v.374A2.313,2.313,0,0,1,31.687,5H2.313A2.313,2.313,0,0,1,0,2.687V2.313A2.313,2.313,0,0,1,2.313,0Z" /></svg>');
}
.place__detail:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.place__detail:nth-of-type(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.place__detail:nth-of-type(3) {
  grid-column: 1/2;
  grid-row: 3/4;
}
.place__detail:nth-of-type(4) {
  grid-column: 1/2;
  grid-row: 4/5;
}
.place__detail:nth-of-type(5) {
  grid-column: 1/2;
  grid-row: 5/6;
}
.place__detail:nth-of-type(6) {
  grid-column: 1/2;
  grid-row: 6/7;
}
.place__detail:nth-of-type(7) {
  grid-column: 1/2;
  grid-row: 7/8;
}
.place__detail:nth-of-type(8) {
  grid-column: 1/2;
  grid-row: 8/9;
}
.place__detail:nth-of-type(9) {
  grid-column: 1/2;
  grid-row: 9/10;
}
.place__detail:nth-of-type(10) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.place__detail:nth-of-type(11) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.place__detail:nth-of-type(12) {
  grid-column: 2/3;
  grid-row: 3/4;
}
.place__detail:nth-of-type(13) {
  grid-column: 2/3;
  grid-row: 4/5;
}
.place__detail:nth-of-type(14) {
  grid-column: 2/3;
  grid-row: 5/6;
}
.place__detail:nth-of-type(15) {
  grid-column: 2/3;
  grid-row: 6/7;
}
.place__detail:nth-of-type(16) {
  grid-column: 2/3;
  grid-row: 7/8;
}
.place__detail:nth-of-type(17) {
  grid-column: 2/3;
  grid-row: 8/9;
}
.place__detail:nth-of-type(18) {
  grid-column: 2/3;
  grid-row: 9/10;
}
@media screen and (max-width: 768px) {
  .place__detail:nth-of-type(10), .place__detail:nth-of-type(11), .place__detail:nth-of-type(12), .place__detail:nth-of-type(13), .place__detail:nth-of-type(14), .place__detail:nth-of-type(15), .place__detail:nth-of-type(16), .place__detail:nth-of-type(17), .place__detail:nth-of-type(18) {
    grid-column: initial;
    grid-row: initial;
  }
}
.place__detail__summary {
  display: grid;
  gap: 8px;
  grid-template-columns: 30px 1fr;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 35 35"><path fill="%23134e4e" d="M16.813,34A2.313,2.313,0,0,1,14.5,31.687V19.5H2.313A2.313,2.313,0,0,1,0,17.187v-.374A2.313,2.313,0,0,1,2.313,14.5H14.5V2.313A2.313,2.313,0,0,1,16.813,0h.374A2.313,2.313,0,0,1,19.5,2.313V14.5H31.687A2.313,2.313,0,0,1,34,16.813v.374A2.313,2.313,0,0,1,31.687,19.5H19.5V31.687A2.313,2.313,0,0,1,17.187,34Z" transform="translate(0.5 0.5)" stroke="rgba(0,0,0,0)" stroke-width="1" /></svg>');
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: right center;
}
.place__detail__summary::-webkit-details-marker {
  display: none;
}
.place__detail__body {
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin: 24px 0 0;
  transition: height 0.3s ease-in-out;
}
.place__detail__body dl {
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr;
}

.pdf-links .map-iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4/3;
}
.pdf-links__tables {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .pdf-links__tables {
    gap: 24px;
    grid-template-columns: 100%;
  }
}

.news__list {
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
}

.chart-pre-polling {
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .chart-pre-polling {
    width: 100%;
  }
}
.chart-pre-polling img {
  width: 100%;
  height: auto;
}

.cm__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .cm__wrapper {
    grid-template-columns: 100%;
    gap: 20px;
    padding: 0 20px;
  }
}
.cm__wrapper iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}

.sns .twitter-tweet {
  margin-inline: auto;
}

.liver {
  display: grid;
  gap: 24px 32px;
  grid-template-columns: 40% 1fr;
  grid-template-rows: repeat(3, auto) 1fr;
  grid-template-areas: "image name" "image description" "image sns" "image message";
  max-width: 1000px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .liver {
    grid-template-columns: 100%;
    grid-template-areas: "name" "image " "description" "sns" "message";
    padding: 0 20px;
  }
}
.liver:first-of-type {
  margin: 0 auto 160px;
}
.liver__name {
  grid-area: name;
  font-weight: 700;
  font-size: 1.5rem;
}
.liver__description {
  grid-area: description;
  font-size: 1.125rem;
}
.liver__sns {
  grid-area: sns;
  display: flex;
  gap: 24px;
  font-size: 1.125rem;
}
.liver__message {
  grid-area: message;
}
.liver__image {
  grid-area: image;
}

.credentials__images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .credentials__images {
    gap: 8px;
    padding: 0 20px;
  }
}
.credentials__images__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .credentials__images__item {
    gap: 8px;
  }
}
.credentials__images__item figcaption {
  grid-column: 1/3;
  grid-row: 1/2;
}

/*# sourceMappingURL=front-page.css.map */
