@charset "UTF-8";

/*共通部分
------------------------*/

html{
    font-size: 100%;
}

body{
    font-family: "Helvetica Neue", "roboto", "sans-serif", "Hiragino Sans";
    font-size: 18px;
        line-height: 1.7;
        color: #454e5b;
        background: #F5F5F7;
        z-index: -2;

}
a {
    text-decoration: none;
    color: #111111;
}



img{
    max-width: 100%;
}

.border-radius{
    border-radius: 17px;
}

.shadow {
    box-shadow: 0px  4px 22px -8px rgb(0,0,0,0.2);
}

.caption {
    text-align: center;
    font-weight: lighter;
    font-size: 14px;
}
@media screen and (max-width: 462px) {
    .caption {
        font-size: 8px;
    }
}

.comment {
    font-style: italic;
}

.sub-textsize {
    color: #000000;
    font-size: 38px;
    font-weight: 600;
    line-height: 42px;
    margin: 20px 0px;
}

@media screen and (max-width: 482px) {
    .menu-for-mobile{
        grid-auto-columns: auto;
    }
}

/* HEADER
------------------------*/

@media screen and (max-width: 762px) {
    .fordesktop1 {
        display: none;
    }
    }

.logo {
    width: 210px;
    margin-top: 10px;
    color: #111111;
    font-weight: 400;
    margin-top: auto;
    margin-bottom: auto;
}

.main-nav {
    display: flex;
    font-size: 14px;
    margin-top: 22px;
    list-style: none;
}

nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid white;
  }
  nav .inner ul li a {
    display: block;
    color: black;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
    background: black;
  }

.main-nav li {
    margin-left: 36px;
}
.main-nav a {
    color: #000000;
}
.main-nav a:hover {
    color: darkgray;
}

.page-header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    transition: .5s;
    top: 0;
    background: rgba(255,255,255,0.7);
    z-index: 999;
    vertical-align: middle;

}

.page-header.hide{
    transform: translateY(-100%);
}

.wrapper {
    max-width: auto;
    margin: 0 auto;
    padding: 0 30px;
}



/* HOME
------------------------*/
.home-content {
    text-align: left;
    margin-top: 10%;
}
.home-content p {
    font-size: 1.125rem;
    margin: 10px 0 42px;
}

/* 見出し
------------------------*/
.title_wrapper {
    width: 100%;
    line-height: normal;
    padding: 150px 60px;
}
.page-title {
    color: #000000;
    width: 100%;
    font-size: 3.5rem;
    font-family: "Helvetica Neue", "roboto", "Hiragino Sans";
    text-align: left;
    letter-spacing: normal;
    font-weight: 500;
}

@media screen and (max-width: 482px) {
    .title_wrapper {
        width: 100%;
        line-height: normal;
        padding: 130px 0px;
    }
    .page-title {
        width: 100%;
        font-size: 2.8rem;
        font-family: "Helvetica Neue", "roboto", sans-serif;
        text-align: left;
        letter-spacing: normal;
        font-weight: 500;
    }
}

/* button
------------------------*/
.button {
    font-size: 1rem;
    background: #4e4e4e;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 400;
}
.button:hover {
    background: grey;
}

/* background image
------------------------*/
.big-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no repeat;
}


#home {
    background: #F5F5F7;
    min-height: 100vh;
}


#home .page-title {
    text-transform: none;
}

/* card
------------------------*/

.works-wrapper {
    padding: 30px;

}
.cardblock {
    display: flex;
    justify-content: center; 
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 15px;

}
.cardblock-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center; 
    position: relative;
    width: 100%;
    height: 100%;
    
}

@media screen and (max-width: 959px) {
    .works-wrapper {
        padding: 0px;

    }
    .cardblock {
        display: flex;
        justify-content: center; 
        position: relative;
        width: 100%;
        height: 100%;
        margin-bottom: 0px;

    }
    .cardblock-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center; 
        position: relative;
        width: 100%;
        height: 100%;
        
    }

    .card__imgframe-bigger{
        background-size: cover;
        background-color: white;
        height: 600px;
        margin: 0px 0px;
        border-radius: 0px;
        text-align: right;
        box-sizing: border-box;
      }
}

