    .shopping_guide{
        width: 100%;
    }
    .guide_box{
        width:100%;
        height:auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap:20px;
    }
    .guide_box_child {
        width:31%;
        height:auto;
        flex-direction:column;
        border:1px solid #ccc;
        box-sizing:border-box;
        padding: 40px 40px 40px 60px;
        font-size: 1.1rem;    
    }    
    .gbox_ttl{
        text-align: center;
        font-weight: bold;
        font-size: 1.3rem;
    }
    .gbox_list{
        margin: 20px auto;
        list-style: url(https://asknowas.itembox.design/item/ico_arrow.png?t=20231108141550);
　       list-style-position: inside;
    }
    .guide_wrapper{
        margin-top: 80px;
    }
    .guide_inner{
        margin:10px auto 60px;
    }
    .guidesubttl{
        background-color: #f7f7f7;
        padding: 15px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .guidelist {
        padding: 0 20px;
    }
    .guidelist dt{
        width: 100%;
        margin:10px auto;
        font-weight: bold;
    }
    .guidelist dd{
        width: 100%;
        margin:20px auto 40px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 40px;
        font-size: 1.2rem;
    }
    .guidelist dd:last-child{
        border:none;
    } 
    .space_sent {
        padding-left: 1em;
        text-indent: -1em;
    }
    .guide_ul{
        padding-left: 20px;
        list-style: disc;
    }
    .ex_return {
        border: none;
        margin-bottom: 20px;
    }
    .ex_return caption{
        text-align: left;
    }
    .ex_return th{
        vertical-align:top;
        font-weight: normal;
    }
    .sp_guide_box{
        display: none;        
    }

   .sp_guide_wrapper{
            display: none;
        }  
/** SmartPhone
===================================*/
    @media screen and (max-width: 767px){
   
    .guide_wrapper{
      display: none;
    }     
    .sp_guide_wrapper{
      display: block;
    }  
    .guide_box{
       display: none;
    }
    .sp_guide_box{
       display: block; 
       padding: 5px;
    }    
    .sp_guide_box_child{  
        font-size: 1.1rem;
        margin-bottom: 10px;    
    }
        
    .accordion-003 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 5px 10px;
        color: #121211;
        font-weight: 600;
        cursor: pointer;
        border: 1px solid #ccc;
    }    
    .accordion-003 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 6px;
        height: 6px;
        margin-left: 10px;
        margin-right: 10px;
        border-bottom: 1px solid #7f7f7f;
        border-right: 1px solid #7f7f7f;
        content: '';
        transition: transform 0.4s;
    }
    .accordion-003[open] summary::after {
        transform: rotate(225deg);
    }   
    ul.guide__ul {
        margin: 10px;
        padding-bottom: 20px;
    }
     details[open] .guide__ul li{
        animation: fadeIn 0.6s ease-in-out;
    }
    @keyframes fadeIn {
    0% {
        opacity: 0; /* Transparent */
        transform: translateY(-10px); 
        }
  100% {
        opacity: 1;
        transform: none;
        }
    }
    .sp_guidelist {
            line-height: 2.0;
            font-size: 1.3rem;
    }
    .accordion-002 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        cursor: pointer;
        border-bottom: 1px dotted #eeeeee; 
    }    
    .accordion-002 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 4px;
        height: 4px;
        margin-left: 10px;
        margin-right: 10px;
        border-bottom: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
        content: '';
        transition: transform 0.4s;
    }
    .accordion-002[open] summary::after {
        transform: rotate(225deg);
    }
      
    details[open] .sp_guidelist_dd{
        animation: fadeIn 0.4s ease-in-out;
    }    
    .guidelist {
        padding: 0 10px;
    }    
    .guidelist dt  {
        font-weight: normal;
    }  
    .guidelist dt::after  {
        border-bottom: none;
    }    
    .guidelist dd{
        width: 100%;
        margin:20px auto;
        padding-bottom: 20px;
        font-size: 1.2rem;
    }  
    .guidelist dd:last-child{
        border-bottom:1px solid #ccc;
    }
}    
