/* 375,100% スマホサイズ*/

/* 基本設定 */
@font-face {
    font-family: "IPAexMincho";
    src: url('ipaexm00401/ipaexm.ttf');
}
body{
    color: #4d515a;
    font-family: 'IPAexMincho',sans-serif;
}
a{ text-decoration: none; }
a:link{ color: #111111; }
a:visited { color: #111111; }/*選択したことのあるリンクの色を変更する。*/
a:active { color: #000000; background-color: #888888; }

/* フェードイン */
.fade-in {
    opacity: 0;
    transform: translateX(-20px); /*transform:  translateX[左右] or translateY[上下] (動かす距離[px])*/
    transition: all 1.3s 0s ease-out; /*transition: 変化させる対象 変化の時間 アニメーションの待機時間 アニメーションのスピードの変化*/
}

/* 背景画像 */
/* background-attachment: fixed;とbackground-size: cover;を同時に指定するとiOSで問題が起こる */
body::before{
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-image: url(img/bg.jpg);
    background-position: 50% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ヘッダー設定 */
header{
    z-index: 100;
    width: 100%;
    height: 110px;
    background-color:rgba(255, 255, 255, 0.9);
    /* 画面上部に固定 */
    position: fixed;
    top: 0px;
    left: 0px;
    padding-left: 20px;
}

/* PV設定 */
.pv{
    margin-top: 110px;
    width: 100%;
    aspect-ratio: 16/9;
}
.pv iframe{
    width: 100%;
    height: 100%;
}

/* Produce設定 */
.produce{
    display: flex;
    margin-top: 60px;
}
.produce_photo{
    width: 43%;
    margin: 40px 20px 40px 40px;
}
.produce_text{
    margin: 40px 40px 40px 0px;    
}
.produce_text_title{
    margin: 0px 60px 0px 40px;
}
.produce_text_title h1{
    font-size: 57px;
    text-align: left;
    /* 行間を無くす */
    line-height: 0px;
}
.produce_text_title hr{
    border-color: #000000;
    margin: 45px 0px 35px 0px;
}
.produce_text_title h3{
    font-size: 30px;
   text-align: right;
   /* 行間を無くす */
   line-height: 0px;
}
.produce_text_word{
    display: flex;
    /* 行間を無くす */
    line-height: 0px;
}
.produce_text_word img{
    /* 透明、矢印画像 */
    margin: 6px 8px auto 8px;
}
.produce_text_word h1{
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.produce_text_word p{
    font-size: 25px;
    margin: 20px 0px;
}

/* ボタン設定 */
.button{
    display: flex;
    
    margin: 40px 0px;
}
.button img{
    margin: auto 0px;
}
.button h2{
    font-size:  30px;
}
.button_Ablock_insta{
    color: #FFFFFF;
    background-color: rgb(180, 180, 180);
    font-size: 35px;
    margin-left: 31px;
    padding: 31px;
    border-radius: 35px
}
.button_Ablock_insta i{
    padding-right: 20px;
}
.button_Bblock_youtube{
    color: #FFFFFF;
    background-color: rgb(80, 80, 110);
    font-size: 35px;
    margin: 0px 25px;
    padding: 30px 36px;
    border-radius: 35px;
}
.button_Bblock_youtube i{
    padding-right: 25px;
}
.button_Cblock_tiktok{
    color: #FFFFFF;
    background-color: gray;
    font-size: 35px;
    padding: 30px 40px;
    padding-right: 60px;
    border-radius: 35px;
}
.button_Cblock_tiktok i{
    padding-right: 30px;
}


/* ヘアワックス設定 */
.intro{
    margin-top: 150px;
}
.intro_word{
    margin-bottom: 60px;
}
.intro_word h1{
    position: relative;
    text-align: center;
    font-size: 50px;
}
.intro_word h1::after{
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);/*位置調整*/
    bottom: -10px;/*線の上下位置*/
    width: 80px;/*線の長さ*/
    height: 2px;/*線の太さ*/
    background-color: #00000080;/*線の色*/
}

.intro_waxF{
    display: flex;
    background-color: rgb(218, 212, 194, 0.5);
}
.intro_waxF img{
    margin: 70px 50px 50px 50px;
}
.intro_waxF_text{
    width: 55%;
    margin: 50px 0px;
}
.intro_waxF_text h1{
    width: 70%;
    font-size: 40px;
    padding-bottom: 10px;
    border-bottom:solid 1px #000000;
}
.intro_waxF_text span{
    font-size: 30px;
}
.intro_waxF_text p{
    font-size: 24px;
    margin: 35px 0px;
}
.intro_waxF_text h3{
    /* 行間を無くす */
    line-height: 0.6em;
}
.intro_waxU{
    display: flex;
    background-color: rgba(165, 178, 185, 0.5);
    margin-top: 60px;
}
.intro_waxU img{
    margin: 70px 50px 50px 50px;
}
.intro_waxU_text{
    width: 55%;
    margin: 50px 0px;
}
.intro_waxU_text h1{
    width: 70%;
    font-size: 40px;
    padding-bottom: 10px;
    border-bottom:solid 1px #000000;
}
.intro_waxU_text span{
    font-size: 30px;
}
.intro_waxU_text p{
    font-size: 24px;
    margin: 35px 0px;
}
.intro_waxU_text h3{
    /* 行間を無くす */
    line-height: 0.6em;
}

.character_title{
    margin-top: 150px;
}
.character_title h1{
    position: relative;
    text-align: center;
    font-size: 50px;
}
.character_title h1::after{
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);/*位置調整*/
    bottom: -10px;/*線の上下位置*/
    width: 80px;/*線の長さ*/
    height: 2px;/*線の太さ*/
    background-color: #00000080;/*線の色*/
}
.characterF{
    margin-top: 110px;
}
.characterF_word{
    width: 55%;
    margin-left: 40px;
}
.characterF hr{
    border-color: #000000;
}
.characterF_word h1{
    font-size: 50px;
    line-height: 0;
}
.characterF_word span{
    font-size: 30px;
}
.characterF_word h2{
    font-size: 30px;
    line-height: 0px;
    text-align: right;
}
.characterF_text{
    background-color: rgb(218, 212, 194, 0.5);
    margin: 80px 60px;
    padding: 80px 40px;
    border-radius: 80px;
}
.characterF_text h1{
    position: relative;
    text-align: center;
    font-size: 48px;
}
.characterF_text span{
    font-size: 36px;
}
.characterF_text h1::after{
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);/*位置調整*/
    bottom: -20px;/*線の上下位置*/
    width: 350px;/*線の長さ*/
    height: 2px;/*線の太さ*/
    background-color: #000000;/*線の色*/
}
.characterF_text img{
    margin-top: 100px;
}
.characterF_text p{
    font-size: 30px;
    text-align: left;
    margin-top: 80px;
    padding-left: 50px;
}


.characterU{
    margin-top: 150px;
}
.characterU_word{
    width: 55%;
    margin-left: 40px;
}
.characterU hr{
    border-color: #000000;
}
.characterU_word h1{
    font-size: 50px;
    line-height: 0px;
}
.characterU_word span{
    font-size: 30px;
}
.characterU_word h2{
    font-size: 30px;
    line-height: 0px;
    text-align: right;
}
.characterU_text{
    background-color: rgba(165, 178, 185, 0.5);
    margin: 80px 60px;
    padding: 80px 40px;
    border-radius: 80px;
}
.characterU_text h1{
    position: relative;
    text-align: center;
    font-size: 48px;
}
.characterU_text span{
    font-size: 36px;
}
.characterU_text h1::after{
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);/*位置調整*/
    bottom: -20px;/*線の上下位置*/
    width: 350px;/*線の長さ*/
    height: 2px;/*線の太さ*/
    background-color: #000000;/*線の色*/
}
.characterU_text img{
    margin-top: 100px;
}
.characterU_text p{
    font-size: 30px;
    text-align: left;
    margin-top: 80px;
    padding-left: 50px;
}


.movie_word{
    margin-top: 200px;
    margin-bottom: 100px;
}
.movie_word h1{
    position: relative;
    text-align: center;
    font-size: 50px;
}
.movie_word h1::after{
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);/*位置調整*/
  bottom: -10px;/*線の上下位置*/
  width: 150px;/*線の長さ*/
  height: 2px;/*線の太さ*/
  background-color: #00000080;/*線の色*/
}
.movie_wax{
    margin-bottom: 100px;
    text-align: center;
}
.movie_wax h1{
    font-size: 46px;
}
.movie_wax img{
    margin: 80px 0px;
}
.movie_wax p{
    font-size: 30px;
    line-height: 2rem;
}