@media screen and (max-width: 559px) {
    .cardblock {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center; 
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0px 0px;
    }
    .cardblock-left {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center; 
        position: relative;
        width: 100%;
        height: 100%;
        
    }
    .card__imgframe-bigger{
        background-size: cover;
        background-color: white;
        height: 600px;
        margin: 0px 0px;
        border-radius: 0px;
        text-align: right;
        box-sizing: border-box;
      }

}

  .card__imgframe{
    background-size: cover;
    background-color: white;
    width: 100%;
    height: 500px;
    border-radius: 0px;
    display: table;
    text-align: right;
    box-sizing: border-box;
  }

  .card__imgframe-bigger{
    background-size: cover;
    background-color: white;
    height: 600px;
    margin: 8px 10px;
    border-radius: 0px;
    text-align: right;
    box-sizing: border-box;
  }

  .grid {
      display: grid;
      gap: 26px;
      grid-template-columns: 1fr 1fr;
      margin-top: 6%;
      margin-bottom: 50px;
  }
@media screen and (min-width: 768px) {
    .bg_1 { 
        background-image: url(../images/omotenashi_top.png);
    }

    .bg_2 { 
        background-image: url(../images/beyondtheconverastion_top.png);
    }

    .bg_3 { 
        background-image: url(../images/star_cover.png);
    }

    .bg_4 { 
        background-image: url(../images/worca_top.png);
    }

    .bg_5 { 
        background-image: url(../images/yururira_top.png);
    }

    .bg_6 { 
        background-image: url(../images/SumaShin_top.png);
    }

    .bg_7 { 
        background-image: url(../images/RPayonGalaxy_top.png);
    }

    .bg_8 { 
        background-image: url(../images/RPay_top.png);
    }
    .bg_9 { 
        background-image: url(../images/Sukkirin_top.png);
    }

    .bg_10 { 
        background-image: url(../images/OtherWorks_top.png);
    }

}

@media screen and (max-width: 462px) {
    .bg_1 { 
        background-image: url(../images/omotenashi_top_mobile.png);
    }
    
    .bg_2 { 
        background-image: url(../images/BeyondTheConversation_top_mobile.png);
    }
    
    .bg_3 { 
        background-image: url(../images/star_cover_mobile.png);
    }
    
    .bg_4 { 
        background-image: url(../images/Worca_top_mobile.png);
    }
    
    .bg_5 { 
        background-image: url(../images/yururira_top_mobile.png);
    }
    .bg_6 { 
        background-image: url(../images/SumaShin_top_mobile.png);
    }

    .bg_7 { 
        background-image: url(../images/Galaxy_top_mobile.png);
    }

    .bg_8 { 
        background-image: url(../images/RPay_top_mobile.png);
    }

    .bg_9 { 
        background-image: url(../images/Sukkirin_top_mobile.png);
    }

    .bg_10 { 
        background-image: url(../images/Others_top_mobile.png);
    }

}

