@charset "utf-8";
.tl-mgb{
  margin-bottom: clamp( 50px, 7.5vw, 100px);
}

:root{
  --check: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+ODrOOCpOODpOODvF8xIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMwMCAzMDAiPgogIDwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAzMC4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiAyLjEuMSBCdWlsZCAxMjMpICAtLT4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLnN0MCB7CiAgICAgICAgZmlsbDogIzQwNDA0MDsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPGcgaWQ9Il/jgrDjg6vjg7zjg5dfNTM2NDU4IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODl181MzY0NTgiPgogICAgPHBhdGggaWQ9Il/mpZXlhoblvaJfNzYwIiBkYXRhLW5hbWU9IualleWGhuW9ol83NjAiIGNsYXNzPSJzdDAiIGQ9Ik0xNTAsMTMuNkM3NC43LDEzLjYsMTMuNiw3NC43LDEzLjYsMTUwczYxLjEsMTM2LjQsMTM2LjQsMTM2LjQsMTM2LjQtNjEuMSwxMzYuNC0xMzYuNGMwLTc1LjMtNjEuMS0xMzYuMy0xMzYuNC0xMzYuNE0xNTAsMGM4Mi44LDAsMTUwLDY3LjIsMTUwLDE1MHMtNjcuMiwxNTAtMTUwLDE1MFMwLDIzMi44LDAsMTUwLDY3LjIsMCwxNTAsMFoiLz4KICAgIDxwYXRoIGlkPSJf44OR44K5XzQxMDc0IiBkYXRhLW5hbWU9IuODkeOCuV80MTA3NCIgY2xhc3M9InN0MCIgZD0iTTEzOC40LDIxMS44Yy01LjQsMC0xMC41LTIuMS0xNC40LTUuOWwtNTIuNy01Mi4xYy04LTcuOS04LjEtMjAuOS0uMi0yOC45aDBjNy45LTgsMjAuOS04LjEsMjguOS0uMmwzOC41LDM4LjEsNzEuNi02OC44YzguMS03LjgsMjEuMS03LjYsMjguOS42aDBjNy44LDguMSw3LjYsMjEuMS0uNiwyOC45aDBsLTg1LjksODIuNmMtMy44LDMuNy04LjksNS43LTE0LjIsNS43WiIvPgogIDwvZz4KPC9zdmc+);
}

