@charset "utf-8";

/* CSS Document */
/***************<下層ページ共通>**************/
header {
    position: fixed;
    top: 0;
}

h1.green {
    display: none;
}

main {
    margin-top: 200px;
}

/**************</下層ページ共通>***************/
.pricebox {
    width: 350px;
    height: 460px;
    border: 1px solid #f2f2f2;
    background: linear-gradient(#fff, #f7f7f7);
    box-shadow: 2px 2px 5px #bababa;
}

.photobox {
    width: 530px;
    height: 491px;
    margin-left: 100px;
    margin-right: 100px;
}

.row {
    flex-direction: row-reverse;
}

h4.green_underline {
    background-image: url(../images/underline_green1.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 80%;
    padding-top: 20px;
    margin-bottom: 10px;
}

h4.green_underline2 {
    text-align: right;
    background-image: url(../images/underline_green2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 80%;
    padding-top: 20px;
    margin-bottom: 20px;
}

.memo1 {
    text-align: left;
    color: #ff2727;
    padding-right: 20px;
    font-size: 16px;
}

.pricebox dt {
    float: left;
    padding-top: 7px;
    padding-left: 20px;
}

.pricebox dt span {
    font-size: 16px;
}

.pricebox div {
    margin: 0 20px;
}

.padding1 {
    text-align: right;
    padding-right: 20px;
    line-height: 2;
    border-bottom: 1px dashed #bababa;
}

.padding1 span {
    font-size: 16px;
}

.gray {
    background: #eaeaea;
    margin-top:50px;
    padding: 50px 0;
    position: relative;
    z-index: -1;
}

.p_text {
    text-align: center;
    margin: 20px;
    font-size: 16px;
}

.p_text p {
    margin-top: 40px;
}

.caution {
    font-size: 16px;
    margin: 10px 0;
}

.textbox p {
    box-shadow: inset 1px 1px 10px 10px #fff;
}

.textbox2 > p {
    box-shadow: inset 1px 1px 10px 10px #fff;
}

.textbox2 p {
    box-shadow: inset 1px 1px 10px 10px #eaeaea;
}

.textbox img,
.textbox2 img {
    position: relative;
    z-index: -1;
}
.yutaka_kun{
    text-align:center;
}

/********************<ボタン浮き出る>*******************/
.hover_front {
    margin-top:20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.hover_front:hover {
    transform: translateY(-0.3em);
}

.hover_front:active {
    position: relative;
    top: 3px;
}

/********************</ボタン浮き出る>*******************/

.fuwafuwa {
    animation-name: fuwa-chan;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
@keyframes fuwa-chan {
    0% {
        transform: translate(0, 0px);
    }

    100% {
        transform: translate(0, -15px)
    }
}


/**********************<レスポンシブ>*********************/
@media screen and (max-width:640px) {

    /*****************下層ページ共通*************/
    header {
        position: fixed;
        top: 0;
    }

    .my-parts {
        border-left: none;
        color: #008c0d;
    }

    main {
        margin-top: 150px;
    }

    /*****************************************/
    .pricebox,
    .photobox {
        width: auto;
        height: auto;
        padding-bottom: 20px;
    }

    .pricebox {
        margin: 20px;
    }

    .photobox {
        margin: 20px;
    }

    .textbox p,
    .textbox2 p {
        text-align: center;
    }

    .p_text p {
        margin-top: 0;
    }

    .gray {
        padding-top: 10px;
    }

    .detail_btn img {
        width: 40%;
    }

    .pricebox dt {
        font-size: 16px;
    }

    .padding1 {
        font-size: 16px;
    }

    .caution {
        font-size: 14px;
    }
    
    .yutaka_kun img{
        width:45%;
    }

    /**********************</レスポンシブ>*********************/
