@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

/* NOTE
--------------------------------------
 画面幅1328px以下は全体を縮小
 Headerは1100px以下を縮小
 スマホは575px以下で別途定義
-------------------------------------- */

/* Device
-------------------------------------- */
/* PC */
@media (min-width:901px) {
    .tb:not(.pc) {
        display: none;
    }

    .sp:not(.pc) {
        display: none;
    }
}

/* TB */
@media (min-width:576px) and (max-width:900px) {
    .pc:not(.tb) {
        display: none;
    }

    .sp:not(.tb) {
        display: none;
    }
}

/* SP */
@media (max-width:575px) {
    .pc:not(.sp) {
        display: none;
    }

    .tb:not(.sp) {
        display: none;
    }
}


/* Variable
-------------------------------------- */
:root {
    --keyColorA: #5D5454;
    --keyColorB: #D89F9F;
    --lsWideA: 0.08em;
    --lsWideB: 0.1em;
    --lineHeightA: 1.8;
    --lineHeightB: 2.2;
    --weightR: 400;
    --weightM: 500;
    --weightSB: 600;
    --weightB: 700;
    --roundL: min(1.51vw, 20px);
    --roundM: min(0.75vw, 10px);
    --roundS: min(0.6vw, 8px);

}


/* Animation
-------------------------------------- */
/* Fade in */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Setting
-------------------------------------- */
html {
    overflow: auto;
    font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
    color: #5D5454;
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 1.6rem;
    font-weight: var(--weightR);
}

body {
    background-color: #FBE8EC;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

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

a,
input {
    transition: all 0.3s;
}

.wrap {
    position: relative;
}

@media (max-width: 768px) {
    .wrap {
        min-width: 320px;
    }
}


/* Common
-------------------------------------- */
.comTitle {
    font-size: min(4.14vw, 5.5rem);
    text-align: center;
    letter-spacing: var(--lsWideB);
}

.comTagline {
    margin-top: min(3.01vw, 40px);
    font-size: min(1.88vw, 2.5rem);
    text-align: center;
    font-weight: var(--weightM);
    letter-spacing: var(--lsWideA);
}

.comButton {
    display: block;
    margin: auto;
    width: min(21.08vw, 280px);
    font-size: min(1.35vw, 1.8rem);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(5.27vw, 70px);
    background-color: #fff;
    border-radius: 100vh;
}

.enText {
    font-family: "Lato", serif;
    font-weight: 400;
}

.minchoText {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
}

.page {
    margin-top: min(15.06vw, 200px);
}


@media (hover: hover) and (pointer: fine) {
    .comButton:hover {
        color: #fff;
        background-color: var(--keyColorB);
    }
}

@media (max-width: 575px) {
    .comTitle {
        font-size: 3rem;
    }

    .comTagline {
        margin-top: 16px;
        font-size: 1.8rem;
        line-height: 2;
    }

    .comButton {
        width: 280px;
        font-size: 1.6rem;
        line-height: 60px;
    }

    .spComText {
        font-size: 1.5rem !important;
        line-height: 2.2 !important;
        text-align: justify;
    }

    .page {
        margin-top: 100px;
    }
}


/* Contents
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - min(9.64vw, 128px));
    max-width: min(90.36vw, 1200px);
    margin: auto;
}

@media (max-width: 575px) {
    .contents {
        width: calc(100% - 56px);
    }
}


/* Header
-------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: min(3.64vw, 40px);
    width: 100%;
    z-index: 999;
}

.header__logo {
    width: min(14.55vw, 160px);
}

.header__navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: min(3.64vw, 40px);
    font-size: min(1.27vw, 1.4rem);
    letter-spacing: 0.15em;
}

.header__navi a:not(.header__instagram a) {
    padding-bottom: min(0.45vw, 5px);
    background-image: linear-gradient(var(--keyColorA), var(--keyColorA));
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
}

.header__instagram {
    width: min(1.82vw, 20px);
}

@media (hover: hover) and (pointer: fine) {
    .header__navi a:not(.header__instagram a):hover {
        background-position: bottom left;
        background-size: 100% 1px;
    }
}

@media (max-width: 575px) {
    .header {
        padding: 20px;
    }

    .header__navi {
        display: none;
    }

    .header__logo {
        width: 140px;
    }
}


/* Footer
-------------------------------------- */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: min(12.05vw, 160px);
    padding: min(4.82vw, 64px);
    color: #fff;
    background-color: #e5c9cf;
}

.footer__logo {
    width: min(13.55vw, 180px);
}

