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

a:hover{
    opacity: .7;
    transition: .5s;
}

/***画面全体にローディング画面を表示***/
#showloading {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}

#showloading img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#showloading > div {
    width: 100%;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    top: 50vh;
    transform: translateY(-50%);
    text-align: center;
}

#showloading > div div {
    display: flex;
    margin: 0 auto;
    width: 8em;

}

#showloading div span {
    animation: rotate 1.2s ease 0s infinite;
    display: block;
    width: 1em;
}

#showloading div span:nth-of-type(2) {
    animation: rotate 1.2s ease 0.2s infinite;
}

#showloading div span:nth-of-type(3) {
    animation: rotate 1.2s ease 0.4s infinite;
}

#showloading div span:nth-of-type(4) {
    animation: rotate 1.2s ease 0.6s infinite;
}

#showloading div span:nth-of-type(5) {
    animation: rotate 1.2s ease 0.8s infinite;
}

#showloading div span:nth-of-type(6) {
    animation: rotate 1.2s ease 1s infinite;
}

#showloading div span:nth-of-type(7) {
    animation: rotate 1.2s ease 1.2s infinite;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.hidden {
    display: none;
}

/***********************************/

.display_pc {
    display:block;
}

.display_sp {
    display:none;
}

html {
    width: 100%;
    font-size: 62.5%;
}

p{
    font-size: 1.8rem;
    line-height: 1.5em;
}

body {
    line-height: 24px;
    font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: #333;
    margin-top:8rem;
}

.site_wrap{
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
}

