html {
    font-size: 62.5%;
}
body {
    margin: 0 auto;
    color: #88755a;
    font-family:“メイリオ“, Meiryo,“Hiragino Kaku Gothic Pro”, sans-serif;
    letter-spacing: 0.5px;
    background-image: url(../images/bg-w.jpg);
    
  }
/* ヘッダーが上に上がる */
#header_move.header_up{
    animation: header_up_anime 0.5s forwards;
}
@keyframes header_up_anime{
    from{
        opacity:1;
        transform: translateY(0);
    }
    to{
        opacity:0;
        transform: translateY(-100px);
    }
}
/* ヘッダーが下に下がる */
#header_move.header_down{
    animation: header_down_anime 0.5s forwards;
}
@keyframes header_down_anime{
    from{
        opacity:0;
        transform: translateY(-100px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}

#header {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    font-size: 1.6rem;
    font-family: 'Josefin Sans', sans-serif;
}
#header .header_left h2 {
    font-size: 2.1rem;
    letter-spacing: .15rem;
}
#header .header_left h1{
    font-size: 1.4rem;
}
.burger_open {
    display: none;
}
.burger_menu {
    display: none;
}
.header_menu, .footer_menu {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
.header_menu {
    position: fixed;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 1100px;
    left:0;
    right:0;
    margin-right:auto;
    margin-left:auto;
    z-index: 10;
}
.header_right, .footer_right {
    display: flex;
    width: 340px;
    justify-content: space-between;
    margin-top: 20px;
}
.header_right a:hover {
    color:#f79a37;
    transition: 0.3s;
}
.header_right {
    position: relative;
}
.header_right li ul {
    display: block;
}
.header_right li.has_child ul {
    position: absolute;
    left: 80px;
    top: 20px;
    padding: 15px 0;
    z-index: 4;
    width: 120px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    font-size: 1.6rem;
    line-height: 2;
}
.header_right li.has_child ul li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 14px;
    background: url(../images/orange_dot.png) no-repeat;
    vertical-align: middle;
    background-size: contain;
    margin-right: 7px;
}
.header_right li.has_child:hover ul {
    visibility: visible;
    opacity: 1;

}
.front_header {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.header_message {
    padding: 100px 0 40px 80px;
    font-family: 'Yomogi', cursive;
    font-size: 3.8rem;
    line-height: 1.5;
}
.sign {
    margin-left:300px;
    margin-bottom: 150px;
    font-size: 1.0rem;

}
.sign p:last-child {
    font-family: 'Amatic SC', cursive;
    font-size: 4.0rem;
    letter-spacing: 0.2rem;
    text-indent: 0.5rem;

}
.header_image img {
    position: absolute;
    top: 160px;
    right: 3%;
    transform: rotate(1deg);
    z-index: 1;
}

.header_suisai_green {
    position: absolute;
    top: -200px;
    right: 55%;
    opacity: 0.2;
    width: 300px;
}
.header_suisai_green img{
    width: 120%;
}
.header_suisai_orange {
    position: absolute;
    top: 200px;
    left: -270px;
    opacity: 0.4;
    width: 300px;
    z-index: -10;
}
.header_suisai_orange img{
    width: 100%;
}
.main_message {
    background-color: #DEF3D9;
    padding: 80px;
    margin-right: 200px;
    position: relative;
    animation-name: fadeSideAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
    }
    @keyframes fadeSideAnime{
    from{
        opacity:0;
        transform: translateX(-150px);
    }
    to{
        opacity:1;
        transform: translateX(0);
    }
}
.main_message p{
    max-width: 1100px;
    margin: 0 auto;
    line-height: 2;
    padding-left: 120px;
    font-size: 1.8rem;
}

.second_message {
    padding: 80px;
}
.second_message p:first-child {
    font-family: 'Yomogi', cursive;
    font-size: 2.4rem;
}
.second_message p{
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 30px;
    line-height: 2;
    font-size: 1.6rem;
    text-align: justify;
}
#article_works, #article_skill {
    background-color: #DEF3D9;
    position: relative;
    padding-bottom: 130px;
}
.fadeUpTrigger {
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
    from{
        opacity:0;
        transform: translateY(100px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}
.article_title_g {
    padding-top: 40px;
    background-color: #DEF3D9;
    width:350px;
    height: 175px;
    margin: 0 auto;
    border-radius: 200px 200px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    top: -55px;
    font-size: 1.6rem;
}
h3 {
    width:200px;
    margin: 10px auto; 
    border-bottom:#938064 2px dotted;
    font-family: 'Amatic SC', cursive;
    font-size: 5.3rem;
    text-align: center;
    padding-bottom: 7px;
}
h4 {
    text-align: center;
}

.works_contents, .service_contents, .about_contents {
    max-width: 1100px;
    margin: 0 auto;
    padding: 130px 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.works_contents {
    font-size: 1.6rem;
}
.works_contents li {
    margin: 40px 10px;
    width: 320px;
}
.works_contents .image_box {
    width:320px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
.image_box img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0;
    transition: all 0.5s;
}
.works_contents li img:hover {
    transform: scale(1.1);
}
.viewmore {
    width: 120px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    font-size: 1.4rem;
}
.viewmore p:last-child {
    width: 110px;
    height: 10px;
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: skew(45deg);
    position: absolute;
    left :10px;
    transition: .3s;
}
.viewmore:hover p:last-child {
    left: 20px;
    width: 130px;
}
#services, #about_t {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 100px;

}
#services, .article_title {
     background-image: url(../images/bg-w.jpg);
}

.service_arrow {
    position: relative;
    font-size: 1.6rem;
}
/* .service_arrow p:first-child {
    color: rgba(0, 19, 225, 0.889);
} */
.service_arrow:hover p:first-child ,.viewmore:hover p:first-child {
    color:#f79a37;
    transition: .3s;
}
.service_arrow p:last-child {
    width: 110px;
    height: 10px;
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: skew(45deg);
    position: absolute;
    left :100px;
    transition: .3s;
}
.service_arrow:hover p:last-child {
    left:110px;
    width: 130px;
}
.service_bgimg {
    background: url(../images/frame-c.png) no-repeat;
    width: 263px;
    height: 185px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
   

}
.service_bgimg p {
    font-size: 1.8rem;
    letter-spacing: normal;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
   
}
.service_contents_list {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-left: 27px;
    list-style-type: disc;
}
.other {
    text-align: right;
    font-size: 1.4rem;
}
.phone_br {
    display: none;
}
.skill_contents {
    padding: 130px 20px 0;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.skill_contents_list {
    display: flex;
    margin-top:20px;
    margin-bottom: 20px;
}
.skill_icon {
    width: 80px;
}
.skill_icon img{
    width: 60%;
}
.skill_icon_two img {
    width: 65%;
}
.skill_description {
    max-width: 300px;
    font-size: 1.2rem;
    margin-left: 10px;
    line-height: 1.4;
}
.skill_description h5 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 550;
}
.about_contents img {
    width: 150px;
    margin-top: 50px;
    margin-left: 20px;
}
.about_contents p {
    max-width: 650px;
    line-height: 2;
    font-size: 1.6rem;
    text-align: justify;
}
.about_contents {
    justify-content: space-around;
}
.article_contact {
    background-color: #DEF3D9;
    padding-top: 40px;
    padding-bottom: 90px;
    text-align: center;
    font-size: 1.6rem;
}
.article_contact p{
    margin: 45px 10px;
    line-height: 2;
}
.article_contact button {
    padding: 20px 50px;
    background-color: white;
    border-radius: 50px;
    display: inline-block;
}
.article_contact button:hover {
    background-color:rgb(255, 220, 177);
    transition: all 0.2s;
}
#page_top {
    position: fixed;
    right: 50px;
    transform: tranlateY(120px);
}
#page_top img {
    width: 50px;
}
#page_top.UpMove{
    animation: UpAnime 0.5s forwords;
}
@keyframes UpAnime {
    from{
        transform: translateY(120px);
    }
    to{
        transform: translateY(0);
    }
}

