@charset "utf-8";

/*================================================================
# intro
================================================================ */
body.lock-scroll {
    height: 100vh;
    overflow: hidden;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(-55px);
    }
}

.intro-logo-animate {
    animation: slideUp 0.8s ease-out forwards;
}

.intro {
    width: 100vw;
    height: 100vh;
    background: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    transition: opacity 2s ease;
}

.intro svg {
    width: 120px;
    height: auto;
}

.intro path,
.intro ellipse {
    animation: draw 1.5s ease-in-out forwards;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.intro path:nth-of-type(2) {
    animation-delay: 0s;
}

.intro path:nth-of-type(3) {
    animation-delay: 0.3s;
}

.intro path:nth-of-type(4) {
    animation-delay: 0.6s;
}

.intro path:nth-of-type(5) {
    animation-delay: 0.9s;
}

.intro path:nth-of-type(6) {
    animation-delay: 1.2s;
}

.intro .st0 {
    fill: none;
    stroke: var(--white);
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.intro .st1 {
    opacity: 0;
    animation: fadein 1s ease-out forwards;
    animation-delay: 2.2s;
    fill: var(--white);
    stroke: none;
}

.page-content {
    opacity: 0;
    transition: opacity 2s ease;
}

.page-content.show {
    opacity: 1;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadein {
    to {
        opacity: 1;
    }
}

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transition: ease-in 0.2s;
}

.header .header__inner {
    padding: 0 2.4vw;
    transition: ease-in 0.2s;
}

.header .container {
    height: 100px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in;
}

.header .container .left {
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in;
}

.header .container .left h1 {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header .container .left h1 a {
    display: block;
    line-height: 0;
}

.header .container .left h1 a img {
    width: 136px;
}

.header .container .left h1 a:hover img {
    opacity: 0.7;
}

.header .container .right {
    margin: 0 0 0 auto;
}

.header .gnav_pc {
    margin: auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
}

.header .gnav_pc ul {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    transition: ease-in 0.2s;
}

.header .gnav_pc .logo {
    margin: 0 auto 0 0;
    opacity: 0;
    transition: opacity 0.2s ease-in, width 0.2s ease-in;
}

.header .gnav_pc .li_item a {
    width: 100%;
    padding: 16px;
    position: relative;
    display: block;
    font-family: var(--text-en);
    font-size: 14px;
    text-align: center;
    transition: 0.3s;
}

.header .gnav_pc .li_item a:hover {
    color: var(--white);
}

.header .gnav_pc .li_item a span {
    display: block;
}

.header .gnav_pc .li_item a::after {
    width: 0;
    height: 1px;
    margin: auto;
    opacity: 0.5;
    background-color: var(--white);
    position: absolute;
    content: "";
    right: 0;
    bottom: 12px;
    left: 0;
    transition: 0.3s;
}

.header .gnav_pc .li_item a:hover::after {
    width: 88%;
}

.header .li_contact {
    margin: 0 0 0 80px;
}

.header .li_contact a {
    padding: 1px 16px 3px;
    border: 1px solid var(--white);
    border-radius: 9999px;
    color: var(--white);
    transition: all 0.3s ease;
}

.header .li_contact a:hover {
    background: var(--white);
    color: var(--black);
}

/* submenu
------------------------------------------------------ */
.header .gnav_pc .submenu {
    padding: 24px;
    opacity: 0;
    background-color: var(--bg02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 100%;
    left: calc(50% - 125px);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.gnav_pc .has-submenu:hover .submenu {
    opacity: 1;
    display: block;
    visibility: visible;
    transform: translateY(0);
}

.header .gnav_pc li .submenu .row {
    margin: 0 0 0 -24px;
    display: flex;
}

.header .gnav_pc li .submenu .col {
    margin: 0 0 0 24px;
}

.header .gnav_pc li .submenu .submenu-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.header .gnav_pc li .submenu .submenu-list li {
    width: 200px;
    margin: 0;
}

.header .gnav_pc li .submenu .submenu-list li a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray02);
    display: block;
    font-size: 14px;
    text-align: center;
}

.header .gnav_pc li .submenu .submenu-list li a:hover {
    background-color: var(--gray01);
    font-weight: 600;
    color: var(--primary);
}

.header .gnav_pc li .submenu .col:nth-child(2) .submenu-list li a:hover {
    color: var(--secondary);
}

.header .gnav_pc .has-submenu {
    margin: 0 0.8rem 0 0;
    position: relative;
}

.header .gnav_pc .has-submenu>a {
    width: 100%;
    padding: 1.6rem;
    position: relative;
    display: block;
    font-size: clamp(14px, 1.2vw, 16px);
    text-align: center;
    transition: 0.3s;
}

.header .gnav_pc .has-submenu::before {
    width: 10px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    transition: 0.3s;
    transform: translateY(-50%);
}

.header .gnav_pc .has-submenu::after {
    width: 2px;
    height: 10px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    right: 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    transition: 0.3s;
    transform: translateY(-50%);
}

.header .gnav_pc .has-submenu:hover::after {
    transform: translateY(-50%) rotate(90deg);
}

.header .gnav_pc .has-submenu:hover::before,
.header .gnav_pc .has-submenu:hover::after {
    background-color: var(--secondary);
}

/* gnav_sp
------------------------------------------------------ */
.header .gnav_sp {
    display: none;
}

/* ページトップ
------------------------------------------------------ */
.scroll-to-top {
    width: 62px;
    height: 62px;
    cursor: pointer;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9;
}

.scroll-to-top a {
    width: 62px;
    height: 62px;
    border: 1px solid var(--white);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.scroll-to-top a svg {
    height: 20px;
    color: var(--white);
    transition: 0.3s;
}

.scroll-to-top a:hover {
    opacity: 0.5;
}

/* フッター
------------------------------------------------------ */
.footer {
    background: url(../img/footer.png) no-repeat center top / cover;
}

.footer .nav-section {
    padding: 145px 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .logo img {
    width: 240px;
    height: auto;
}

.footer .nav-list .primary {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer .nav-list .li_item a {
    width: 100%;
    padding: 16px;
    position: relative;
    display: block;
    font-family: var(--text-en);
    font-size: 14px;
    text-align: center;
    transition: 0.3s;
}

.footer .nav-list .li_item a:hover {
    color: var(--white);
}

.footer .nav-list .li_item a span {
    display: block;
}

.footer .nav-list .li_item a::after {
    width: 0;
    height: 1px;
    margin: auto;
    opacity: 0.5;
    background-color: var(--white);
    position: absolute;
    content: "";
    right: 0;
    bottom: 12px;
    left: 0;
    transition: 0.3s;
}

.footer .nav-list .li_item a:hover::after {
    width: 88%;
}

.footer .li_contact {
    margin: 0 0 0 80px;
}

.footer .li_contact a {
    padding: 1px 16px 3px;
    border: 1px solid var(--white);
    border-radius: 9999px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer .li_contact a:hover {
    background: var(--white);
    color: var(--black);
}

.footer-info-area {
    margin: 80px 0 0;
    padding: 16px;
    font-size: 14px;
    line-height: 2;
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.copyright-section {
    margin: 80px 0 0;
    font-family: var(--text-en);
    font-size: 12px;
    text-align: right;
}

/* 背景・余白
------------------------------------------------------ */
.bg01 {
    padding: 100px 0;
}

.unit+.unit {
    margin: 160px 0 0;
}

/* layout
------------------------------------------------------ */
main .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

main .row.reverse {
    flex-direction: row-reverse;
}

/* heading
------------------------------------------------------ */
.heading01 {
    overflow: hidden;
    font-family: var(--text-en);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.heading01 .text-en .char {
    opacity: 0;
    display: inline-block;
    transform: translateY(40px);
}

.heading01.aos-animate .text-en .char {
    animation: slide-up 0.6s ease forwards;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heading02 {
    margin: 40px 0 0;
    font-size: 24px;
}

.heading02.center {
    text-align: center;
}

.heading02.top {
    margin: 0;
}

/* text
------------------------------------------------------ */
.text01 {
    margin: 32px 0 0;
    line-height: 2;
}

.text01.top {
    margin: 0;
}

.text01.center {
    text-align: center;
}

.text01 p:nth-child(n + 2) {
    margin: 32px 0 0;
}

/* table
------------------------------------------------------ */
.table01 {
    width: 1040px;
    margin: 64px auto 0;
    border-collapse: collapse;
    border-top: 1px solid var(--white);
    font-size: 15px;
}

.table01 table {
    width: 100%;
    border-collapse: collapse;
}

.table01 th,
.table01 td {
    padding: 40px 0;
    border-bottom: 1px solid var(--white);
    text-align: left;
    vertical-align: top;
}

.table01 th {
    width: 120px;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
}

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.top-page .mv {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-page .mv .splide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.top-page .mv .splide__track,
.top-page .mv .splide__list {
    height: 100%;
}

.top-page .mv .splide__slide {
    height: 100%;
    position: relative;
}

.top-page .mv .slide-bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0% center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    animation: mvSlide 20s linear infinite;
}

@keyframes mvSlide {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 100% center;
    }
}

.top-page .mv .text-area {
    width: 100%;
    padding: 0;
    position: relative;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.top-page .mv .mv__logo {
    width: 120px;
    margin: 0 auto;
    text-align: center;
}

.logo-svg {
    width: 120px;
    height: auto;
    opacity: 0;
    display: block;
    transition: opacity 0.5s ease;
}

.logo-visible {
    opacity: 1;
}

.top-page .mv .st0 {
    fill: none;
    stroke: var(--white);
    stroke-width: 5px;
    stroke-miterlimit: 10;
}

.top-page .mv .st1 {
    fill: var(--white);
    stroke: none;
}

.top-page .mv .text-area span {
    padding: 0 16px;
    font-weight: 600;
    line-height: 1;
}

.top-page .mv__text01 {
    margin: 40px 0 0;
    font-size: 16px;
}

.top-page .mv__text02 {
    margin: 8px 0 0;
    font-family: var(--mincho);
    font-size: 24px;
}

.top-page .mv .splide__arrows,
.top-page .mv .splide__pagination {
    display: none;
}

/* scroll-down
------------------------------------------------------ */
.scroll-down {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.scroll-bar {
    width: 1px;
    height: 64px;
    border-radius: 9999px;
    background: var(--white);
    position: relative;
}

.scroll-bar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 50%;
    animation: scroll-dot 1.5s ease-in-out infinite;
    transform: translateX(-50%);
}

@keyframes scroll-dot {
    0% {
        opacity: 1;
        top: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 0;
        top: 64px;
    }

    100% {
        opacity: 0;
        top: 64px;
    }
}

/*================================================================
# ABOUT
================================================================ */
.about-chart {
    width: 1170px;
    margin: 64px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-chart .about-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex: 1;
    z-index: 1;
    order: 3;
}

.about-chart .about-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    color: var(--white);
    text-align: center;
    gap: 15px;
}

.about-chart .about-item.skincare {
    width: 100%;
    margin: 0 0 56px;
    order: 1;
}

.about-chart .about-item.cosmetic {
    width: 315px;
    order: 2;
}

.about-chart .about-item.makeup {
    width: 315px;
    order: 4;
}

.about-chart .about-item .main {
    width: 240px;
    height: 104px;
    padding: 1rem 2rem;
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.about-chart .about-item .sub {
    width: 144px;
    height: 64px;
    border: 1px solid var(--gray01);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--gray01);
}

.about-chart .about-item.skincare>div:nth-child(2) {
    order: 2;
}

.about-chart .about-item.skincare>div:nth-child(3) {
    order: 1;
}

.about-chart .about-item.skincare>div:nth-child(4) {
    order: 3;
}

.about-chart .about-item.cosmetic>div:nth-child(2) {
    order: 3;
}

.about-chart .about-item.cosmetic>div:nth-child(3) {
    order: 1;
}

.about-chart .about-item.cosmetic>div:nth-child(4) {
    order: 2;
}

.about-chart .about-item.makeup>div:nth-child(2) {
    order: 3;
}

.about-chart .about-item.makeup>div:nth-child(3) {
    order: 1;
}

.about-chart .about-item.makeup>div:nth-child(4) {
    order: 2;
}

.about-chart .logo {
    padding: 32px;
    background-color: var(--black);
}

.about-chart .logo img {
    width: 160px;
}

.about-chart .line {
    background: var(--white);
    position: absolute;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

/* ==== Skincare（縦）==== */
.about-chart .line.skincare {
    width: 1px;
    height: 140px;
    bottom: -140px;
    left: 50%;
    animation-duration: 1s;
    animation-timing-function: ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.about-chart.aos-animate .line.skincare {
    animation-name: lineGrow;
}

/* ==== Cosmetic（右）==== */
.about-chart .line.cosmetic {
    width: 180px;
    height: 1px;
    right: -143px;
    bottom: 52px;
    animation-duration: 1s;
    animation-timing-function: ease;
    transform: scaleX(0);
    transform-origin: right;
}

.about-chart.aos-animate .line.cosmetic {
    animation-name: lineGrowX;
}

/* ==== Makeup（左）==== */
.about-chart .line.makeup {
    width: 180px;
    height: 1px;
    bottom: 52px;
    left: -143px;
    animation-duration: 1s;
    animation-timing-function: ease;
    transform: scaleX(0);
    transform-origin: left;
}

.about-chart.aos-animate .line.makeup {
    animation-name: lineGrowX;
}

/* キーフレーム */
@keyframes lineGrow {
    to {
        transform: scaleY(1);
    }
}

@keyframes lineGrowX {
    to {
        transform: scaleX(1);
    }
}

.top-page .about .row {
    width: 1000px;
    margin: 160px auto 0;
    align-items: center;
}

.top-page .about .row .text-area {
    width: 540px;
}

/* logo
------------------------------------------------------ */
#animation-logo {
    width: 278px;
}

#animation-logo path.st0 {
    animation: none;
    stroke: var(--white);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.aos-animate #animation-logo path.st0 {
    animation: draw 3s ease forwards;
}

#animation-logo path.st1 {
    opacity: 0;
    transition: all 1.6s ease 1s;
    fill: var(--white);
}

.aos-animate #animation-logo path.st1 {
    opacity: 1;
    transform: translateY(0);
}

#animation-logo path:nth-of-type(2) {
    animation-delay: 0s;
}

#animation-logo path:nth-of-type(3) {
    animation-delay: 0.3s;
}

#animation-logo path:nth-of-type(4) {
    animation-delay: 0.6s;
}

#animation-logo path:nth-of-type(5) {
    animation-delay: 0.9s;
}

#animation-logo path:nth-of-type(6) {
    animation-delay: 1.2s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/*================================================================
# SERVICE
================================================================ */
.top-page .service .unit01 {
    margin: 160px 0 0;
}

.top-page .service .unit01 .row {
    justify-content: center;
    gap: 20px;
}

.top-page .service .unit01 .col {
    width: 180px;
    height: 180px;
    margin: 40px 0 0;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    text-align: center;
}

.top-page .service .unit01 .circle-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

.top-page .service .unit01 .circle-outline {
    animation: none;
    fill: none;
    stroke: var(--white);
    stroke-width: 1;
    stroke-dasharray: 301.59;
    stroke-dashoffset: 301.59;
    stroke-linecap: round;
}

.top-page .service .unit01 .col .text {
    opacity: 0;
    position: relative;
    z-index: 2;
    animation: none;
}

.top-page .service .unit01 .col.aos-animate .circle-outline {
    animation: drawCircle 1s ease forwards;
}

.top-page .service .unit01 .col.aos-animate .text {
    animation: fadeText 0.4s ease forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeText {
    to {
        opacity: 1;
    }
}

.top-page .service .unit01 .col.delay-0 .circle-outline {
    animation-delay: 0s;
}

.top-page .service .unit01 .col.delay-0 .text {
    animation-delay: 0.4s;
}

.top-page .service .unit01 .col.delay-1 .circle-outline {
    animation-delay: 0.6s;
}

.top-page .service .unit01 .col.delay-1 .text {
    animation-delay: 1s;
}

.top-page .service .unit01 .col.delay-2 .circle-outline {
    animation-delay: 1.2s;
}

.top-page .service .unit01 .col.delay-2 .text {
    animation-delay: 1.6s;
}

/* unit02
------------------------------------------------------ */
.top-page .service .unit02 {
    width: 1040px;
    margin: 160px auto 0;
}

.top-page .service .unit02 .heading02 {
    margin: 112px 0 0;
}

.top-page .service .unit02 .img-area {
    width: 632px;
}

.top-page .service .unit02 .img-area .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.top-page .service .unit02 .col {
    width: 200px;
    opacity: 0;
    text-align: left;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: translateY(40px);
}

.top-page .service .unit02 .col:nth-child(1) {
    margin: 112px 0 0;
}

.top-page .service .unit02 .col:nth-child(2) {
    margin: 56px 0 0;
}

.top-page .service .unit02 .img {
    width: 100%;
    overflow: hidden;
}

.top-page .service .unit02 .img img {
    width: 100%;
    height: auto;
    display: block;
}

.top-page .service .unit02 .title {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: bold;
}

.top-page .service .unit02 .text {
    width: 200%;
    font-size: 14px;
    line-height: 1.6;
}

.top-page .service .unit02 .img-area.aos-animate .row .col:nth-child(1) {
    opacity: 1;
    transition-delay: 0s;
    transform: translateY(0);
}

.top-page .service .unit02 .img-area.aos-animate .row .col:nth-child(2) {
    opacity: 1;
    transition-delay: 0.2s;
    transform: translateY(0);
}

.top-page .service .unit02 .img-area.aos-animate .row .col:nth-child(3) {
    opacity: 1;
    transition-delay: 0.4s;
    transform: translateY(0);
}

/* unit03
------------------------------------------------------ */
.top-page .service .unit03 {
    width: 1100px;
    margin: 160px auto 0;
}

.top-page .service .unit03 .oem-flow .flow-list {
    margin: 80px auto 0;
}

.top-page .service .unit03 .flow-item {
    margin: 24px 0 0;
    padding: 0 0 64px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.top-page .service .unit03 .oem-flow .step-area {
    width: 134px;
    padding: 4px 0 0;
    flex-shrink: 0;
}

.top-page .service .unit03 .oem-flow .step {
    margin: 0 0 12px;
    font-family: var(--text-en);
    font-size: 14px;
}

.top-page .service .unit03 .flow-item .line {
    width: 1px;
    height: calc(100% - 40px);
    background: var(--white);
    position: absolute;
    top: 45px;
    left: 24px;
    transform: scaleY(0);
    transform-origin: top;
}

.top-page .service .unit03 .flow-item.aos-animate .line {
    animation: drawLine 1s ease 0.4s forwards;
}

@keyframes drawLine {
    to {
        transform: scaleY(1);
    }
}

.top-page .service .unit03 .oem-flow .text-area h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
}

.top-page .service .unit03 .oem-flow .text-area p {
    line-height: 1.8;
    color: var(--white);
}

/* unit04
------------------------------------------------------ */
.top-page .service .unit04 {
    width: 1040px;
    margin: 160px auto 0;
}

.faq-section {
    margin: 40px 0 0;
}

.faq-item {
    border-bottom: 1px solid var(--white);
    transition: background-color 0.3s;
}

.faq-item dt {
    padding: 24px 0;
    cursor: pointer;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.faq-item dt:hover {
    opacity: 0.7;
}

.faq-item .q {
    margin-right: 16px;
    flex-shrink: 0;
    font-family: var(--text-en);
    font-size: 20px;
    font-weight: bold;
}

.faq-item .title {
    flex: 1;
    font-size: 20px;
}

.faq-item .toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--white);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.faq-item .toggle::before,
.faq-item .toggle::after {
    background-color: var(--white);
    position: absolute;
    content: "";
    transition: all 0.3s ease;
}

.faq-item .toggle::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item .toggle::after {
    width: 1px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.is-active .toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item dd {
    padding: 0 40px 32px;
    opacity: 0;
    display: none;
    transition: opacity 1s ease;
}

.faq-item.is-active dd {
    opacity: 1;
}

/*================================================================
# COMPANY
================================================================ */
.gmap {
    margin: 64px 0 0;
}

/*================================================================
# NEWS
================================================================ */
.top-page .news-list {
    width: 1040px;
    margin: 40px auto 0;
    border-top: 1px solid var(--white);
}

.top-page .news-item {
    margin: 0;
    padding: 32px 0;
    border-bottom: 1px solid var(--white);
    display: flex;
}

.top-page .news-item .date {
    width: 160px;
    flex-shrink: 0;
    font-family: var(--text-en);
    font-size: 18px;
}

.top-page .news-item .title {
    width: calc(100% - 160px);
    margin: 0;
    padding: 0;
}

/*================================================================
# CONTACT
================================================================ */
.contact-form {
    width: 1040px;
    margin: 64px auto 0;
    padding: 0 0 100px;
}

.contact-form .contact-table {
    width: 100%;
    margin: 0;
}

.contact-form .contact-table>tbody>tr {
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
}

.contact-form .contact-table>tbody>tr>th {
    width: 100%;
    padding: 0;
    position: relative;
    text-align: left;
    white-space: nowrap;
}

.contact-form .contact-table>tbody>tr>td {
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
}

.contact-form .form-tag {
    margin: 0 0 0 8px;
    padding: 0 8px 1px;
    border: 1px solid var(--white);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

.contact-form .form-tag.-required {
    color: var(--white);
}

.contact-table .checkbox-list {
    margin: 0 0 0 -16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.contact-table .checkbox-list li {
    margin: 8px 8px 8px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form__footer {
    margin: 40px 0 0;
    line-height: 2;
}

.contact-form__footer .title {
    font-size: 18px;
    text-align: center;
}

.privacy-box {
    width: 100%;
    height: 200px;
    margin: 20px auto;
    padding: 30px 40px;
    border: 1px solid var(--gray01);
    overflow: auto;
    font-size: 14px;
}

.privacy-box .unit {
    margin-top: 24px;
}

.privacy-box .unit__title {
    font-size: 14px;
}

.privacy-box .unit__text {
    margin-top: 8px;
}

.privacy-text {
    font-size: 16px;
    line-height: 2;
    text-align: center;
}

/*-----------
form
------------*/
::placeholder {
    color: var(--gray02);
}

.contact-table select,
.contact-table input,
.contact-table button,
.contact-table textarea,
.contact-table option {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "Meiryo", serif;
}

.contact-table input,
.contact-table textarea {
    width: 100%;
    padding: 12px 24px;
    border-radius: 0;
    background: var(--white);
    font-size: 16px;
    color: var(--black);
    box-sizing: border-box;
    transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
    border: 0;
    outline: 0;
    background: var(--white);
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
    color: var(--gray02);
}

.contact-form input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 3px 0 0;
    padding: 0;
    cursor: pointer;
    border: 2px solid var(--white);
    background: var(--black);
    position: relative;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input[type="checkbox"]:checked {
    border: 2px solid var(--black);
    background: var(--white);
}

.contact-form input[type="checkbox"]:focus {
    border: 2px solid var(--black);
    background: var(--white);
}

.contact-form input[type="checkbox"]::before {
    width: 6px;
    height: 12px;
    opacity: 0;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    position: absolute;
    content: "";
    top: 3px;
    left: 7px;
    transition: opacity 0.2s;
    transform: rotate(45deg);
}

.contact-form input[type="checkbox"]:checked::before {
    opacity: 1;
}

.select-wrap {
    width: 100%;
    border: 1px solid var(--gray01);
    border-radius: 0;
    background: var(--gray01);
    position: relative;
    overflow: hidden;
}

.select-wrap::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border: 0;
    border-right: solid 2px var(--gray01);
    border-bottom: solid 2px var(--gray01);
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: rotate(45deg);
}

.select-wrap select {
    width: 100%;
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    font-size: 18px;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    appearance: none;
}

.select-wrap select::-ms-expand {
    display: none;
}

.contact-form .kojin-checkbox {
    margin: 24px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-align: center;
}

.contact-form .kojin-checkbox label {
    padding: 0 0 0 4px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.contact-form .kojin-checkbox label:hover {
    cursor: pointer;
}

.contact-form .kojin-checkbox input {
    margin: 3px 10px 0 0;
}

.contact-form .kojin-checkbox .form-tag {
    margin: 3px 0 0 8px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
}

.submit-btn {
    width: 400px;
    margin: 40px auto 0;
}

.submit-btn input {
    width: 100%;
    height: 80px;
    padding: 0 0 2px;
    border: 1px solid var(--white);
    background: var(--black);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.submit-btn input:hover {
    background: var(--white);
    color: var(--black);
}