@charset "utf-8";
/*===========
header
=============*/
.header{
    z-index: 999;
    position: fixed;
    width: 100%;
    background-image: url(../images/bg-yellow-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width:769px) {
    .header{
        background-image: url(../images/bg-yellow-pc.jpg);
        border-top: none;
    }
}

/*===========
about
=============*/
.section__about{
    padding: 257px  4.2% 76px 8.5% ;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width:769px) {
    .section__about{
        padding: 336px  11.1% 100px;
        position: relative;
    }
}

/*====下層ページ共通のDJエリア====*/
.record__area{
    position: absolute;
    top: 0;
    right: 4%;
    overflow: hidden;
    z-index: 2;
}


.record__box{
    width: 228px;
    height: 390px;
    position: relative;
}

.record__arm{
    width: 75%;
    height: auto;
    position: absolute;
    right: 0%;
    top: 48%;
    z-index: 5;
}

/*回転animation*/
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 12s infinite linear;
}

@media screen and (min-width:769px) {
    .section__top{
        padding:  336px  12.5% 0;
    }

    .record__area{
        position: absolute;
        top: -2%;
        right: 4%;
        overflow: hidden;
    }
    
    .record__box{
        width: 34.3vw;
        height: 845px;
        position: relative;
    }

    .record__arm{
        width: 78%;
        height: auto;
        position: absolute;
        right: 0%;
        top: 29vw;
        z-index: 5;
    }
}/*pc769px*/

@media screen and (min-width:1400px) {
    .record__arm{
        width: 78%;
        height: auto;
        position: absolute;
        right: 0%;
        top: 26vw;
        z-index: 5;
    }
}


/*===title====*/
.about__box{
    margin: 0 auto;
    max-width: 400px;
}

.ttl__box{
    position: relative;
    margin-top: -184px
}

.ttl__mitake{
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 112px 0 -8px -5%;
}

.ttl__area{
    position: relative;
    margin: -20px 0 0 0;
}

.about__ttl{
    /*width: 75.2%;
    height: auto;
    margin: 0 0 0 auto;*/
    color: #F9B42C;
    font-size: 6.4rem;
    font-weight: 900;
    line-height: normal;
    position: relative;
    text-align: left; 
}

.about__ttl__p{
    color:var(--primary-Black);
    font-size: 6.4rem;
    font-weight: 900;
    line-height: normal;
    text-align: left; 
    text-shadow: 6px 6px 0px #452F29;
    position: absolute;
    inset: 0;
    z-index: -1;
    /* 追加 */
    -webkit-text-stroke: 6px var(--primary-Black);
}

.ttl__area::after {
    background-color: var(--primary-orange); /* 線の色 */
    content: "";
    width: 40px; /* 線の長さ */
    height: 6px; /* 線の高さ */
    position: absolute;
    bottom: 0%; /* 線の位置 */
    left: 0%; /* 線の中央寄せ */
}

.about__content{
    margin: -141px auto 0 13px;
}
.about__ttl__area{
    margin-top: 40px;
}
.about__subttl{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3; /* 26.2px */
    margin-top: 31px;
    letter-spacing: 0.01em;
}

.about__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1; /* 17.6px */
    margin: 33px auto 0 0;
}


.about__topicImg{
    display: block;
    background-color: var(--primary-white);
    width: 100%;
    max-width: 265px;
    height: auto;
    padding: 30px 13px 50px;
    border-radius: 8px;
    border: 1px solid var(--primary-Black);
    box-shadow: 4px 4px 0px 0 var(--primary-Black);
    margin: 35px auto 0;

    transform-origin: center;
    animation: yurayura 2s linear infinite;
}
/*ゆらゆらanimation*/
@keyframes yurayura {
0% , 100%{
    transform: rotate(5deg);
}
50%{
    transform: rotate(-5deg);
}
}

/*回転animation*/
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

.rotate {
animation: rotate 20s infinite linear;
}

/*みたけ君が移動してくる*/
.demo_item{
	width: 90px;
    height: 126px;
    background-image: url(../images/mitake.png);
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    display: block;
    position: relative;
}

.demo_item.anime{
    animation-name: upDown;
    animation-iteration-count: infinite;
    animation-duration: 0.1s;
    animation-direction: alternate;
    animation-timing-function: steps(2);
    transition-duration: .3s;
    transition-property: transform;
}

.demo_stage{
    position: relative;
    width: 100%;
    height: 65px;
    top: 0px;
    display: block;
    margin-top: 40px;
}

