@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  page-cadl.css
 style info :  包括的反差別法ページスタイル
=================================================================== */
/* ====================
 スクロール設定（CADLページのみ）
==================== */
html {
  --header-height: 100px;
  --word-header-height: 90px;
  --word-header-margin: 40px;
  --word-list-gap: 20px;
  --inner-x-padding: 30px;
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
}

@media only screen and (max-width: 869px) {
  html {
    --header-height: 48px;
    --word-header-height: 106px;
    --word-header-margin: 30px;
    --word-list-gap: 16px;
  }
}
html:has(.cadl-lower-page--dictionary) {
  scroll-padding-top: calc(var(--header-height) + var(--word-header-height) + var(--word-list-gap));
}
html:has(.cadl-lower-page--dictionary) body {
  overflow: initial;
}

/* ====================
 共通
==================== */
.cadl-page {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 0 60px;
}
@media only screen and (min-width: 870px) {
  .cadl-page {
    gap: 100px;
    padding: 0 0 100px;
  }
}
.cadl-page__main-contents {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (min-width: 870px) {
  .cadl-page__main-contents {
    gap: 80px;
  }
}
.cadl-page__section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.cadl-lower-page {
  min-height: calc(100vh - 100px);
  padding: 0 0 60px;
}
@media only screen and (min-width: 870px) {
  .cadl-lower-page {
    padding: 0 0 100px;
  }
}
.cadl-lower-page__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 0 60px;
}
@media only screen and (min-width: 870px) {
  .cadl-lower-page__inner {
    padding: 60px 0 100px;
    gap: 100px;
  }
}

.cadl-image-with-contents {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-contents {
    gap: 80px;
  }
}