.footer__navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: min(3.01vw, 40px);
    margin-top: min(3.01vw, 40px);
    font-size: min(1.05vw, 1.4rem);
    letter-spacing: 0.15em;
}

.footer__instagram {
    width: min(1.51vw, 20px);
}

.footer__copyright {
    font-size: min(0.98vw, 1.3rem);
    letter-spacing: 0.2em;
}

@media (max-width: 575px) {
    .footer {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 80px;
        padding: 28px;
    }

    .footer__logo {
        width: 160px;
    }

    .footer__navi {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .footer__instagram {
        width: 20px;
    }

    .footer__copyright {
        margin-top: 24px;
        font-size: 1.2rem;
    }
}


/* SP NAVI
-------------------------------------- */
@media (min-width: 576px) {
    .hamburger {
        display: none;
    }
}

.hamburger {
    height: 32px;
    width: 32px;
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.hamburger div {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--keyColorA);
    transition: top 0.4s 0.2s, transform 0.4s 0s;
}

.hamburger div:nth-of-type(1) {
    top: calc(35% - 0px);
}

.hamburger div:nth-of-type(2) {
    top: calc(35% - 11px);
}

.hamburger div:nth-of-type(3) {
    top: calc(35% + 11px);
}

.hamburger.on div {
    top: calc(35% - 0px);
    transform-origin: center center;
    transition: top 0.4s 0s, transform 0.4s 0.2s;
}

.hamburger.on div:nth-of-type(1) {
    transform: rotate(45deg);
}

.hamburger.on div:nth-of-type(2) {
    opacity: 0;
}

.hamburger.on div:nth-of-type(3) {
    transform: rotate(135deg);
}

.menuBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: all 0.3s;
}

.menuBox.on {
    visibility: visible;
    opacity: 1;
}

.spNavi {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    font-size: 2rem;
    letter-spacing: var(--lsWideB);
}

.spNavi__instagram {
    width: 35px;
}


/* MV
-------------------------------------- */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 min(3.01vw, 40px);
    width: 100%;
    min-height: 100vh;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
    background-color: #374031;
    width: 100%;
}

.hero__logo {
    width: min(43.64vw, 480px);
}

.hero__text {
    margin-top: min(4.36vw, 48px);
    color: #fff;
    font-size: min(2.55vw, 2.8rem);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(5.91vw, 65px);
    font-weight: var(--weightM);
    border: 1px solid #fff;
    border-radius: 100vh;
}

@media (max-width: 1100px) {
    .hero {
        min-height: auto;
    }

    .hero__image {
        margin: min(10.91vw, 120px) 0 min(5.82vw, 64px);
        height: min(50vw, 550px);
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 0;
    }

    .hero__image {
        margin: 80px 0 0;
        height: 350px;
    }

    .hero__logo {
        width: 70vw;
    }

    .hero__text {
        font-size: 1.8rem;
        line-height: 40px;
    }
}


/* ABOUT
-------------------------------------- */
.about {
    margin-top: min(4.82vw, 64px);
}

.about__title {
    font-size: min(3.77vw, 5rem);
}

.about__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(6.02vw, 80px);
    margin-top: min(3.61vw, 48px);
}

.about__image {
    width: min(45.18vw, 600px);
}

.about__text {
    flex: 1;
    font-size: min(1.2vw, 1.6rem);
    line-height: 2.5;
    letter-spacing: var(--lsWideA);
}

@media (max-width: 575px) {
    .about {
        margin-top: 64px;
    }

    .about__title {
        font-size: 2.8rem;
        line-height: 1.5;
    }

    .about__inner {
        flex-direction: column;
        gap: 48px;
        margin-top: 48px;
    }

    .about__image {
        width: 100%;
    }

    .about__text {
        flex: 1;
        line-height: 2.5;
        letter-spacing: var(--lsWideA);
    }
}


/* PRODUCT
-------------------------------------- */
.product {
    position: relative;
    padding-top: min(9.04vw, 120px);
}

.product__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: min(85.06vw, 1130px);
    background: url(../img/product-image.png ) no-repeat center top / cover;
}

.product__logo {
    margin: min(3.01vw, 40px) auto 0;
    width: min(17.7vw, 235px);
}

.product__features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(3.61vw, 48px);
    margin-top: min(57.23vw, 760px);
}

.product__features li {
    padding: min(1.81vw, 24px);
    width: min(27.71vw, 360px);
    font-size: min(1.51vw, 2rem);
    font-weight: var(--weightM);
    text-align: center;
    letter-spacing: var(--lsWideA);
    background-color: #fff;
    border-radius: 100vh;
}