.demo_wrap{
	display: block;
    position: absolute;
    top: 20px;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-duration: 15s;
    animation-iteration-count: 1;
	margin-right: -25px;
}

.demo_wrap[data-order="left"] {
    animation-name: GoLeft;
}
.demo_wrap[data-order="right"] {
    animation-name: GoRight;
}

[data-order="right"] > .demo_item {
    transform: rotateY(180deg);
}

@keyframes GoLeft {
    0% {
        right: 10%;
    }
    100% {
        right: 90%;
    }
}
@keyframes GoRight {
    0% {
        right: 90%;
    }
    100% {
        right: 10%;
    }
}

@keyframes upDown {
    0% {
        top: 0;
    }
    100% {
        top: 3px;
    }
}/*ここまでanimation*/

.pic01{
    width: 80px;
    height: 116px;
}


/*ここからtitleのメディアクエリ*/
@media screen and (min-width:769px) {
    .about__box{
        margin: 0 auto;
        max-width: 860px;
    }

    .ttl__box{
        position: relative;
        margin-top: -184px
    }

    .ttl__mitake{
        width: 100%;
        max-width: 150px;
        margin: 60px 0 0 -2%;
    }

    .ttl__area{
        position: relative;
        margin: -48px 0 0 0;
    }

    .about__ttl{
        font-size: 12.8rem;
        position: relative;
        text-align: left; 
    }

    .about__ttl__p{
        font-size: 12.8rem;
        position: absolute;
        inset: 0;
        z-index: -1;
        /* 追加 */
        -webkit-text-stroke: 6px var(--primary-Black);
    }

    .ttl__area::after {
        width: 60px; /* 線の長さ */
        height: 8px;
        bottom: 5%;
    }

/*左側のtext*/
    .about__subttl{
        font-size: 3.4rem;
        margin-top: 0px;
    }

    .about__txt{
        font-size: 2.4rem;
        margin-top: 24px;
    }

    .about__txtbox{
        margin-top: 60px ;
        align-items: center;
        display: grid;
        justify-content:flex-start;
        position: relative;
    }

    .about__txt:first-of-type{
        margin-top: 0;
    }

    .about__area{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
/*みたけ君部分*/
    .demo_item{
        width: 480px;
        height: 174px;
        background-image: url(../images/mitakes-new.svg);
        background-size: 100% 100%;
        background-position: 0 0;
        background-repeat: no-repeat;
        display: block;
        position: relative;
    }
    
    .demo_stage{
        position: relative;
        width: 100%;
        height: 174px;
        top: 60px;
        display: block;
        margin-top: 40px;
    }
    
    
}/*pc768px*/

/*=======================
section content
ドリルレコードの中身
==========================*/
.section__content{
    padding: 24px 4.2% 40px;
}
/*1つめ*/
.content01{
    width: 93.2%;
    max-width: 500px;
   /* height: 97vw;*/
  /*  background-color: pink;*/
    margin: 0 auto;
}

.content-ttl{
    width: 81.6%;
    max-width: 400px;
    margin: 0 0 0 auto;
}

.content-subttlImg{
    width: 98.2%;
    height: auto;
    margin: -30vw 0 0 auto;
}

.content-ttlImg{
    width: 100%;
    height: auto;
}
/*2つめ*/
.content02{
    width: 93.2%;
   /* height: 110vw;*/
   max-width: 420px;
    margin: 64px auto 0;
}

.content__Img02{
    width: 100%;
    height: auto;
}

.content__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1; /* 17.6px */
    width: 88%;
    margin: 10px auto 0;
}
/*3つめ*/
.content03{
    display: flex;
    justify-content: center;
    width: 93.2%;
    max-width: 550px;
  /*  height: 110vw;*/
   /* background-color: pink;*/
    margin: 44px auto 0;
}

.content3__item01{
    width: 40%;
    height: auto;
}

.content__Img03{
    width: 100%;
    height: auto;
}

.content03__item02{
    width: 60%;
    height: auto;
    margin-top: 97px;
}

.content__Img04{
    width: 100%;
    height: auto;
}
/*４つめ*/
.content__Img05{
    width: 54.3%;
    display: block;
    margin: 0 7% 0 auto;
    max-width: 330px;
}

.content__Img06{
    width: 97.6%;
    max-width: 550px;
    margin: 8px auto 0; 
    display: block;
}

.content__Img07{
    width: 53.9%;
    height: auto;
    display: block;
    margin: 80px auto 0;
}