/* -------------------共通見出し-------------------- */
.tl-ttl{
  color: var(--txt-c-base);
}
.tl-ttl--center{
  text-align: center;
}
/* 下線付き */
.tl-ttl--line{
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px){
  .tl-ttl{
    font-size: var(--fz-22);
    margin-bottom: var(--spc-20);
  }
  .tl-ttl--small{
    margin-bottom: 15px;
  }
  .tl-ttl--line{
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
  .tl-ttl--small{
    font-size: var(--fz-20);
  }
}
@media screen and (max-width: 767px){
  .tl-ttl{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .tl-ttl--small{
    margin-bottom: 12px;
  }
  .tl-ttl--line{
    padding-bottom: 8px;
  }
  .tl-ttl--small{
    font-size: 16px;
  }
}


/* -------------------スライダー-------------------- */
.tl-slider__slider img{
  width: 100%;
  aspect-ratio: 800/960;
  object-fit: cover;
}
.tl-slider__icons{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/* アイコン画像はHTML側の style="--icon: url(~)" で指定 */
.tl-slider__icon{
  flex-shrink: 0;
  background: var(--icon) no-repeat center center / cover;
  border-radius: 50%;
  object-fit: cover;
}
@media screen and (min-width: 768px){
  .tl-slider__icons{
    gap: 14px;
    margin-block: var(--spc-30);
  }
  .tl-slider__icon{
    width: 30px;
    height: 30px;
  }
  .tl-slider__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px){
  .tl-slider__icons{
    gap: 10px;
    margin-block: 20px;
  }
  .tl-slider__icon{
    width: 26px;
    height: 26px;
  }
  .tl-slider__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
  }
}

/* -------------------定義リスト-------------------- */
.tl-dl{
  display: grid;
}
.tl-dl__term{
  font-weight: 500;
}
@media screen and (min-width: 768px){
  .tl-dl{
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  }
  .tl-dl__term,
  .tl-dl__desc{
    padding-block: 15px;
    border-bottom: 1px solid var(--bd-c-gray);
  }
  .tl-dl dt:first-of-type,
  .tl-dl dd:first-of-type{
    padding-top: 0;
  }
  .tl-dl__term{
    font-size: var(--fz-16);
    padding-right: 15px;
    line-height: 1.65;
  }
  .tl-dl__term::after{
    content: "：";
    display: inline-block;
    margin-left: 3px;
  }
  .tl-dl__desc{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px){
  .tl-dl{
    grid-template-columns: minmax(0, 1fr);
  }
  .tl-dl dt:first-of-type{
    padding-top: 0;
  }
  .tl-dl__term{
    font-size: 15px;
    padding-top: 15px;
  }
  .tl-dl__desc{
    font-size: var(--fz-14-const);
    padding: 5px 0 15px;
    border-bottom: 1px solid var(--bd-c-gray);
  }
}

/* -------------------グレーボックス-------------------- */
.tl-box{
  background: var(--bg-c-gray);
}
.tl-box__link{
  text-align: right;
}
.tl-box__link a{
  text-decoration: underline;
}
.tl-box__media{
  display: grid;
}
.tl-box__img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media screen and (min-width: 768px){
  .tl-box{
    padding: var(--spc-50);
  }
  .tl-box__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
  .tl-box__link{
    font-size: 12px;
    margin-top: var(--spc-20);
  }
  .tl-box__media{
    grid-template-columns: 184fr 496fr;
    align-items: start;
    gap: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .tl-box{
    padding: 25px 20px;
  }
  .tl-box__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
  }
  .tl-box__link{
    font-size: var(--fz-14-const);
    margin-top: 15px;
  }
  .tl-box__media{
    gap: 15px;
  }
}

/* -------------------テーブル-------------------- */
.tl-table{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tl-table__inner{
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--txt-c-base);
  text-align: center;
}
.tl-table__th,
.tl-table__td{
  border: 1px solid var(--txt-c-base);
  vertical-align: middle;
  line-height: 1.5;
}
.tl-table__th{
  border-bottom: none !important;
}
.tl-table tbody > tr:first-child td{
  border-top: none !important;
}
.tl-table__th{
  background: var(--c-gray-400);
  font-weight: 700;
}
@media screen and (min-width: 768px){
  .tl-table__td{
    padding: var(--spc-25) var(--spc-10);
  }
  .tl-table__th{
    padding: var(--spc-20) var(--spc-10);
  }
  .tl-table__th{
    font-size: var(--fz-14);
  }
  .tl-table__td{
    font-size: var(--fz-14);
  }
}
@media screen and (max-width: 767px){
  .tl-table__inner{
  min-width: 650px;
  }
  .tl-table__td{
    padding: 15px 5px;
  }
  .tl-table__th{
    padding: 12px 5px;
  }
  .tl-table__th{
    font-size: 12px;
  }
  .tl-table__td{
    font-size: 12px;
  }
}

/* -------------------チェックリスト-------------------- */
.tl-list{
  --tl-list-icon: 22px;
  --tl-list-gap: 10px;
  display: grid;
}
.tl-list__term{
  display: flex;
  align-items: center;
  gap: var(--tl-list-gap);
  font-weight: 500;
}
.tl-list__term::before{
  content: "";
  flex-shrink: 0;
  width: var(--tl-list-icon);
  height: var(--tl-list-icon);
  background: var(--check) no-repeat center center / contain;
}
.tl-list__desc{
  padding-left: calc(var(--tl-list-icon) + var(--tl-list-gap));
  border-bottom: 1px solid var(--bd-c-gray);
}
@media screen and (min-width: 768px){
  .tl-list__term{
    font-size: var(--fz-16);
    padding-top: var(--spc-20);
  }
  .tl-list dt:first-of-type{
    padding-top: 0;
  }
  .tl-list__desc{
    font-size: var(--fz-15);
    padding-top: 8px;
    padding-bottom: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .tl-list{
    --tl-list-icon: 17px;
    --tl-list-gap: 8px;
  }
  .tl-list__term{
    font-size: 15px;
    padding-top: 15px;
  }
  .tl-list dt:first-of-type{
    padding-top: 0;
  }
  .tl-list__desc{
    font-size: var(--fz-14-const);
    padding-top: 5px;
    padding-bottom: 15px;
  }
}

/* -------------------コロンなし-------------------- */
@media screen and (min-width: 768px){
  .tl-dl--nocolon .tl-dl__term::after{
    display: none;
  }
  .tl-dl--nocolon .tl-dl__term{
    padding-right: var(--spc-60);
  }
}


/* -------------------テキスト＋画像-------------------- */
.tl-media__img img{
  width: 100%;
  aspect-ratio: 380/253;
  object-fit: cover;
}
@media screen and (min-width: 768px){
  .tl-media{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--spc-40);
  }
  /* 画像を左に配置 */
  .tl-media--reverse .tl-media__body{
    order: 2;
  }
  .tl-media__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px){
  .tl-media{
    display: grid;
    gap: 20px;
  }
  .tl-media__img{
    order: -1;
  }
  .tl-media__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
  }
}

/* -------------------画像カード-------------------- */
.tl-cards__list{
  display: grid;
}
.tl-cards__img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media screen and (min-width: 768px){
  .tl-cards__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
    margin-bottom: var(--spc-25);
  }
  .tl-cards__list{
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spc-25);
  }
  .tl-cards__cap{
    font-size: var(--fz-14);
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px){
  .tl-cards__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .tl-cards__list{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  .tl-cards__cap{
    font-size: 13px;
    margin-top: 8px;
  }
}

/* -------------------上下線ボックス-------------------- */
.tl-note{
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px){
  .tl-note{
    padding-block: var(--spc-25);
  }
  .tl-note__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px){
  .tl-note{
    padding-block: 20px;
  }
  .tl-note__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
  }
}

/* -------------------中央寄せ画像-------------------- */
.tl-figure__img img{
  width: 100%;
  aspect-ratio: 6/4;
  object-fit: cover;
}
@media screen and (min-width: 768px){
  .tl-figure{
    width: 76%;
    margin-inline: auto;
  }
  .tl-figure__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
    margin-top: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .tl-figure__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
    margin-top: 15px;
  }
}

