@charset "UTF-8";
/* common
---------------------------------------------------------------------------- */
/*特有のconfigを記述*/
/* ボタン系
---------------------------------------------------------------------------- */
/*------------- .m-tanada-btn-01 -------------*/
.m-tanada-btn-01 {
  display: block;
  width: 28rem;
  position: relative;
}

.m-tanada-btn-01-txt {
  display: grid;
  align-items: center;
  height: 6rem;
  font-size: 1.9rem;
  line-height: 1.4736842105;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "Shippori Mincho B1";
  color: #fff;
  background-color: #006A20;
  padding-inline: 4.8rem;
  border-radius: 0.5rem;
}

.m-tanada-btn-01-icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  width: 3rem;
  aspect-ratio: 1;
  transition: translate 0.3s ease;
}
.m-tanada-btn-01-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-tanada-btn-01:hover .m-tanada-btn-01-txt {
  background-color: #20A81B;
}
.m-tanada-btn-01:hover .m-tanada-btn-01-icon {
  translate: 0.5rem -50%;
}

@media screen and (max-width: 767px) {
  .m-tanada-btn-01 {
    width: 74.6666666667vw;
  }
  .m-tanada-btn-01-txt {
    height: 16vw;
    font-size: 5.0666666667vw;
    padding-inline: 12.8vw;
    border-radius: 1.3333333333vw;
  }
  .m-tanada-btn-01-icon {
    right: 5.3333333333vw;
    width: 8vw;
  }
  .m-tanada-btn-01:hover .m-tanada-btn-01-icon {
    translate: 1.3333333333vw -50%;
  }
}
/*------------- .m-tanada-btn-01-hover -------------*/
.m-tanada-btn-01-hover {
  width: 28rem;
  position: relative;
}

.m-tanada-btn-01-hover-txt {
  display: grid;
  align-items: center;
  height: 6rem;
  font-size: 1.9rem;
  line-height: 1.4736842105;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "Shippori Mincho B1";
  color: #fff;
  background-color: #006A20;
  padding-inline: 4.8rem;
  border-radius: 0.5rem;
}

.m-tanada-btn-01-hover-icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  width: 3rem;
  aspect-ratio: 1;
  transition: translate 0.3s ease;
}
.m-tanada-btn-01-hover-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-tanada-btn-01-hover-link:hover .m-tanada-btn-01-hover-txt {
  background-color: #20A81B;
}
.m-tanada-btn-01-hover-link:hover .m-tanada-btn-01-hover-icon {
  translate: 0.5rem -50%;
}

@media screen and (max-width: 767px) {
  .m-tanada-btn-01-hover {
    width: 74.6666666667vw;
  }
  .m-tanada-btn-01-hover-txt {
    height: 16vw;
    font-size: 5.0666666667vw;
    padding-inline: 12.8vw;
    border-radius: 1.3333333333vw;
  }
  .m-tanada-btn-01-hover-icon {
    right: 5.3333333333vw;
    width: 8vw;
  }
  .m-tanada-btn-01-hover-link:hover .m-tanada-btn-01-hover-icon {
    translate: 1.3333333333vw -50%;
  }
}
/* モジュール系
---------------------------------------------------------------------------- */
/*------------- .m-tanada-pageLink -------------*/
.m-tanada-pageLink {
  display: grid;
  grid-template-columns: repeat(2, 40rem);
  gap: 3rem;
  justify-content: center;
}
.m-tanada-pageLink.is-3 {
  grid-template-columns: repeat(3, 40rem);
}

.m-tanada-pageLink-item-link {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  border: 0.2rem solid #D1D1D1;
  position: relative;
}

.m-tanada-pageLink-item-link-img {
  width: 12rem;
  aspect-ratio: 1;
}
.m-tanada-pageLink-item-link-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-tanada-pageLink-item-link-txt {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "Shippori Mincho B1";
  color: #414141;
}

.m-tanada-pageLink-item-link-icn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
}
.m-tanada-pageLink-item-link-icn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-tanada-pageLink.is-3 {
  grid-template-columns: repeat(3, 1fr);
}
.m-tanada-pageLink.is-3 .m-tanada-pageLink-item-link-img {
  width: 10rem;
}

