body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 20px;
}

/* 導入部分 */
.left {
    flex: 1;
    width: 80%;
    margin-left: 20%;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-left: -120px;
}

.introductiontext {
    position: absolute;
    margin-left: 15%;
    margin-bottom: 10px;
    margin-top: -40%;
    width: 55%;
}

.introduction {
    width: 100%;
}

.text-content {
    margin: 80px 80px 20px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mb-12 {
    max-width: 100%;
    margin-bottom: 48px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.font-bold {
    font-weight: bold;
    margin-left: 30px;
}

.text-gray-600 {
    color: #718096;
    line-height: 60px;

}

.Amazon1,.Amazon2 {
    position: relative;
    width: 100%;
    margin: auto;
    margin-top: 50px;
}

.Amazon1 button,.Amazon2 button {
    position: absolute;
    top: 83%;
    right: 7%;
    font-size: 160%;
    width: 28%;
    height: 10%;
    border-radius: 30px;
    border: 2px solid transparent;
    background: #fedbff;
    color: #333;
    cursor: pointer;
    box-shadow: 10px 10px 10px #00000060;

}

.Amazon1 button:hover,.Amazon2 button:hover {
    border: 2px solid #fedbff;
    background: #FFF;
    color: #333;
}

.Point1 {
    width: 100%;
    margin-top: 30px;
}

.Bakuchiol {
    width: 100%;
    margin: 10% 0 5%;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}
.pc-break {
    display: block;
}
.sp-only {
    display: none;
}

@media screen and (max-width:935px) {

    /*　画面サイズが935px以下の場合ここの記述が適用される（タブレット想定）　*/
    .Amazon1 button,.Amazon2 button {
        font-size: 50%;
        width: 28%;
        height: 10%;
        border-radius: 28px;
    }
}
    @media screen and (max-width:826px) {

        /*　画面サイズが826px以下の場合ここの記述が適用される（タブレット想定文字サイズだけ変更）　*/
        .text-gray-600 {
            font-size: 68%;
            line-height: 50px;
        }
    }
    @media screen and (max-width:560px) {

        /*　画面サイズが560px以下の場合ここの記述が適用される（スマホ想定）　*/
        .Amazon1 button,.Amazon2 button{
            position: absolute;
            top: 85%;
            right: 15%;
            font-size: 110%;
            width: 70%;
            height: 10%;
            border-radius: 30px;
        }
        .text-gray-600 {
            line-height: 35px;
            font-size: 65%;
        }
        .grid {
            display: block;
        }
        .left{
            width: 50%;
            margin-left: 25%;
        }
        .right {
            margin-bottom: 20px;
            margin-left: 20%;
            margin-top: -70px;
        }
        .pc-break {
            display: inline; /* PC用の改行を解除 */
        }
        
        .sp-only {
            display: block; /* スマホ用の改行を表示 */
        }
        .introductiontext {
            margin-left: 10%;
            margin-top: -60%;
            width: 60%;
        }
        .Amazon1 {
            width: 100%;
            margin-top: 250px;
        }
        .Amazon2 {
            width: 100%;
            margin-top: -30%;
        }



        
    } 


