@charset "utf-8";

/*================================================================
# intro
================================================================ */
body.lock-scroll {
    width: 100%;
    height: 100svh;
    position: fixed;
    overflow: hidden;
}

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

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

.intro {
    width: 100vw;
    height: 100svh;
    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%;
    margin: 0 auto;
    position: fixed;
    z-index: 50;
    transition: ease-in 0.2s;
}

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

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

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

.header .container .left h1 a {
    display: block;
}

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

.gnav_pc {
    display: none;
}

.nav-toggle {
    width: 64px;
    height: 64px;
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 50;
}

.nav-toggle span {
    width: 56%;
    height: 1px;
    background: var(--white);
    position: absolute;
    display: inline-block;
    transition: 0.4s;
    inset: auto auto auto 13px;
}

.nav-toggle span:nth-of-type(1) {
    top: 20px;
}

.nav-toggle span:nth-of-type(2) {
    top: 29px;
}

.nav-toggle span:nth-of-type(3) {
    top: 39px;
}

.nav-toggle.active span:nth-of-type(1) {
    width: 50%;
    transform: translateY(6px) rotate(24deg);
    inset: 24px auto auto 16px;
}

.nav-toggle.active span:nth-of-type(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-of-type(3) {
    width: 50%;
    transform: rotate(-24deg);
    inset: 30px auto auto 16px;
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
    width: 100%;
    height: 100dvh;
    background: var(--black);
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    overflow-y: scroll;
    z-index: 40;
    transition: all 0.5s;
    -webkit-overflow-scrolling: touch;
}

.gnav_sp.panel-active {
    right: 0;
}

.gnav-list_sp {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.gnav-list_sp .primary {
    padding: 80px 24px 0;
}

.gnav-list_sp .primary .li_item {
    border-bottom: solid 1px var(--gray02);
}

.gnav-list_sp .primary .li_item>a {
    padding: 20px;
    display: block;
    font-weight: 700;
}

.gnav-list_sp .li_contact {
    width: 80%;
    margin: 40px auto 0;
}

.gnav-list_sp .li_contact a {
    padding: 8px 16px 10px;
    border: 1px solid var(--white);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 16px;
}

.gnav-footer_sp {
    margin: 24px 0 0;
    padding: 40px 24px;
    text-align: center;
}

.gnav-footer_sp h1 {
    max-width: 140px;
    margin: auto;
}

.gnav-footer_sp h1 a {
    display: block;
}

.gnav-footer_sp h1 img {
    width: 100%;
}

.gnav-footer_sp .address {
    margin: 0;
    font-size: 12px;
}

.gnav-footer_sp .tel {
    margin: 16px 0 0;
    font-size: 12px;
}

.gnav-footer_sp .copyright {
    margin: 40px 0 0;
    font-size: 10px;
}

/* submenu
------------------------------------------------------ */
.header .gnav_sp ul {
    padding: 0 20px;
    list-style: none;
}

.header .gnav_sp li {
    margin-bottom: 10px;
}

.header .gnav_sp li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    font-size: 16px;
    color: #fff;
}

.header .gnav_sp li .submenu {
    max-height: 0;
    padding-left: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.header .gnav_sp li .submenu.active {
    max-height: 500px;
}

.header .gnav_sp li .submenu li a {
    padding: 10px 0;
    font-size: 14px;
}

.header .gnav_sp li.has-submenu>a {
    position: relative;
}

.header .gnav_sp li.has-submenu>a::after {
    position: absolute;
    content: "+";
    top: 50%;
    right: 0;
    font-size: 18px;
    transform: translateY(-50%);
}

.header .gnav_sp li.has-submenu>a.active::after {
    content: "-";
}

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

.scroll-to-top a {
    width: 48px;
    height: 48px;
    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;
}

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

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

.footer .container {}

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

.footer .nav-list .primary {
    margin: 64px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    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 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 .li_contact {
    margin: 24px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / -1;
}

.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-info-area {
    margin: 80px 0 0;
    padding: 16px;
    font-size: 12px;
}

.company-info p+p {
    margin: 16px 0 0;
}

.license-info {
    margin: 32px 0 0;
}

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

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

.unit+.unit {
    margin: 100px 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: 48px;
    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: 18px;
}

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

.heading02.top {
    margin: 0;
}

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

.text01.top {
    margin: 0;
}

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

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

/* table
------------------------------------------------------ */
.table01 {
    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: 24px 0;
    border-bottom: 1px solid var(--white);
    font-size: 13px;
    text-align: left;
    vertical-align: top;
}

.table01 th {
    width: 100px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.top-page .mv {
    width: 100%;
    height: 100dvh;
    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 {
    margin: 64px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-chart .about-center {
    position: relative;
    display: flex;
    justify-content: center;
    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: 8px;
}

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

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

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

.about-chart .about-item .main {
    width: 100px;
    height: 56px;
    padding: 1rem;
    border: 1px solid var(--white);
    background: var(--black);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.about-chart .about-item .sub {
    width: 100px;
    height: 40px;
    border: 1px solid var(--gray01);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    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 .logo {
    padding: 12px 16px;
    background-color: var(--black);
}

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

.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;
    top: 28px;
    right: -143px;
    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;
    top: 28px;
    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 {
    margin: 100px auto 0;
    padding: 0 6vw;
    align-items: center;
}

.top-page .about .row .img-area {
    width: 50%;
    margin: 64px auto 0;
}

/* 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: 100px 0 0;
}

.top-page .service .unit01 .row {
    margin: 64px 0 0;
    justify-content: center;
    gap: 0 10px;
}

.top-page .service .unit01 .col {
    width: 150px;
    height: 150px;
    margin: 0;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    font-size: 13px;
    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 {
    margin: 100px auto 0;
    padding: 0 6vw;
}

.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 {
    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: 14px;
    font-weight: bold;
}

.top-page .service .unit02 .text {
    width: 200%;
    font-size: 11px;
    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 {
    margin: 100px auto 0;
}

.top-page .service .unit03 .oem-flow {
    padding: 0 6vw;
}

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

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

.top-page .service .unit03 .oem-flow .step-area {
    width: 80px;
    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: 18px;
    font-weight: bold;
    color: var(--white);
}

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

/* unit04
------------------------------------------------------ */
.top-page .service .unit04 {
    margin: 100px auto 0;
    padding: 0 6vw;
}

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

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

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

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

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

.faq-item .toggle {
    width: 24px;
    height: 24px;
    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 24px;
    opacity: 0;
    display: none;
    font-size: 13px;
    transition: opacity 1s ease;
}

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

/*================================================================
# COMPANY
================================================================ */
.top-page .company .unit01 {
    padding: 0 6vw;
}

.gmap {
    margin: 64px 0 0;
}

/*================================================================
# NEWS
================================================================ */
.top-page .news {
    padding: 100px 6vw;
}

.top-page .news-list {
    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: 100px;
    flex-shrink: 0;
    font-family: var(--text-en);
    font-size: 14px;
}

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

/*================================================================
# CONTACT
================================================================ */
.contact-page .page-title:before {
    background: url("../img/contact_page-title_sp.png") no-repeat top right / cover;
}

.contact-form {
    width: 100%;
    margin: 40px auto 0;
    padding: 0 6vw;
}

.contact-table {
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 2;
}

.contact-table>tbody>tr {
    margin: 16px 0 0;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-table>tbody>tr>th {
    width: 100%;
    padding: 0 0 0 48px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue04);
    text-align: left;
    white-space: nowrap;
}

.contact-table>tbody>tr>.no-label {
    padding: 0;
}

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

.contact-table>tbody>tr>td .note {
    margin-top: 4px;
    font-size: 11px;
    color: var(--gray03);
}

.contact-form .form-tag {
    width: 40px;
    height: 20px;
    border: 1px solid var(--white);
    background-color: var(--black);
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0;
    display: inline-block;
    font-size: 12px;
    line-height: 1.6;
    color: var(--white);
    text-align: center;
}

.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-top: 40px;
    line-height: 2;
}

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

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

.privacy-box .unit {
    margin: 16px 0 0;
}

.privacy-box .unit__title {
    font-size: 12px;
    font-weight: 500;
}

.privacy-box .unit__text {
    margin: 8px 0 0;
    font-size: 10px;
}

.privacy-text {
    font-size: 12px;
    line-height: 2;
}

/*-----------
form
------------*/
input[type="submit"] {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    appearance: none;
}

::placeholder {
    font-size: 14px;
    color: var(--gray02);
}

.contact-table select,
.contact-table input,
.contact-table textarea,
.contact-table button,
.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 16px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: var(--white);
    font-size: 16px;
    line-height: normal;
    color: var(--black);
    box-sizing: border-box;
    transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
    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-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(--gray02);
    border-bottom: solid 2px var(--gray02);
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: rotate(45deg);
}

.select-wrap select {
    width: 100%;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    font-size: 16px;
    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: 16px;
    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: 80%;
    margin: 40px auto 0;
}

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