.product__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: min(4.82vw, 64px) min(3.61vw, 48px);
    margin-top: min(7.23vw, 96px);
}

.product__items li {
    width: min(27.71vw, 368px);
    text-align: center;
}

.product__items figure {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--roundL);
}

.product__items img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product__name {
    margin-top: min(2.41vw, 32px);
}

.product__name span {
    display: block;
}

.product__name span:first-child {
    font-size: min(1.51vw, 2rem);
    letter-spacing: var(--lsWideA);
}

.product__name span:last-child {
    margin-top: min(1.51vw, 20px);
    font-size: min(1.2vw, 1.6rem);
    font-weight: var(--weightM);
    letter-spacing: var(--lsWideA);
}

.product__category {
    margin: min(1.2vw, 16px) auto;
    width: min(10.54vw, 140px);
    font-size: min(0.98vw, 1.3rem);
    line-height: min(2.26vw, 30px);
    letter-spacing: var(--lsWideA);
    border: 1px solid var(--keyColorA);
    border-radius: 100vh;
}

.product__text {
    font-size: min(1.05vw, 1.4rem);
    letter-spacing: var(--lsWideA);
    line-height: var(--lineHeightB);
}

.product__text span {
    display: block;
    font-size: min(0.9vw, 1.2rem);
}

.product__related {
    margin-top: min(9.04vw, 120px);
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.product__related li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    aspect-ratio: 700 / 480;
    text-align: center;
}

.product__related li:first-child {
    background: url(../img/pouch-bg.jpg ) no-repeat center center / cover;
}

.product__related li:last-child {
    background: url(../img/aroma-bg.jpg ) no-repeat center center / cover;
}

.product__relatedTitle {
    font-size: min(2.64vw, 3.5rem);
    letter-spacing: var(--lsWideA);
}

.product__relatedText {
    margin-top: min(3.01vw, 40px);
    font-size: min(1.13vw, 1.5rem);
    line-height: var(--lineHeightB);
}

@media (max-width: 575px) {
    .product {
        padding-top: 80px;
    }

    .product__bg {
        position: absolute;
        top: 120px;
        height: 560px;
        background: url(../img/product-image.png ) no-repeat 49.2% top / cover;
    }

    .product__logo {
        margin: 32px auto 0;
        width: 180px;
    }

    .product__features {
        flex-direction: column;
        gap: 32px;
        margin-top: 360px;
    }

    .product__features li {
        padding: 24px;
        width: 300px;
        font-size: 1.6rem;
    }

    .product__items {
        flex-direction: column;
        gap: 48px;
        margin-top: 64px;
    }

    .product__items li {
        width: 100%;
    }

    .product__items figure {
        width: 100%;
    }

    .product__name {
        margin-top: 24px;
    }

    .product__name span:first-child {
        font-size: 1.6rem;
    }

    .product__name span:last-child {
        margin-top: 16px;
        font-size: 1.6rem;
    }

    .product__category {
        margin: 20px auto 16px;
        width: 140px;
        font-size: 1.3rem;
        line-height: 30px;
    }

    .product__text {
        text-align: center;
    }

    .product__text span {
        display: block;
        font-size: 1.2rem;
    }

    .product__related {
        margin-top: 64px;
        display: block;
    }

    .product__related li {
        height: 320px;
        width: 100%;
        aspect-ratio: auto;
    }

    .product__relatedTitle {
        font-size: 2.8rem;
        letter-spacing: var(--lsWideA);
    }

    .product__relatedText {
        margin-top: 32px;
        text-align: center;
    }
}


/* SALON
-------------------------------------- */
.salon {
    margin-top: min(12.05vw, 160px);
}

.salon__image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: min(3.01vw, 40px);
    height: min(56.47vw, 750px);
    color: #fff;
    background: url(../img/salon-image.jpg ) no-repeat center center / cover;
}

.salon__logo {
    width: min(36.14vw, 480px);
}

.salon__text {
    margin-top: min(3.61vw, 48px);
    padding: 0 min(3.62vw, 48px);
    color: #fff;
    font-size: min(2.11vw, 2.8rem);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(4.9vw, 65px);
    font-weight: var(--weightM);
    border: 1px solid #fff;
    border-radius: 100vh;
}

