/* for WIX_to_HTML               */
/* 2023.05.23 h.tabira/ISHIMARU  */
/* release1                      */

/* 使用フォント
font-family: 'Klee One', cursive;
font-family: 'Sawarabi Gothic', sans-serif;
font-family: 'Zen Antique Soft', serif;
*/

/* 全体の指定 */
body{
    margin: 0;
    padding: 0;
}
body {
	animation: fadein 1s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
* img{
  max-width: 100%;
}
header,main{
    width: 1000px;
    margin: auto;
}
.header_box{
    display: flex;
    justify-content: space-between;
    width: 900px;
    margin: auto auto;    
}
.header_left{
    display: flex;
}
.header_left p{
    font-size: 1.6em;
    font-family: 'Zen Antique Soft', serif;
    
  color: red;
  background: -webkit-linear-gradient(-90deg, #84685C, #98827A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    
    margin: 0;
    padding: 0 5px;
    line-height: 3em;
}
.header_left img{
    width: 180px;
    max-width: 100%;
}
.header_right{

}
.header_right ul{
    display: flex;
    margin: 2.5em 0;
    list-style: none;
    padding-left: 0;
}
.header_right ul li{
    padding: 0 .6em;
    background-color: #E68B05;    
}
.header_right ul li a{
    text-decoration: none;
    color: #666;
}
.header_right ul li.active a{
    color: black!important;
}
.header_right ul li a:hover{
    color: black;
    transition: .5s;
}
.header_right ul li:first-child{
    border-radius: 10px 0px 0px 10px;
}
.header_right ul li:last-child{
    border-radius: 0px 10px 10px 0px;
}

footer{
    width: 100%;
    background-color: #E68B05;
    margin: 0;
    padding: 0;
}
.footer_box{
    width: 1000px;
    margin: auto;
}
footer p{
    margin: 0;
    padding: 2em;
    color: white;
    font-size: 1.1em;
}
@media screen and (max-width: 700px) {
    header,main{
    width: 100%;
    margin: auto;
}
.header_box{
    display: block;
    justify-content: center;
    width: 100%;
    margin: auto auto;    
}
.header_left{
    text-align: center;
    display: block;
}
.header_left{
    font-size: 1.4em;    
}
    .header_left p{
        margin: 10px;
        
    }
.header_left p img{
    width: 50%;
    }
.header_right{
    display: none;
}
.footer_box{
    width: 100%;
}
    main{
        font-size: 85%;
    }
}
h3{
    color: #c55a11;
    font-family: 'Sawarabi Gothic', sans-serif;
    font-weight: normal;
    font-size: 1.6em;
    border-left: solid 10px #c55a11;
    letter-spacing:.4em;
    padding-left: .5em;
}
.separator{
    height: 12px;
    width: 100%;
    background-image: url(../common/border_slash.png);
    background-repeat: repeat-x;
    padding: 0;
    margin: 0;
}