/* 基本設定 -------------------------------------------------- */
* {
    border: 0;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FAFAFA;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
}
a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
}
a,
button {
    transition: 0.2s;
}
a:hover,
button:hover {
    opacity: 0.8;
}
/* サブタイトル */
.header.scrolled {
    background-color: #fff;
}
.material-symbols-outlined {
font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
/* ヘッダー -------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
    transition: background-color 0.5s ease-in-out;
}
.header__nav-dropdown-sub {
    display: block;
    position: absolute;
    top: 100%;
    right: -18px;
    background-color: white;
    padding: 8px 20px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.header__nav-dropdown {
    position: relative;
}

.header__nav-dropdown:hover .header__nav-dropdown-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__nav-dropdown-sub .header__nav-translate-item {
    font-size: 20px;
    margin-bottom: 5px;
}

.header__logo-link {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 30px;
    width: auto;
    gap: 10px;
}

.header__logo-img {
    height: 100%;
    width: auto;
}

.header__logo-img:nth-of-type(1) {
    margin-right: 15px;
}

.header__logo-img:nth-of-type(2) {
    margin-right: 10px;
}

.header__logo-img:nth-of-type(3) {
    height: 67%;
}
/* ナビゲーション */
.header__nav {
    display: flex;
    gap: 20px;
}
.header__nav-links {
    align-items: center;
    display: flex;
    justify-content: center;
}

.header__nav-link {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-right: 50px;
    text-align: center;
}

.header__nav-label {
    color: #09F;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
}

.header__nav-dropdown {
    display: inline-block;
    position: relative;
}

.header__nav-dropdown-toggle {
    display: none;
}

.header__nav-dropdown-label {
    align-items: center;
    background-color: #09F;
    border-radius: 30px;
    color: #FFF;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    justify-content: left;
    padding-left: 50px;
    position: relative;
    transition: 0.2s;
    width: 350px;
}
.header__nav-dropdown-label.vi {
    padding-left: 95px;
}
.header__nav-dropdown-label:hover {
    opacity: 0.8;
}

.header__nav-dropdown-label .material-symbols-outlined {
    font-size: 30px;
    position: absolute;
    right: 30px;
    top: calc((100% - 30px) / 2);
}

.header__nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.header__nav-dropdown-toggle:checked + .header__nav-dropdown-label + .header__nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
}