@media screen and (min-width: 786px) {
    .withincard{
        width: 25%;
        height: auto;
   
        top: 50%;
        -webkit-transform : translateY(-50%);
        transform : translateY(-50%);
        left: 67%;
        text-align: left;
        vertical-align: middle;
        position: absolute;

    }

    .card__titletext{
        color: #000000;
        font-size: 40px;
        font-weight: bold;
        line-height: 100%;
    
      }
      
      .card__overviewtext{
          color: #000000;
        font-size: 20px;
        font-weight: 400;
        line-height: 140%;
        padding-top: 10px;
        margin-bottom: 20px;
      }

      .withincard_sub{
        width: auto;
        height: auto;
        text-align: center;
        vertical-align: middle;
        padding-top: 35px;
    }
    .card__titletext_sub{
        color: #000000;
        font-size: 40px;
        font-weight: bold;
        line-height: 100%;
    
      }
      
      .card__overviewtext_sub{
        font-size: 17px;
        font-weight: 400;
        line-height: 140%;
        padding: 10px;
        margin-bottom: 10px;
      }
}

  @media screen and (max-width: 482px) {
    .withincard{
        width: 100%;
        padding: 25px;
        text-align: center;
        vertical-align: middle;
    
      }
      .card__titletext{
        font-size: 35px;
        font-weight: bold;
        line-height: 100%;
    
      }
      .card__overviewtext{
        font-size: 17px;
        font-weight: 300;
        line-height: 140%;
        padding: 10px;
        margin-bottom: 10px;
      }
      .card__imgframe-bigger{
        background-size: cover;
        background-color: F5F5F5;
        height: 600px;
        margin: 15px 0px;
        border-radius: 4px;
        text-align: center;
        box-sizing: border-box;
      }
      .withincard_sub{
        width: auto;
        height: auto;
        text-align: center;
        vertical-align: middle;
        padding-top: 35px;
    }
    .card__titletext_sub{
        font-size: 35px;
        font-weight: bold;
        line-height: 100%;
    
      }
      
      .card__overviewtext_sub{
        font-size: 17px;
        font-weight: 300;
        line-height: 140%;
        padding: 10px;
        margin-bottom: 10px;
      }

      .card__imgframe{
        background-size: cover;
        background-color: white;
        width: 100%;
        height: 500px;
        border-radius: 0px;
        margin: 15px 0px;
        display: table;
        text-align: right;
        box-sizing: border-box;
      }
  }
  
  
  


  /* profile
------------------------*/


@media screen and (min-width: 786px) {
    .profile-wrapper{
        width: 100%;
        height: 100%;
        padding: 30px;
    }
    .background{
        background-image: url(../images/image_profilebackground.png);
        height: auto;
        background-position: left 100% top 90%;
        background-size: cover;
        position: relative;
    }
    .profile_title{
        font-size: 61px;
        font-weight: 500;
        text-align: left;
        line-height: 70px;
        padding: 40px 18px;
    }
    .profile_bodytext{
        font-size: 20px;
        font-weight: 400;
        text-align: left;
        line-height: 29px;
        padding: 0px 18px;
        color: #2c2c2c;
        font-style: normal;
    }
}

@media screen and (max-width: 482px) {
    .profile-wrapper{
        width: 100%;
        height: 100%;
    }
    .background{
        background-image: url(../images/image_profilebackground_mobile.png);
        height: auto;
        background-position: left 100% top 90%;
        background-size: cover;
        position: relative;
    }
    .profile_title{
        font-size: 50px;
        font-weight: 500;
        text-align: left;
        line-height: 70px;
        padding: 40px 18px;
        color: white;
    }
    .profile_bodytext{
        font-size: 18px;
        font-weight: 400;
        text-align: left;
        line-height: 29px;
        padding: 0px 18px;
        color: white;
        font-style: normal;
    }
    .profile_last1 {
        font-size: 40px;
        font-weight: 500;
        text-align: left;
        line-height: 50px;
        padding: 40px 18px;
        color: white;
    }
}

@media screen and (min-width: 786px) {

    .profile_last1 {
        font-size: 40px;
        font-weight: 500;
        text-align: left;
        line-height: 50px;
        padding: 40px 18px;
        color: black;
    }
}

  /* Works
------------------------*/
.work-description-column {
    display: flex;
    padding: 10px 0px;
}

.work-description-insidecolumn {
    color: #000000;
    flex: 1;
    padding: 10px 0px;
}

.work-title {
    color: #000000;
    font-size: 42px;
    font-weight: 500;
}

@media screen and (min-width: 786px) {
    .works-wrap {
        max-width: auto;
        margin: 30px 25%;
        padding: 0 4%;
    }
}

@media screen and (max-width: 482px) {
    .works-wrap {
        max-width: auto;
        margin: 15px 5%;
        padding: 0 4%;
    }
}

.cover {
    width: 100%;
    height: 700px;
    background-attachment: fixed;
    background-position: left 50% top 50%;
    background-size: contain;
    position: relative;
}

.cover-background-0 {
    background-image: url(../images/ProfilePic1.png);
}

.cover-background-1 {
    background-image: url(../images/Omotenashi_cover.png);
}

.cover-background-2 {
    background-image: url(../images/BTC_Responsive.png);
}

.cover-background-3 {
    background-image: url(../images/star_cover.png);
}

