body {
    font-family: "kosugi-maru", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.top_about {
    width: 100%;

}


main {
    /*
    width: 100%;
    height: 100%;
    background-image: url(../img/about_bk.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;*/

}

.pc_display {
    display: block;
}

.sp_display {
    display: none;
}

header {
    display: block;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.header_list_pc {
    display: flex;
    position: absolute;
    right: 0;
    padding-right: 0px;
    margin-right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.header_list_pc a:nth-of-type(1) {
    margin-right: 80px;
    padding-top: 5px;
}

.header_list_pc a:nth-of-type(2) {
    margin-right: 80px;
    padding-top: 5px;
}


.header_list_pc a:nth-of-type(3) {
    padding: 5px 30px;
    border: #fff 1px solid;
    border-radius: 10px;
    margin-right: 0;
}

.top-icon {
    position: absolute;
    top: 30px;
    left: 50px;
}

.top-icon img {
    width: 120px;
}

.sp_display_1024{
    display: none;
 }
 
 .pc_display_about{
     display: block;
 }

.about_top {
    width: 100%;
    height: 30.0rem;
    position: relative;
    overflow: hidden;
}

.about_top::after {
    content: "";
    background-image: url(../img/about_top01.jpg);
    background-position: right 80%;
    background-repeat: no-repeat;
    background-size: 120%;
    display: block;
    width: 100%;
    height: 30.0rem;
    position: absolute;
    top: 0;
    left: 0;

}

.about_toptx {
    text-align: left;
    z-index: 10;
    width: 100%;
    height: 200px;
}

.about_toptx::after {
    content: "";
    display: block;
    width: 900px;
    height: 900px;
    background-color: #DCA457;
    border-radius: 999px;
    position: relative;
    top: -700px;
    left: -80px;
    overflow: hidden;
}


.about_toptx p {
    color: #fff;
    position: absolute;
    top: 200px;
    left: 200px;
    z-index: 10;
}

@media only screen and (max-width: 1024px) {
.sp_display_1024{
   display: block;
}

.pc_display_about{
    display: none;
}

.about_toptx::after {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    background-color: #DCA457;
    border-radius: 0 0 300px 300px;
    position: relative;
    top: 0px;
    left: 0px;

}



.about_toptx {
    text-align: left;
    z-index: 10;
    width: 100%;
    height:400px;
}

.about_toptx p {
    color: #fff;
    position: absolute;
    top: 150px;
    left: 20%;
    z-index: 10;
}

}

@media only screen and (max-width: 900px) {
    .pc_display {
        display: none;
    }
    
    .sp_display {
        display:block;
    }
    
    .hamburger_menu {
        list-style: none;
        position: absolute;
        width: auto;
        height: auto;
        top: 0;
        right: 0;
        margin-top: 0px;
        padding: 0 50px 100px 100px;
        clear: both;
        background-color: #fff;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
        transform: scale(1, 0);
        transform-origin: top;
        text-align:left ;
    }

.top_menu{
    margin-top: 100px;

   
}

    .hamburger_menu li{
        margin-top: 50px;
       
    }

    .hamburger_menu a{
        text-decoration: none;
        text-transform: capitalize;
       opacity: 0;
       transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
       position: relative;
    }

    .hamburger_menu a::before{
      content: "";
      width: 8px;
      height: 8px;
      background-color: rgba(0, 0, 0, 0);
      border-top: #333 1px solid;
      border-right: #333 1px solid;
      display: block;
      position: absolute;
      top: 8px;
     
      left: -30px;
      transform: rotate(45deg);
      
    }

    .menu-btn:checked~.hamburger_menu {
        transform: scale(1, 1);
        transform-origin: top;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }

    .menu-btn:checked~.hamburger_menu a {
   opacity: 1;
       
    }

    .menu-btn {
        display: none;
       
       
    }

    .menu-icon {
        display: inline-block;
        position: relative;
        cursor: pointer;
        padding: 35px 30px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        z-index: 100;
    }

    .navicon{
        background: #fff;
        display: block;
        height: 3px;
        width: 26px;
        position: relative;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }

    .navicon::before,
    .navicon::after{
        content: "";
        background: #fff;
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }
    .navicon:before {
        top: 9px;
      }
      
      .navicon:after {
        bottom: 9px;
      }

      
      .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
        background: #333;
      }
      
      .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
        background: #333;
      }
      
      .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
        top: 0;
      }
      .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        bottom: 0;
      }
      
      .menu-btn:checked ~ .menu-icon .navicon {
        background: rgba(0, 0, 0, 0);
        transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
      }




      

.top-icon {
    position: absolute;
    top: 30px;
    left: 30px;
}

.top-icon img {
    width: 90px;
}

}

.about_top {
    width: 100%;
    height: 30.0rem;
    position: relative;
    overflow: hidden;
}

.about_top::after {
    content: "";
    background-image: url(../img/);
    background-position: right 80%;
    background-repeat: no-repeat;
    background-size: 120%;
    display: block;
    width: 100%;
    height: 30.0rem;
    position: absolute;
    top: 0;
    left: 0;

}

