@charset "UTF-8";

/*----------------------------------------------------------------------------------------------------------------------------------
　 　reset等
----------------------------------------------------------------------------------------------------------------------------------*/
*{
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	word-wrap:break-word;
    margin: 0;
    padding: 0;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
}
body {line-height:1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	cursor: pointer;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through;}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
/*--------------------------------------------------------------------------------------------------------------------------
　　基本スタイル
--------------------------------------------------------------------------------------------------------------------------*/
html {height: 100%;}
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior: none;
    -ms-overscroll-behavior: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: source-han-sans-jp-variable, sans-serif;
    font-style: normal;
    font-variation-settings: 'wght' 400;
    font-size: 16px;
    color: #504534;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
vertical-align: bottom;
}
ul,ol{letter-spacing: -0.5em;
}
li {
	list-style:none;
	letter-spacing: normal;
}

a {
  color: #C4962E;
  text-decoration: none;
  outline: none;
  transition : 0.5s;
}

p {
    line-height: 2em;
}

@media print, screen and (min-width:1500px) {
    
body {
    font-size: 18px;
}


}

/*--------------------------------------------------------------------------------------------------------------------------
　　共通
--------------------------------------------------------------------------------------------------------------------------*/

.wrapper_add {
    width: 100%;
	min-height: 100vh;
    position: relative;
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bold{font-weight: bold;}

.a_center{text-align: center;}
.a_left{text-align: left;}
.a_right{text-align:right;}
.relative{position: relative;}

span.br { display: inline-block;}

.font_min{
    font-family: source-han-serif-japanese, serif;
    font-style: normal;
    font-weight: 200;
    letter-spacing: 0.016em;
}

/*--------------------------------------------------------------------------------------------------------------------------
　　header
--------------------------------------------------------------------------------------------------------------------------*/

.header_menu{
	position: fixed;
	top:0;
	right: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	z-index: 10000;
	padding: 0.94em 1em;
    text-align: center;
}

.header_menu .menu_item{
	display: inline-block;
	color: #954D23;
}
.menu_item:first-child,
.menu_item:nth-child(2){ margin-bottom: 0.81em;}

.menu_item:last-child{ padding-right: 10%;}

.header_menu i{font-size: 30px;}
.header_menu span{
	display: block;
	font-size: 6px;
}

/*--------------------------------------------------------------------------------------------------------------------------
　　footer
--------------------------------------------------------------------------------------------------------------------------*/

.footer_outline{
    background-color: #182F13;
	color: #696969;
	font-size: 87.5%;
    position: relative;
    z-index: 10;
}
.footer_outline a{ color: #FFECC3;}
.footer_inner{
	justify-content: space-between;
	align-items: center;
	padding: 15px;
}
.flogo {
    margin: 20px auto 0;
}
.flogo img {
    max-width: 120px;
}
.footer_list li{display: inline-block;}
.footer_list li:first-child{margin-right: 2em;}

.copy { color: #FFECC3; text-align: right; margin-bottom: 5px;}

/* テスト用 */
.layout-poweredIcon {
    height: auto;
    width: 44px;
}

@media print, screen and (max-width:550px) {
    
    .footer_inner{
        display: block;
        padding: 20px 0 15px;
    }

    .footer_list { text-align: center; margin: auto;}
    
    .footer_outline a {
        font-size: 88%;
    }

    .footer_copy {
        width: 90%;
        margin: 10px auto 0;
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copy { text-align: center; margin-bottom: 0;}

    .footer_bottom {
        margin-top: 10px;
        font-size: 88%;
    }

    .footer_bottom a {
        display: block;
        margin: auto;
        text-align: center;
        
    }

}