@charset "UTF-8";

/*全画面共通css(header,footer)*/
body {
    font-family: 'Yomogi',"Hiragino Kaku Gothic ProN", cursive;
}


/* headerのcss */
.header {
    display: flex;
    flex-direction: row;
    padding-left: 3%;
    padding-right: 3%;
    background-color: rgb(50, 50, 50,0.5);
    background-size: 100vw;
    position: fixed;
    width: 100vw;
    height: auto;
    z-index: 1;
    color: rgb(255, 255, 255);
}

.h1 {
    justify-content: flex-start;
    margin-right: -8%;
}

.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 20px;
    margin-left: 40vw;
    padding-top: 2%;
    padding-left: 2%;
    list-style: none;
}

.main-nav li {
    margin-left: 36px;
}
.main-nav a {
    color: rgb(255, 255, 255);
}
.main-nav a:hover {
    color: #0bd;
}


/* footerのcss */
#footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 0 10px 0;
    background: rgb(217, 179, 141);
    background-image: url(/image/mokume.jpg);
    background-blend-mode: multiply;
    width: 100vw;
    height: 100%;
    margin-top: 3%;
}


/* 事業所案内css（共通）*/
.schedule {
    text-align: center;
    background-image: url(/image/1122.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: fit-content;
    height: fit-content;
    color: aliceblue;
    width: 100%;
    margin-top: 3%;
}
.table {
    border: saddlebrown;
    border-style: solid;
    border-width: 0.5px;
    width: 100%;
}

.h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: black;
}

th {
    background-color: rgb(99, 65, 32,0.9);
}
td {
    background-color: rgb(99, 65, 32, 0.6);
}