.salon__button {
    display: block;
    margin: min(3.61vw, 48px) auto 0;
    padding: 0 min(3.62vw, 48px);
    width: min(30.12vw, 400px);
    color: var(--keyColorA);
    font-size: min(1.88vw, 2.5rem);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(4.9vw, 65px);
    font-weight: var(--weightR);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 100vh;
}

@media (hover: hover) and (pointer: fine) {
    .salon__button:hover {
        color: #fff;
        background-color: rgba(216, 159, 159, 0.7);
    }
}

@media (max-width: 575px) {
    .salon {
        margin-top: 80px;
    }

    .salon__image {
        margin-top: 40px;
        height: 480px;
        background: url(../img/salon-image.jpg ) no-repeat center center / cover;
    }

    .salon__logo {
        margin: auto;
        width: 70vw;
    }

    .salon__tagline {
        margin-top: 16px;
        font-size: 1.7rem;
    }

    .salon__text {
        margin-top: 24px;
        width: 300px;
        font-size: 1.8rem;
        line-height: 40px;
    }

    .salon__button {
        margin: 24px auto 0;
        width: 250px;
        font-size: 1.8rem;
        line-height: 48px;
    }
}


/* INSTAGRAM
-------------------------------------- */
.instagram {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: min(9.04vw, 120px);
    border-radius: var(--roundL);
    overflow: hidden;
}

.instagram__text {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: min(3.01vw, 4rem);
    letter-spacing: var(--lsWideA);
    background-color: #d89f9f;
    transition: all 0.3s;
}

.instagram__text::before {
    content: '';
    display: inline-block;
    margin-right: min(1.81vw, 24px);
    width: min(2.49vw, 33px);
    height: min(2.49vw, 33px);
    background: url(../img/instagram-logo.png ) no-repeat center center / contain;
}

.instagram__photo {
    flex: 1;
    display: flex;
}

.instagram__photo figure {
    width: 50%;
}

@media (hover: hover) and (pointer: fine) {
    a:hover .instagram__text {
        background-color: #ba7979;
    }
}

@media (max-width: 575px) {
    .instagram {
        display: block;
        margin-top: 64px;
    }

    .instagram__text {
        height: 140px;
        font-size: 2.7rem;
    }

    .instagram__text::before {
        margin-right: 16px;
        width: 24px;
        height: 24px;
    }
}


/* NEWS
-------------------------------------- */
.news {
    margin-top: min(12.05vw, 160px);
}

.news__list {
    display: flex;
    justify-content: center;
    gap: min(3.61vw, 48px);
    margin-top: min(3.01vw, 40px);
}

.news__list li {
    width: min(27.71vw, 368px);
}

.news__list a {
    display: block;
}

.news__list figure {
    width: 100%;
    aspect-ratio: 368/260;
    overflow: hidden;
    border-radius: var(--roundM);
}

.news__list img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.news__date {
    margin-top: min(1.81vw, 24px);
    font-size: min(0.98vw, 1.3rem);
    letter-spacing: var(--lsWideB);
}

.news__text {
    margin-top: min(0.75vw, 10px);
    font-size: min(1.2vw, 1.6rem);
    line-height: var(--lineHeightA);
    letter-spacing: var(--lsWideA);
}

@media (hover: hover) and (pointer: fine) {
    .news__list a:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 575px) {
    .news {
        margin-top: 80px;
    }

    .news__list {
        flex-direction: column;
        gap: 48px;
        margin-top: 40px;
    }

    .news__list li {
        width: 100%;
    }

    .news__list figure {
        width: 100%;
    }

    .news__date {
        margin-top: 18px;
        font-size: 1.3rem;
    }

    .news__text {
        margin-top: 0;
    }
}


/* COMPANY
-------------------------------------- */
.company__table {
    margin: min(4.82vw, 64px) auto 0;
    width: min(52.71vw, 700px);
    font-size: min(1.2vw, 1.6rem);
    border-collapse: collapse;
    letter-spacing: var(--lsWideA);
}

.company__table th,
.company__table td {
    padding: min(2.41vw, 32px) 0;
    vertical-align: middle;
    text-align: left;
    border-top: 1px solid var(--keyColorA);
    border-bottom: 1px solid var(--keyColorA);
}

.company__table th {
    font-weight: normal;
    padding: 0 min(4.82vw, 64px);
    white-space: nowrap;
}

.company__button {
    margin-top: min(9.04vw, 120px);
}