/* -------------------画像付きリスト-------------------- */
.tl-articles__item{
  display: grid;
}
.tl-articles__img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.tl-articles__label{
  display: inline-block;
  border: 1px solid;
  line-height: 1.5;
}
.tl-articles .tl-ttl{
  margin-bottom: 8px;
}
@media screen and (min-width: 768px){
  .tl-articles__item{
    grid-template-columns: 184fr 596fr;
    align-items: start;
    gap: var(--spc-20);
  }
  .tl-articles__item + .tl-articles__item{
    margin-top: var(--spc-30);
  }
  .tl-articles__label{
    font-size: 12px;
    padding: 3px 12px;
    margin-bottom: 10px;
  }
  .tl-articles__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px){
  .tl-articles__item{
    gap: 15px;
  }
  .tl-articles__item + .tl-articles__item{
    margin-top: 30px;
  }
  .tl-articles__label{
    font-size: 12px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
  .tl-articles__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
  }
}
/* -------------------アコーディオン-------------------- */
.tl-acc__hd{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  grid-gap: 6px;
}
.tl-acc__ttl{
  display: flex;
  align-items: center;
  background: var(--c-gray-400);
  font-weight: 500;
  line-height: 1.5;
}
.tl-acc__btn{
  display: grid;
  place-items: center;
  background: var(--c-gray-400);
  border: none;
  cursor: pointer;
}
.tl-acc__btn::before{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--under-arrow) no-repeat center center / contain;
  transition: transform .3s;
}
.tl-acc.is-open .tl-acc__btn::before{
  transform: rotate(180deg);
}
/* 閉じている間は途中まで表示（高さは --tl-acc-peek で調整） */
.tl-acc__body{
  overflow: hidden;
  max-height: var(--tl-acc-peek);
  transition: max-height .4s;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 50px), transparent);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 50px), transparent);
}
.tl-acc.is-open .tl-acc__body{
  -webkit-mask-image: none;
  mask-image: none;
}
@media screen and (min-width: 768px){
  .tl-acc{
    --tl-acc-peek: 100px;
  }
  .tl-acc__ttl{
    font-size: var(--fz-16);
    padding: 12px 20px;
  }
  .tl-acc__btn{
    width: 44px;
    transition: .3s;
  }
  .tl-acc__body{
    margin-top: var(--spc-20);
  }
  .tl-acc__txt{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
}
@media (hover: hover){
  .tl-acc__btn:hover{
    opacity: .7;
  }
}
@media screen and (max-width: 767px){
  .tl-acc{
    --tl-acc-peek: 100px;
  }
  .tl-acc__ttl{
    font-size: 15px;
    padding: 10px 15px;
  }
  .tl-acc__btn{
    width: 35px;
  }
  .tl-acc__body{
    margin-top: 15px;
  }
  .tl-acc__txt{
    font-size: var(--fz-14-const);
    line-height: 1.8;
  }
}
