@charset "utf-8";
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　泡　*/
.bubble-background {
    position: relative;
    background-color: rgb(255, 255, 255);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 泡の見た目 */
.bubble {
    position: absolute;
    bottom: -50px;
    background-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: inset 0 0 10px rgba(146, 146, 146, 0.2);
    animation: bubble 8s linear infinite;
  }
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 泡が上に浮かび上がっていくアニメーション */
  @keyframes bubble {
    0% {
      transform: translatY(0);
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100vh);
      opacity: 0;
    }
  }
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　全体*/
.pc { display: block !important; }
.sp { display: none !important; }
* { margin: 0; padding: 0; box-sizing: border-box;}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　全体*/

body {
    font-family: "Noto Sans JP";
    box-sizing: border-box;
    transition: 1s;
    letter-spacing: 0.3rem;
    text-align: justify;
}
a {
    text-decoration: none;
    color: #000;
    display: block;
}
.cta-top {
    position: absolute;
    position: fixed;
    top: 100px;
    right: 0;
    width: 140px;
    height: 80px;
    line-height: 80px;
    transform: rotate(90deg);
    z-index: 999;
}
.cta-top a {
    width: 100%;
    height: 100%;
}
.cta-top a:hover {
    background: #000;
    color: #fff;
    transition: all 0.3s;
}
#mv {
    text-align: center;
}
/**/
.TextTyping span {
	display: none;
}
.TextTyping::after {
 	content: "|";
	animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}
/**/






/*タイトル共通のマージン*/
.title-margin{
    margin-bottom: 10em;
}
.title-margin-2{
    margin-bottom: 6em;
}
.title-margin-3 {
    margin-bottom: 4em;
}








/*スクロールダウン全体の場所*/
.scrolldown1{
  position:absolute;
  left:50%;
  bottom:10px;
  height: 100px;
}
/* 線の描写 */
.scrolldown1::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 200px;
  background: #000;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:200px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}


.section-box {
    padding-top: 400px;
}
.logo {
    display: block;
    width: 200px;
    position: fixed;
    z-index: 10000;
    padding: 2em;
}
h1 {
    color: #000;
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%,-50%);
    letter-spacing: 1.2rem;
    font-size: 2rem;
}
h2 {
    font-size: 1.8rem;
    text-align: center;
}








/*beerのミッション*/
.box-container {
    text-align: center;
    line-height: 4rem;
    padding-top: 6em;
    letter-spacing: 0.2rem;
    position: relative;
}
.box-container-line {
    position: absolute;
    left:50%;
    height: 100px;
}
.box-container-line::after{
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 200px;
    background: #000;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
  }
  