.cadl-image-with-content {
  position: relative;
  min-height: 330px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.cadl-image-with-content__title {
  position: relative;
  font-size: 30px;
  font-weight: bold;
  z-index: 1;
  text-align: center;
  word-break: keep-all;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__title {
    font-size: 44px;
    text-align: left;
  }
}
.cadl-image-with-content__image {
  display: block;
  aspect-ratio: 3/2;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__image {
    position: absolute;
    width: 46%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .cadl-image-with-content__image--sm {
    width: 42.5%;
  }
}
.cadl-image-with-content__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cadl-image-with-content__description {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  z-index: 1;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__description {
    font-size: 18px;
  }
}
@media only screen and (max-width: 869px) {
  .cadl-image-with-content__description br {
    display: none;
  }
}
.cadl-image-with-content__countries {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #5eb271;
  border: solid 1px #5eb271;
  gap: 1px;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__countries {
    width: fit-content;
  }
}
.cadl-image-with-content__country {
  flex: 1;
  background: #fff;
  padding: 10px 24px;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__country {
    padding: 16px 32px;
  }
}
.cadl-image-with-content__country-title {
  font-weight: 500;
  font-size: 14px;
  word-break: break-all;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__country-title {
    font-size: 16px;
    white-space: nowrap;
  }
}
.cadl-image-with-content__country-count {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.cadl-image-with-content__country-no {
  color: #5eb271;
  font-weight: bold;
  font-size: 40px;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__country-no {
    font-size: 44px;
  }
}
.cadl-image-with-content__country-unit {
  font-size: 30px;
  font-weight: bold;
  color: #5eb271;
}
.cadl-image-with-content__country-option {
  color: #5eb271;
  font-weight: 500;
  font-size: 11px;
  word-break: keep-all;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__country-option {
    font-size: 13px;
  }
}
.cadl-image-with-content__button {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 870px) {
  .cadl-image-with-content__button {
    margin: 0;
  }
}

.cadl-container {
  width: 100%;
  max-width: calc(992px + var(--inner-x-padding) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--inner-x-padding);
  padding-right: var(--inner-x-padding);
  box-sizing: border-box;
}

.cadl-container--lg {
  max-width: calc(1222px + var(--inner-x-padding) * 2);
}

.cadl-title {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (min-width: 870px) {
  .cadl-title {
    font-size: 30px;
  }
}
.cadl-title--lower {
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (min-width: 870px) {
  .cadl-title--lower {
    margin-bottom: 40px;
  }
}
.cadl-title span {
  display: inline-block;
}

.cadl-buttons {
  padding: 60px 0;
}
@media only screen and (min-width: 870px) {
  .cadl-buttons {
    padding: 80px 0;
  }
}
.cadl-buttons--green {
  background: #ebf7ee;
}
.cadl-buttons__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (min-width: 870px) {
  .cadl-buttons__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.cadl-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: #4e6def;
  color: #fff;
  border-radius: 100vh;
  min-height: 42px;
  width: 100%;
  max-width: 570px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}
.cadl-button::after {
  width: 6px;
  height: 9px;
  background: url(../images/common/icn-arrow-white.svg) no-repeat center/contain;
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-button::after {
    width: 11px;
    height: 17px;
  }
}
.cadl-button--large {
  background: #5eb271;
}
@media only screen and (min-width: 870px) {
  .cadl-button--large {
    font-size: 22px;
    min-height: 100px;
  }
}
.cadl-button__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media only screen and (min-width: 870px) {
  .cadl-button__inner {
    gap: 16px;
  }
}
.cadl-button__icon {
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 870px) {
  .cadl-button__icon {
    width: 64px;
    height: 64px;
  }
}
.cadl-button__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cadl-button--sm {
  min-height: auto;
  padding: 4px 12px 4px 16px;
  font-size: 14px;
  min-width: auto;
  width: fit-content;
}
.cadl-button--sm::after {
  width: 6px;
  height: 9px;
}

.cadl-nav-header {
  padding: 30px 0;
  background-color: #ebf7ee;
}
.cadl-nav-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.cadl-nav-header__title {
  display: grid;
  column-gap: 20px;
  grid-template-columns: auto 1fr;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}
.cadl-nav-header__title::before {
  width: 10px;
  background-color: #5eb271;
  grid-row: 1/span 2;
  content: "";
}
.cadl-nav-header__title span:first-child {
  font-size: 24px;
}
.cadl-nav-header__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 40px;
}
@media only screen and (min-width: 870px) and (max-width: 1179px) {
  .cadl-nav-header__list {
    gap: 20px 30px;
  }
}
.cadl-nav-header__link {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 16px;
}
@media only screen and (min-width: 870px) and (max-width: 1179px) {
  .cadl-nav-header__link {
    font-size: 15px;
  }
}
.cadl-nav-header__link::before {
  display: block;
  content: url(../images/common/header-arrow.svg);
}
.cadl-nav-header__link.is-current {
  font-weight: bold;
  color: #023bc0;
}
@media only screen and (max-width: 869px) {
  .cadl-nav-header {
    display: none;
  }
}

.cadl-nav-sticky {
  position: fixed;
  right: -3px;
  bottom: 64px;
  z-index: 10;
  transition: all 0.5s ease;
  display: grid;
  align-items: flex-end;
  grid-template-columns: auto 1fr;
  pointer-events: none;
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky {
    display: block;
  }
}
.cadl-nav-sticky__button {
  display: flex;
  align-items: center;
  background: #023bc0;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  border: none;
  padding: 6px 16px;
  gap: 16px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: -3px 4px 7px rgba(0, 0, 0, 0.25);
  text-align: left;
  pointer-events: auto;
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky__button {
    font-size: 16px;
    padding: 10px 24px;
    gap: 24px;
    width: 100%;
  }
}
.cadl-nav-sticky__button::before {
  display: block;
  background: url(../images/common/header-arrow.svg) no-repeat center/contain;
  filter: grayscale(1) brightness(0) invert(1);
  width: 6px;
  height: 9px;
  content: "";
  transform: rotate(-180deg);
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky__button::before {
    transform: rotate(90deg);
  }
}
.cadl-nav-sticky__content {
  overflow: hidden;
  transition: all 0.5s ease;
  padding-left: 0;
  max-width: 0;
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky__content {
    max-height: 0;
    max-width: initial;
    padding-left: 20px;
  }
}
.cadl-nav-sticky__list {
  background: #fff;
  border: solid 3px #023bc0;
  box-shadow: -3px 4px 7px rgba(0, 0, 0, 0.25);
  border-radius: 23px 0 0 0;
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky__list {
    margin-bottom: 11px;
    border-radius: 0 0 0 23px;
  }
}
.cadl-nav-sticky__list > li + li {
  border-top: solid 1px #dedede;
}
.cadl-nav-sticky__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: #023bc0;
}
.cadl-nav-sticky__link::before {
  display: block;
  background: url(../images/common/header-arrow.svg) no-repeat center/contain;
  width: 6px;
  height: 9px;
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky__link {
    font-size: 14px;
    padding: 12px 24px;
  }
}
.cadl-nav-sticky.is-open {
  pointer-events: auto;
}
.cadl-nav-sticky.is-open .cadl-nav-sticky__button::before {
  transform: rotateX(180deg);
}
@media only screen and (min-width: 870px) {
  .cadl-nav-sticky.is-open .cadl-nav-sticky__button::before {
    transform: rotate(-90deg);
  }
}
@media only screen and (max-width: 869px) {
  .cadl-nav-sticky.is-open .cadl-nav-sticky__button {
    height: 48px;
  }
  .cadl-nav-sticky.is-open .cadl-nav-sticky__button span {
    display: none;
  }
}
.cadl-nav-sticky.is-open .cadl-nav-sticky__content {
  max-height: 100vh;
  max-width: 100vw;
}
.cadl-nav-sticky.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cadl-article {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.cadl-article > *:first-child {
  margin-top: 0;
}
.cadl-article > *:last-child {
  margin-bottom: 0;
}
.cadl-article h1,
.cadl-article h2,
.cadl-article h3,
.cadl-article h4,
.cadl-article h5,
.cadl-article h6 {
  font-weight: bold;
}
.cadl-article em {
  font-style: italic;
}
.cadl-article ul {
  padding-left: 1.5em;
}
.cadl-article ul li {
  list-style-type: disc;
}
.cadl-article ol {
  padding-left: 1.5em;
}
.cadl-article ol li {
  list-style-type: decimal;
}
.cadl-article blockquote {
  background: #fff;
}
.cadl-article img {
  max-width: 100%;
  height: auto;
}
.cadl-article iframe {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.cadl-article a {
  color: #023bc0;
  text-decoration: underline;
}
.cadl-article a:hover {
  text-decoration: none;
}

/* ====================
 Components
==================== */
.cadl-faq-list {
  border-bottom: solid 1px #dedede;
}
.cadl-faq-list > li {
  border-top: solid 1px #dedede;
}
.cadl-faq-list__q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  width: 100%;
  padding: 16px 10px;
  gap: 10px;
  font-weight: bold;
  position: relative;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
  color: #242424;
}
@media only screen and (min-width: 870px) {
  .cadl-faq-list__q {
    font-size: 18px;
    padding: 20px 16px;
    gap: 16px;
  }
}
.cadl-faq-list__q::before {
  width: 24px;
  height: 24px;
  background: url(../images/common/icn-q.svg) no-repeat center/contain;
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-faq-list__q::before {
    width: 32px;
    height: 32px;
  }
}
.cadl-faq-list__q::after {
  width: 17px;
  height: 24px;
  transition: transform 0.3s;
  background: url(../images/common/icn-arrow-green.svg) no-repeat center/contain;
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-faq-list__q::after {
    height: 32px;
  }
}
.cadl-faq-list__q-inner {
  display: flex;
  align-items: center;
  min-height: 24px;
}
@media only screen and (min-width: 870px) {
  .cadl-faq-list__q-inner {
    min-height: 32px;
  }
}
.cadl-faq-list__a {
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}
.cadl-faq-list__a-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  width: 100%;
  padding: 16px 10px;
  gap: 10px;
  position: relative;
  background: #f0f0f0;
  box-sizing: border-box;
  margin-bottom: 16px;
}
@media only screen and (min-width: 870px) {
  .cadl-faq-list__a-inner {
    margin-bottom: 20px;
    padding: 20px 16px;
    gap: 16px;
  }
}
.cadl-faq-list__a-inner::before {
  width: 24px;
  height: 24px;
  background: url(../images/common/icn-a.svg) no-repeat center/contain;
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-faq-list__a-inner::before {
    width: 32px;
    height: 32px;
  }
}
.cadl-faq-list .is-open .cadl-faq-list__q::after {
  transform: rotateX(180deg);
}
.cadl-faq-list .is-open .cadl-faq-list__a {
  max-height: 100vh;
}

.cadl-pdf-list {
  border-bottom: solid 1px #dedede;
}
.cadl-pdf-list > li {
  border-top: solid 1px #dedede;
}
.cadl-pdf-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
  gap: 10px;
}
.cadl-pdf-list__item::after {
  width: 23px;
  height: 30px;
  background: url(../images/common/icn-pdf.png) no-repeat center/contain;
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-pdf-list__item {
    font-size: 18px;
    padding: 32px 16px 32px 0;
    gap: 16px;
  }
}
@media only screen and (min-width: 870px) {
  .cadl-pdf-list__item--small {
    padding: 16px 0;
  }
}
.cadl-pdf-list__item--small .cadl-pdf-list__item-inner {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media only screen and (min-width: 870px) {
  .cadl-pdf-list__item--small .cadl-pdf-list__item-inner {
    -webkit-line-clamp: 1;
  }
}

.cadl-word-list__header {
  position: relative;
  height: var(--word-header-height);
}
.cadl-word-list__header-inner {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #ebf7ee;
  padding: 12px 0;
  height: 100%;
  box-sizing: border-box;
  gap: 8px 18px;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__header-inner {
    gap: 0 40px;
  }
}
.is-sticky .cadl-word-list__header-inner {
  position: fixed;
  top: var(--header-height);
  left: 0;
  height: var(--word-header-height);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.cadl-word-list__nav-links {
  display: flex;
  align-items: center;
  gap: 8px 18px;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__nav-links {
    gap: 0 40px;
  }
}
.cadl-word-list__nav-link {
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: solid 3px transparent;
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  transition: all 0.5s ease;
  color: #242424;
  text-align: center;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__nav-link {
    font-size: 24px;
  }
}
.cadl-word-list__nav-link span {
  font-size: 13px;
  font-weight: 500;
}
.cadl-word-list__nav-link small {
  font-size: 13px;
  margin-left: 0.5em;
}
.cadl-word-list__nav-link.is-active {
  border-bottom: solid 3px #5eb271;
}
.cadl-word-list__nav-link:hover {
  opacity: 0.65;
}
.cadl-word-list__container {
  display: none;
  padding: calc(var(--word-header-margin) / 2) var(--inner-x-padding);
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__container {
    padding: calc(var(--word-header-margin) / 2) 0;
  }
}
.cadl-word-list__container.is-active {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__container.is-active {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }
}
.cadl-word-list__main {
  padding: calc(var(--word-header-margin) / 2) 0;
}
.cadl-word-list__sidebar {
  padding: calc(var(--word-header-margin) / 2) 0;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__sidebar {
    max-height: calc(100vh - var(--header-height) - var(--word-header-height));
    overflow: auto;
    position: sticky;
    top: calc(var(--header-height) + var(--word-header-height));
  }
}
.cadl-word-list__list {
  display: flex;
  flex-direction: column;
  gap: var(--word-list-gap);
  padding-top: var(--word-list-gap);
  border-top: solid 1px #dedede;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__list {
    padding-top: 0;
    border-top: none;
  }
}
.cadl-word-list__list > li {
  padding-bottom: var(--word-list-gap);
  border-bottom: solid 1px #dedede;
}
.cadl-word-list__links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f0f0f0;
  padding: 30px;
  border-radius: 20px;
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__links {
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
}
.cadl-word-list__links::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 19px;
  height: 16px; /* width × √3 / 2 */
  background: #f0f0f0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: translate(-50%, -100%);
  content: "";
}
@media only screen and (min-width: 870px) {
  .cadl-word-list__links::before {
    display: none;
  }
}
.cadl-word-list__link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5em;
  font-size: 16px;
}
.cadl-word-list__link::before {
  display: block;
  height: 1.5em;
  content: url(../images/common/header-arrow.svg);
}
.cadl-word-list__link:hover {
  opacity: 1;
  color: #023bc0;
}
.cadl-word-list__item-title {
  font-size: 24px;
  font-weight: bold;
}
.cadl-word-list__item-title small {
  font-size: 13px;
  margin-left: 0.5em;
  font-weight: normal;
}
.cadl-word-posts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  margin-top: 16px;
  background: #f0f0f0;
}
@media only screen and (min-width: 870px) {
  .cadl-word-posts {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    padding: 20px;
    margin-top: 20px;
  }
}
.cadl-word-posts__title {
  color: #fff;
  padding: 6px;
  background: #5eb271;
  font-size: 12px;
}
@media only screen and (min-width: 870px) {
  .cadl-word-posts__title {
    font-size: 13px;
    padding: 6px 10px;
  }
}
.cadl-word-posts__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media only screen and (min-width: 870px) {
  .cadl-word-posts__list {
    gap: 4px;
  }
}

