@charset "utf-8";
/* CSS Document */

.sm-only{
    display: none;
}

a{
    color: #333;
}

#wpadminbar{
    display: none;
}

/*======================
ヘッダーのCSS
======================*/

.happyhelper-header_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 5px #9d9d9d;
    top: 0;
    z-index: 999;
}
.happyhelper-header-nav_box ul{
    display: flex;
    justify-content: space-between;
    margin-right: 40px;
}
.happyhelper-header-nav_box{
    max-width: 1000px;
    width: 100%;
}
.happyhelper-header-logo_box a img{
    display: block;
    width: 50%;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.happyhelper-header-nav_box ul li a{
    display: inline-block;
    font-size: 18px;
    color: #6e5751;
    letter-spacing: 1.2px;
}
.happyhelper-index_contents{
    padding-top: 100px;
}




.happyhelper-first-view_contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.happyhelper-first-view_img-box{
    width: 55%;
}
.happyhelper-first-view_img-box .visual-img{
    display: block;
    position: absolute;
    z-index: 1;
    width: 35%;
}
.happyhelper-first-view_img-box .visual-color-img{
    display: block;
    width: 100%;
    position: absolute;
    width: 46%;
    animation: rotate 10s linear infinite; /* 2秒で1回転、線形、無限に */
    right: 285px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#happyhelper-greeting_area{
    display: block;
    padding-top: 600px;
}
.catch-text img{
    display: block;
    width: 60%;
}
.catch-imgtext{
    display: block;
    width: 22%;
    position: absolute;
    left: 400px;
    top: 260px;
    z-index: 3;
}
.happyhelper-name_box{
    position: absolute;
    top: 530px;
    left: 300px;
}








/*======================
リセットCSS
======================*/
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;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
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;
    text-decoration: none;
}
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#fff;
    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;
}
input, select {
    vertical-align:middle;
}