/* =========================
   base
========================= */
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-size: 16px;
    letter-spacing: 0.025em;
    max-width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    background: #fff;
    font-weight: 400;
}

a {
    color: #000;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.is-pc {
    display: block;
}

.is-sp {
    display: none !important;
}

/* =========================
   drawer
========================= */
.drawer {
    background: #044E37;
    padding: 25px 15px;
    position: fixed;
    top: 0;
    left: -247px;
    width: 247px;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
    overflow-y: auto;
}

.drawer.active {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.drawer a,
.drawer .pulldown {
    display: block;
    padding: 12px 14px;
    line-height: 1.4;
    background: #fff;
    font-size: 15px;
    font-weight: bold;
    box-sizing: border-box;
    width: 100%;
}

.drawer a:not(:first-child),
.drawer .pulldown:not(:first-child) {
    margin-top: 10px;
}

.drawer .btn {
    margin-top: 10px;
}

.drawer .pulldown {
    cursor: pointer;
    position: relative;
    border: 0;
    text-align: left;
    font-family: inherit;
}

.drawer .pulldown::before {
    content: "";
    background: url("https://film-tec.jp/wp-content/themes/filmtec/img/arrow-down.svg") no-repeat center center / contain;
    position: absolute;
    width: 9px;
    height: 5.5px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.drawer .child {
    display: none;
    background: #F4F4F4;
    padding: 0 14px;
}

.drawer .child a {
    background: transparent;
    padding: 13px 0;
    margin: 0;
    font-size: 13px;
}

.drawer .child a:not(:first-child) {
    border-top: 1px solid #BBBBBB;
}

/* =========================
   header
========================= */
header {
    display: flex;
    justify-content: center;
    width: 95%;
    background-color: #fff;
    color: #000;
    box-shadow: 3px 2px 6px #141414;
    margin: 0 auto;
    border-radius: 5px;
    position: fixed;
    left: 50%;
    top: 20px;
    transform: translate(-50%, 0);
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    position: relative;
}

.header-container a {
    font-size: 14px;
    color: #131313;
    padding: 0 16px;
    box-sizing: border-box;
}

.header-container a:hover {
    color: #044E37;
}

.header-container a img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

.header__logo {
    display: block;
    flex-shrink: 0;
    max-width: 360px;
    width: 100%;
    margin-right: 40px;
}

.header__logo img {
    width: 100%;
}

/* =========================
   nav
========================= */
.header-nav-pulldown {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    gap: 0;
    position: static;
}

.header-nav-pulldown>li {
    display: flex;
    align-items: center;
    height: 60px;
    position: static;
}

.header-nav-pulldown>li>a {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    font-size: 14px;
    padding: 0 16px;
}

.header-nav-pulldown span {
    vertical-align: middle;
    display: inline-block;
}

.header-nav-pulldown span img {
    vertical-align: middle;
    margin-left: 5px;
    padding-right: 0;
    width: 15px;
}

/* =========================
   pulldown
========================= */
.pulldown-menus {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
    z-index: 20;
    box-sizing: border-box;
}

.pulldown-menus .pulldown_nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    text-align: left;
}

.pulldown-menus .pulldown_nav a {
    display: block;
    padding: 0;
    margin-right: 30px;
}

.pulldown-menus .pulldown_nav a:last-child {
    margin-right: 0;
}

.pulldown-menus .pulldown_nav a p {
    margin-top: 5px;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.5;
}

.pulldown-menus .pulldown_nav a p span {
    margin-right: 5px;
}

.header-nav-pulldown>li:hover>.pulldown-menus,
.pulldown-menus.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   right side
========================= */
.header__flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: 24px;
}

.lang-switch {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    height: 60px;
    margin-left: 8px;
}

.current-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 100%;
    padding: 0 16px;
    background: #131313;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

/* =========================
   menu button
========================= */
.menu-btn {
    background: #044E37;
    border-radius: 0 4px 4px 0;
    position: relative;
    width: 46px;
    height: 46px;
    cursor: pointer;
    padding: 0;
}

.menu-btn span {
    transition: 0.3s;
    background: #fff;
    width: 30px;
    height: 1px;
    position: absolute;
    right: 8px;
}

.menu-btn span:nth-child(1) {
    top: 17px;
}

.menu-btn span:nth-child(2) {
    top: 22px;
    width: 24px;
}

.menu-btn span:nth-child(3) {
    top: 27px;
    width: 14px;
}

.menu-btn.active span:nth-child(1) {
    top: 17px;
    right: 14.5px;
    transform: translateY(6px) rotate(-45deg);
    width: 17px;
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    top: 29px;
    right: 14.5px;
    transform: translateY(-6px) rotate(45deg);
    width: 17px;
}