@media screen and (min-width:769px) {
    .section__content{
        padding: 100px 11.1% 56px 11.1%;
    }
    
    .content01{
        width: 100%;
        max-width: 985px;
        height: 37.5vw;
      /*  background-color: pink;*/
        margin: 0 auto;
        position: relative;
    }
    
    .content-subttlImg{
        width: 62.7%;
        height: auto;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .content-ttlImg{
        width: 50.3%;
        max-width: 495px;
        height: auto;
        position: absolute;
        top: 0;
        right: 0;
    }

    /*2つ目と3つ目*/
    .content__area{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 86.2%;
        max-width: 1000px;
      /*  height: 910px;*/
       /* background-color: pink;*/
        margin: 100px auto 0 ;
    }

    .content02{
        width: 51.4%;
        height: auto;
        margin: 64px 0 0 0;
    }
    
    .content__Img02{
        width: 576px;
        height: auto;
    }
    
    .content__txt{
        font-size: 2rem;
        width: 90%;
        margin: 10px auto 0;
    }
    /*3つめ*/
    .content03{
        display: block;
        width: 35%;
        height: auto;
        margin: initial;
    }

    .content03__item02 {
        width: 100%; 
        height: auto; 
        margin-top: 0; 
    }   
    
    .content3__item01 {
        width: 100%; 
        height: auto; 
        margin-top: 16px; 
    }   

    /*４つめ丸+ターンテーブル+みたけ*/
    .content__area02{
        max-width: 1000px;
        height: 58.6vw;
        max-height: 778px;
        position: relative;
      /*  background-color: aqua;*/
        margin: 56px auto 0;
    }
    .content__Img05{
        width: 36.6%;/*370px*/
        margin-left: auto;
        top: 2%;
        left: 0%;
        position: absolute;
    }
    
    .content__Img06{
        width: 59.4%;
        max-width: 594px;
        height: 45vw;
        max-height: 612px;
        position: absolute;
        top: 0%;
        right: 0%;
        margin-top: 0;
    }
    
    .content__Img07{
        width: 27.7%;
        height: auto;
        position: absolute;
        bottom: 0%;
        left: 5%;
    }
    
}/*pc769px

/*=======section spece
ドリルレコードの空間
======================*/

.section__space{
    padding: 32px 4.2% 102px;
}

/*1つめ*/
.spece01{
    width: 100%;
    max-width: 500px;
  /*  background-color: pink;*/
    margin: 0 auto;
}

.spece__ttl{
    width: 85.7%;
    max-width: 400px;
    height: auto;
    margin: 0 0 0 auto;
}

.spece__item01{
    width: 70.8%;
    max-width: 400px;
    height: auto;
    margin: -25vw auto 0 4%;
}

.spece__Img01{
    width: 100%;
    height: auto;
}

.spece__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2; /* 125% */
    width: 93%;
    margin: 10px auto 0;
}

/*２つめ*/
.spece02{
    display: flex;
    width: 93.8%;
    max-width: 420px;
    height: auto;
    margin: 22px auto 0;
   /* background-color: pink;*/
}

.mitake-work{
    width: 100%;
    max-width: 100px;
    margin-right: 20px;
}

.spece__Img02{
    width: 100%;
    height: auto;
}

.spece__txt02{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2; /* 125% */
    width: 88.6%;
    margin: 10px auto 0;
}

/*3つめ*/
.spece03{
    display: flex;
    margin: 10px auto 0;
    width: 98.2%;
    max-width: 500px;
}

.spece__Img03{
    width: 42.7%;
    margin-bottom: 117px;
    margin-right: 22px;
}

.spece__Img04{
    width: 53.4%;
    margin-top: 90px;
}
/*４つめ*/
.spece04{
    margin: 66px auto 0;
    width: 100%;
    max-width: 400px;
}