/*こんなこと、困っていませんか？*/
.flex {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.flex-num {
    display: flex;
    justify-content: space-between;
    width: 84vw;
    margin-top: 4em;
  }
.flex-num > li {
    display: flex;
    flex-direction: column;
    width: 30%;
    background: #fff;
    box-shadow: rgb(228 228 228) 2px 2px 20px;
  }
.flex-num-icon {
    margin-top: auto;
    text-align: end;
  }
.flex-num-txt {
    padding: 30px;
}
.flex-num-title {
    background: #000;
    color: #fff;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}



/*beerでできる乾杯*/
.flex-num-2 {
    display: flex;
    justify-content: space-between;
    width: 80vw;
    margin-top: 4em;
  }
.flex-num-2 > li {
    display: flex;
    flex-direction: column;
    width: 30%;
    background: #fff;
    box-shadow: rgb(228 228 228) 2px 2px 20px;
  }
.flex-num-icon-2 {
    margin-top: auto;
    text-align: center;
    padding-bottom: 30px;
  }
.flex-num-txt-2 {
    padding: 30px;
}
.flex-num-title-2 {
    background: #fff;
    color: #000;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
}
/*リクルートブランディング　左上*/
    .rec-img {
        position: relative;
    }
    .rec-img::before{
        content: url(../img/t-1.svg);
        position: absolute;
        top: 2px;
        left: 2px;
    }
/*コーポレートブランディング　左上*/
    .corp-img {
        position: relative;
    }
    .corp-img::before{
        content: url(../img/t-2.svg);
        position: absolute;
        top: 2px;
        left: 2px;
    }
/*リージョンブランディング　左上*/
    .reg-img {
        position: relative;
    }
    .reg-img::before{
        content: url(../img/t-3.svg);
        position: absolute;
        top: 2px;
        left: 2px;
    }
/* + */
.plus {
    text-align: center;
    margin: 30px;
}

/*マーケティングブランディング　真ん中*/
.mark-box {
    width: 80vw;
    text-align: center;
    margin: 0 auto;
    background: #fff;
    box-shadow: rgb(228 228 228) 2px 2px 20px;
    position: relative;
    margin-bottom: 4em;
}
/*マーケティングブランディング　左上*/
    .mark-box::before {
        content: url(../img/t-4.svg);
        position: absolute;
        top: 10px;
        left: 10px;
    }
.mark-img {
    display: block;
    padding: 2em;
    margin: 0 auto;
}
















/*beerでできる乾杯*/
.flex-item2 {
    width: 22vw;
    margin-right: 3em;
    height: 470px;
    background: #fff;
    box-shadow: rgb(228, 228, 228) 2px 2px 20px;
    text-align: start;
    margin-bottom: 4em;
}
.flex-item2 > p {
    padding-top: 2em;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}
.flex-item2 > div {
    margin: 2em;
    line-height: 1.6rem;
    font-size: 0.9rem;
    padding: 1em;
}
.flex-item2 > figure {
    display: block;
    text-align: center;
}
.box-container-2 {
    width: 66vw;
    height: auto;
    background: #fff;
    margin: 0 auto;
}
.title-left-1 {
    position: relative;
}
.title-left-1::before {
    content: url(../img/t-1.svg);
    position: absolute;
    top: 10px;
    left: 0;
}
.title-left-2 {
    position: relative;
}
.title-left-2::before {
    content: url(../img/t-2.svg);
    position: absolute;
    top: 10px;
    left: 0;
}
.title-left-3 {
    position: relative;
}
.title-left-3::before {
    content: url(../img/t-3.svg);
    position: absolute;
    top: 10px;
    left: 0;
}
.title-left-4 {
    position: relative;
    font-size: 1.2rem;
    padding-top: 2em;
    box-shadow: rgb(228 228 228) 2px 2px 20px;
}
.title-left-4::before {
    content: url(../img/t-4.svg);
    position: absolute;
    top: 10px;
    left: 10px;
}
.title-left-4-inner {
    font-size: 0.9rem;
    line-height: 1.2rem;
    padding-bottom: 2em;
}












/*beerのメンバー*/
.bg-border {
    background-image: url(../img/bg-border.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 8em;
}









/*これまでの乾杯*/
.work {
    width: 26vw;
    box-shadow: rgb(228, 228, 228) 2px 2px 20px;
    background-image: url(../img/mmm.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: start;
    margin-right: 3em;
}
.work > p,
.work > div {
    margin: 2em;
    line-height: 1.8rem;
}
.work-3 {
    margin-right: 0;
}
.work-1::before{
    content: "リクルートブランディング";
    display: block;
    position: relative;
    top: 0;
    left: 0;
    font-size: 0.8rem;
    background: #000;
    color: #fff;
    padding: 0;
    margin: 0;
    height: 30px;
    line-height: 30px;
    padding-left: 2em;
}
.work-2::before{
    content: "リクルートブランディング";
    display: block;
    position: relative;
    top: 0;
    left: 0;
    font-size: 0.8rem;
    background: #000;
    color: #fff;
    padding: 0;
    margin: 0;
    height: 30px;
    line-height: 30px;
    padding-left: 2em;
}
.work-3::before{
    content: "コーポレートブランディング";
    display: block;
    position: relative;
    top: 0;
    left: 0;
    font-size: 0.8rem;
    background: #000;
    color: #fff;
    padding: 0;
    margin: 0;
    height: 30px;
    line-height: 30px;
    padding-left: 2em;
}






/*乾杯までの道のり*/
.flex-load {
    margin-top: 8em;
}
.flex-item-load {
    width: 40vw;
    height: auto;
    margin-right: 4em;
    margin-bottom: 4em;
    padding: 2em;
    line-height: 1.8rem;
    font-size: 0.9rem;
    background: #FAFAFA;
    border-top: #000 solid 5px;
}
.flex-item-load:last-child {
    margin-right: 0;
}
.load-inner-txt {
    padding: 2em;
}
.load-inner {
    position: relative;
}
.title-load {
    /*企画*/
    display: inline-block;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: 5rem;
    letter-spacing: 1.8rem;
}
.load-inner-2 {
    position: relative;
}
.title-load-2 {
    /*制作*/
    display: inline-block;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: 5rem;
    letter-spacing: 1.8rem;
}
.load-inner-3 {
    position: relative;
}
.title-load-3 {
    /*乾杯*/
    display: inline-block;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: 5rem;
    letter-spacing: 1.8rem;
}
.load-inner-4 {
    position: relative;
}
.title-load-4 {
    /*発信*/
    display: inline-block;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: 5rem;
    letter-spacing: 1.8rem;
}













/*私たちbeerのモットー*/
.flex-future {
    background-image: url(../img/bg-value.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    justify-content: start;
    margin: 0 auto;
    padding-bottom: 10em;
}
.future-boxes {
    justify-content: center;
    margin-top: 3em;
}
.future-box {
    width: 28vw;
    background: #fff;
    padding: 2em;
    margin: 2em;
    text-align: start;
    position: relative;
}
.future-box::before {
    content: url(../img/shape-top.svg);
   position: absolute;
   top: -20px;
   left: -20px;
}
.future-box::after {
    content: url(../img/shape-bottom.svg);
   position: absolute;
   bottom: -20px;
   right: -20px;
}
.future-num {
    display: block;
    margin: 0 auto;
    margin-bottom: 1em;
}
.futura-title {
    font-size: 1rem;
    margin-bottom: 1em;
    text-align: center;
    letter-spacing: 0.08rem;
}
.future-box p:last-child {
    font-size: 0.8rem;
}


















/*ラストコンテンツ　共通*/
.box-last {
    width: 50vw; 
    padding-top: 8em;
    padding-bottom: 8em;
    font-size: 0.9rem;
}
.contactus-box-inner {
    padding: 6em;
}


/*エントリーフォーム*/
.contactus-box {
    background: #fff;
}
input {
    width: 50%;
    height: 3rem;
    margin: 1rem;
    padding: 1rem;
}
label {
    display: inline-block;
    width: 40%;
}
input[type="submit"]{
    background: #000;
    border: none;
    color: #fff;
    width: 90%;
    height: 3rem;
    margin-top: 2em;
    padding: 0;
}
input[type="submit"]:hover {
    background: #FFD900;
    color: #000;
    transition: all .3s;
}






/*カンパニー*/
.company-box {
    background: #484848;
    color: #fff;
}
.company-box ul li {
    list-style: none;
    display: block;
    margin: 2rem;
}


footer {
    width: 100vw;
    color: #fff;
    text-align: center;
    background: #000;
    line-height: 2rem;
}