/* =========================
   hero
========================= */
.page-hero {
    width: 100%;
    height: clamp(320px, 38vw, 572px);
    padding: 20px 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.page-hero--distributor {
	background-image: url("../img/distributor/sub-visual.jpg");
}

.page-hero__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero__title {
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 3.1rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    letter-spacing: 0.08em;
}

.page-hero__title::before,
.page-hero__title::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 80px;
    background: #fff;
}

.page-hero__title::before {
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
}

.page-hero__title::after {
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
}

/* =========================
   intro / filter
========================= */
.distributor-intro {
    padding: 56px 20px 40px;
}

.distributor-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.head-aicon-jp {
    font-optical-sizing: auto;
    position: relative;
    margin: 60px auto;
    text-align: center;
    color: #044E37;
}

.head-aicon-jp::before {
    content: "";
    background-image: url("../img/common/head-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 57px;
    height: 60px;
    display: block;
    margin: 0 auto 15px;
}

.head-aicon-jp h2 {
    font-size: 3rem;
    font-family: "Raleway", sans-serif;
    line-height: 1.4;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #044E37;
}

.distributor-filter {
    margin: 26px auto 0;
    padding: 30px;
    background: #f5f5f5;
    text-align: left;
}

.distributor-filter__group+.distributor-filter__group {
    margin-top: 14px;
}

.distributor-filter__label {
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.distributor-filter__chips,
.distributor-filter__countries {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, 1fr);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    background: #d9d9d9;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.2s;
}

.filter-check input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #ffffff;
}

.filter-check .area-name {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #222;
    font-weight: 500;
}

.filter-check:has(input:checked) {
    background: #044E37;
}

.filter-check:has(input:checked) .area-name {
    color: #fff;
}

.filter-check:hover {
    opacity: 0.9;
}

/* =========================
   lineup link
========================= */
.lineup-link {
	margin: 24px 0;
}

.lineup-link .lineup-link__btn {
    padding: 21px 0;
    border-radius: 5px;
    max-width: 519px;
    width: 100%;
    display: block;
    font-size: 20px;
    color: white;
    background: #044E37;
    text-align: center;
    margin: 0 auto;
}

/* =========================
   regional distributor
========================= */
.regional-distributor {
    padding: 10px 20px 90px;
}

.regional-distributor__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.regional-distributor__title {
    margin: 0 0 26px;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.regional-distributor__lead {
    text-align: center;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 24px;
    color: #333;
}

.regional-distributor__lead a {
    color: #044E37;
    text-decoration: underline;
    font-weight: 500;
}

.regional-distributor__lead a:hover {
    opacity: 0.7;
}

.region-block+.region-block {
    margin-top: 42px;
}

.region-block__title {
    background: #111;
    color: #fff;
    padding: 10px 16px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.region-map {
    width: 100%;
    margin: 0;
    border: 1px solid #cfcfcf;
}

.region-map__svg {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto;
}

.region-map__svg .cls-1 {
    fill: #dadada;
    stroke: #fff;
    stroke-width: 1px;
    transition: 0.3s;
}

.region-map__svg .cls-2 {
    stroke: #fff;
    stroke-width: 2px;
}

.region-map__svg #indonesia .cls-1,
.region-map__svg #thailand .cls-1,
.region-map__svg #malaysia .cls-1,
.region-map__svg #philippines .cls-1,
.region-map__svg #singapore .cls-1,
.region-map__svg #vietnam .cls-1,
.region-map__svg #laos .cls-1,
.region-map__svg #cambodia .cls-1,
.region-map__svg #myanmar .cls-1,
.region-map__svg #brunei .cls-1,
.region-map__svg #timor-leste .cls-1 {
    fill: #044E37;
}

/* .region-map__svg g:hover .cls-1 {
    opacity: 0.85;
} */

.distributor-text {
    text-align: center;
    font-size: 13px;
    margin: 0 0 24px;
}

/* =========================
   cards
========================= */
.distributor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.distributor-card {
    border: 1px solid #dddddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
}

.distributor-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.distributor-card__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.distributor-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    width: 45px;
    height: 30px;
    z-index: 2;
    overflow: hidden;
}

.distributor-card__badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.distributor-card__country-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 12px;
}

.distributor-card__country {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 16px;
    border: 1px solid #044E37;
    border-radius: 999px;
    background: #fff;
    font-size: 1.1rem;
    color: #044E37;
    font-weight: 700;
}

.distributor-card__flags {
    display: flex;
    gap: 6px;
}

.distributor-card__thumb {
    display: block;
    width: 46px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    overflow: hidden;
}

.distributor-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.distributor-card__thumb.is-active {
    border: 2px solid #044E37;
}