.about_toptx {
    text-align: left;
    z-index: 10;
    width: 100%;
    height: 200px;
}

.about_toptx::after {
    content: "";
    display: block;
    width: 900px;
    height: 900px;
    background-color: #DCA457;
    border-radius: 999px;
    position: relative;
    top: -700px;
    left: -80px;
    overflow: hidden;
}


.about_toptx p {
    color: #fff;
    position: absolute;
    top: 200px;
    left: 200px;
    z-index: 10;
}

@media only screen and (max-width: 1024px) {
    .sp_display_1024{
       display: block;
    }
    
    .pc_display_about{
        display: none;
    }
    
    .about_toptx::after {
        content: "";
        display: block;
        width: 100%;
        height: 300px;
        background-color: #DCA457;
        border-radius: 0 0 300px 300px;
        position: relative;
        top: -300px;
        left: 0px;
    
    }
    
    
    
    .about_toptx {
        text-align: left;
        z-index: 10;
        width: 100%;
        height:0px;
    }
    
    .about_toptx p {
        color: #fff;
        position: absolute;
        top: 150px;
        left: 20%;
        z-index: 10;
    }
    
    }
    
    @media only screen and (max-width: 900px) {
        .pc_display {
            display: none;
        }
        
        .sp_display {
            display:block;
        }
        
        .hamburger_menu {
            list-style: none;
            position: absolute;
            width: auto;
            height: auto;
            top: 0;
            right: 0;
            margin-top: 0px;
            padding: 0 50px 100px 100px;
            clear: both;
            background-color: #fff;
            transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
            transform: scale(1, 0);
            transform-origin: top;
            text-align:left ;
        }
    
    .top_menu{
        margin-top: 100px;
    
       
    }
    
        .hamburger_menu li{
            margin-top: 50px;
           
        }
    
        .hamburger_menu a{
            text-decoration: none;
            text-transform: capitalize;
           opacity: 0;
           transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
           position: relative;
        }
    
        .hamburger_menu a::before{
          content: "";
          width: 8px;
          height: 8px;
          background-color: rgba(0, 0, 0, 0);
          border-top: #333 1px solid;
          border-right: #333 1px solid;
          display: block;
          position: absolute;
          top: 8px;
         
          left: -30px;
          transform: rotate(45deg);
          
        }
    
        .menu-btn:checked~.hamburger_menu {
            transform: scale(1, 1);
            transform-origin: top;
            transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
        }
    
        .menu-btn:checked~.hamburger_menu a {
       opacity: 1;
           
        }
    
        .menu-btn {
            display: none;
           
           
        }
    
        .menu-icon {
            display: inline-block;
            position: relative;
            cursor: pointer;
            padding: 35px 30px;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            z-index: 100;
        }
    
        .navicon{
            background: #fff;
            display: block;
            height: 3px;
            width: 26px;
            position: relative;
            transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
        }
    
        .navicon::before,
        .navicon::after{
            content: "";
            background: #fff;
            display: block;
            height: 100%;
            width: 100%;
            position: absolute;
            transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
        }
        .navicon:before {
            top: 9px;
          }
          
          .navicon:after {
            bottom: 9px;
          }
    
          
          .menu-btn:checked ~ .menu-icon .navicon:before {
            transform: rotate(-45deg);
            background: #333;
          }
          
          .menu-btn:checked ~ .menu-icon .navicon:after {
            transform: rotate(45deg);
            background: #333;
          }
          
          .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
            top: 0;
          }
          .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
            bottom: 0;
          }
          
          .menu-btn:checked ~ .menu-icon .navicon {
            background: rgba(0, 0, 0, 0);
            transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
          }
    
    
    
    
          
    
    .top-icon {
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .top-icon img {
        width: 90px;
    }
    
    }


.dream_main{
    width: 100%;
    height:500px;
    padding: 200px 0;
}




.footer{
    background: linear-gradient(to right,#B3DCB4 0%,#CCDE94 67%, #F6E25D 100%);
   
    
}

.footer_width{
    max-width: 1200px;
    padding: 10.0rem 0 2.0rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.footer_icon{
position: absolute;
left: 0 ;
top: 5.0rem;
margin-left: 2.0rem;
}

.footer_icon img{
    width: 10.0rem;
    height: auto;
}

.footer_menu{
    text-align: right;
    position: absolute;
    top: 5.0rem;
    right: 0;
    margin-right: 2.0rem;
}

.footer_menu a{
    margin-left: 5.0rem;
}

.footer_tx{
    text-align: left;
    margin-top: 3.0rem;
    margin-left: 2.0rem;
    margin-bottom: 5.0rem;
}


@media only screen and (max-width: 900px) {
    .footer_menu {
        display: grid;
        top: 3.0rem;

    }

    .footer_menu a {
        margin-left: 0;
        margin-top: 10px;
        transition: opacity 0.3s ease;
    }
}