#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(120px);
    }
}


#footer {
    position: relative;
}
.footer_line {
    background-color: #857a6b;
    height: 100px;
    border-top-left-radius: 2600px 250px;
    border-top-right-radius: 2600px 250px;
    padding-left: 100px;
    padding-right: 100px;
    margin-left: -200px;
    margin-right: -200px;
}
.footer_line_wrap {
    overflow: hidden;
    background-color:#DEF3D9;
}
.footer_contents {
    background-color: #857a6b;
    color: white;
    position: absolute;
    width: 100%;
    top: 40px;
    padding-bottom: 10px;
}
.footer_menu {
    max-width: 1100px;
    margin: 0 auto;
}
.footer_left p:first-child {
    font-size: 1.8rem;
    font-family:Georgia, 'Times New Roman', Times, serif
}
.footer_left p:last-child {
    font-size: 1.2rem;
}
.footer_right {
    margin-top: 10px;
    font-size: 1.6rem;
}
.footer_menu_sub ul{
    display: flex;
    max-width: 1100px;
    margin: 0px auto;
    justify-content: flex-end;
    padding: 10px 30px;
    font-size: 12px;
}
.footer_menu_sub li {
    margin-left: 20px;
}
.copyright {
    text-align: center;
    margin-top: 60px;
}
.copyright small {
    font-size: 1.2rem;
}