.distributor-card__info {
    padding: 0 12px 14px;
}

.distributor-card__info dt,
.distributor-card__info dd {
    font-size: 1.6rem;
    line-height: 1.4;
}

.distributor-card__info dt {
    color: #fff;
    background: #7e7e7e;
    padding: 5px 10px;
}

.distributor-card__info dd {
    padding: 10px;
}

.distributor-card__info dd .site-link {
    color: #044E37;
}

.distributor-card__info dd.contact-info {
    padding: 0;
}

.contact-info {
    padding: 6px 10px;
}

.contact-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: #044E37;
    line-height: 1.4;
}

.contact-value {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

.contact-value a {
    color: #333;
    text-decoration: none;
}

.contact-value a:hover {
    color: #044E37;
    text-decoration: underline;
}

.sns-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.sns-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* =========================
   footer
========================= */
.pagetop a {
    background: #046369;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: block;
    text-align: center;
}

.site-footer {
    padding: 60px 0;
}

.footer-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.footer__inner {
    display: flex;
    gap: 0;
}

.footer__head {
    min-width: 380px;
    margin-right: 100px;
}

.footer__head .items {
    margin-top: 20px;
}

.footer__head .item {
    margin-top: 38px;
    padding-left: 25px;
}

.footer__head .title {
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.footer__head .title::before {
    content: "";
    background: url("https://film-tec.jp/wp-content/themes/filmtec/img/index/building.png") no-repeat center center / contain;
    position: absolute;
    width: 19px;
    height: 21px;
    left: -25px;
    bottom: -2px;
}

.footer__head .address {
    line-height: 1.9;
}

.footer__head .btns {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.footer__head .btn {
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #707070;
    display: inline-block;
    color: #000;
}

.footer__logo {
    display: inline-block;
    max-width: 223px;
    width: 100%;
}

.footer__logo img {
    width: 100%;
    display: block;
}

.footer__menu2 {
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.footer__menu2 .item {
    min-width: 230px;
    height: 200px;
}

.footer__menu2 .parent {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.footer__menu2 .parent.is-disabled {
    pointer-events: none;
    cursor: default;
}

.footer__menu2 .child {
    display: block;
    padding-left: 1em;
    margin: 1em 0;
    font-size: 13px;
    color: #000;
}

.ng-txt,
.copyright {
    display: block;
    background: #131313;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    box-sizing: border-box;
}

.ng-txt {
    font-size: 1.1rem;
}

/* =========================
   common parts for lineup page
========================= */

.wrapper {
    overflow-x: hidden;
}

.common-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: content-box;
}

.page-head {
    background-size: cover;
    background-position: center;
    height: 572px !important;
}

.page-head.--lineup {
    background-image: url(../img/lineup/page-head-lineup.jpg);
}

.breadcrumb {
    max-width: 1200px;
    margin: 5px auto 0;
    line-height: 1.3;
}

.breadcrumb span:nth-child(2n) {
    margin: 0 5px;
}

.breadcrumb a {
    color: #131313;
}

/* .head-aicon-jp {
    font-size: 3rem;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: initial;
    font-style: normal;
    position: relative;
    margin: 60px auto;
    text-align: center;
    color: #044E37;
}

.head-aicon-jp::before {
    content: "";
    background-image: url(../img/products/head-aicon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 57px;
    height: 60px;
    display: block;
    margin: 0 auto 15px;
}

.head-aicon-jp h2 {
    font-size: 3rem;
    line-height: 1.4;
    color: #044E37;
} */

.lineup p {
    line-height: 30px;
}

.lineup a {
    color: #000;
    transition: 0.3s;
}

.lineup a:hover {
    opacity: 0.7;
}

/* =========================
   lineup
========================= */
.page-hero--lineup {
    background-image: url("../img/lineup/page-head-lineup.jpg");
}

.lineup {
    padding-bottom: 170px;
}

.lineup__btns {
    display: flex;
    gap: 20px;
    margin-bottom: 88px;
}

.lineup__btn {
    font-size: 20px;
    padding: 26px 0;
    text-align: center;
    flex: 1;
    border: 1px solid #000;
    background: transparent linear-gradient(100deg, #F2F2F2 0%, #D5D1D1 49%, #EEEBEB 100%);
}

.lineup__btn.--smoke {
    background: transparent linear-gradient(100deg, #C5C5C5 0%, #CBC9C9 49%, #BFBFBF 100%);
}

.lineup-item:not(:first-child) {
    margin-top: 62px;
}

.lineup-item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 7px;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 22px;
}

.lineup-item__head h3 {
    font-size: 24px;
    color: #044E37;
	font-weight:bold;
}

.lineup-item__head a {
    font-size: 18px;
    display: inline-block;
    background: #000809;
    border-radius: 5px;
    color: white;
    padding: 12px 35px;
    line-height: 1;
}

.lineup-item__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 66px 33px;
}

.lineup-item__wrap .item {
    max-width: 378px;
    width: 100%;
}

.lineup-item__wrap .item .img img {
    width: 100%;
}

.lineup-item__wrap .item p {
    line-height: 1;
    margin: 20px 0 17px;
}

.lineup-item__wrap .item .data {
    display: flex;
}

.lineup-item__wrap .item .data__item {
    display: flex;
    text-align: center;
}

.lineup-item__wrap .item .data__item .head {
    color: white;
    width: 63px;
    height: 37px;
    line-height: 37px;
}

.lineup-item__wrap .item .data__item .head.--uv {
    background: #820787;
}

.lineup-item__wrap .item .data__item .head.--ir {
    background: #C91F1F;
}

.lineup-item__wrap .item .data__item .head.--vlt {
    background: #408F0C;
}

.lineup-item__wrap .item .data__item .body {
    height: 37px;
    line-height: 37px;
    border: 0.5px solid #DCDCDC;
    width: 63px;
}

.lineup__table {
    overflow-x: scroll;
    margin: 30px 0 40px;
}

.lineup__table table {
    width: 1200px;
}

.lineup__table table,
.lineup__table td,
.lineup__table th {
    border: 1px solid #595959;
    border-collapse: collapse;
}

.lineup__table td,
.lineup__table th {
    padding: 3px;
    width: 105px;
    height: 25px;
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
}

.lineup__table td.head,
.lineup__table th.head {
    width: 135px;
}

.lineup__table th {
    background: #DCDCDC;
    font-size: 16px;
    line-height: 1.4;
    padding: 15px 0;
}

.lineup__table th span {
    font-size: 13px;
    font-weight: 400;
}

.lineup__table td {
    padding: 14px 0;
}

.lineup__table .even {
    background: #fbf8f0;
}

.lineup__table .odd {
    background: #fefcf9;
}

.lineup__note {
    display: flex;
    gap: 8%;
}

.technical-wrap {
    margin-bottom: 50px;
}

.technical-wrap h2 {
    color: #044E37;
    border-bottom: 1px solid #044E37;
    margin-bottom: 10px;
}

.film-technical-lists,
.film-technical,
.all-product-share,
.structure,
.document-security,
.nintei,
.tokusei,
.jisa {
    border: 1px solid #595959;
    border-collapse: collapse;
    margin-bottom: 50px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: table;
}

.film-technical-lists .technical-head,
.film-technical .technical-head,
.all-product-share .technical-head,
.structure .technical-head,
.document-security .technical-head,
.nintei .technical-head,
.tokusei .technical-head,
.jisa .technical-head {
    background: #ddd;
}

.film-technical-lists td,
.film-technical-lists th,
.film-technical td,
.film-technical th,
.all-product-share td,
.all-product-share th,
.structure td,
.structure th,
.document-security td,
.document-security th,
.nintei td,
.nintei th,
.tokusei td,
.tokusei th,
.jisa td,
.jisa th {
    border: 1px solid #595959;
    border-collapse: collapse;
    padding: 10px 5px;
    display: table-cell;
    vertical-align: middle;
    line-height: 30px;
    font-size: 1.4rem;
}

.structure-lists {
    margin-bottom: 50px;
    max-width: 1200px;
}

.structure-lists .in {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
}

.structure-lists .in .item {
    width: 32%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.structure-lists .in .item p {
    padding: 15px 0;
    margin-bottom: 50px;
}

.structure-lists .in .item .spec {
    margin-top: auto;
    margin-bottom: auto;
}

.structure-lists .in .item .spec p {
    background: #ddd;
    color: #000809;
    padding: 0;
    margin-bottom: 0;
}

.structure-lists .in .item .spec span {
    display: block;
    padding: 5px 0;
}

.structure-lists .in .item .spec .bg_black {
    background: #333;
    color: white;
    padding: 5px 0;
}

@media screen and (max-width: 1199.5px) and (min-width: 768px) {
    .lineup-item__wrap {
        justify-content: center;
    }
}

@media screen and (min-width: 1260px) {
    .lineup__table::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (max-width: 848px) {
    .lineup-item__wrap {
        gap: 40px 20px;
        justify-content: center;
    }

    .lineup-item__wrap .item {
        width: calc(50% - 10px);
    }

    .lineup-item__wrap .item .data {
        max-width: 200px;
        flex-direction: column;
    }

    .lineup-item__wrap .item .data__item {
        flex: 1;
    }

    .lineup-item__wrap .item .data__item .head,
    .lineup-item__wrap .item .data__item .body {
        width: 50%;
    }
}