.name {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.table .title{
    font-size: 30px;
}

.car {
    width: 100px;
    background-image: url(../image/car.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 40%;
    margin-top: 40px;
    margin-left: 50px;
    opacity: 0.7;
}

.strong2{
    color: rgb(255, 255, 255);
    font-size: 30px;
}

/* アクセスのcss */
.access {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  .content {
    text-align: center;
    font-size: 30px;
    padding-top: 3%;
    padding-bottom: 2%;
  }
  
  #googlemap {
    display: flex;
    flex-direction: column;
    text-align: center;
  } 
  
  .map-size {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  .jigyoname {
    font-size: 25px;
    color: cadetblue;
    margin-top: 7%;
  }
  
  .subcontent{
    font-size: 20px;
  }

/* コンタクト sns */
#tel {
    text-align: right;
    background-image: url(../image/23671477_l.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100%;
    margin-top: 3%;
    padding: 2% 0 10% 0;
}

#sns h2 {
    text-align: center;
    font-size: 30px;
}

#sns h3 {
    text-align: center;
    font-size: 20px;
}

.sns-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.twitter-pic {
    width: 10vw;
    height: auto;
}

.insta-pic {
    width: 10vw;
    height: auto;
}

.tel-pic {
    width: 10vw;
    height: auto;
}

.yoyaku-pic {
    width: 10vw;
    height: auto;
}

.tel2 {
    margin-right: 5%;
    margin-top: 5%;
    font-size: 1.5rem;
}


/* このページだけのcss */

/* topのcss */
.home-content {
    text-align: center;
    padding-top: 12%;
    padding-bottom: 20%;
    font-size: 30px;
    background-image: url(image/_F0A1091.jpg);
    background-size: contain;
    background-size: 100% auto;
    background-repeat: no-repeat;    
    background-blend-mode: multiply;
    width: 100vw;
    animation-duration: 1s;
    animation-name: fadein;
}

.milion {
    color: rgb(255, 255, 255);
    font-size: 45px;
    margin: 0 165px 0 0;
    margin-top: 7%;
}

.h2-2{
    font-size: 100px;
    color: rgb(0, 0, 0);
    margin-top: -3%;
    animation-duration: 2s;
    animation-name: fadein;
}

@keyframes fadein {
    0% {
       opacity: 0;
       transform: translateY(50px);
       transition: all 1s;
    }
    100% {
       opacity: 1;
       transform: translateY(0);
    }
  }

.sub{
    animation-duration: 2s;
    animation-name: slidein;
    margin-top: 13%;
    font-weight: bold;
}

@keyframes slidein {
    0% {
       opacity: 0;
       transform: translateX(50px);
       transition: all 1s;
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
}

strong {
    font-size: 50px;
    color: rgb(31, 208, 61);
}

/* Concept部分 */
.article {
    text-align: center;
    padding-top: 2%;
    padding-bottom: 10%;
    background-image: url(./image/22990469_m.jpg);
    background-size: contain;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255,0.5);
    background-blend-mode: soft-light;
    width: 100vw;
    height: 100%;
}

.content{
    text-align: center;
    font-size: 35px;
    margin-bottom: 3%;
    padding-top: 3%;
    padding-bottom: 3%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .5s, transform 2s;
}

.content.appear {
    opacity: 1;
    transform: translateY(0);
}

.subcontent{
    font-size: 20px;
    padding-bottom: 3%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .5s, transform 2s;
}

.subcontent.appear {
    opacity: 1;
    transform: translateY(0);
}

.bamboo {
    padding: 10px 0 5% 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s, transform 2s;
}

.bamboo.appear {
    opacity: 1;
    transform: translateY(0);
}

.strong3{
    color: rgb(20, 203, 244);
    font-size: 30px;
}


/* 「こんな悩みございませんか」のcss */


.subcontent{
    text-align: center;
}

.icon {
    text-align: center;
}

.icon::before {
    content: "・";
}

.nayami-2 {
    font-size: 20px;
    padding-top: 3%;
    padding-bottom: 2%;
    text-align: center;
}


/* 「支援内容」のcss */
.shien-naiyo {
    background-color:rgb(246, 255, 233);
    text-align: center;
}

.h2-4{
    padding: 5% 0 5% 0;
}

.kobetsu{
    margin-top: 8%;
    margin-bottom: 5%;
}

.syudan{
    margin-top: 8%;
    margin-bottom: 5%;
}

.shien-sub {
    font-size: 20px;
    margin-top: 2%;
}

.strong4{
    color: black;
    font-size: 30px;
}



.t-picture {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 3%;
}

.t-1 {
    background-size: contain;
    width: 40vw;
    height: 100%;
    padding: 1%;
}

.shien-naiyo-2 {
    font-size: 20px;
    padding-top: 3%;
    padding-bottom: 2%;
}


/* 支援開始までの流れ */
.shien-nagare {
    background-color: aliceblue;
    text-align: center;
}




/* pc小型での表示のレスポンシブはこちら

@media (max-width: 600px) {
    body {
        font-family: 'Yomogi',"Hiragino Kaku Gothic ProN", cursive;
    }

    .header {
        display: flex;
        flex-direction: row;   
        background-color: rgb(50, 50, 50,0.5);
        background-size: 100vw;
        position: fixed;
        width: 100vw;
        height: auto;
        z-index: 1;
        color: rgb(255, 255, 255);
    }

    .h1 {
        font-size: 1.2rem;
        margin-top: 4%;
        margin-right: -20%;
    }
    
    .main-nav {
        display: flex;
        flex-direction: row;
        padding-top: 1%;
        padding-left: 0.5%;
        list-style: none;
        font-size: 0.90rem;
    }

    .main-nav a {
        color: rgb(255, 255, 255);
    }
    .main-nav a:hover {
        color: #0bd;
    }

    .nav1 {
        display: flex;
        flex-direction: column;
        margin-right: 3%;
        text-align: center;
    }

    .nav2 {
        display: flex;
        flex-direction: column;
        margin-right: 3%;
        text-align: center;
    }

    .nav3 {
        display: flex;
        flex-direction: column;
        text-align: center;
    }


    /* footerのcss 
    #footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 0 10px 0;
        background: rgb(217, 179, 141);
        background-image: url(../image/mokume.jpg);
        background-blend-mode: multiply;
        width: 100vw;
        height: 100%;
        margin-top: 3%;
    }
    
    
    /* 事業所案内css（共通)
    .schedule {
        text-align: center;
        background-image: url(/image/1122.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        width: fit-content;
        height: fit-content;
        color: aliceblue;
        width: 100%;
        margin-top: 3%;
    }
    .table {
        border: saddlebrown;
        border-style: solid;
        border-width: 0.5px;
        width: 100%;
    }
    
    .h2 {
        font-size: 30px;
        font-weight: bold;
        text-align: center;
        color: black;
    }
    
    th {
        background-color: rgb(99, 65, 32,0.9);
    }
    td {
        background-color: rgb(99, 65, 32, 0.6);
    }
    
    .name {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .car {
        width: 100px;
        background-image: url(../image/car.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-size: 40%;
        margin-top: 40px;
        margin-left: 50px;
        opacity: 0.7;
    }
    
    
    
    /* アクセスのcss  
    #location{
        display: flex;
        flex-direction: row;
        margin-top: 2%;
    }
    
    #googlemap {
        text-align: center;
        width: 100%;
        height: auto;
    }
    
    #googlemap iframe {
        width: 95vw;
        height: 50vh;
    } 
    
    
    
    /* コンタクト sns 
    #tel {
        text-align: right;
        background-image: url(../image/23671477_l.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100vw;
        height: 100%;
        margin-top: 3%;
        padding: 2% 0 10% 0;
    }
    
    #sns h2 {
        text-align: center;
        font-size: 30px;
    }
    
    #sns h3 {
        text-align: center;
        font-size: 1rem;
    }
    
    .sns-box {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .twitter-pic {
        width: 10vw;
        height: auto;
    }
    
    .line-box {
        width: 10vw;
        height: auto;
    }
    
    .insta-pic {
        width: 10vw;
        height: auto;
    }
    
    .tel-pic {
        width: 10vw;
        height: auto;
    }
    
    .yoyaku-pic {
        width: 10vw;
        height: auto;
    }
    
    
    /* このページだけのcss */
    
    /* topのcss 
    .home-content {
        text-align: center;
        padding-top: 13%;
        font-size: 1rem;
        background-image: url(image/_F0A1091.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100vw;
    }
    
    .h2-2 {
        font-size: 5rem;
        color: rgb(0, 0, 0);
        margin-top: -6%;
    }

    .milion {
        color: rgb(255, 255, 255);
        font-size: 2.3rem;
        margin: 0 130px 0 0;
        margin-top: -3%;
    }
    
    .sub {
        margin-top: 0%;
    }

    strong {
        font-size: 2rem;
        color: rgb(31, 208, 61);
        text-decoration: underline;
    }
    
    

    /* Concept部分 
    .article {
        text-align: center;
        padding-bottom: 10%;
        background-image: url(./image/22990469_m.jpg);
        background-size: contain;
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-color: rgba(255, 255, 255,0.5);
        background-blend-mode: soft-light;
        width: 100vw;
    }
    
    .concept {
        padding-bottom: 5%;
    }
    
    .h1-1 {
        padding: 10px 0 10px 0;
        font-size: 2rem;
    }

    .article p {
        font-size: 0.9rem;
    }
    
    
    /* 「こんな悩みございませんか」のcss 
    .nayami {
        text-align: center;
        padding: 2%;
    }
    
    .h2-3 {
        padding: 0 0 5% 0;
    }
    
    .icon::before {
        content: "・";
    }
    
    .nayami-2 {
        font-size: 20px;
        padding-top: 3%;
        padding-bottom: 2%;
    }
    
    
    /* 「支援内容」のcss 
    .shien-naiyo {
        background-color:rgb(224, 252, 185);
        text-align: center;
    }
    
    .h2-4{
        padding: 5% 0 5% 0;
    }
    
    .shien-sub {
        font-size: 20px;
    }
    
    .pt {
        margin-bottom: 8%;
    }
    
    .st {
        margin-bottom: 8%;
    }
    
    .hoiku {
        margin-bottom: 5%;
    }


    .t-picture {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .t-1 {
        background-size: contain;
        width: 40vw;
        height: 100%;
        padding: 1%;
    }
    
    .shien-naiyo-2 {
        font-size: 20px;
        padding-top: 3%;
        padding-bottom: 2%;
    }
    
    
    /* 支援開始までの流れ 
    .shien-nagare {
        background-color: aliceblue;
        text-align: center;
        padding: 2% 0 5% 0;
        margin-top: 2%;
    }
    
    .h2-5 {
        padding-bottom: 5%;
    }
}

*/



/* スマホサイズのレスポンシブはこちらから*/

@media (max-width: 400px) {
    body {
        font-family: 'Yomogi',"Hiragino Kaku Gothic ProN", cursive;
    }
    
    .header {
        display: flex;
        flex-direction: row;
        background-color: rgb(50, 50, 50,0.5);
        background-size: 100vw;
        position: fixed;
        width: 100vw;
        height: auto;
        z-index: 1;
        color: rgb(255, 255, 255);
    }

    .h1 {
        font-size: 0.9rem;
        margin-top: 3%;
        margin-right: -25%;
    }
    
    .main-nav {
        display: flex;
        flex-direction: row;
        list-style: none;
        margin-bottom: -1%;
    }

    .main-nav li {
        list-style: none;
        font-size: 0.75rem;
        margin-top: -10%;
        padding: 5%;
    }

    .main-nav a {
        color: rgb(255, 255, 255);
    }
    .main-nav a:hover {
        color: #0bd;
    }

    .nav1 {
        display: flex;
        flex-direction: column;
        margin-right: -5%;
        margin-top: -6%;
    }

    .nav2 {
        display: flex;
        flex-direction: column;
        margin-right: -5%;
        margin-top: -6%;
    }

    .nav3 {
        display: flex;
        flex-direction: column;
        margin-top: -6%;
    }


    /* footerのcss */
    #footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 0 10px 0;
        background: rgb(217, 179, 141);
        background-image: url(../image/mokume.jpg);
        background-blend-mode: multiply;
        width: 100vw;
        height: 100%;
        margin-top: 3%;
    }
    
    
    /* 事業所案内css（共通）*/
    .schedule {
        text-align: center;
        background-image: url(/image/1122.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        width: fit-content;
        height: fit-content;
        color: aliceblue;
        width: 100%;
        margin-top: 3%;
    }
    .table {
        border: saddlebrown;
        border-style: solid;
        border-width: 0.5px;
        width: 100%;
    }
    
    .h2 {
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        color: black;
    }
    
    th {
        background-color: rgb(99, 65, 32,0.9);
        font-size: 0.8rem;
    }
    td {
        background-color: rgb(99, 65, 32, 0.6);
        font-size: 0.7rem;
    }
    
    .name {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: auto;
    }

    .title{
        font-size: 1.1rem;
    }
    
    .car {
        width: 10%;
        background-image: url(../image/car.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-size: 60%;
        margin-top: 8%;
        margin-right: 10%;
        opacity: 0.7;
    }

    .strong2{
        font-size: 0.8rem;
    }
    
    
    
    /* アクセスのcss */
    #location{
        display: flex;
        flex-direction: column;
        margin-top: 2%;
    }

    .content {
        font-size: 1.3rem;
    }

    .subcontent{
        font-size: 0.2rem;
    }
    
    #googlemap {
        text-align: center;
        width: 100%;
        height: auto;
    }
    
    #googlemap iframe {
        width: 95vw;
        height: 50vh;
    } 
    
    .jigyoname{
    font-size: 1rem;
    color: cadetblue;
    margin-top: 7%;
  }
    
    /* コンタクト sns */
    #tel {
        text-align: right;
        background-image: url(../image/23671477_l.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100vw;
        height: 100%;
        margin-top: 3%;
        padding: 2% 0 10% 0;
    }
    
    #sns h2 {
        text-align: center;
        font-size: 1.3rem;
    }
    
    #sns h3 {
        text-align: center;
        font-size: 0.7rem;
    }
    
    .sns-box {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .twitter {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .twitter-pic {
        width: 10vw;
        height: auto;
    }

    .line {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .line-box {
        width: 10vw;
        height: auto;
    }

    .insta {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .insta-pic {
        width: 10vw;
        height: auto;
    }

    .renraku {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .tel-pic {
        width: 10vw;
        height: auto;
    }

    .yoyaku {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .yoyaku-pic {
        width: 10vw;
        height: auto;
    }

    .tel2 {
        text-align: right;
        margin-top: 7%;
        margin-right: 4%;
        color: rgb(0, 0, 0);
        font-size: 0.7rem;
    }
    
    
    
    /* このページだけのcss */
    
    /* topのcss */
    .home-content {
        text-align: center;
        padding-top: 15%;
        font-size: 1rem;
        background-image: url(image/_F0A1091.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100vw;
    }
    
    .h2-2 {
        font-size: 1.5rem;
        color: rgb(0, 0, 0);
        margin-top: -2%;
    }
    
    .sub {
        margin-top: -1%;
        font-size: 1rem;
    }

    strong {
        font-size: 1.5rem;
        color: rgb(31, 208, 61);
    }
    
    

    /* Concept部分 */
    .article {
        text-align: center;
        background-image: url(./image/22990469_m.jpg);
        background-size: contain;
        background-size: 100% 110%;
        background-repeat: no-repeat;
        background-color: rgba(255, 255, 255,0.5);
        background-blend-mode: soft-light;
        width: 100vw;
        margin-top: -7%;
    }
    
    .concept {
        margin-top: -50%;
        font-size: 1.3rem;
    }
    
    .bamboo {
        padding: 5px 0 5px 0;
        font-size: 1rem;
        margin-bottom: 8%;
    }

    .subcontent p {
        font-size: 0.8rem;
    }

    .strong3{
        color: rgb(20, 203, 244);
        font-size: 0.9rem;
    }
    
    
    /* 「こんな悩みございませんか」のcss */
    .content {
        text-align: center;
    }
    
    .icon {
        font-size: 1rem;
        text-align: center;
    }
    .icon::before {
        content: "・";
    }
    
    .nayami-2 {
        font-size: 1rem;
        padding-top: 3%;
        padding-bottom: 2%;
    }
    
    
    /* 「支援内容」のcss */
    .shien-naiyo {
        background-color:rgb(224, 252, 185);
        text-align: center;
    }

    .strong4{
        font-size: 0.8rem;
    }
    
    .h2-4{
        font-size: 1.3rem;
        padding: 5% 0 5% 0;
    }

    .shien-sub {
        font-size: 0.6rem;
    }
    
    
    .subcontent {
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .kobetsu{
        font-size: 0.6rem;
    }
    
    .t-picture {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .t-1 {
        background-size: contain;
        width: 40vw;
        height: 100%;
        padding: 1%;
    }
    
    .shien-naiyo-2 {
        font-size: 0.7rem;
        padding-top: 3%;
        padding-bottom: 2%;
    }
    
    
    /* 支援開始までの流れ */
    .shien-nagare {
        background-color: aliceblue;
        text-align: center;
        padding: 2% 0 5% 0;
        margin-top: 2%;
    }
    
    .h2-5 {
        padding-bottom: 5%;
        font-size: 1.3rem;
    }

    .subcontent {
        font-size: 0.9rem;
    }


    #googlemap .subcontent{
        font-size: 0.8rem;
    }
}