.header__nav-translate-item {
    border-radius: 40px;
    border: 5px solid #09F;
    background: #FFF;
    width: 100px;
    padding: 10px 5px;
    display: block;
    flex-shrink: 0;
    color: #09F;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}
.header__nav-translate-item.-dropdown {
    font-size: 18px;
    padding: 6px 5px;
}
.header__nav-translate-item.-contact {
    width: 100%;
    margin-bottom: 15px;
    font-size: 20px;
    padding: 6px 20px;
}
/* 「お問い合わせ」1000px以下でアイコンのみ表示 */
@media (max-width: 1000px) {
    .hide-under-1000 {
        visibility: hidden;
        height: 0;
        display: none;
    }

    .header__nav-dropdown-label {
        width: 100px;
        padding-left: 0;
        /* display: inline-grid;
        place-items: center; */
        /* height: 50px; */
    }

    .header__nav-dropdown-label .material-symbols-outlined {
        right: 35px;
    }
}
/* メインビジュアル -------------------------------------------------- */
.mv {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.mv__main {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 1000px;
    background-image: url("../img/lp/top_mv.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right 5% bottom 10%;
    z-index: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

/* mv__textの調整 */
.mv__text {
    margin-top: 300px;
    box-sizing: border-box;
    transform: translateX(25%) rotate(0deg);
}
.mv__text h2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mv__heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 50px auto 0 0;
    gap: 10px;
    box-sizing: border-box;
    order: 2;
}
.mv__logo {
    display: block;
    height: auto;
    box-sizing: border-box;
}
.mv__logo-small {
    display: flex;
    gap: 15px;
    align-items: baseline;
}
.mv__logo:nth-of-type(1) {
    width: 70%;
}
.mv__logo1 {
    width: 40%;
}
.mv__logo2 {
    width: 30%;
}
.mv__catchcopy {
    width: 100%;
    color: #000;
    text-shadow: 0 0 50px #FFF;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    font-size: clamp(20px, 4vw, 45px);
    word-break: break-word;
    overflow-wrap: break-word;
}
.mv__catchcopy-small {
    color: #000;
    text-shadow: 0 0 50px #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.mv__image {
    display: block;
    height: auto;
    position: absolute;
}

.mv__visual-image1 {
    top: 20%;
    right: 25%;
    width: 50%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -150px;
}

@media (max-width: 1024px) {
    .mv__visual-image1 {
        margin-top: auto;
    }
}
.mv__visual-image2 {    
    bottom: 20%;
    right: 5%;
    width: 50%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -220px;
}

@media (max-width: 1024px) {
    .mv__visual-image2 {
        margin-bottom: auto;
    }
}
@media (max-width: 1700px) {
    .mv__visual-image1,
    .mv__visual-image2 {
        max-width: 280px;
    }
}
@media (max-width: 1600px) {
    .mv__visual-image1,
    .mv__visual-image2 {
        max-width: 300px;
    }
}
.mv__visual-imagesp1 {
    position: relative;
    width: 51%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mv__image1, .mv__image2 {
    position: relative;
    height: 100%;
    width: 100vw;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    clip-path: circle(50% at center);
    padding-top: 10%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .mv__image1, .mv__image2 {
        /* height: 100%; */
        /* width: 400px; */
    }
}
.mv__visual {
    display: flex;
    bottom: 10px;
    padding: 50px 35px;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 50%;
}

@media (max-width: 1600px) {
    .mv__visual {
        gap: 10px;
    }
}
@media (max-width: 1024px) {
    .mv__visual {
        width: 100%;
        gap: 50px;
        padding: 0 35px 50px;
    }
}
.mv__visual-imagesp2 {
    position: relative;
    width: 50%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* About Us -------------------------------------------------- */
.about {
    background-image: url("../img/lp/bg_02.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: calc(100vw * 8 / 22);
    min-height: 80vh;
}
.about::before {
    content: 'About Us';
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateX(-35%) rotate(-90deg);
    margin: 0;
    box-sizing: border-box;
    z-index: 1;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 500;
    line-height: normal;
    opacity: 0.15;
    text-size-adjust: none;
}
.about__content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 150px 0 0 0;
    position: relative;
    margin-top: -13px;
    z-index: 0;
}
.about__body {
    width: 100%;
    max-width: 1000px;
    padding: 0 0 0 300px;
    box-sizing: border-box;
}
.about__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #fff;
}

.about__text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.about__link {
    margin-top: 50px;
}

.about__image {
    right: 0;
    top: 40%;
    width: 40%;
    max-width: 760px;
    margin-right: 0;
    box-sizing: border-box;
}
.about__image img {
    display: block;
    width: 100%;
    max-width: 760px;
    max-height: 400px;
    flex-shrink: 0;
}

/* 海外のお客様 --------------------------------------------------*/
.oversea {
    background-image: url("../img/lp/oversea_customer.png");
    background-position: right 4% bottom 10%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 80vh;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 90px),
        50% 100%,
        0 calc(100% - 90px)
    );
    -webkit-clip-path: polygon(
        0 0, 100% 0,
        100% calc(100% - 90px),
        50% 100%, 0 calc(100% - 90px)
    );
}
.oversea__title {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: auto;
    align-items: center;
    padding-top: 100px;
    width: 90%;
    max-width: 850px;
}
.oversea__title img {
    width: 15%;
    max-width: 80px;
    height: auto;
    flex-shrink: 0;
}
.oversea__title span {
    color: #007ADB;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}
.oversea__body {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px 140px;
    align-items: center;
    justify-content: center;
}
.oversea__within {
    width: 45%;
    max-width: 580px;
    height: auto;
    padding: 3% 2% 3% 6%;
    flex-shrink: 0;
    background: #FFF;
    box-shadow: 0 0 50px 0 rgba(0, 122, 219, 0.10);
    position: relative;
    box-sizing: border-box;
}
/* 英語 */
.oversea__within.en,
.oversea__within.th {
    height: 140px;
}
.oversea__within .material-symbols-outlined {
    color: #FF6600;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    left: 20px;
    position: absolute;
    font-size: 40px;
}
.oversea__within h3 {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.oversea__within h3 span {
    font-size: 24px;
}

/* solution --------------------------------------------------*/
.solution {
    padding-bottom: 150px;
    position: relative;
}
.solution::before {
    content: 'Solutions';
    position: absolute;
    right: 0;
    top: 21%;
    transform: translateX(31%) rotate(90deg);
    margin: 0;
    box-sizing: border-box;
    z-index: 1;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 500;
    line-height: normal;
    opacity: 0.15;
    text-size-adjust: none;
}
.solution__content {
    background-image: url("../img/lp/bg_02.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 715px;
    z-index: -1;
    margin-top: -105px;
}
/* 英語、ベトナム語、タイ語 */
.solution__content.en,
.solution__content.vi,
.solution__content.th {
    height: 820px;
}
@media (max-width: 480px) {
    .solution__content {
        height: 1800px;
    }
}
.solution__content h2 {
    text-align: center;
    padding-top: 200px;
    color: #FFF;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 25px;
    border-bottom: 2px solid #fff;
    max-width: 540px;
    width: 100%;
    margin: auto;
    position: relative;
}
/* ベトナム語 */
.solution__content.vi h2 {
    max-width: 600px;
}
.solution__content h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 26px 30px 0 30px;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
}

.solution__content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 23.9px 26.8px 0 26.8px;
    border-color: #007ADB transparent transparent;
    translate: -50% 100%;
}
.solution__wrap {
    display: flex;
    flex-wrap: wrap; /* 折り返し可能にする */
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    align-items: stretch;
    justify-content: center;
}
/* 各アイテムの基本幅（PCでは自動調整） */
.solution__wrap > * {
    flex: 1 1 calc(20% - 40px);
    box-sizing: border-box;
}
/* タブレット以下では3列 */
@media (max-width: 1024px) {
    .solution__wrap > * {
        flex: 1 1 calc(25.333% - 40px);
    }
}
/* 小さいスマホでは1列 */
@media (max-width: 480px) {
    .solution__wrap > * {
        flex: 1 1 100%;
    }
}
.solution__point {
    background-color: #fff;
    padding: 40px 0px;
    border-radius: 10px;
    margin-top: 120px;
    position: relative;
    max-width: 270px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.solution__point.en {
    height: 200px;
    padding: 40px 5px;
}
.solution__point.vi,
.solution__point.th{
    height: 190px;
    padding: 40px 5px;
}
@media (max-width: 768px) {
    .solution__point,
    .solution__point.en,
    .solution__point.vi,
    .solution__point.th{
        height: 143px;
    }
}
@media (max-width: 450px) {
    .solution__point,
    .solution__point.en,
    .solution__point.vi,
    .solution__point.th{
        height: 200px;
    }
}
.solution__point::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 38px;
    height: 30px;
    box-sizing: border-box;
    background-color: #ffffff;
    rotate: 135deg;
    translate: -50%;
}
.solution__point h3 {
    color: #333;
    text-align: center;
    font-size: clamp(18px, 1.8vw, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}
.solution__point.en h3,
.solution__point.vi h3,
.solution__point.th h3 {
    font-size: clamp(18px, 2vw, 24px);
}
@media (max-width: 768px) {
    .solution__point.en h3,
    .solution__point.vi h3,
    .solution__point.th h3 {
        line-height: 1.5;
    }
}
.solution__main {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 250px;
}
.solution__main img {
    position: absolute;
    bottom: -175px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    height: auto;
}
.solution__support {
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-top: 150px;
}
.contact__link {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    width: 400px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #F60;
    box-shadow: 0 5px 0 0 #FF4700;
    padding: 25px 45px 25px 0;
    margin: auto;
    display: block;
    margin-top: 100px;
    position: relative;
}
.contact__link::after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f105";
    top: 40%;
    right: 27px;
    color: #F60;
    background-color: #fff;
    font-size: 16px;
    padding: 6px 7px 5px 9px;
    border-radius: 54px;
}
.contact__link.en::after,
.contact__link.th::after,
.contact__link.vi::after {
    top: 40%;
}
/* 英語 */
.contact__link.en {
    width: 420px;
}

/* 販売情報 -------------------------------------------------- */
.product {
    background: #EDF5FA;
    padding: 70px 0 150px;
}
.product__title {
    text-align: center;
    position: relative;
    width: 420px;
    margin: auto;
    display: block;
    margin-bottom: 100px;
}

.product__title h2 {
    color: #007ADB;
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.15;
}
.product__title h3 {
    /* color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    bottom: -25px;
    left: 30%;
    border-bottom: 2px solid #000000;
    padding-bottom: 17px; */

    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    bottom: -25px;
    left: 50%;
    translate: -50% 0;
    border-bottom: 2px solid #000000;
    padding-bottom: 17px;
}
.product__title h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 19.9px 20px 0 20px;
    border-color: #000000 transparent transparent;
    translate: -50% 100%;
}

.product__title h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 17.4px 17.4px 0 17.4px;
    border-color: #EDF5FA transparent transparent;
    translate: -50% 100%;
}
.product__title-sm {
    color: #007ADB;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 50px;
}
.product__wrap {
    display: grid;
    gap: 25px;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
    max-width: 1200px;
    width: 100%;
    /* PC・タブレット（7列） */
    grid-template-columns: repeat(7, 1fr);
    padding: 0 20px;
}

.product__printer {
    max-width: 150px;
    width: 100%;
    height: 150px;
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
}
.product__printer img {
    max-width: 80px;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin: auto;
    display: block;
}
.product__printer p {
    color: #333;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
/* 文字数多い製品の調整 */
.product__printer.small {
    padding: 10px 0;
}
.product__printer.small img {
    width: 50%;
    height: auto;
}
/* 英語 */
.product__printer.en p {
    font-size: 12px;
}
/* タブレット（5列） */
@media (max-width: 1080px) {
    .product__wrap {
        grid-template-columns: repeat(5, 1fr);
        padding: 0 20px;
        min-width: unset;
    }
    .product__printer {
        max-width: unset;
    }
    .oversea__within p {
        margin-left: 8%;
    }
}
/* voice -----------------------------------------------*/
.voice {
    background-image: url("../img/lp/bg_02.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    height: auto;
    min-height: 1040px;
    padding-top: 150px;
}
/* 多言語 */
.voice.en {
    min-height: 1240px;
}
.voice.vi {
    min-height: 1100px;
}
.voice.th {
    min-height: 1160px;
}
.voice::before {
    content: 'Opinions';
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateX(-35%) rotate(-90deg);
    margin: 0;
    box-sizing: border-box;
    z-index: 1;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 500;
    line-height: normal;
    opacity: 0.15;
    text-size-adjust: none;
}
@media (max-width: 480px) {
    .voice {
        height: 300px;
    }
}
.voice__title {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 200px;
    width: 100%;
    display: block;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    position: relative;
    margin-bottom: 100px;
}
/* 英語 */
.voice__title.en {
    max-width: 250px;
}
/* ベトナム語 */
.voice__title.vi {
    max-width: 320px;
}
.voice__title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 19.9px 20px 0 20px;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
}
.voice__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 17.6px 18.1px 0 18.1px;
    border-color: #007ADB transparent transparent;
    translate: -50% 100%;
}
.voice__wrap {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    flex-shrink: 0;
    margin: 0 auto;
}
.voice__detail {    
    background: #EDF5FA;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    width: 30%;
    flex-shrink: 0;
    padding: 30px;
}
.detail-img {
    background-color: #fff;
    border-radius: 50%;
    max-width: 80px;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    margin: 0 auto;
    padding: 5px;
    margin-bottom: 20px;
}
.detail-img img {
    max-width: 52px;
    width: 100%;
    flex-shrink: 0;
    margin: auto;
    display: block;
    border-radius: 20px;
}
.voice__detail h3 {
    color: #007ADB;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px;
}
.voice__detail .text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 10px;
}
.voice__detail .right-text {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-align: right;
}
/* ベトナム語 */
.voice__detail .right-text.vi {
    font-size: 12px;
}
/* PC & タブレット */
@media (min-width: 769px) {
    .voice__wrap {
        display: flex;
        gap: 30px;
        justify-content: center;
        max-width: 1240px;
        width: 100%;
        margin: auto;
    }
    .swiper-wrapper {
        display: flex;
    }
}
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
.voice__slider {
    padding-bottom: 30px !important;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}
