@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. Basic Style Setting
 *  - font style
 *  - anker style
 *  - use frequently class tag style
 *  - loading animation style
 */
/* 1. Basic Style Setting
========================================================================== */
/* ------------ font style */
html {
    font-size: 62.5%; /* 62.5%を指定すると「1.0 rem = 10px」 */
}

body {
    line-height: 1;
    font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    width: 100%;
}

/* ------------ anker style */

a {
    transition: .11s;
    text-decoration: none;
    cursor: pointer;
}

a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
    outline: none;
}

/* ------------ use frequently class tag style */
.clearfix {
    clear: both;
}

.defs {
    display: none;
}

/* ------------ loading animarion style */
#loading {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, rgba(186,167,204,1) 0%, rgba(248,240,255,1) 100%);
    transition: all ease-in-out .6s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#loading svg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #890037;
}

.loaded {
    opacity: 0;
    visibility: hidden;
}