.cadl-word-post {
  display: grid;
  grid-template-columns: auto 1fr;
  background: #fff;
  width: 100%;
}
.cadl-word-post > li {
  list-style-type: none;
}
.cadl-word-post__content {
  padding: 10px;
}
@media only screen and (min-width: 870px) {
  .cadl-word-post__content {
    padding: 10px 20px;
  }
}
.cadl-word-post__thumb {
  width: 120px;
  background: #dedede;
}
.cadl-word-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 870px) {
  .cadl-word-post__thumb {
    width: 196px;
  }
}
.cadl-word-post__date {
  display: none;
}
@media only screen and (min-width: 870px) {
  .cadl-word-post__date {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.cadl-word-post__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 4.5em;
}
@media only screen and (min-width: 870px) {
  .cadl-word-post__title {
    font-size: 16px;
    font-weight: bold;
  }
}

.cadl-posts {
  padding: 40px 0;
  background: #ebf7ee;
}
.cadl-posts .slick-list {
  overflow: visible;
}
.cadl-posts .slick-track {
  display: flex;
}
.cadl-posts .slick-slide {
  height: auto;
}
.cadl-posts__header {
  position: relative;
  margin-bottom: 28px;
}
.cadl-posts__container {
  padding: 0 25px;
}
@media only screen and (min-width: 870px) {
  .cadl-posts__container {
    padding: 0;
  }
}
.cadl-lower-page .cadl-posts__title {
  text-align: center;
}
.cadl-posts__link {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 869px) {
  .cadl-lower-page .cadl-posts__link {
    display: none;
  }
}
.cadl-posts__bottom-link-wrapper {
  display: none;
}
@media only screen and (max-width: 869px) {
  .cadl-lower-page .cadl-posts__bottom-link-wrapper {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}
.cadl-posts__list {
  margin: 0 -8px;
}
@media only screen and (min-width: 870px) {
  .cadl-posts__list:not(.fn-post-slider) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.cadl-posts__item {
  padding: 0 8px;
}

.cadl-post {
  display: block;
  height: 100%;
  background: #fff;
}
.cadl-post__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #dedede;
}
.cadl-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cadl-post__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px 16px;
}
.cadl-post__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cadl-post__date {
  font-size: 14px;
}
.cadl-post__tag {
  background: #023bc0;
  color: #fff;
  font-weight: 500;
  padding: 0 12px;
  line-height: 20px;
  font-size: 12px;
  display: inline-block;
  border-radius: 100vh;
}
.cadl-post__tag--japan {
  background: #ff8706;
}
.cadl-post__tag--world {
  background: #9e30ff;
}
.cadl-post__title {
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (min-width: 870px) {
  .cadl-post__title {
    font-size: 18px;
  }
}

.cadl-icon-post-links {
  display: grid;
  grid-template-columns: 1fr;
  border-top: solid 1px #5eb271;
}
@media only screen and (min-width: 870px) {
  .cadl-icon-post-links {
    border-top: none;
    border-left: solid 1px #5eb271;
    grid-template-columns: repeat(4, 1fr);
  }
}
.cadl-icon-post-links > li {
  border-bottom: solid 1px #5eb271;
}
@media only screen and (min-width: 870px) {
  .cadl-icon-post-links > li {
    border-right: solid 1px #5eb271;
    border-bottom: none;
  }
}

.cadl-icon-post-link {
  display: grid;
  grid-template-rows: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100%;
  gap: 20px;
  padding: 30px 0;
  box-sizing: border-box;
}
@media only screen and (min-width: 870px) {
  .cadl-icon-post-link {
    padding: 16px 20px 0;
  }
}
.cadl-icon-post-link__title {
  font-size: 22px;
  font-weight: bold;
  color: #5eb271;
}
@media only screen and (min-width: 870px) {
  .cadl-icon-post-link__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 869px) {
  .cadl-icon-post-link__title {
    word-break: keep-all;
  }
  .cadl-icon-post-link__title br {
    display: none;
  }
}
.cadl-icon-post-link__image {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 7/4;
  margin: auto;
}
.cadl-icon-post-link__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cadl-icon-post-link__desc {
  text-align: left;
  font-size: 16px;
}
.cadl-icon-post-link__header {
  display: grid;
  grid-auto-rows: 1fr auto;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cadl-icon-post-link__content {
  display: grid;
  grid-auto-rows: 1fr auto;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.cadl-link {
  position: relative;
  display: inline-block;
  color: #023bc0;
  font-weight: bold;
  font-size: 16px;
  padding: 0 20px 1px 4px;
}
.cadl-link::before, .cadl-link::after {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  border-radius: 1px;
  background: #023bc0;
  content: "";
}
.cadl-link::before {
  left: 0;
}
.cadl-link::after {
  right: 0.5px;
  width: 15px;
  height: 1px;
  background: #023bc0;
  transform: rotate(52deg);
  transform-origin: right bottom;
}

.cadl-movies {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
}
.cadl-movies__item {
  flex: 1;
  max-width: 320px;
}
.cadl-movies__item--landscape {
  width: 100%;
  max-width: 100%;
  flex: auto;
}
@media only screen and (min-width: 870px) {
  .cadl-movies__item--landscape {
    flex: 3.16;
  }
}
.cadl-movies__item--landscape .cadl-movies__thumb {
  aspect-ratio: 16/9;
}
.cadl-movies__thumb {
  width: 100%;
  aspect-ratio: 9/16;
  background: #dedede;
}
.cadl-movies__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cadl-hero {
  width: 100%;
  background: #abc0ef;
}
.cadl-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1222px;
  padding: 27.2093023256vw 0;
  margin: 0 auto;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__inner {
    padding-top: clamp(120px, 13.093289689vw, 160px);
    padding-bottom: 0;
  }
}
.cadl-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 86/85;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__image {
    aspect-ratio: 611/255;
  }
}
.cadl-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cadl-hero__desc {
  position: absolute;
  position: absolute;
  will-change: transform;
  pointer-events: none;
}
.cadl-hero__desc img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cadl-hero__desc {
  /* 配置 */
}
.cadl-hero__desc--1 {
  top: 87%;
  left: 21%;
  width: 32.5581395349vw;
  aspect-ratio: 70/29;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--1 {
    top: 40%;
    left: -8%;
    width: 17.2667757774vw;
    max-width: 211px;
    aspect-ratio: 211/103;
  }
}
.cadl-hero__desc--2 {
  top: 83%;
  left: 58%;
  width: 26.976744186vw;
  aspect-ratio: 29/12;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--2 {
    top: 25%;
    left: -5%;
    width: 16.1211129296vw;
    max-width: 197px;
    aspect-ratio: 197/76;
  }
}
.cadl-hero__desc--3 {
  top: 17%;
  left: 5%;
  width: 38.3720930233vw;
  aspect-ratio: 33/8;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--3 {
    top: 7%;
    left: 6%;
    width: 21.3584288052vw;
    max-width: 261px;
    aspect-ratio: 87/34;
  }
}
.cadl-hero__desc--4 {
  top: 7%;
  left: 19%;
  width: 37.2093023256vw;
  aspect-ratio: 32/11;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--4 {
    top: 5%;
    left: 30%;
    width: 19.9672667758vw;
    max-width: 244px;
    aspect-ratio: 488/259;
  }
}
.cadl-hero__desc--5 {
  top: 8%;
  left: 64%;
  width: 28.6046511628vw;
  aspect-ratio: 123/65;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--5 {
    top: 8%;
    left: 52%;
    width: 17.348608838vw;
    max-width: 212px;
    aspect-ratio: 212/109;
  }
}
.cadl-hero__desc--6 {
  top: 19%;
  left: 50%;
  width: 28.3720930233vw;
  aspect-ratio: 61/26;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--6 {
    top: 7%;
    left: 73%;
    width: 17.2667757774vw;
    max-width: 211px;
    aspect-ratio: 211/106;
  }
}
.cadl-hero__desc--7 {
  top: 78%;
  left: 6%;
  width: 34.1860465116vw;
  aspect-ratio: 147/44;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--7 {
    top: 28%;
    left: 87%;
    width: 17.2667757774vw;
    max-width: 211px;
    aspect-ratio: 211/70;
  }
}
.cadl-hero__desc--8 {
  top: 75%;
  left: 63%;
  width: 34.1860465116vw;
  aspect-ratio: 147/38;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc--8 {
    top: 44%;
    left: 89%;
    width: 21.3584288052vw;
    max-width: 261px;
    aspect-ratio: 261/79;
  }
}
.cadl-hero__desc {
  /* アニメーション設定 */
  animation: float-sway 7s ease-in-out infinite;
}
@media only screen and (min-width: 870px) {
  .cadl-hero__desc {
    animation-duration: 9s;
  }
}
.cadl-hero__desc {
  /* 個別にタイミングをずらして自然な揺れにする */
  /* ゆらゆら（上下＋少し左右＋回転）のキーフレーム */
  /* 複数パターンのキーフレームを用意して方向をバラバラにする */
}
.cadl-hero__desc--1 {
  animation-duration: 8.2s;
  animation-delay: 0s;
  animation-name: float-sway-1;
}
.cadl-hero__desc--2 {
  animation-duration: 6.6s;
  animation-delay: 0.4s;
  animation-name: float-sway-2;
}
.cadl-hero__desc--3 {
  animation-duration: 7.4s;
  animation-delay: 0.8s;
  animation-name: float-sway-3;
}
.cadl-hero__desc--4 {
  animation-duration: 6.8s;
  animation-delay: 0.2s;
  animation-name: float-sway;
}
.cadl-hero__desc--5 {
  animation-duration: 7.8s;
  animation-delay: 0.6s;
  animation-name: float-sway-2;
}
.cadl-hero__desc--6 {
  animation-duration: 8.6s;
  animation-delay: 0.9s;
  animation-name: float-sway-3;
}
.cadl-hero__desc--7 {
  animation-duration: 6.4s;
  animation-delay: 0.3s;
  animation-name: float-sway-1;
}
.cadl-hero__desc--8 {
  animation-duration: 7s;
  animation-delay: 0.5s;
  animation-name: float-sway-2;
}
.cadl-hero__desc {
  /* アニメーションキーフレーム */
}
@keyframes float-sway {
  /* デフォルト（マイルド） */
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-4px, -6px) rotate(-1deg);
  }
  50% {
    transform: translate(6px, -12px) rotate(1deg);
  }
  75% {
    transform: translate(-3px, -6px) rotate(-0.6deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.cadl-hero__desc {
  /* それぞれ float-sway-1 をデフォルトとして定義（重複呼び出しを避けるため） */
}
@keyframes float-sway-1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-8px, -10px) rotate(-2deg);
  }
  50% {
    transform: translate(10px, -18px) rotate(1.5deg);
  }
  80% {
    transform: translate(-5px, -8px) rotate(-1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes float-sway-2 {
  /* 横方向にやや大きく振れるパターン */
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(12px, -4px) rotate(1deg);
  }
  50% {
    transform: translate(-14px, -10px) rotate(-2deg);
  }
  80% {
    transform: translate(6px, -6px) rotate(0.8deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes float-sway-3 {
  /* 縦方向に深めに動くパターン */
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-2px, -20px) rotate(-3deg);
  }
  50% {
    transform: translate(4px, -32px) rotate(2deg);
  }
  80% {
    transform: translate(-3px, -18px) rotate(-1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.cadl-countries-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 870px) {
  .cadl-countries-wrapper {
    gap: 50px;
  }
}

.cadl-countries__title {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-bottom: 2em;
}
@media only screen and (min-width: 870px) {
  .cadl-countries__title {
    font-size: 24px;
  }
}
.cadl-countries__title--green {
  background: #ebf7ee;
}
.cadl-countries__title--blue {
  background: #ecf2fe;
}
.cadl-countries__title--yellow {
  background: rgba(255, 205, 41, 0.45);
}
.cadl-countries__title span {
  display: inline-block;
}
.cadl-countries__content {
  columns: 2;
  column-gap: 10px;
  font-size: 14px;
}
@media only screen and (min-width: 870px) {
  .cadl-countries__content {
    columns: 4;
    column-gap: 20px;
    font-size: 16px;
  }
}
.cadl-countries__continent {
  font-weight: bold;
  color: #5eb271;
  margin-bottom: 0.25em;
  margin-top: -1.75em;
}
.cadl-countries__list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding-left: 1.5em;
  margin-bottom: 3em;
}
.cadl-countries__list li {
  list-style-type: disc;
}

.cadl-checkbox-filters {
  display: flex;
  flex-direction: column;
  gap: 6px 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 870px) {
  .cadl-checkbox-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.cadl-checkbox-switch {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}
.cadl-checkbox-switch__icon {
  display: block;
  padding: 3px;
  width: 50px;
  height: 28px;
  border-radius: 100vh;
  background: #aaa;
  box-sizing: border-box;
}
.cadl-checkbox-switch__icon::after {
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 100vh;
  content: "";
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.cadl-checkbox-switch input {
  display: none;
}
.cadl-checkbox-switch input:checked + .cadl-checkbox-switch__icon {
  background: #4e6def;
}
.cadl-checkbox-switch input:checked + .cadl-checkbox-switch__icon--green {
  background: #5eb271;
}
.cadl-checkbox-switch input:checked + .cadl-checkbox-switch__icon--yellow {
  background: #ffcd29;
}
.cadl-checkbox-switch input:checked + .cadl-checkbox-switch__icon::after {
  transform: translateX(22px);
}

.cadl-map-container {
  width: 100%;
  background: #ecf2fe;
}
@media only screen and (min-width: 870px) {
  .cadl-map-container {
    padding: 20px 0;
  }
}
.cadl-map-container__inner {
  width: 100%;
  max-width: 1222px;
  margin: 0 auto;
  box-sizing: border-box;
  aspect-ratio: 430/442;
}
@media only screen and (min-width: 870px) {
  .cadl-map-container__inner {
    aspect-ratio: initial;
  }
}

.cadl-map {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  touch-action: none;
  aspect-ratio: 1222/602;
}
.cadl-map__image {
  position: absolute;
  inset: 0;
  display: none;
}
.cadl-map__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cadl-map__image.is-active {
  display: block;
}

.cadl-japan-links {
  position: relative;
}
@media only screen and (min-width: 870px) {
  .cadl-japan-links {
    padding: 12px 0;
  }
}
.cadl-japan-links__image {
  display: relative;
  box-sizing: border-box;
  margin-bottom: 30px;
  z-index: 1;
}
@media only screen and (min-width: 870px) {
  .cadl-japan-links__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding: 0 20px;
    margin-bottom: 0;
  }
}
.cadl-japan-links__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cadl-japan-links__list {
  position: relative;
  counter-reset: cadl-ol-links;
}
.cadl-japan-links__list > li {
  position: relative;
  counter-increment: cadl-ol-links;
}
.cadl-japan-links__list > li:nth-child(odd) {
  background: #ecf2fe;
}
.cadl-japan-links__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  box-sizing: border-box;
}
@media only screen and (min-width: 870px) {
  .cadl-japan-links__link {
    width: 50%;
  }
}
.cadl-japan-links__link::before {
  display: block;
  color: #023bc0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  content: counter(cadl-ol-links);
}
@media only screen and (min-width: 870px) {
  .cadl-japan-links__link::before {
    font-size: 36px;
  }
}
.cadl-japan-links__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (min-width: 870px) {
  .cadl-japan-links__title {
    font-size: 18px;
  }
  .cadl-japan-links__title::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    min-width: 40px;
    background: #aaa;
  }
}
.cadl-japan-links__link-button {
  opacity: 0.6;
  margin: 0;
}

/* ====================
 Pages
==================== */
.cadl-dictionary {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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