.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    background: rgba(255, 255, 255, 0.25);
    height: 10px!important;
}
.swiper-scrollbar-drag {
    background: #FAFAFA!important;
    height: 4px!important;
    top: 3px!important;
}

/* faq -----------------------------------------------*/
.faq {
    padding-top: 80px;
    padding-bottom: 150px;
}
.faq__title {
    text-align: center;
    position: relative;
    width: 570px;
    margin: auto;
    display: block;
    margin-bottom: 100px;
}

.faq__title h2 {
    color: #007ADB;
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.15;
}
.faq__title h3 {
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    bottom: -15px;
    left: 50%;
    translate: -50% 0;
    border-bottom: 2px solid #000000;
    padding-bottom: 17px;
}
/* 英語、ベトナム語 */
.faq__title.en h3,
.faq__title.vi h3 {
    width: 350px;
}
.faq__title h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 19.9px 20px 0 20px;
    border-color: #000000 transparent transparent;
    translate: -50% 100%;
}

.faq__title h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 17.4px 17.4px 0 17.4px;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
}
.faq__wrap {
    max-width: 1200px;
    width: 100%;
    flex-shrink: 0;
    margin: auto;
    display: block;
}
.faq__que-ans {
    background: #EDF5FA;
    padding: 30px 0;
    margin-bottom: 20px;
}
.faq__que {
    cursor: pointer;
    position: relative;
    padding-left: 90px;
}
.faq__que::before {
    position: absolute;
    content: 'Q';    
    background-color: #F60;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 50px;
    width: 100%;
    height: 50px;
    flex-shrink: 0;
    left: 20px;
    top: -13px;
    border-radius: 50px;
}
.faq__que,
.faq__ans {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}
.faq__ans {
    display: none;
    padding: 50px 0 0px 90px;
    position: relative;
}
.faq__ans::before {
    position: absolute;
    content: 'A';

    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 50px;
    width: 100%;
    height: 50px;
    flex-shrink: 0;
    /* padding: 10px 12px; */
    border-radius: 50px;
    /* margin-right: 20px; */
    background-color: #007ADB;
    /* padding: 5px 18px 8px; */
    left: 20px;
    bottom: -13px;
}
.faq__que.open + .faq__ans {
    display: block;
}
.faq__que:after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    right: 22px;
    width: 15px;
    height: 15px;
    border-top: 4px solid #0099FF;
    border-right: 4px solid #0099FF;
    transform: rotate(135deg);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}
