@media(min-width: 768px) {


    /* 1行目*************************************************************************** */
    /* ヘッダー headerTop */
    .headerTop {
        display: flex;
        background-color: #663333;
        color: white;
        height: 60px;
        width: 100%;
        min-width: 1000px;
    }
    /* ヘッダー headerTop・ここまで */
    
    .nav-drawer, .productCategory, .searchArea {
        flex: auto;
    } 
    
    
    /* ナビゲーションドロワー */
    #nav-drawer {
        position: relative;
        margin: auto;
        margin-left: 15px;
    }
    
    /* チェックボックスを非表示にする */
    .nav-hidden {
        display: none;
    }
    
    /* アイコンのスペース */
    #nav-open {
        display: block;
        width: 38px;
        height: 40px;
        vertical-align: middle;
    }
    
    /* ハンバーガーアイコンをcssだけで表現 */
    #nav-open span, #nav-open span:before, #nav-open span:after {
        position: absolute;
        height: 4px; /* 線の太さ */
        width: 40px; /* 長さ */
        margin-top: 5px;
        
        border-radius: 3px;
        background: #ffffff;
        display: block;
        content: '';
        cursor: pointer;
    }
    
    #nav-open span:before {
        bottom: -12px;
    }
    
    #nav-open span:after {
        bottom: -24px;
    }
    
    
    /* 閉じたときの薄黒カバー */
    #nav-close {
        display: none; /* はじめは隠しておく */
        position: fixed;
        z-index: 99;
        top: 0; /* 全体に広がるように */
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: 0.3s ease-in-out;
    }
    
    /* 中身 */
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999; /* 最前面に */
        width: 90%; /* 右側に隙間を作る（閉じるカバーを表示） */
        max-width: 330px; /* 最大幅（調整必要） */
        height: 100%;
        background: #fff; /* 背景色 */
        color: black;
        line-height: 250%;
        padding-left: 15px;
        transition: 0.3s ease-in-out; /* 滑らかに表示 */
        -webkit-transform: translateX(-105%);
        transform: translateX(-105%);
    }
    
    /* チェックが入ったらもろもろ表示 */
    #nav-input:checked ~ #nav-close {
        display: block;
        opacity: 0.5;
    }
    
    #nav-input:checked ~ #nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%); /* 中身を表示（右へスライド） */
        box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    }
    
    .nav-drawer-content li:hover {
        background-color: #eaeded;
    }
    /* ナビゲーションドロワー・ここまで */
    
    /* Sample.co.jpロゴマーク */
    .headerLogoMark {
        width: 161px;
    }
    
    
    .headerLogoMark img {
        width: 161px;
        height: 50px;
    }
    
    .sampleLogoMini {
        display: none;
    }
    
    /* Sample.co.jpロゴマーク */
    
    /* 商品カテゴリー選択 */
    .productCategoryArea {
        width: 132px;
        margin: auto;
    }
    
    .productCategory option {
        display: inline-block;
        color: black;
        font-size: 24px;
        padding-left: 10px;
    }
    
    .productCategory select {
        cursor: pointer;
    }
    
    /* 商品カテゴリー選択・ここまで */
    
    
    
    /* 検索窓 */
    
    .searchArea {
        margin: auto;
    }
    
    .search {
        display: flex;
    }
    
    .search button {
        margin-left: 5px;
    }
    
    .searchWindow {
        background-color: #ffffff;
        color: black;
        height: 24px;
        padding: 16px;
        flex: auto;
        border: solid 3px #a36666;
    }
    /* 検索窓・ここまで */
    
    
    
    /* 言語選択を囲む */
    .languageChoiceArea {
        position: relative;
        
    }
    /* 言語選択を囲む・ここまで */
    
    
    /* 言語選択の表面 */
    .languageChoiceSurface {
        width: 64px;
        height: 60px;
        
    }
    
    .languageChoiceSurface img {
        height: 30px;
        margin-top: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
    /* 言語選択の表面・ここまで */
    
    
    /* 言語選択の中身 */
    /* 通常は中身を隠しておく */
    .languageChoiceContents {
        display: none;
    }
    
    /* .showが付与されたときに中身を表示する */
    .languageChoiceContents.show {
        background-color: white;
        color: black;
        display: block;
        border: solid 3px #a36666; 
        border-radius: 5px;
        position: absolute;
        top: 30px;
        left: -60px;
        z-index: 50;
        width: 200px;
        height: 140px;
        line-height: 200%;
        padding: 5px;
    }
    
    /* 言語選択の中身・ここまで */
    
    
    /* ログイン・アカウントサービスを囲む */
    .loginListAccountServiceArea {
        position: relative;
        width: auto;
        min-width: 64px;
        margin: auto;
        text-align: center;
    }
    /* ログイン・アカウントサービスを囲む・ここまで */
    
    /* ログイン・アカウントサービス */
    /* 通常は中身を隠しておく */
    .loginListAccountServiceContents {
        display: none;
    }
    
    /* .showが付与されたときに中身を表示する */
    .loginListAccountServiceContents.show {
        background-color: royalblue;
        color: black;
        display: block;
        border: solid 3px #a36666;
        border-radius: 5px;
        position: absolute;
        top: 20px;
        left: -200px;
        z-index: 50;
        width: 440px;
        height: auto;
    }
    
    .loginButton {
        background-color: white;
        width: 100%;
        text-align: center;
        padding-top: 14px;
        color: black;
    }
    
    
    .loginButton button {
        border: solid 1px;
        border-radius: 3px;
        padding: 10px 80px;
        background-image: -webkit-linear-gradient(top, #dcf7fc, #ee396f);
    }
    
    .loginButton p {
        font-size: 12px;
        padding: 12px 0;
    }
    
    
    .loginButton a {
        color: #0055aa;
    }
    
    .loginList {
        display: flex;
    }
    
    .leftList {
        background-color: white;
        width: 50%;
        padding: 20px;
        line-height: 150%;
    }
    
    .rightList {
        background-color: white;
        width: 50%;
        padding: 20px;
        line-height: 150%;
    }
    /* ログイン・アカウントサービス・ここまで */
    
    
    
    /* 返本と注文履歴 */
    .returnsOrderHistory {
        width: auto;
        min-width: 64px;
        margin: auto 10px;
        text-align: center;
    }
    /* 返本と注文履歴・ここまで */
    
    
    
    /* Prime登録用リンク */
    .primeRegistration {
        width: auto;
        min-width: 64px;
        margin: auto 10px;
        text-align: center;
    }
    /* Prime登録用リンク・ここまで */
    
    
    
    /* カート用リンク */
    .cart {
        width: auto;
        min-width: 64px;
        margin: auto 10px;
        text-align: center;
    }
    /* カート用リンク・ここまで */
    
    
    /* 1行目***************************************************************************・ここまで */
    
    
    
    /* 2行目*************************************************************************** */
    .row2 {
        display: flex;
        background-color: #660000;
        color: seashell;
        height: 39px;
        min-width: 1000px;
    }
    
    .row2 div {
        flex: auto;
        margin: auto;
        padding-left: 3%;
    }
    
    /* 2行目***************************************************************************・ここまで */
    
    
    /* 3行目*************************************************************************** */
    .row3 {
        display: flex;
        background-color: #996666;
        color: seashell;
        border-bottom: solid 1px gray;
        min-width: 1000px;
    }
    
    .row3 div {
        margin: 10px;
        
    }
    
    
    
    /* 3行目***************************************************************************・ここまで */
    
    
    
    
    
    
    /* 4行目*************************************************************************** */
    .row4 {
        width: 100%;
    }

    .row4All {
        width: auto;

    }

    .row4Top {
        padding-right: 3px;
    }
    
    .row4Top a {
        color: #0066C4;
        font-weight: bold;
    }
    
    .row4Contents {
    
        display: flex;
        justify-content: center;
        font-size: 12px;
        min-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .row4Top {
        padding-top: 20px;
        padding-left: 5px;
        font-size: 12px;
    }
    
    .row4Contents div {
        background-color: #F6F6F6;
        height: 138px;
        min-width: 80px;
        
    }


    .row4 img {
        /* width: 5vw; */
        height: 5vw;
        min-height: 51px;
        max-height: 67px;
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 27px;
        padding-right: 10px;
    }
    
    /* .row4ContentsSurface1 {
        width: 100%;
        min-width: 50px;
        margin: 0px 10px;
    } */
    
    .row4Price {
        color: #aa0000;
        font-style: oblique;
        font-size: 16px;
        font-weight: bold;

    }
    
    .row4ProductName {
        color: #107cc4;
        font-style: normal;
        font-size: 14px;
        font-weight: bold;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-left: 2px;
        padding-right: 2px;
    }
    
    .row4ContentsComment1, .row4ContentsComment2, .row4ContentsComment3, .row4ContentsComment4, 
    .row4ContentsComment5, .row4ContentsComment6, .row4ContentsComment7, .row4ContentsComment8, 
    .row4ContentsComment9, .row4ContentsComment10 {
        display: none;
    }
    
    .row4ContentsComment1.show, .row4ContentsComment2.show, .row4ContentsComment3.show, 
    .row4ContentsComment4.show, .row4ContentsComment5.show, .row4ContentsComment6.show, 
    .row4ContentsComment7.show, .row4ContentsComment8.show, .row4ContentsComment9.show, 
    .row4ContentsComment10.show {
        display: block;
        border: solid 1px #a36666;
        /* position: relative;
        top: -10px; */
        position: absolute;
        top: 25vh;
        z-index: 50;
        background-color: white;
        font-size: 16px;
        text-shadow: black 3 3;
        white-space: nowrap;
    }
    
    
    
    
    
    /* 4行目***************************************************************************・ここまで */
    
    
    
    /* 5行目*************************************************************************** */
    
    .row5 {
        width: 100%;
        min-width: 1000px;
        margin-top: 20px;
        margin-bottom: 20px;
    
    
    }
    
    .row5Contents {
        display: flex;
        justify-content: center;
    }
    
    
    .row5 h2 {
        background-color: #EBF8FA;
        border: solid #008296 1px;
        text-align: center;
        flex: auto;
        max-width: 1436px;
        padding: 10px 0;
    }
    
    /* 5行目***************************************************************************・ここまで */
    
    
    /* 6行目*************************************************************************** */
    .row6 {
        max-width: 1436px;
        background-color: white;
        margin-left: auto;
        margin-right: auto;
    }
    
    .row6Contents {
        display: flex;
        
        
    }
    
    .row6ProductName {
        color: #107cc4;
        font-style: normal;
        font-size: 20px;
        font-weight: bold;
    }
    
    .row6Price {
        color: #aa0000;
        font-style: oblique;
        font-size: 16px;
        font-weight: bold;
    }
    
    .row6DeliveryDate, .stockQuantity {
        color: #aa0000;
        font-size: 16px;
        font-weight: bold;
    }
    
    .row6Column1 {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 500px;
        
    }

    
    .main-carousel {
        display: none;
    }
    
    .row6Column2 {
        max-width: 579px;
        max-height: 579px;
    }
    
    .row6Column2 img {
        width: 100%;
        min-width: 362px;
        margin: 10px 10px;
    }
    
    .row6Column3 {
        margin: 10px;
        line-height: 150%;
        max-width: 483px;
        min-width: 300px;
        word-wrap: break-word;
    }
    
    .row6Column3 p, .row6Column3 ul {
        margin: 20px;
    }
    
    .row6Column3 img {
        width: 100%;
        margin: 10px 0;
        
    }
    
    .row6Column4 {
        margin: 20px;
        line-height: 150%;
    }
    
    .row6Column4 button {
        color: #0066C4;
        font-weight: bold;
    }
    
    .row6Column4 p {
        width: auto;
        min-width: 180px;
    }
    /* 6行目***************************************************************************・ここまで */
    
    
    
    /* 7行目*************************************************************************** */
    .row7 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
    }
    /* 7行目***************************************************************************・ここまで */
    
    
    
    /* 8行目*************************************************************************** */
    .row8 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
        min-width: 1000px;
    }
    
    .row8 img {
        max-width: 1464px;
        max-height: 832px;
        width: 100%;
        
        height: auto;
    }
    /* 8行目***************************************************************************・ここまで */
    
    
    
    /* 9行目*************************************************************************** */
    .row9 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
        min-width: 1000px;
    }
    
    .row9 img {
        max-width: 480px;
        max-height: 325px;
    }
    
    .row9 p {
        margin: 10px;
    }
    /* 9行目***************************************************************************・ここまで */
    
    
    
    /* 10行目*************************************************************************** */
    .row10 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
        min-width: 1000px;
    }
    
    .row10 img {
        max-width: 1464px;
        max-height: 384px;
    }
    /* 10行目***************************************************************************・ここまで */
    
    
    /* 11行目*************************************************************************** */
    .row11 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
        min-width: 1000px;
    }
    
    .row11 img {
        max-width: 1464px;
        max-height: 70px;
    }
    /* 11行目***************************************************************************・ここまで */
    
    
    /* 12行目*************************************************************************** */
    .row12 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
        min-width: 1000px;
    }
    
    .row12 p {
        margin: 10px;
        line-height: 150%;
    }
    
    .row12 img {
        max-width: 800px;
        max-height: 540px;
    }
    /* 12行目***************************************************************************・ここまで */
    
    
    /* 13行目*************************************************************************** */
    .row13 {
        display: flex;
        justify-content: center;
        margin: 20px 10px;
        line-height: 150%;
        min-width: 1000px;
    }
    
    .row13 img {
        max-width: 800px;
        max-height: 540px;
    }
    /* 13行目***************************************************************************・ここまで */
    
    
    /* 14行目*************************************************************************** */
    .row14 {
        display: flex;
        justify-content: center;
        margin: 20px 0px;
        min-width: 1000px;
    }
    
    .row14 table {
        height: 300px;
        max-width: 1500px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .row14 table, .row14 th, .row14 td {
        border: solid 1px #EAEAEA;
    }
    
    .row14 tr:nth-child(odd) {
        background-color: #F6F6F6;
    }
    
    .row14 th {
        vertical-align: middle;
        padding: 10px;
    }
    
    .row14 td {
        text-align: center;
        vertical-align: middle;
        padding: 5px;
    }
    
    .row14 img {
        width: 100px;
    }
    
    .row14Price {
        color: #aa0000;
        font-style: oblique;
        font-size: 16px;
        font-weight: bold;
    }
    
    /* 14行目***************************************************************************・ここまで */
    
    
    /* 15行目*************************************************************************** */
    footer {
        width: 100%;
        min-width: 1000px;
        background-color: #663333;
        display: flex;
        justify-content: center;
    }
    
    footer div {
        color: seashell;
        font-size: 24px;
    }
    
    footer small p {
        margin-left: 2vw;
        margin-bottom: 1vw;
    }
    
    
    /* 15行目***************************************************************************・ここまで */
    
    }
    