@charset "UTF-8";

/*
 * This file is part of Tempurasin Official Site
 *
 * Copyright(c) 2023 Kotobuki co.,ltd. All rights reserved.
 *
 * https://kotobuki-ltd.co.jp/
 *
 *
 * 1. Common Color Setting
 *  - html color
 *  - body color
 *  - anker color
 *  - svg color
 *  - form color
 *  - button color
 * 2. Original Parts Color Setting
 */
/* 1. Common Color Setting
========================================================================== */
/* ------------ html color */
html {
    background: #fafafa;
}

/* ------------ body color */
body {
    background: inherit;
    color: #454545;
}

/* ------------ anker color */
a {
    color: #454545;
}

a:hover, a:focus, a:active {
    color: #890037;
}

/* ------------ svg color */
a svg {
    fill: #454545;
}

a:hover svg {
    fill: #890037;
}

/* ------------ form color */
.ec-input input {
    color: #0f1111;
    border-color: #cfcdc9;
}

.ec-input input::placeholder {
    color: #cfcdc9;
}

.ec-input input:focus {
    border-color: #007185;
}

/* ------------ button color */
.ec-input button {
    background: #f8c1b8;
    border-color: #cfcdc9;
}

.ec-input input:focus + button {
    border-color: #007185;
}

/* 2. Original Parts Color Setting
========================================================================== */