.faq__que.open:after {
    transform: rotate(-45deg);
    top: 50%;
}
.faq__que span,
.faq__ans span {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 50px;
    width: 100%;
    height: 50px;
    flex-shrink: 0;
    padding: 10px 12px;
    border-radius: 50px;
    margin-right: 20px;
}
.faq__que span {
    background-color: #F60;
    padding: 5px 17px 8px;
}
.faq__ans span {
    background-color: #007ADB;
    padding: 5px 18px 8px;
}
/* contact -------------------------------------------------*/
.contact {
    background-image: url("../img/lp/bg_02.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 95%;
    aspect-ratio: 16 / 5;
    height: auto;
    margin: auto;
    padding: 110px 0;
}

.contact__wrap {
    max-width: 1100px;
    width: 95%;
    flex-shrink: 0;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 100px 0 rgba(0, 64, 151, 0.25);
    margin: auto;
}
.contact__within-wrap {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 45px 50px 60px;
}
.contact__left h2 {
    color: #007ADB;
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.15;
}
.contact__left h3 {
    color: #007ADB;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.contact__right {
    display: flex;
    gap: 20px;
}
.contact_img2 {
    margin-top: -50px;
}

@media (max-width: 1080px) {
    .contact_img1,
    .contact_img2 {
        width: 25%;
    }
}
.contact__contact-link {
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #F60;
    box-shadow: 0 5px 0 0 #FF4700;
    padding: 25px 45px 25px 0;
    margin: auto;
    display: block;
    margin-top: 20px;
    position: relative;
}
.contact__contact-link::after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f105";
    top: 26px;
    right: 27px;
    color: #F60;
    background-color: #fff;
    font-size: 16px;
    padding: 6px 7px 5px 9px;
    border-radius: 54px;
}
.contact__contact-link.th::after {
    top: 40%;
}
/* footer -----------------------------------------------*/
.footer {
    padding: 100px 0 0;
    margin-bottom: 180px;
}
.footer.-en {
    margin-bottom: 230px;
}
.footer__title {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 0 0;
    gap: 10px;
    box-sizing: border-box;
}
.footer__sub-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.footer__logo {
    display: block;
    height: auto;
    box-sizing: border-box;
}