.min {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gosi {
    font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.center {
    text-align: center;
}

.w100 {
    width: 100%;
}

.page_top_area {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    width: 7rem;
    z-index: 999;
    transition: .5s;
}

.page_top_area:hover {
    transform: translateY(-8px);
    transition: .5s;
}

.page_top_area img {
    width: 100%;
}

h2{
    font-size: 2.4rem;
    text-align: center;
    width: 100%;
    margin-bottom: 6rem;
    position: relative;
}

h2::before{
    content: "";
    display: block;
    width: 43px;
    height: 35px;
    background-image: url(../img/common/puzzle_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
}

section{
    padding:8rem 0 6rem;
}

.big_comv_btn{
    display:block;
    width:48rem;
    border-radius: 50px;
    box-shadow: 0px 4px 2px #888;
    margin:0 auto;
}

.big_comv_btn a{
    border-radius: 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding:2rem 0;
    background: linear-gradient(90deg, #fc4242 0%, #ff9a37 100%);
    font-size: 22px;
}

.small_btn{
    width:90%;
    max-width: 24rem;
    border-radius: 50px;
    margin: 0 auto;
}

.small_btn a{
    width:100%;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1rem 0;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(90deg, #fc42a4 0%, #ff9a37 100%);
    position: relative;
    transition: .5s;
}

.small_btn a::before{
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: .5s;
}

.small_btn a:hover{
    letter-spacing: 1px;
    background: linear-gradient(-90deg, #fc42a4 0%, #ff9a37 100%);
    transition: .5s;
}

.small_btn a:hover::before{
    transform: translateY(-50%) rotate(315deg);
    transition: .5s;
}

.small_btn02{
    width:5.5rem;
    height: 5.5rem;
    border-radius: 100px;
    margin: 0 auto;
}

.small_btn02 a{
    width:100%;
    height: 100%;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 100px;
    color: #fff;
    background: linear-gradient(90deg, #fc42a4 0%, #ff9a37 100%);
    position: relative;
    transition: .5s;
}

.small_btn02 a::before{
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    left:50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    transition: .5s;
}

.small_btn02 a:hover{
    letter-spacing: 1px;
    background: linear-gradient(-90deg, #fc42a4 0%, #ff9a37 100%);
    transition: .5s;
}

.small_btn02 a:hover::before{
    transform: translate(-50%,-50%) rotate(315deg);
    transition: .5s;
}

    header {
        width: 100%;
        height: 8rem;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        box-shadow: 0 0 5px #aaa;
    }

    header nav {
        width: 100%;
    }

    header nav ul {
        display: flex;
        justify-content:space-between;
}

header nav ul li.home_logo{
        width: 23rem;
    padding-top: 1.2rem;
    padding-left: 1rem;
    }

header nav ul li.home_logo a{
    display: inline;
    width:100%;
    }

header nav ul li.home_logo a img{
    width:100%;
    }

    header nav ul li {
        font-size: 1.6rem;
        margin-right: 3rem;
        font-weight: bold;
        height: 8rem;
        box-sizing: border-box;
        line-height: 8rem;
    }

header nav ul li.puzzlegreen {
        background-image: url(../img/common/header_siryoubk.png);
    background-position: top;
    background-size:cover;
    background-repeat: no-repeat;
    width: 21rem;
    margin: 0;
    margin-right: -3.7rem;
    line-height: 1em;
    position: relative;
    }

header nav ul li.puzzlegreen::before{
    content: "";
    display: block;
    background-image: url(../img/common/header_siryouicon.png);
    background-position:center;
    background-size:contain;
    background-repeat: no-repeat;
    width: 4.5rem;
    height: 3.8rem;
    position:absolute;
    top:1.2rem;
    left: 50%;
    transform: translateX(-50%);
    }

header nav ul li.puzzleorange {
        background-image: url(../img/common/header_contactbk.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    width: 17rem;
    line-height: 1em;
    margin: 0;
    text-indent: 1.5em;
    position: relative;
    }

header nav ul li.puzzleorange::before{
    content: "";
    display: block;
    background-image: url(../img/common/header_contacticon.png);
    background-position:center;
    background-size:contain;
    background-repeat: no-repeat;
    width: 4.9rem;
    height: 3.9rem;
    position:absolute;
    top:1.2rem;
    left: 55%;
    transform: translateX(-50%);
    }

header nav ul li.puzzlegreen a,header nav ul li.puzzleorange a{
        padding-top: 5.8rem;
    }

header nav ul.nav_menu ul.menu_area{
        width: calc(100% - 57rem);
    display: flex;
    justify-content: flex-end;
    }

header nav ul.nav_menu ul.puzzle_bkarea{
        width:34rem;
    display: flex;
    justify-content: flex-end;
    }

    header nav ul.nav_menu ul li a {
        display: block;
        position: relative;
        height:auto;
        text-align: center;
    }

    header.fix > p {
        display: none;
    }

    header.fix nav ul.nav_menu > li {
        margin-top: 0;
        transition: all .5s;
    }

    header.fix nav .sub_nav {
        transform: translateY(-100%);
        transform-origin: top;
        transition: all .5s;
        z-index: -1;
        display: none;
    }

.contact_area{
    background-image: url(../img/common/conv_bk.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact_area .site_wrap{
    background:#fff;
    margin: 4rem auto;
    padding: 4rem 0;
}

.contact_area h2{
    display: flex;
    align-items: center;
    width: 71rem;
    margin: 0 auto 4rem;
}

.contact_area h2::before{
    display: none;
}

.contact_area h2 p{
    width: 30rem;
    margin-right: 1rem;
    font-weight: bold;
}

.contact_area h2 p img{
    width:100%;
}

.contact_area h2 span{
    font-size: 3.2rem;
    margin-left: .7rem;
}

.contact_area .btn_area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    max-width: 72rem;
    margin: 0 auto;
}

.contact_area .small_btn {
    width: 100%;
    max-width: 30rem;
    border-radius: 50px;
    margin: 0 auto;
}

.icon_area .icon_area_fle{
    display: flex;
    flex-wrap: wrap;
}

.icon_area .icon_area_fle li{
    width: 28%;
    margin-right: 8%;
    margin-bottom: 2rem;
}

.icon_area .icon_area_fle li:nth-of-type(3n){
    margin-right:0;
}

.icon_area .icon_area_fle li:nth-of-type(7){
    margin-bottom:0;
}

.icon_area .icon_area_fle li:nth-of-type(8){
    margin-bottom:0;
}

.icon_area .icon_area_fle li:nth-of-type(9){
    margin-bottom:0;
}

.icon_area .icon_area_fle li a{
    width: 100%;
    display:flex;
}

.icon_area .icon_area_fle li a .icon_img{
    width:6.4rem;
    height: 6.4rem;
}

.icon_area .icon_area_fle li a .icon_img img{
    width:100%;
}

.icon_area .icon_area_fle li a .solution_title{
    width:calc(100% - 6.4rem);
    padding-left: 1rem;
    box-sizing: border-box;
}

.icon_area .icon_area_fle li a .solution_title .small_title{
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}

.icon_area .icon_area_fle li a .solution_title .normal_title{
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.footer_color_line{
    width: 100%;
    height: 4px;
    border-image: url(../img/top/line_bk01.png) 4 / 2px / 0px round;
}

.icon_area .icon_area_fle li a:hover .icon_img{
    border-radius: 100px;
    overflow: hidden;
    transition: .5s;
}

footer{
    font-size: 1.8rem;
}

footer .footer_top{
    padding: 4rem 0 2rem;
    display: flex;
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
}

footer .footer_top_left{
    width: 100%;
    max-width: 30rem;
}

footer .footer_top_left .catch{
    font-weight: bold;
    margin-bottom: 1rem;
}

footer .footer_top_left .footer_logo{
    width: 80%;
}

footer .footer_top_left .footer_logo a{
    width: 100%;
    display: block;
}

footer .footer_top_left .footer_logo a img{
    width: 100%;
}

footer .footer_top_right{
    width:calc(100% - 30rem);
}

footer .footer_top_right .nav_area{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

footer .footer_top_right .nav_area li{
    display: inline-block;
    margin-right: 4rem;
    font-weight: bold;
}

footer .footer_top_right .nav_area li:last-of-type{
    margin-right:0;
}

footer .footer_top_right .nav_area li a{
    display:block;
    width: 100%;
}

footer .solution_link{
    width: 100%;
    margin-bottom: 2rem;
    font-weight: bold;
}

footer .solution_link a{
    display: inline-block;
}

footer .footer_top_fle{
    display: flex;
    flex-wrap: wrap;
}

footer .footer_top_fle > ul{
    width: calc(100% / 3);
    font-weight: bold;
    padding-right: 1rem;
    box-sizing: border-box;
}

footer .footer_top_fle > ul:last-of-type{
    padding-right:0;
}

footer .footer_top_fle > ul li{
    margin-bottom: 1rem;
}

footer .footer_top_fle > ul > ul{
    padding-left: 1em;
    box-sizing: border-box;
}

footer .footer_top_fle ul.fle_right li img{
    width: 100%;
}

footer .footer_middle{
    width: 100%;
    padding: .8rem 0;
    background: #333;
}

footer .footer_middle ul{
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer_middle ul li{
    display: inline-block;
    margin-right: 2rem;
}

footer .footer_middle ul li:last-of-type{
    margin-right:0;
}

footer .footer_middle ul li a{
    display: block;
    color: #fff;
}

footer .footer_bottom .copy{
    text-align: center;
    font-size: 1.4rem;
    padding:.5rem 0;
}













@media screen and (max-width: 768px) {

    .page_top_area {
    right: 0;
    bottom: 4rem;
}
    
    .bottom_menu{
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width:100%;
        z-index: 999;
    }
    
    .bottom_menu li{
        width: 50%;
        background: linear-gradient(90deg, #fc4242 0%, #ff9a37 100%);
    }
    
    .bottom_menu li a{
        display: block;
        text-align: center;
        width: 100%;
        font-size: 1.6rem;
        padding: 10px 0;
        color: #fff;
        font-weight: bold;
    }
    
    .display_pc {
    display:none;
}

.display_sp {
    display:block;
}
    
    body {
        margin-top: 0;
        overflow-x: hidden;
    }

    header {
        display: flex;
        justify-content: flex-end;
        height: 6rem;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0);
        box-shadow: none;
    }

    header nav {
        position: fixed;
        top: 0;
        left:-100%;
        background-color: rgba(255, 255, 255, .95);
        width: 100%;
        transition: all .5s;
        height: 100vh;
        padding: 2rem 2rem 0;
    box-sizing: border-box;
        opacity:0;
        overflow-y: scroll;
        z-index: 99999;
    }

    nav.move {
        left: 0;
        transition: all .5s;
        opacity: 1;
    }

    header nav ul {
        font-size: 1.6rem;
        width: 100%;
        display: block;
    }

    header nav ul li.home_logo {
    width: 24rem;
        padding-top: 0;
        padding-left: 0;
        margin: 0;
        border: none;
        margin-top: 2rem;
        margin-bottom: 1rem;
}
    
    header nav ul li.home_logo a {
    padding: 0;
}
    
    header nav ul.nav_menu ul.menu_area {
    width: 100%;
    display: block;
        margin-bottom: 3rem;
}
    
   header nav ul li {
    font-size: 1.6rem;
    margin-right: 0;
    font-weight: bold;
    height: auto;
       padding:0 1em;
    box-sizing: border-box;
    line-height: 1.5em;
} 
  
header nav section.icon_area{
       padding:0;
}
    
 header nav .icon_area_fle li {
       padding:0;
}   
  
    header nav .icon_area .icon_area_fle li a .solution_title .small_title {
    font-size: 1.6rem;
}
    
header nav .icon_area .icon_area_fle li a .solution_title .normal_title {
    font-size: 1.8rem;
}
    
    header nav ul.nav_menu ul li a {
    text-align: left;
}
    
    header nav ul li.puzzlegreen,header nav ul li.puzzleorange {
        background-image: none;
    line-height: 1.5em;
    position: relative;
    display: block;
    width: 100%;
    border-radius: 100px;
    box-shadow: 0px 4px 2px #888;
    margin: 0;
        margin-bottom: 2rem;
        padding: 0;
}
    
    header nav ul li.puzzlegreen::before,header nav ul li.puzzleorange::before {
    content: "";
        display: block;
        background-image: url(../img/common/header_siryouicon.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 2.5rem;
        height: 3.8rem;
        position: absolute;
        top: 50%;
        left: 9rem;
        transform: translate(0, -50%);
        z-index: 99;
}
    
    header nav ul li.puzzleorange::before {
        background-image: url(../img/common/header_contacticon.png);
}
    
   header nav ul.nav_menu ul li.puzzlegreen a,header nav ul.nav_menu ul li.puzzleorange a{
    border-radius: 100px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 1rem 0;
    background: linear-gradient(90deg, #fc4242 0%, #ff9a37 100%);
    font-size: 18px;
} 
    
    
    
    
    
    
    nav ul li {
        border-bottom: 1px #300 solid;
        color: #300;
    }

    nav ul ul li:last-of-type {
        margin: 0;
        margin-bottom: 2rem;
    }

    header nav ul.nav_menu ul.puzzle_bkarea {
    width: 100%;
    display: block;
}
    
    nav ul li a {
        padding: 1.4rem 0;
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .humb {
        width: 8rem;
        height: 8rem;
        display: block;
        position: fixed;
        z-index: 999999999;
    }

    .humb p {
        text-align: center;
        font-size: 1.4rem;
    }

    .humb span {
        width: 55%;
        height: .3rem;
        background-color: #300;
        display: block;
        margin: 0 auto;
    }

    .humb span:nth-child(1) {
        margin-top: 2rem;
        transition: all .2s;
    }

    .humb span:nth-child(2) {
        margin-top: 1.1rem;
    }

    .humb span:nth-child(3) {
        margin-top: 1.1rem;
        margin-bottom: .2rem;
        transition: all .2s;
    }

    .humb.move span:nth-child(1) {
        transform-origin: left;
        transform: rotate(40deg);
        transition: all .2s;
    }

    .humb.move span:nth-child(2) {
        opacity: 0;
    }

    .humb.move span:nth-child(3) {
        transform-origin: left;
        transform: rotate(-40deg);
        transition: all .2s;
    }

    .humb.move p {
        opacity: 0;
    }
    
 footer .footer_top {
    flex-wrap: wrap;
        width: 95%;
     padding: 2rem 0;
}   
    
 footer .footer_top_right {
    width: 100%;
}   

footer .footer_top_left {
    max-width: unset;
}
    
  footer .footer_top_left .footer_logo {
    width: 20rem;
    margin: 0 auto 1rem;
}  
    
footer .footer_top_left .catch {
    margin-bottom: 0;
    text-align: center;
}   
    
 footer .footer_top_fle > ul {
    width: 100%;
        padding-right: 0;
        display: flex;
        flex-wrap: wrap;
}   
    
 footer .footer_top_right .nav_area li {
    display: block;
    width: 48%;
    margin-right: 2%;
     margin-bottom: 1rem;
}
   
footer .footer_top_right .nav_area li:nth-of-type(2n){
    margin-right:0;
}
    
footer .footer_top_fle > ul li {
    margin-bottom: 1rem;
    width: 48%;
    margin-right: 2%;
    font-size: 1.6rem;
    border-left: 4px solid #fc42a4;
    padding-left: 1rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}    
 
footer .footer_top_fle > ul.fle_center li {
        border-left: 4px solid #ff9a37;
    }
    
 footer .footer_top_fle > ul li:nth-of-type(2n){
    margin-right:0;
}    
  
footer .footer_top_fle > ul.fle_center > li{
        font-size: 1.8rem;
        border-left:none;
    margin-bottom: 2rem;
    padding-left: 0;
    }
    
 footer .footer_top_fle > ul.fle_center {
        margin-top: 2rem;
    }  
    
footer .footer_top_fle > ul > ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}    
    
 footer .footer_top_fle > ul.fle_right {
       display: block;
     margin-top: 2rem;
    }   
    
   footer .footer_top_fle > ul.fle_right li{
     margin-top: 1rem;
       width: 100%;
       border: none;
       padding-left: 0;
    }   
    
  footer .footer_top_fle > ul.fle_right li a{
       width: 100%;
    }   
    
footer .footer_middle ul {
    justify-content: unset;
    width: 95%;
}
    
    
    
    
    
  .site_wrap {
    width: 95%;
}  
    
 section {
    padding: 7rem 0 2rem;
}   
    
.icon_area .icon_area_fle li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
}    
    
 section.icon_area {
        padding: 2rem 0;
    }   
    
    .icon_area .icon_area_fle li:nth-of-type(7) {
    margin-bottom: 2rem;
}
 
    .icon_area .icon_area_fle li:nth-of-type(8) {
   margin-bottom: 2rem;
}
    
    .icon_area .icon_area_fle li:nth-of-type(9) {
    margin-bottom: 2rem;
}
    
 section.contact_area {
        padding: 1rem 0 1rem;
    }
    
 .contact_area h2 {
    width: 100%;
     flex-wrap: wrap;
     margin-bottom: 2rem;
}   
    
 .contact_area .site_wrap {
    margin: 3rem auto;
    padding: 3rem 2rem;
    box-sizing: border-box;
}
    
  .contact_area h2 p {
    width: 24rem;
}  
    
 .contact_area h2 span {
    font-size: 2.4rem;
    margin-left: .7rem;
}   
    
 .contact_area .btn_area {
    width: 100%;
}   
    
 .contact_area .small_btn {
    width: 100%;
    max-width: unset;
    margin: 0 auto 2rem;
}   
    
.contact_area .small_btn:last-of-type {
    margin-bottom: 0;
}   
    
 footer .footer_bottom .copy {
    padding: 0.5rem 0 8rem;
}   
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
