@charset "utf-8";


@import url("common_sp.css") only screen and (max-width: 736px);
@import url("common_pc.css") only screen and (min-width: 737px);


/* ==========================================================================
 全ページ共通
   ========================================================================== */
:root {
    --bg-color: #EEECE2;    
    --text-color: #333333; 
    --accent-color: #8c8c8c;
    --footer-bg: #333333;
    --font-serif: "Josefin Sans", sans-serif;
    --font-jp: "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-jp);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

html {
	font-size: 62.5%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}