@media (max-width: 575px) {
    .company {
        margin-top: 100px;
    }

    .company__table {
        margin: 48px auto 0;
        width: 100%;
        font-size: 1.4rem;
    }

    .company__table th,
    .company__table td {
        padding: 24px 0;
        vertical-align: middle;
        line-height: 1.5;
    }

    .company__table th {
        font-weight: normal;
        padding: 0 24px 0 8px;
        white-space: nowrap;
    }

    .company__button {
        margin-top: 64px;
    }
}


/* POST
-------------------------------------- */
.post__inner {
    margin: min(4.82vw, 64px) auto 0;
    width: min(60.24vw, 800px);
}

.post__title {
    font-size: min(1.88vw, 2.5rem);
    font-weight: var(--weightM);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: var(--lineHeightA);
}

.post__date {
    margin-top: min(1.81vw, 24px);
    font-size: min(1.13vw, 1.5rem);
    text-align: center;
    letter-spacing: var(--lsWideB);
}

.post__post {
    margin-top: min(4.82vw, 64px);
}

.post__image {
    width: 100%;
    /* aspect-ratio: 800 / 550; */
    border-radius: var(--roundL);
    overflow: hidden;
}

.post__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.post__text {
    margin-top: min(4.82vw, 64px);
    letter-spacing: var(--lsWideA);
    line-height: var(--lineHeightB);
}

.post__button {
    margin-top: min(9.04vw, 120px);
}

@media (max-width: 575px) {
    .post__inner {
        margin: 48px auto 0;
        width: 100%;
    }

    .post__title {
        font-size: 1.8rem;
        text-align: justify;
    }

    .post__date {
        margin-top: 24px;
        font-size: 1.4rem;
        text-align: left;
    }

    .post__post {
        margin-top: 48px;
    }

    .post__text {
        margin-top: 40px;
    }

    .post__button {
        margin-top: 64px;
    }
}


/* Contact
-------------------------------------- */
.contact__table {
    border-collapse: separate;
    border-spacing: 0 40px;
    margin: 48px auto 24px;
    width: 100%;
    max-width: 800px;
}

.contact__table span {
    display: inline-block;
    margin-left: 12px;
    padding: 0 0;
    background-color: #000;
    border-radius: 100vh;
}

.contact__table th,
.contact__table td {
    vertical-align: middle;
    text-align: left;
}

.contact__table th {
    vertical-align: top;
    padding-top: 20px;
    width: 000px;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"] {
    font-size: 1.6rem;
    padding: 18px 22px;
    width: 100%;
    line-height: 1.8;
    letter-spacing: 0.08em;
    background-color: #fff;
    border: 1px solid #707070;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s;
}

textarea {
    height: 320px;
}

textarea:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover {
    border: 1px solid var(--keyColorA);
}

textarea:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border: solid 1px var(--keyColorA);
    background-color: #f8faff;
}

.contact__agree {
    text-align: center;
}

.contact__agree a {
    text-decoration: underline;
}

.contact__agree span::before {
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    margin-right: 10px;
    margin-bottom: 5px;
    vertical-align: middle;
}

.mfp_checked span::before {
    background: var(--keyColorA) url(../img/contact/check.png ) no-repeat center center / cover;
}

::placeholder {
    color: #B5B5B5;
}

/* mail form pro */
.mfp_err {
    color: var(--keyColorA);
    margin-top: 8px;
}

div#mfp_hidden {
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0px;
    margin: 0px;
}

@media (min-width: 576px) and (max-width: 1328px) {
    .contact__table {
        border-spacing: 0 3.012vw;
        margin: 3.614vw auto 1.807vw;
        max-width: 60.241vw;
    }

    .contact__table span {
        margin-left: 0.904vw;
    }

    .contact__table th {
        padding-top: 1.506vw;
        width: 0.0vw;
    }

    input[type="email"] {
        font-size: 1.205vw;
        padding: 1.355vw 1.657vw;
    }

    textarea {
        height: 24.096vw;
    }

    input[type="email"]:focus {
        border: solid 0.075vw var(--keyColorA);
    }

    .contact__agree span::before {
        width: 1.506vw;
        height: 1.506vw;
        margin-right: 0.753vw;
        margin-bottom: 0.377vw;
    }

    .mfp_err {
        margin-top: 0.602vw;
    }

    div#mfp_hidden {
        width: 0.075vw;
        height: 0.075vw;
        padding: 0.0vw;
        margin: 0.0vw;
    }
}

@media (max-width: 575px) {
    .contact__table {
        border-spacing: 0 24px;
        margin: 0 auto 24px;
    }

    .contact__table th,
    .contact__table td {
        display: block;
    }

    .contact__table th {
        margin-bottom: 16px;
    }
}