/*======ご来店ありがとうございます=====*/
.rotate__cont{
    position: relative;
    width: 234px;
    height: 234px;
    margin: 96px auto 0;
}
.rotate__inner-mitake{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;/* 読み上げ機能などに反応するように円より上に配置するため */
}
.rotate__float{
    animation: rotate 12s infinite linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*=======レスポンシブ========*/
@media screen and (min-width:769px) {
    .section__space{
        padding: 63px 11.1% 131px;
    }

    /*1つめ*/
    .spece01{
        width: 100%;
        max-width: 1000px;
    /*  background-color: pink;*/
        margin: 0 auto;
        display: flex;
        flex-direction: row-reverse;
    }

    .spece__ttl{
        width: 48.4%;
        max-width: 495px;
        height: auto;
        position: relative;
    }

    .spece__ttl-Img{
        width: 100%;
        max-width: 495px;
    }

    .spece__item01{
        width: 46.1%;
        /* height: 92.1vw;*/
        max-width: 454px;
        margin: 31px auto 0 0;
    }

    .spece__txt{
        font-size: 2rem;
        width: 93%;
        margin: 10px auto 0;
    }

    .spece__ttl::after{
        content: '';
        display: inline-block;
        background-image: url(../images/mitakesan.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 25%;
        height: 21vw;
        bottom: 13%;
        right: 21%;
        position: absolute;
    }

    /*２つめ*/
    .spece02{
        display: flex;
        width: 98.2%;
        max-width: 644px;
        margin: 22px auto 0;
    }

    .mitake-work{
        width: 40%;
        max-width: 160px;
        margin-right: 100px;
        margin-top: 100px;
    }
    
    .spece__Img02{
        width: 100%;
        max-width: 450px;
        height: auto;
    }

    .spece__txt02{
        width: 74%;
        font-size: 2rem;
        margin: 10px auto 0;
    }

    /*3つめと4つめと4つめ*/
    .content__area03{
        max-width: 1000px;
        display: flex;
        justify-content: space-between;
        margin: 30px auto 0;
    }

    .spece03{
        display: block;
        margin:initial;
        width: 40%;
        max-width: 400px;
    }
    
    .spece__Img03{
        width: 64%;
        max-width: 256px;
        margin: 0 auto;
    }

    .spece__Img04{
        width: 100%;
        max-width: 400px;
        margin-top: 40px;
    }
    
    
    .spece04{
        margin: 92px 0 0 0;
        width:54.6%;
        max-width: 544px;
    }


    /*======ご来店ありがとうございます=====*/
    .rotate__cont{
        position: relative;
        width: 348px;
        height: 348px;
        margin: 135px auto 0;
    }
    .rotate__inner-mitake{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        z-index: 1;/* 読み上げ機能などに反応するように円より上に配置するため */
    }
    .rotate__float{
        animation: rotate 12s infinite linear;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
}/*pc769px*/

/*=======section story========
ドリルレコードの原点
============================*/
.section__story{
    padding: 30px 4.2% 95px;
    background-image: url(../images/about-story-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.story__ttl{
    color: var(--primary-white);
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 2.6rem;
    font-weight: 700;
}

.story__ttl__span{
    color: var(--primary-Black);
    text-align: center;
    font-family: "IBM Plex Sans JP";
    font-size: 3rem;
    font-weight: 700;
}    

.story__ttl__span02{
    color: var(--primary-orange);
    text-align: center;
    font-family: "IBM Plex Sans JP";
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color:var(--primary-orange);
    font-size: 3rem;
    font-weight: 700;
}

.story__item{
    border-radius: 16px;
    background-color: rgba(251, 251, 251, 0.50);
    padding: 20px 4%;
    position: relative;
    margin-top: 10px;
}

.story__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 18px;
}

.story__sign{
    text-align: end;
    margin-top: 54px;
}

.story__item::after{
    display: inline-block;
    content: '';
    background-image: url(../images/menu-mitake-reverse.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 80px;
    height: 116px;
    bottom: -5%;
    left: 0%;
    position: absolute;
}

@media screen and (min-width:769px) {
    .section__story{
        padding: 122px 19.8% 148px;
        background-image: url(../images/about-story-bg-pc.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    
    .story__ttl{
        font-size: 5.4rem;
    }
    
    .story__ttl__span{
        font-size: 6.4rem;
    }  
    
    .story__ttl__span02{
        font-size: 6.4rem;
    }

    .story__item{
        padding: 40px;
        position: relative;
        margin-top: 40px;
    }
    
    .story__txt{
        font-size: 2.4rem;
        margin-top: 24px;
    }
    
    .story__sign{
        text-align: end;
        margin-top: 60px;
    }
    
    .story__item::after{
        display: inline-block;
        content: '';
        background-image: url(../images/menu-mitake-reverse.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        width: 23.8%;
        height: 34.4vw;
        bottom: -15%;
        left:-23%;
        position: absolute;
    }
    
}/*pc769px*/

@media screen and (min-width: 769px) {
    .footer {
        border-top: none;
    }
}