.cover-background-4 {
    background-image: url(../images/Yururira_cover.png);
}

.cover-background-5 {
    background-image: url(../images/Worca_Hero.png);
}

.cover-background-6 {
    background-image: url(../images/SumaShin_cover.png);
}

.cover-background-7 {
    background-image: url(../images/RPayonGalaxy_cover.png);
}

.cover-background-8 {
    background-image: url(../ss/se_images/RPay_cover.png);
}

.cover-background-9 {
    background-image: url(../images/Sukkirin_cover.png);
}

.cover-background-10 {
    background-image: url(../images/OtherWorks_cover.png);
}



.each-section {
    padding: 5% 0%;
}

.work-eachtitle {
    color: #000000;
    font-size: 42px;
    font-weight: 500;
    line-height: 52px;
    padding-bottom: 5%;
}

@media screen and (max-width: 482px) {
    .work-eachtitle {
        font-size: 30px;
        font-weight: 500;
        line-height: 40px;
        padding-bottom: 5%;
    }
}

.work-eachsubtitle {
    font-size: 25px;
    font-weight: 500;
    line-height: 44px;
    color: #969696;
}

@media screen and (max-width: 482px) {
    .work-eachsubtitle {
        font-size: 18px;
        font-weight: 500;
        line-height: 44px;
        color: #969696;
    }
    .work-subsection {
        color: #000000;
        font-size: 25px;
        font-weight: 500;
        line-height: 35px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.work-subsection {
    color: #000000;
    font-size: 25px;
    font-weight: 500;
}

.work-image {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 482px) {
    .work-image {
        padding: 10px;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

.work-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 10px 10px;
}

.work-column-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 10px;
}

.work-insidecolum {
    flex: 1;
    padding: 50px 40px;
}

@media screen and (max-width: 482px) {
    .work-column {
        display: grid;
        grid-template-columns: 1fr;
        padding: 10px 10px;
    }
    .work-insidecolum {
        flex: 1;
        padding: 50px 10px;
    }
}



.work-solution-column {
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 10px 10px;
    width: 100%;
    height: 100%;
    margin-bottom: 70px;
}

@media screen and (max-width: 462px) {
    .work-solution-column{
        grid-auto-columns: auto;
    }
}

.work-solution-insidesolumn{
    flex: 1;
    padding: 10px 10px;

}
.work-solution-column-text {
    margin-top: auto;
    margin-bottom: auto;
    flex: 1;
    margin-right: 150px;
}

.work-solution-column-image {
    flex: 1;
}

@media screen and (max-width: 462px) {
    .work-solution-column-text,.work-solution-column-image{
        grid-column: 1 / 3;
    }
    .work-solution-column-text {
        margin-right: -150px;
        width: 100%;
        padding-bottom: 30px;
    }
}


.work-problemstatement-column {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 10px 10px;
}

@media screen and (max-width: 462px) {
    .work-problemstatement-column{
        grid-auto-columns: auto;
        padding-top: 50px;
        padding: 0px;
    }
}


.work-problemstatement-inside {
    flex: 1;
    background: white;
    width: auto;
    height: auto;
    background-size: cover;
    border-radius: 6px;
    padding: 40px 40px;
    text-align: center;
    margin: 70px 30px;
}

.work-problemstatement-pic {
    width: 150px;
    height: 150px;
    margin: auto;

}

@media screen and (max-width: 462px) {
    .work-problemstatement-pic {
    width: 100px;
    height: 100px;
    }
}

.work-problemstatement-title {
    color: #000000;
    font-size: 23px;
    font-weight: 500;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .work-problemstatement-inside{
        grid-column: 1 / 3;
        margin: 10px;        
    }
}

.work-2column {
    width: 100%;
    display: flex;
    padding: 10px 10px;
}
.work-2insidecolumn {
    width: 500px;
    flex: 1;
    padding: 0px 10px;
}

.work-survey-column {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 5px 0px;
    margin-bottom: 5%;
}

@media screen and (max-width: 462px) {
    .work-2column {
        width: 100%;
        display: block;
        padding: 10px 0px;
    }

    .work-2insidecolumn {
        width: 100%;
        flex: 1;
        padding: 0px 10px;
    }
    .work-survey-column {
    display: contents;
    grid-template-columns: 50% 50%;
    }

    .work-survey-column-inside {
        flex: 1;
        background: white;
        width: auto;
        height: auto;
        border-radius: 6px;
        margin: 30px 0px;
        padding: 30px;
    }
}

@media screen and (min-width: 768px) {
    .work-survey-column-inside {
        flex: 1;
        background: white;
        height: 100%;
        border-radius: 16px;
        margin: auto 5%;
        padding: 10%;
    }
}



.work-survey-column-percent {
    font-size: 60px;
    font-weight: 400;
    color: #DD2C36;
}

.work-survey-title {
    font-size: 23px;
    font-weight: 500;
    padding: 10px;
}


.CareerCardWrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 10px 10px;
}

@media screen and (max-width: 462px) {
    .work-problemstatement-column{
        grid-auto-columns: auto;
        padding-top: 50px;
        padding: 0px;
    }
}


.CareerCard {
    flex: 1;
    display: grid;
    grid-template-columns: 20% 80%;
    background: white;
    width: auto;
    height: auto;
    background-size: cover;
    border-radius: 17px;
    padding: 50px 40px;
    text-align: left;
    margin: 30px 0%;
}

.CareerCardInside_Logo {
    width: auto;
    height: auto;
    background-size: cover;
    border-radius: 6px;
    padding: 20px 20px;
    margin: auto;
}
.CareerCardInside_Text {
    width: auto;
    height: auto;
    background-size: cover;
    border-radius: 6px;
    padding: 10px 20px;
}


.Company-textsize-title {
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    margin: 3px 0px;
}


@media screen and (max-width: 462px) {
    .CareerCard {
        flex: 1;
        display: block;   
        grid-template-columns: 20% 80%;
        background: white;
        width: auto;
        height: auto;
        background-size: cover;
        border-radius: 17px;
        padding: 50px 20px;
        text-align: center;
        margin: 30px 10px;
    }
    
    .CareerCardInside_Logo {
        width: auto;
        height: auto;
        background-size: cover;
        border-radius: 6px;
        padding: 0px 40px;
        margin: auto;
    }
    .CareerCardInside_Text {
        width: auto;
        height: auto;
        background-size: cover;
        text-align: left;
        border-radius: 6px;
        padding: 10px 0px;
    }
    
    
    .Company-textsize-title {
        color: #000000;
        font-size: 22px;
        font-weight: 500;
        margin: 3px 0px;
    }
}



  /* footer
------------------------*/
footer {
    background: F2F2F2;
    text-align: center;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    font-size: 14px;
    margin-top: 18px;
    list-style: none; 
    padding: 0px;

 }
 
 .footer-nav li {
     margin: 20px;
     width: 20px;
     height: 20px;
     margin-left: auto;
     margin-right: auto;
 }


 .footer-nav a {
     opacity: 0.7;
 }

.footer-nav a:hover {
    opacity: 1;
}



/*============
nav
=============*/
nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 100%;
    background: #E3E3E3;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
    margin-top: 50px;

  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
  }
  
  nav .inner ul li a {
    display: block;
    color: grey;
    font-size: 17px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
    background: black;
  }
  @media screen and (max-width: 462px) {
    nav {
      left: -220px;
    }
  }

  /*============
  .toggle_btn
  =============*/
  
  .toggle_btn {
    display: block;
    position: fixed;
    top: 20px;
    bottom: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;

  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: black;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: grey;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  /*============
  #mask
  =============*/
  #mask {
    display: none;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }
  /*============
  main
  =============*/
  main {
    padding: 50px;
  }
  main h1 {
    font-weight: 400;
    text-align: center;
  }
  /*============
  body
  =============*/
  body {
    font-weight: 400;
  }


  @media screen and (max-width: 462px) {
  .Mobile-menu {
    width: auto;
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media screen and (min-width: 768px) {
    .Mobile-menu {
      display: none;
  
    }
  }


.toggle-wrapper {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: table-cell;
    
}

.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.youtube iframe {
	width: 100%;
	height: 100%;
	border-radius: 20px;
    margin: 100px auto;
}