@media screen and (max-width: 767px) {
  .m-tanada-pageLink {
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }
  .m-tanada-pageLink-item-link {
    gap: 4vw;
    padding: 3.4666666667vw;
    border-top-left-radius: 5.3333333333vw;
    border-bottom-right-radius: 5.3333333333vw;
    border: 0.5333333333vw solid #D1D1D1;
  }
  .m-tanada-pageLink-item-link-img {
    width: 24vw;
  }
  .m-tanada-pageLink-item-link-txt {
    font-size: 4.2666666667vw;
  }
  .m-tanada-pageLink-item-link-icn {
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 6.1333333333vw;
    height: 6.1333333333vw;
  }
  .m-tanada-pageLink.is-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .m-tanada-pageLink.is-3 .m-tanada-pageLink-item-link-img {
    width: 24vw;
  }
}
/* layout
-----------------------------------------------------------------------------*/
/*必要なフォントのみ読み込んでください。不要なフォントおよび太さは削除でお願いします。*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
/*
@font-face {
    font-family: 'Noto Sans JP';
	src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.woff2") format("woff2"),url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.woff") format("woff");
	font-display: swap;
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff") format("woff");
	font-display: swap;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Medium.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Medium.woff") format("woff");
	font-display: swap;
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff") format("woff");
	font-display: swap;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Black.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Black.woff") format("woff");
	font-display: swap;
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'hanatotyoutyo';
	src: url("../../fonts/hanatotyoutyo/hanatotyoutyo.woff2") format("woff2"),url("../../fonts/hanatotyoutyo/hanatotyoutyo.woff") format("woff");
	font-display: swap;
    font-weight: 400;
    font-style: normal;
}
*/
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #414141;
  font-size: 1.5rem;
}
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.l-pagebody {
  margin-top: 8rem;
}

.l-content {
  max-width: 120rem;
  margin-inline: auto;
}
.l-content._600 {
  max-width: 60rem;
}
.l-content._960 {
  max-width: 96rem;
}

@media screen and (max-width: 767px) {
  .l-pagebody {
    margin-top: 16vw;
  }
  .l-content {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
  .l-content._600 {
    max-width: 100%;
  }
  .l-content._960 {
    max-width: 100%;
  }
  .l-content._sp_no_padding {
    padding-inline: 0;
  }
  .l-content._sp_no_padding-left {
    padding-inline: 0 5.3333333333vw;
  }
}
@media all and (min-width: 1600px) {
  .brtop {
    display: none !important;
  }
}
@media all and (min-width: 1600px) {
  .brchild {
    display: none !important;
  }
}
/*------------- .l-header-business -------------*/
.l-header-tanada-top-wrap {
  position: absolute;
  inset: 0;
  z-index: 9000;
  height: 8rem;
}

.l-header-tanada-child-wrap {
  position: fixed;
  inset: 0;
  z-index: 9000;
  height: 8rem;
}
.l-header-tanada-child-wrap._top {
  display: none;
}

.l-header-tanada {
  height: 100%;
  background-color: #fff;
  display: grid;
  align-items: center;
}

.l-header-tanada-inner {
  width: 100%;
  max-width: 192rem;
  padding-inline: 4rem;
  margin-inline: auto;
  position: relative;
}

.l-header-tanada-logo {
  width: 21.838rem;
  aspect-ratio: 218.38/50.02;
  position: fixed;
  top: 1.5rem;
  left: 4rem;
  z-index: 9001;
}

.l-header-tanada-logo a {
  display: block;
}
.l-header-tanada-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-header-tanada-page {
  width: 100%;
  max-width: 102.9rem;
  margin-inline: auto;
}

.l-header-tanada-page-list {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  width: fit-content;
  margin-inline: auto;
}

.l-header-tanada-page-link {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header-tanada-page-link:hover {
    opacity: 0.7;
  }
  .l-header-tanada-page-link:hover ._txt {
    color: #006A20;
  }
}
.l-header-tanada-page-link ._txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #414141;
  margin-left: 2.9rem;
}