.footer__logo:nth-of-type(1) {
    width: 100%;
    margin-bottom: 8px;
}
.footer__logo1 {
    width: 58%;
}
.footer__logo2 {
    width: 40%;
}
.mv__logo:nth-of-type(3) {
    width: 40%;
}
.footer__wrap {
    display: flex;
    max-width: 700px;
    width: 100%;
    margin: auto auto auto 360px;
    gap: 50px;
    margin-bottom: 100px;
}
.footer__sm-title {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
}
.footer__text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
.footer__copyright {
    text-align: center;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.7px;
    margin-bottom: 50px;
}
.footer__float {
    width: 100%;
    flex-shrink: 0;
    background-color: rgba(51, 51, 51, 0.3);
    padding: 30px 0;
    position: fixed;
    bottom: 0;
    z-index: 1;
}
.footer__float-link {
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    width: 400px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #F60;
    box-shadow: 0 5px 0 0 #FF4700;
    padding: 15px 45px 15px 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}
.footer__float-link.en,
.footer__float-link.vi {
    width: 520px;
}
.footer__float-link::after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f105";
    top: 26px;
    right: 27px;
    color: #F60;
    background-color: #fff;
    font-size: 16px;
    padding: 6px 7px 5px 9px;
    border-radius: 54px;
}
.footer__float-link.en::after,
.footer__float-link.th::after,
.footer__float-link.vi::after {
    top: 40%;
    right: 18px;
}
.footer__float-sm {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 20px;
    background-color: #0099FF;
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
.back-to-top.show {
    opacity: 1;
}

.arrow {
    border: solid white;
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: 10px;
}
/* about調整 */
@media (max-width: 1440px) {
    .about {
        min-height: 70vh;
    }
    .about__body {
        max-width: 850px;
        padding: 0 0 0 150px;
    }
    .hide-on-1440 {
        display: none;
    }
}
/* フッター調整 */
@media (max-width: 1330px) {
    .footer__wrap {
        margin: auto;
        margin-bottom: 100px;
    }
}
/* スマホ版対応 */
@media (max-width: 1024px) {
    .mv__main {
        flex-direction: column;
        padding-left: unset;
    }
}

@media (max-width: 1025px) {
    .header__hide-on-small-only {
        visibility: hidden;
        height: 0;
        display: none;
    }
    .header__hide-on-med-and-up {
        visibility: visible;
    }
    .header__nav-dropdown-label {
        width: 90px;
        flex-shrink: 0;
        /* padding-left: 0; */
        height: 55px;
        padding: 6px 0px;
    }
    .header__logo-img-sp {
        width: 100%;
        padding-right: 10px;
    }
}

@media (min-width: 1026px) {
    .header__hide-on-med-and-up {
        visibility: hidden;
        height: 0;
        display: none;
    }
    .header__hide-on-small-only {
        visibility: visible;
    }
}
@media (max-width: 768px) {
    /* body部分 ----------------------------------------*/
    body {
        font-size: 14px;
        max-width: unset;
        width: 100%;
    }
    .header__nav-translate-item.-dropdown {
        padding: 11px 5px;
    }
    .footer__float-link,
    .footer__float-link.en,
    .footer__float-link.vi {
        width: 75%;
    }
    .hide-on-small-only {
        visibility: hidden;
        height: 0;
        display: none;
    }    
    .hide-on-med-and-up {
        visibility: visible;
    }

    /* ヘッダー */
    .header__logo-img:nth-of-type(1),
    .header__logo-img:nth-of-type(2),
    .header__logo-img:nth-of-type(3) {
        margin-right: 0;
    }

    /* ヘッダーナビゲーション ----------------------------------------*/
    .header__nav {
        gap: 10px;
    }
    .header__nav-translate-item {
        font-size: 18px;
        padding: 11px 5px;
    }
    .header__nav-translate-item,
    .header__nav-dropdown-label {
        width: 90px;
        height: 50px;
        line-height: 1.1;
    }

    /* メインビジュアル ----------------------------------------*/
    .mv__main {
        /* height: calc(100vw * 819 / 630); */
        background-position: right 51% bottom 10%;
        padding-left: 0;
        min-height: unset;
        height: 100%;
        gap: 70px;
    }
    /* メインビジュアルテキスト調整 */
    .mv__text {
        width: 100%;
        padding: 0 35px;
        margin-top: 150px;
    }

    /* メインビジュアルロゴ調整 */
    .mv__logo:nth-of-type(1) {
        width: 70%;
        margin-bottom: 0;
    }
    .mv__logo1 {
        width: 50%;
    }
    .mv__logo2 {
        width: 40%;
    }    
    .mv__heading {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .mv__logo {
        width: 100% !important;
        margin-bottom: 0;
    }    
    .mv__catchcopy,
    .mv__catchcopy.vi{
        font-size: clamp(20px, 5vw, 38px);
    }
    .mv__catchcopy-small,
    .mv__catchcopy-small.vi {
        font-size: 16px;
    }
    .mv__image1,
    .mv__image2 {
        max-width: unset;
        clip-path: circle(50% at center);
        width: 100%;
        height: 100%;
    }
    .mv__visual-imagesp1,
    .mv__visual-imagesp2 {
        max-width: unset;
        width: 100%;
    }
    /* about us ----------------------------------------*/
    .about {
        min-height: unset;
        height: 100%;
        padding-bottom: 330px;
    }    
    .about__content {
        flex-direction: column;
        padding: 60px 20px 50px;
    }
    .about__body {
        margin: 0;
        max-width: unset;
    }
    .about__body {
        width: 90%;
        max-width: none;
        padding: 0 10px;
    }
    .about__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .about__text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .about__image {
        max-width: unset;
    }  
    .about__image {
        position: static;
        width: 100%;
        max-width: none;
        margin: 20px auto 0 auto;
    }
    .about__image img {
        width: 80%;
        max-width: unset;
        height: auto;
        position: absolute;
        right: 0;
    }
    .about::before {
        font-size: 100px;
    }

    /* 海外のお客様 ----------------------------------------*/
    .oversea {
        background-position: right 23% bottom 10%;
    }
    .oversea__title {
        max-width: unset;
    }    
    .oversea__title span {
        font-size: 30px;
    }
    .oversea__body {
        gap: 20px;
        flex-direction: column;
        max-width: unset;
    }
    .oversea__within {
        width: 100%;
        padding: 5% 5% 5% 13%;
        max-width: unset;
    }
    /* 英語 */
    .oversea__within.en {
        height: auto;
    }
    .oversea__within .material-symbols-outlined {
        left: 10px;
        font-size: 30px;
    }
    /* solution ----------------------------------------*/
    .solution__content,
    .solution__content.en,
    .solution__content.vi,
    .solution__content.th {
        height: 1180px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 60px),
            50% 100%,
            0 calc(100% - 60px)
        );
        -webkit-clip-path: polygon(
            0 0, 100% 0,
            100% calc(100% - 60px),
            50% 100%, 0 calc(100% - 60px)
        );
    }
    .solution__content h2 {
        font-size: 30px;
        width: 380px;
        padding-bottom: 18px;
    }
    /* ベトナム語 */
    .solution__content.vi h2 {
        width: 400px;
    }
    .solution__wrap {
        padding: 0 20px;
        max-width: unset;
    }
    .solution__wrap > * {
        flex: 1 1 calc(50% - 40px);
    }    
    .solution__point {
        width: auto;
        max-width: unset;
    }
    .solution__main {
        width: 50%;
        max-width: unset;
    }
    .solution__main.-sp {
        margin-top: 50px;
    }
    .solution__main img {
        bottom: unset;
        max-width: 100%;
        margin-top: 32px;
        width: 40%;
    }
    .solution__main img.solution__point3-img {
        width: 90%;
    }
    .solution__support {
        font-size: 22px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .contact__link {
        width: 80%;
        margin: auto;
    }
    .contact__link::after {
        top: 30px;
    }
    /* 英語 */
    .contact__link.en {
        width: 80%;
    }
    .solution::before {
        font-size: 100px;
        transform: translateX(31%) rotate(90deg);
    }

    /* Products ----------------------------------------*/
    .product__title {
        width: 100%;
    }
    .product__title h2 {
        font-size: 60px;
    }
    .product__title h3 {
        font-size: 23px;
        position: relative;
        left: unset;
        bottom: 35px;
        display: inline;
        margin: auto;
    }
    .product__wrap {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
        max-width: unset;
    }
    .product__printer {
        max-width: unset;
        height: 100%;
    }

    /* voice */
    .voice {
        height: 1000px;
    }
    .voice.th {
        min-height: 1100px;
    }
    .voice.vi {
        min-height: 980px;
    }
    .voice.en {
        min-height: 1160px;
    }
    .voice__title {
        font-size: 30px;
    }
    .voice__detail {
        width: 100%;
        padding: 10px;
        height: auto;
        margin: auto;
    }
    /* 英語 */
    .voice__detail.en {
        height: auto;
    }
    .voice__detail h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .voice__wrap {
        max-width: unset;
    }
    .voice::before {
        font-size: 100px;
    }

    /* faq ----------------------------------------*/
    .faq__title {
        width: 100%;
    }
    .faq__title h2 {
        font-size: 80px;
    }
    .faq__title h3 {
        /* font-size: 23px;
        left: 31%;
        padding-bottom: 10px;
        bottom: -2px; */
        
        font-size: 23px;
        position: relative;
        left: unset;
        bottom: 35px;
        margin: auto;
        display: inline;
    }
    /* 英語、ベトナム語 */
    .faq__title.en h3,
    .faq__title.vi h3 {
        width: auto;
    }
    .faq__wrap {
        max-width: unset;
        padding: 0 20px;
    }
    .faq__que-ans {
        padding: 30px 30px 30px 0;
    }
    .faq__que:after {
        right: -15px;
    }
    .faq__ans::before {
        top: unset;
        bottom: unset;
    }

    /* contact ----------------------------------------*/
    .contact {
        width: 100%;
        min-height: unset;
        padding: 50px 0;
    }
    .contact__wrap {
        max-width: unset;
        width: 90%;
        padding: 30px 0;
    }
    .contact__within-wrap {
        padding: 0 20px 30px 20px;
        gap: 20px;
    }
    .contact__left h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }
    .contact__left h3 {
        font-size: 22px;
    }
    .contact_img1,
    .contact_img2 {
        width: 50%;
    }
    .contact__right {
        gap: 0;
        justify-content: center;
    }
    .contact__contact-link {
        width: 90%;
        margin: auto;
        font-size: 18px;
        letter-spacing: unset;
    }
    .contact__contact-link::after {
        top: 25px;
        padding: 5px 6px 4px 8px;
    }
    .footer__logo:nth-of-type(1) {
        margin-bottom: 14px;
    }

    /* footer ----------------------------------------*/
    .footer {
        background: #EDF5FA;
        padding-bottom: 130px;
        padding-top: 50px;
        margin-bottom: 0;
    }
    .footer__title {
        flex-direction: column;
        gap: 20px;
    }
    .footer__logo {
        width: 100% !important;
        margin-bottom: 0;
    }
    .footer__wrap {
        max-width: unset;
        padding: 0 40px;
        flex-direction: column;
        gap: 30px;
        margin: auto auto 50px auto;
    }
    .footer__float {
        max-width: unset;
    }
    .back-to-top {
        width: 50px;
        height: 50px;
    }
    .arrow {
        padding: 5px;
        border-width: 0 4px 4px 0;
    }
}
@media (min-width: 769px) {
    .hide-on-med-and-up {
        visibility: hidden;
        height: 0;
        display: none;
    }
    .hide-on-small-only {
        visibility: visible;
    }
}

    
@media (max-width: 480px) {
    .about__body {
        width: 95%;
        padding: 0 10px;
    }

    .about__title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .about__text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
/* 必要に応じて調整 */
@media (max-width: 600px) {
    .about {
        min-height: unset;
        height: 100%;
        padding-bottom: 220px;
    }
}
@media (max-width: 430px) {
    /* ベトナム */
    .about.vi {
        height: calc(100vw * 16 / 11);
    }
}
@media (max-width: 1440px) {
    .mv__text {
        transform: translateX(10%) rotate(0deg);
    }
}
@media (max-width: 1024px) {
    .mv__text {
        width: 100%;
        padding: 0 35px;
        margin-top: 150px;
        transform: unset;
    }
}
@media (max-width: 430px) {
    .solution__content h2,
    .solution__content.vi h2 {
        font-size: 20px;
        width: 90%;
    }
    .solution__content.vi h2 {
        font-size: 20px;
        width: 90%;
    }
    .product__title h3 {
        width: 35%;
    }
    .footer__float-lg {
        font-size: 14px;
    }
    .about::before {
        font-size: 85px;
        left: -15px;
    }
    .contact__link {
        font-size: 18px;
    }
    .contact__contact-link {
        font-size: 16px;
        padding: 13px 45px 13px 20px;
    }
    .faq__que::before {
        font-size: 24px;
        max-width: 40px;
        width: 100%;
        height: 40px;
        top: 0px;
        left: 10px;
    }
    .faq__ans::before {
        font-size: 24px;
        max-width: 40px;
        width: 100%;
        height: 40px;
        left: 10px;
    }
    .faq__que {
        padding-left: 60px;
    }
    .faq__ans {
        padding: 35px 0 0px 60px;
    }
    .faq__que, .faq__ans {
        font-size: 16px;
    }
    .faq__que:after {
        right: -16px;
        width: 11px;
        height: 11px;
        border-top: 3px solid #0099FF;
        border-right: 3px solid #0099FF;
    }
    .faq__que.open:after {
        top: 10px;
    }
    
    .footer__float-link::after {
        right: 17px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .mv__main {
        height: 100%;
        background-position: center center;
        min-height: unset;
    }
}
@media (max-width: 480px) {
    .mv__main {
        height: calc(100vw * 1000 / 613);
        background-position: right 45% bottom 10%;
    }
    .contact__within-wrap {
        flex-direction: column;
        padding: 0 30px 30px;
        gap: 40px;
    }
    .contact__left h2 {
        text-align: center;
    }
    .contact__left h3 {
        text-align: center;
    }
    .hide-on-400 {
        visibility: visible;
    }
}
@media (min-width: 480px) {
    .hide-on-400 {
        visibility: hidden;
        height: 0;
        display: none;
    }
}
@media (max-width: 440px) {
    .mv__catchcopy.vi {
        font-size: 28px;
    }
}

@media (max-width: 430px) {
    .mv__main {
        height: calc(100vw * 1000 / 530);
    }
    /* 英語 */
    .mv__main.en {
        height: calc(100vw * 1000 / 520);
    }

}
@media (max-width: 430px){
    .contact__link::after {
        right: 15px;
    }
    .contact__contact-link::after {
        right: 20px;
        padding: 5px 8px 4px 8px;
    }
    
    .header__nav-dropdown-label .material-symbols-outlined {
        right: 23px;
        font-size: 23px;
        top: calc((100% - 24px) / 2);
    }
    .header__nav-translate-item, .header__nav-dropdown-label {
        width: 70px;
        height: 40px;
    }
    .header__nav-translate-item,
    .header__nav-translate-item.-dropdown {
        padding: 5px;
    }
    .header__nav-dropdown-sub-contact {
        padding: 19px 5px 5px;
    }
    .header__logo-img-sp {
        padding-bottom: 5px;
    }
    .header__nav-dropdown-label.vi {
        padding-left: unset;
    }
}
#slider {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.swiper {
    padding-bottom: 20px!important;
    margin-bottom: 100px!important;
}
.swiper-container, .swiper-wrapper {
	margin: 0 auto;
}
.swiper-slide {
    background: #EDF5FA;
    padding: 20px;
    width: 65%!important;
    margin-right: unset;
}
.swiper-slide h3 {
    color: #007ADB;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 10px 0 20px;
}
.swiper-slide p.text {
    font-size: 16px;
}
.swiper-slide p.right-text {
    text-align: right;
}
.swiper-wrapper {
	width: 100%;
	padding-left: calc(50% - (1024px / 2));
}


/* サブメニューはデフォルト非表示 */
.header__nav-dropdown-sub-contact {
    display: block;
    position: absolute; /* ドロップダウン用 */
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px 20px 10px;
    width: 100%;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/* ホバーで表示 */
.header__nav-dropdown.-contact:hover .header__nav-dropdown-sub-contact {
    display: block;
}

.header__nav-dropdown-sub-contact {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}

/* ホバー時に表示 */
.header__nav-dropdown.-contact:hover .header__nav-dropdown-sub-contact {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1100px) {
    .header__nav-dropdown-sub-contact {
        position: relative;
        z-index: 120;
        padding: 22px 22px 10px;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #fff;
        margin: 80px 0 0;
        width: 50%;
        height: auto;
    }
    .header__nav-translate-item.-contact {
        height: auto;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .header__nav-dropdown-sub-contact {
        width: 60%;
    }
}