@charset "UTF-8";
/*
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img{max-width: 100%;
    vertical-align: bottom;}

/* iphone リセット*/
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, select, textarea{
    border: none;
    outline: none;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --main_color: #e7b7b0;
    --sub_color: #eb8c8d;
    --main_textColor: #191919;
}

/********* base *********/

html{font-size: 62.5%; /* sets the base font to 10px for easier math */}

body{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #4C3F3F;
    font-weight: 400;
    position: relative;
}

a {
    text-decoration: none;
    color: #323232;
}

.pc_mov{display: block!important;}
.sp{display: none!important;}
.mov{display: none!important;}

strong {font-weight: 700;}

.df{display: flex;}

@font-face {
	font-family: 'Garamond Narrow';
	src: url(../font/garamond.woff) format('woff'); 
	src: url(../font/garamond.TTF) format('truetype'); 
}

@media screen and (max-width: 1024px){
	.pc{display: none!important;}    
    .mov{display: block!important;}
}

@media screen and (max-width: 770px){
    body{
        font-size: 16px;
        font-size: 1.6rem;  
        line-height: 1.6;   
    }    
    body, table, input, textarea, select, option{
        letter-spacing: 1px;         
        }
    h1, h2, h3, h4, h5, h6{
        letter-spacing: 3px;      
    }
    img{
        width: 100%;
        vertical-align: bottom;
        }
	.sp{display: block!important;}
    .mov{display: none!important;}
    .pc_mov{display: none!important;}
} 