.l-header-tanada-page-link ._icn {
  display: block;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-header-tanada-page-link ._icn[data-icn=top] {
  background-image: url("../../images/tanada/icn_header_top.svg");
}

.l-header-tanada-page-link ._icn[data-icn=vision] {
  background-image: url("../../images/tanada/icn_header_vision.svg");
}

.l-header-tanada-page-link ._icn[data-icn=about] {
  background-image: url("../../images/tanada/icn_header_about.svg");
}

.l-header-tanada-page-link ._icn[data-icn=report] {
  background-image: url("../../images/tanada/icn_header_report.svg");
}

.l-header-tanada-page-link ._icn[data-icn=interview] {
  background-image: url("../../images/tanada/icn_header_interview.svg");
}

.l-header-tanada-page-link ._icn[data-icn=support-group] {
  background-image: url("../../images/tanada/icn_header_support-group.svg");
}

.l-header-tanada._top {
  align-items: end;
  background-color: transparent;
  height: 10rem;
}
.l-header-tanada._top .l-header-tanada-page {
  max-width: 108.9rem;
}
.l-header-tanada._top .l-header-tanada-page-list {
  background-color: #fff;
  border-radius: 10vmax;
  padding-block: min(1.1458333333vw, 22px);
  padding-inline: 3rem;
}

.l-header-tanada-logo._top {
  position: absolute;
  width: min(16.328125vw, 286px);
  aspect-ratio: 286/68;
  top: min(3.125vw, 40px);
  left: min(3.125vw, 40px);
}

@media (max-width: 1350px) {
  .l-header-tanada._top .l-header-tanada-page {
    margin-inline: auto 0;
  }
}
.l-header-tanada-gnav-wrap {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 9003;
  overflow: auto;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.l-menu-cover {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

@media (max-width: 767px) {
  .l-header-tanada-top-wrap {
    height: 20.5333333333vw;
  }
  .l-header-tanada-child-wrap {
    height: 16vw;
  }
  .l-header-tanada-inner {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
  .l-header-tanada-logo {
    width: 41.3333333333vw;
    aspect-ratio: 155/35.64;
    top: 2.6666666667vw;
    left: 5.3333333333vw;
  }
  .l-header-tanada-page {
    max-width: 100%;
  }
  .l-header-tanada-page-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4.88vw;
    width: 100%;
    margin-inline: 0;
  }
  .l-header-tanada-page-list li {
    padding-bottom: 5.3333333333vw;
    border-bottom: 0.2666666667vw solid #E0E0E0;
  }
  .l-header-tanada-page-link::after {
    content: "";
    width: 2vw;
    height: 2vw;
    border-top: 0.5333333333vw solid #006A20;
    border-right: 0.5333333333vw solid #006A20;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1.0666666667vw;
    translate: 0 -50%;
  }
  .l-header-tanada-page-link ._txt {
    font-size: 4.2666666667vw;
    margin-left: 7.7333333333vw;
  }
  .l-header-tanada-page-link ._icn {
    width: 6.4vw;
    height: 6.4vw;
  }
  .l-header-tanada._top {
    height: 20.5333333333vw;
    align-items: start;
  }
  .l-header-tanada._top .l-header-tanada-page {
    max-width: 100%;
  }
  .l-header-tanada._top .l-header-tanada-page-list {
    border-radius: 0;
    padding-block: 0;
    padding-inline: 0;
  }
  .l-header-tanada-logo._top {
    width: 41.3333333333vw;
    aspect-ratio: 155/35.64;
    top: 5.6vw;
    left: 5.3333333333vw;
  }
  .l-header-tanada-gnav-wrap.is-hamburger-open {
    right: 0;
  }
  .l-header-tanada-gnav-logo-wrap {
    position: relative;
  }
  .l-header-tanada-gnav-logo {
    width: 41.3333333333vw;
    aspect-ratio: 155/35.64;
    position: absolute;
    top: 5.6vw;
    left: 5.3333333333vw;
  }
  .l-header-tanada-gnav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding-block: 26.6666666667vw 10.6666666667vw;
    padding-inline: 5.3333333333vw;
  }
  .l-header-tanada-corp {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 1.0666666667vw;
    font-size: 3.7333333333vw;
    color: #fff;
    background-color: #006A20;
    border-radius: 1.3333333333vw;
    width: 52.2666666667vw;
    height: 8vw;
    margin-top: 10.6666666667vw;
    margin-inline: auto;
  }
  .l-header-tanada-corp::after {
    content: "";
    width: 3.7333333333vw;
    aspect-ratio: 1;
    mask-image: url("../../images/tanada/icn_externalLink.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: currentColor;
  }
  .l-header-tanada-hamburger-wrap {
    position: fixed;
    top: 1.8666666667vw;
    right: 3.4666666667vw;
    z-index: 9004;
  }
  .l-header-tanada-hamburger-wrap._top {
    position: absolute;
  }
  .l-header-tanada-hamburger-wrap._scrolled {
    display: none;
  }
  .l-hamburger-tanada {
    display: block;
    width: 12.2666666667vw;
    height: 12.2666666667vw;
    position: relative;
    border-radius: 50%;
  }
  .l-header-tanada-hamburger-wrap._top {
    top: 4vw;
    right: 5.3333333333vw;
  }
  .l-header-tanada-hamburger-wrap._top .l-hamburger-tanada {
    background-color: #fff;
  }
  .l-hamburger-tanada-line {
    display: block;
    width: 8.5333333333vw;
    height: 0.5333333333vw;
    background-color: #006A20;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .l-hamburger-tanada-line._top {
    width: 5.8666666667vw;
  }
  .l-hamburger-tanada-line._top:before {
    top: -2.1333333333vw;
  }
  .l-hamburger-tanada-line._top:after {
    top: 2.1333333333vw;
  }
  .l-hamburger-tanada-line:before,
  .l-hamburger-tanada-line:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.5333333333vw;
    position: absolute;
    background-color: #006A20;
    transition: inherit;
  }
  .l-hamburger-tanada-line:before {
    top: -2.6666666667vw;
  }
  .l-hamburger-tanada-line:after {
    top: 2.6666666667vw;
  }
  .l-hamburger-tanada.is-hamburger-open .l-hamburger-tanada-line {
    background-color: transparent;
  }
  .l-hamburger-tanada.is-hamburger-open .l-hamburger-tanada-line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .l-hamburger-tanada.is-hamburger-open .l-hamburger-tanada-line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .l-menu-cover.is-open {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9002;
  }
}
/*------------- .l-gnav -------------*/
/*------------- .l-breadcrumbs -------------*/
.l-breadcrumbs {
  padding-top: 0.78125vw;
  padding-left: 1.5104166667vw;
}
.l-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.l-breadcrumbs ol li {
  font-size: 1.4rem;
  line-height: 1.2857142857;
  letter-spacing: 0.06em;
  font-weight: 700;
  position: relative;
}
.l-breadcrumbs ol li::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -0.5em;
  translate: 100% -50%;
  font-weight: 400;
  border-top: 1px solid #414141;
  border-right: 1px solid #414141;
  width: 0.4rem;
  height: 0.4rem;
  rotate: 45deg;
}
.l-breadcrumbs ol li a {
  color: #006A20;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-decoration: underline;
}
.l-breadcrumbs ol li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.l-breadcrumbs ol li:last-child::before {
  content: none;
}
.l-breadcrumbs ol li:last-child a {
  font-weight: 400;
  pointer-events: none;
  text-decoration: none;
  color: #414141;
}

@media screen and (max-width: 767px) {
  .l-breadcrumbs {
    /* はみ出し部分をスクロールする */
    overflow-x: auto;
    overflow-y: hidden;
    /* テキストを改行しないようにする */
    word-break: keep-all;
    white-space: nowrap;
    /* スクロールの動きを滑らかにする */
    -webkit-overflow-scrolling: touch;
    /* スクロールバーを非表示にする（Firefox用） */
    scrollbar-width: none;
    padding-top: 4vw;
    padding-left: 5.3333333333vw;
  }
  .l-breadcrumbs::-webkit-scrollbar {
    /* スクロールバーを非表示にする（Chrome, Safari用） */
    display: none;
  }
  .l-breadcrumbs ol {
    gap: 6.6666666667vw;
  }
  .l-breadcrumbs ol li {
    font-size: 3.2vw;
  }
  .l-breadcrumbs ol li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
/*------------- .l-footer-tanada -------------*/
.l-footer-tanada {
  min-height: 26.1442708333vw;
  padding-block: 11.8229166667vw 1.0416666667vw;
  position: relative;
}

.l-footer-tanada::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../images/tanada/img_footer_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.l-footer-tanada-inner {
  width: 62.5vw;
  margin-inline: auto;
}

.l-footer-tanada-top {
  display: grid;
  grid-template: "logo list" auto "corp list" auto/auto auto;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 4.4270833333vw;
}

.l-footer-tanada-logo-link {
  grid-area: logo;
  display: block;
  width: 15.46875vw;
  aspect-ratio: 297/68;
  margin-bottom: 1.5625vw;
}
.l-footer-tanada-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-tanada-logo-link-corp {
  grid-area: corp;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 0.2083333333vw;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.7291666667vw;
  color: #414141;
  background-color: #fff;
  border-radius: 0.2604166667vw;
  width: 10.2083333333vw;
  height: 1.5625vw;
}

.l-footer-tanada-logo-link-corp::after {
  content: "";
  width: 0.7291666667vw;
  aspect-ratio: 1;
  background-image: url("../../images/tanada/icn_externalLink.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.l-footer-tanada-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5625vw 4.1666666667vw;
}

.l-footer-tanada-list-item-link {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.9375vw;
  font-family: "Shippori Mincho B1";
  color: #fff;
  position: relative;
  padding-left: calc(0.3645833333vw + 0.5208333333vw);
}

.l-footer-tanada-list-item-link::before {
  content: "";
  width: 0.3645833333vw;
  aspect-ratio: 1;
  background-color: #D2962F;
  border-radius: 50%;
  position: absolute;
  top: 0.5208333333vw;
  left: 0;
}

.l-footer-tanada-list-item-link:hover {
  color: #D2962F;
}

.l-footer-tanada-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25vw;
}

.l-footer-tanada-bottom-txt {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 0.7291666667vw;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .l-footer-tanada {
    min-height: 114.4vw;
    padding-block: 29.6vw 4vw;
  }
  .l-footer-tanada::before {
    background-image: url("../../images/tanada/img_footer_sp.png");
  }
  .l-footer-tanada-inner {
    width: 100%;
    padding-inline: 5.3333333333vw;
  }
  .l-footer-tanada-top {
    grid-template: "logo" auto "." 8vw "list" auto "." 8vw "corp" auto/1fr;
    align-items: flex-start;
    padding-bottom: 5.3333333333vw;
  }
  .l-footer-tanada-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 8vw;
  }
  .l-footer-tanada-logo-link {
    width: 57.6vw;
    aspect-ratio: 216/50;
    margin-bottom: 0;
  }
  .l-footer-tanada-logo-link-corp {
    gap: 1.0666666667vw;
    font-size: 3.7333333333vw;
    border-radius: 1.3333333333vw;
    width: 52.2666666667vw;
    height: 8vw;
    margin-inline: auto;
  }
  .l-footer-tanada-logo-link-corp::after {
    width: 3.7333333333vw;
  }
  .l-footer-tanada-list {
    grid-template-columns: repeat(2, auto);
    gap: 5.3333333333vw 0;
  }
  .l-footer-tanada-list > :first-child {
    grid-column: 1/3;
  }
  .l-footer-tanada-list-item-link {
    font-size: 4.2666666667vw;
    padding-left: calc(1.8666666667vw + 1.3333333333vw);
  }
  .l-footer-tanada-list-item-link::before {
    width: 1.8666666667vw;
    top: 2.4vw;
  }
  .l-footer-tanada-bottom {
    padding-top: 4vw;
  }
  .l-footer-tanada-bottom-txt {
    font-size: 2.6666666667vw;
  }
}
