/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div#outer {
    max-width: unset;
}

html {
    scroll-behavior: smooth;
}

/* 基本設定 */
body {
    font-family: 'Shippori Mincho', serif;
    background-color: #F0EEEB;
    color: rgba(34, 32, 32, 1);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contents {
    width: 100vw;
    overflow-x: hidden;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* セクション共通 */
section {
    width: 100%;
    overflow-x: hidden;
}

/* ヒーローセクション */
.hero {
    background-image: url('../images/fv.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 52.431vw;
    position: relative;
}

/* アバウトセクション */
.about {
    width: 100vw;
    padding: 8.333vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.778vw;
    position: relative;
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about__number {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.26;
    letter-spacing: 0.08em;

    width: 10.833vw;
    height: 3.75vw;
    background-color: rgba(255,255,255,0.24);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.556vw;
}

.about__title {
    color: white;
    font-size: 2.778vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.09em;
    width: 70.972vw;
}

.about__text {
    color: white;
    width: 70.972vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
}

.o_btn {
    width: 22.222vw;
    height: 5.694vw;
    color: white;
    border: 2px solid white;
    background-color: transparent;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    position: relative;
    text-decoration: none;
    border-radius: 1.111vw;
    padding: 1.667vw 7.431vw 1.667vw 5.3vw;
    position: relative;
    margin: 0 auto;
    margin-top: 1.389vw;
}

.o_btn::after {
    content: '';
    width: 1.667vw;
    height: 1.667vw;
    position: absolute;
    top: 2.014vw;
    right: 5.556vw;
    background-image: url('../images/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature {
    width: 100vw;
    padding: 8.333vw 0;
    display: flex;
    flex-direction: column;
    gap: 6.181vw;
    position: relative;
}

.feature__image01 {
    width: 58.75vw;
    height: 15.833vw;
}

.feature__image02 {
    width: 58.75vw;
    height: 15.833vw;
    margin-left: 41.042vw;
}

.feature__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.778vw;
    width: 77.083vw;
    margin: 0 auto;
}

.feature__title {
    font-size: 2.778vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.09em;
}

.feature__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
}

/* プロダクトセクション */
.product {
    width: 100vw;
    padding: 8.333vw 0;
    background-color: #634D2B;
    display: flex;
    flex-direction: column;
    gap: 5.556vw;
    align-items: center;
}

.product__title {
    color: white;
    font-size: 2.778vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.09em;
}

.product__list {
    width: 77.778vw;
    display: flex;
    flex-direction: column;
    gap: 5.556vw;
}

.product__item {
    position: relative;
}

.product__item:nth-child(1) {
    height: 57.986vw;
}

.product__item:nth-child(2) {
    height: 47.569vw;
}

.product__item:nth-child(3) {
    height: 47.569vw;
}

.product__item-image {
    width: 53.472vw;
    height: 32.569vw;
}

.product__item:nth-child(1) .product__item-image {
    position: absolute;
    top: 0;
    left: 0;
}

.product__item:nth-child(2) .product__item-image {
    position: absolute;
    top: 0;
    right: 0;
}

.product__item:nth-child(3) .product__item-image {
    position: absolute;
    top: 0;
    left: 0;
}

.product__item-text-wrap {
    position: absolute;
    top: 18.819vw;
    display: flex;
    flex-direction: column;
    gap: 4.306vw;
}

.product__item:nth-child(1) .product__item-text-wrap,
.product__item:nth-child(3) .product__item-text-wrap {
    right: 0;
    align-items: flex-end;
}

.product__item:nth-child(2) .product__item-text-wrap {
    left: 0;
    align-items: flex-start;
}

.product__item-title {
    color: #634D2B;
    font-size: 2.778vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.08em;
    padding: 0.556vw 1.181vw;
    background-color: white;
    width: fit-content;
}

.product__item-text {
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.product__item:nth-child(1) .product__item-text {
    width: 52.569vw;
    line-height: 1.6;
}

.product__item:nth-child(2) .product__item-text {
    width: 50.556vw;
    line-height: 2;
}

.product__item:nth-child(3) .product__item-text {
    width: 44.722vw;
    line-height: 2;
}

.product__attention {
    width: 30.486vw;
    height: 5.799vw;
    position: absolute;
    top: 12.014vw;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product__attention-mark {
    width: 3.125vw;
    height: 3.75vw;
    background-image:url('../images/line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.product__attention-mark--right {
    transform: scaleX(-1);
}

.product__attention-text {
    color: white;
    font-size: 1.389vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
}

.you {
    width: 100vw;
    padding: 8.333vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5.556vw;
    position: relative;
}

.you__title {
    color: black;
    font-size: 2.778vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.09em;
    text-align: center;
}

.you__image-wrap {
    width: 77.778vw;
    padding: 2.778vw 1.111vw;
    display: flex;
    flex-direction: column;
    gap: 2.778vw;
}

.you__image-row1 {
    display: flex;
    justify-content: space-between;
}

.you__image-row1-item {
    width: 18.056vw;
    height: 26.667vw;
    background-color: white;
    position: relative;
}

.you__image-row1-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.you__image-row1-item-number {
    width: 2.847vw;
    height: 2.569vw;
    position: absolute;
    top: -0.625vw;
    left: 0.417vw;
}

.you__image-row1-item:nth-child(1) .you__image-row1-item-number {
    top: -0.625vw;
    left: 0.417vw;
}

.you__image-row1-item:nth-child(2) .you__image-row1-item-number {
    left: 0.764vw;
    top: -0.486vw;
}

.you__image-row1-item:nth-child(3) .you__image-row1-item-number {
    left: 0.347vw;
    top: -0.694vw;
}

.you__image-row1-item:nth-child(4) .you__image-row1-item-number {
    left: 0.694vw;
    top: -0.694vw;
}

.you__image-row2-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.667vw;
}

.you__image-row2-caption {
    width: 22.708vw;
    height: 5.556vw;
    background-image: url('../images/attention.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.you__image-row2-caption-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.265;
    letter-spacing: 0.08em;
    text-align: center;
}

.you__image-row2 {
    width: 74.722vw;
    display: flex;
    justify-content: space-between;
}

.you__image-row2-item {
    width: 24.167vw;
    height: 16.111vw;
}

.you__badge {
    width: 19.382vw;
    height: 16.736vw;
    position: absolute;
    top: 3.611vw;
    right: 8.188vw;
}

.profile {
    width: 100vw;
    padding: 8.333vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.778vw;
    position: relative;
    background-color: #634D2B;
}

.profile__title {
    color: white;
    font-size: 2.778vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.09em;
}

.profile__wrap {
    width: 77.639vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile__image {
    width: 22.965vw;
    height: 23.854vw;
}

.profile__text-wrap {
    width: 51.896vw;
    background-color: white;
    border-radius: 1.667vw;
    padding: 2.5vw 2.778vw;
    display: flex;
    flex-direction: column;
    gap :1.667vw;
    position: relative;
}

.profile__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}

.profile__name {
    font-size: 2.222vw;
    font-weight: 600;
    line-height: 1.26;
    letter-spacing: 0.08em;
    text-align: right;
}

.profile__triangle {
    position: absolute;
    bottom: 1.319vw;
    left: -1.576vw;
    width: 3.194vw;
    height: 5.417vw;
    background-image: url('../images/triangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.order {
    background-color: white;
    width: 100vw;
    padding: 8.333vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5.556vw;
}

.order__image {
    width: 72.222vw;
    height: 24.477vw;
}

.order__text-wrap {
    width: 72.222vw;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.778vw;
    position: relative;
}

.order__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.111vw;
}

.order__title {
    font-size: 2.778vw;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.order__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.556vw;
}

.order__price {
    font-size: 2.778vw;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.order__price-text {
    color: #E60012;
    font-size: 2.222vw;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.order__price-text span {
    color: #222020;
    font-size: 1.667vw;
    font-weight: 400;
}

.order__text1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.order__text1 span {
    font-weight: bold;
}

.order__text2 { 
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.order__btn {
    background-color: #634D2B;
    color: whiet;
}

.order__badge {
    width: 19.382vw;
    height: 16.736vw;
    position: absolute;
    top: -2.153vw;
    right: 2.083vw;
}

/* レスポンシブデザイン */
@media (max-width: 780px) {
       
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .contents {
        width: 100vw;
    }

    div#outer {
         padding-top: 50px !important;
    }

    /* セクション共通 */
    section {
        width: 100%;
        overflow-x: hidden;
    }

    /* ヒーローセクション */
    .hero {
        background-image: url('../images/sp-fv.jpg');
        background-size: cover;
        background-position: center;
        width: 100vw;
        height: 175.2vw;
    }

    /* アバウトセクション */
    .about {
        width: 100vw;
        padding: 32vw 0;
        display: flex;
        flex-direction: column;
        gap: 13.333vw;
    }

    .about__number {
        font-size: 6.4vw;
        width: 41.6vw;
        height: 14.4vw;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2.133vw;
    }

    .about__title {
        font-size: 8vw;
        width: 93.333vw;
    }

    .about__text {
        font-size: 4.8vw;
        width: 93.333vw;
    }
    
    .o_btn {
        width: 85.333vw;
        height: 21.867vw;
        display: inline-block;
        font-size: 6.4vw;
        position: relative;
        border-radius: 4.267vw;
        padding: 6.4vw 27vw 6.4vw 21.333vw;
        position: relative;
        margin: 0 auto;
    }

    .o_btn::after {
        content: '';
        width: 6.4vw;
        height: 6.4vw;
        position: absolute;
        top: 7.733vw;
        right: 21.333vw;
    }

    .feature {
        width: 100vw;
        padding: 32vw 0;
        display: flex;
        flex-direction: column;
        gap: 13.333vw;
    }

    .feature__image01 {
        width: 85.333vw;
        height: 22.997vw;
    }

    .feature__image02 {
        width: 85.333vw;
        height: 22.997vw;
        margin-left: 14.667vw;
    }

    .feature__text-wrap {
        display: flex;
        flex-direction: column;
        gap: 10.667vw;
        width: 93.333vw;
        margin: 0 auto;
    }

    .feature__title {
        font-size: 8vw;
    }

    .feature__text {
        font-size: 4.8vw;
    }

    /* プロダクトセクション */
    .product {
        width: 100vw;
        padding: 32vw 0;
    }

    .product__title {
        font-size: 8vw;
    }

    .product__list {
        width: 298.667vw;
        width: 100vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 21.333vw;
    }

    .product__item {
        position: relative;
    }

    .product__item:nth-child(1) {
        height: unset;
    }

    .product__item:nth-child(2) {
        height: unset;
    }

    .product__item:nth-child(3) {
        height: unset;
    }

    .product__item-image {
        width: 93.333vw;
        height: 56.848vw;
    }

    .product__item:nth-child(1) .product__item-image {
        position: static;
    }

    .product__item:nth-child(2) .product__item-image {
        position: static;
        margin-left: 6.666vw;
    }

    .product__item:nth-child(3) .product__item-image {
        position: static;
    }

    .product__item-text-wrap {
        display: flex;
        flex-direction: column;
        gap: 10.667vw;
        position: static;
    }

    .product__item:nth-child(1) .product__item-text-wrap {
        margin-top: -8vw;
        align-items: flex-end;
    }

    .product__item:nth-child(2) .product__item-text-wrap {
        margin-top: -8vw;
    }

    .product__item:nth-child(3) .product__item-text-wrap {
        margin-top: -8vw;
    }

    .product__item-title {
        font-size: 5.4vw;
        padding: 2.133vw 4.267vw;
    }

    .product__item-text {
   
        font-size: 4.8vw;
    }

    .product__item:nth-child(1) .product__item-text {
        width: 93.333vw;
        margin: 0 auto;
    }

    .product__item:nth-child(2) .product__item-text {
        width: 93.333vw;
        margin: 0 auto;
    }

    .product__item:nth-child(3) .product__item-text {
        width: 93.333vw;
        margin: 0 auto;
    }

    .product__attention {
        width: 70vw;
        height: 15vw;
        position: absolute;
        top: 32vw;
        right: 5vw;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .product__attention-mark {
        width: 12vw;
        height: 14.4vw;

        width: 5vw;
        height: 6vw;
    }

    .product__attention-text {
        font-size: 3.6vw;
    }

    .you {
        width: 100vw;
        padding: 42.667vw 0 32vw;
        display: flex;
        flex-direction: column;
        gap: 13.333vw;
        position: relative;
    }

    .you__title {
        color: black;
        font-size: 7.467vw;
        font-weight: 600;
        line-height: 1.8;
        letter-spacing: 0;
        text-align: center;
    }

    .you__image-wrap {
        width: 85.333vw;
        padding: 10.667vw 4.267vw;
        display: flex;
        flex-direction: column;
        gap: 10.667vw;
        padding: 0;
    }

    .you__image-row1 {
        display: flex;
        flex-direction: column;
        gap: 8vw;
        justify-content: space-between;
    }

    .you__image-row1-item {
        width: 100%;
        height: unset;
        background-color: white;
        position: relative;
    }

    .you__image-row1-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .you__image-row1-item-number {
        width: 10.933vw;
        height: 9.867vw;
        position: absolute;
    }

    .you__image-row1-item:nth-child(1) .you__image-row1-item-number {
        top: -2.4vw;
        left: 2.933vw;
    }

    .you__image-row1-item:nth-child(2) .you__image-row1-item-number {
        top: -1.867vw;
        left: 4.267vw;
    }

    .you__image-row1-item:nth-child(3) .you__image-row1-item-number {
        left: 2.933vw;
        top: -2.667vw;
    }

    .you__image-row1-item:nth-child(4) .you__image-row1-item-number {
        left: 4.267vw;
        top: -2.667vw;
    }

    .you__image-row2-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10.667vw;
    }

    .you__image-row2-caption {
        width: 87.2vw;
        height: 21.333vw;
        background-image: url('../images/attention.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .you__image-row2-caption-text {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 6.4vw;
        font-weight: 400;
        line-height: 1.265;
        letter-spacing: 0.08em;
        text-align: center;
    }

    .you__image-row2 {
        width: 85.333vw;
        display: flex;
        flex-direction: column;
        gap: 8vw;
        justify-content: space-between;
    }

    .you__image-row2-item {
        width: 85.333vw;
        height: 56.888vw;
    }

    .you__badge {
        width: 40vw;
        height: 34.539vw;
        position: absolute;
        top: 5.333vw;
        right: 5.333vw;
    }

    .profile {
        width: 100vw;
        padding: 32vw 0;
        display: flex;
        flex-direction: column;
        gap: 13.333vw;
    }

    .profile__title {
        color: white;
        font-size: 8vw;
        font-weight: 600;
        line-height: 1.8;
        letter-spacing: 0.09em;
    }

    .profile__wrap {
        width: 85.333vw;
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        justify-content: space-between;
        gap: 8vw;
    }

    .profile__image {
        width: 88.187vw;
        height: 91.6vw;
    }

    .profile__text-wrap {
        width: 85.333vw;
        border-radius: 6.4vw;
        padding: 9.6vw 10.667vw;
        display: flex;
        flex-direction: column;
        gap :6.4vw;
        position: relative;
    }

    .profile__text {
        font-size: 4.8vw;
    }

    .profile__name {
        font-size: 6.933vw;
    }

    .profile__triangle {
        position: absolute;
        width: 12.267vw;
        height: 20.8vw;
        bottom: -10.667vw;
        left: 10.667vw;
        transform: rotate(-90deg);
    }

    .order {
        width: 100vw;
        padding: 32vw 0;
        display: flex;
        flex-direction: column;
        gap: 13.333vw;
    }

    .order__image {
        width: 93.333vw;
        height: 31.632vw;
        height: 45vw;
    }

    .order__text-wrap {
        width: 93.333vw;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10.667vw;
        position: relative;
    }

    .order__title-wrap {
        display: flex;
        flex-direction: column;
        gap: 4.267vw;
    }

    .order__title {
        font-size: 8vw;
    }

    .order__price-wrap {
        display: flex;
        flex-direction: column;
        gap: 2.133vw;
    }

    .order__price {
        font-size: 8vw;
    }

    .order__price-text {
        font-size: 6.933vw;
    }

    .order__price-text span {
        font-size: 5.867vw;
    }

    .order__text1 {
        font-size: 4.267vw;
    }

    .order__text2 { 
        font-size: 3.733vw;
    }

    .order__badge {
        width: 40vw;
        height: 34.539vw;
        position: absolute;
        top: -8.267vw;
        right: -5.333vw;
    }
}