/* products設定 */
.products{
    margin-top: 200px;
}
.products img{
    display: block;
    margin: auto;
}
.products_word{
    width: 25%;
    margin-left: 10%;
    margin-bottom: 70px;
}
.products_word h1{
    font-size: 50px;
    padding-bottom: 10px;
    border-bottom:solid 1px #00000080;
}
.products_image{
    position: relative;
}
.products_image_abso{
    position: absolute;
    width: 770px;
    left: 50%;
    top: 120px;
    margin: 0px;
    border: none;
    box-shadow: none;
    /* 画像の中央を支点に */
    transform: translate(-50%,0%);
}
.products_image_abso p{
    font-size: 24px;
    text-align: left;
    margin-top: 140px;
    margin-bottom: 0px;
    margin-left: 35px;
    line-height: 3rem;
}
.products_image ul{
    margin: 0px;
}


.Loft{
    margin-top: 110px;
}


.shop{
    text-align: center;
    padding: 60px 100px 70px 100px;
    background-image: url(img/waxBG.jpg);
    background-size: cover;
    /* 背景の位置指定 */
    background-position: center;
}
.shop h1{
    font-size: 60px;
    line-height: 0px;
    margin-bottom: 50px;
}
.shop h3{
    font-size: 36px;
    padding: 15px;
    margin-bottom: 40px;
}
.shop a{
    font-size: 26px;
    color: #FFFFFF;
    background-color: #aaaaaa;
    padding: 20px 40px;
}


footer{
    background-color: #d9d9d9;
}
footer ul{
    list-style: none;
    margin-top: 0px;
    margin-left: 40px;
    margin-bottom: 100px;
    padding-top: 50px;
}
footer li{
    font-size: 30px;
    padding-bottom: 40px;
}
footer hr{
    border-color: #000000;
}
.main{
    font-family: sans-serif;
    font-size: 35px;
    font-weight: bold;
}
footer h1{
    font-size: 20px;
    text-align: center;
    padding: 30px 0px;
}
.icon{
    text-align: center;
    margin: 100px 0px;
}
#icon_youtube{
    padding: 0px 100px;
}
