#guide_content {
    margin: 15px auto;
    width: 100%;
}
    .guide_subtitle {
    width: 100%;
    height: 40px;
    padding-left: 20px;
    margin-top: 20px;
}
    .terms_mainsentence {
    margin: 10px 0 50px;
}
   .terms_sentence {
    margin: 20px 0 10px;
}
    
.main_list_block2 {
    padding: 15px;
}
    .terms_list {
    margin-left: -20px;
    margin-top: 0px;
    margin-right: 10px;
} 
    .terms_list li {
    margin-bottom: 10px;
    list-style-type: decimal;
}

    .return_top {
    text-align: right;
    margin: 40px 10px;
}
.privacy_policy_list {
    margin-left: -20px;
    margin-top: 0px;
    margin-right: 10px;
} 
    .privacy_policy_list li {
    margin-bottom: 20px;
    list-style-type: decimal;
}
.privacy_policy_list_nest {
    margin-left: -20px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.privacy_policy_list_nest li {
    margin-bottom: 5px;
    list-style-type: decimal;
}
.productsprice_block{
    margin-bottom: 40px;
}
.attention_block{
text-align: center;
    margin: auto
}
.attention_img{
    margin: auto;
}
.handling_importbrands_box {
    padding: 20px;
    background: #F7F9FC;
    margin: 0 0 60px;
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
}
.handling_importbrands_list{
    margin: 0px auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.handling_importbrands_list li{
    font-size: 16px;
     display: inline;
    margin: 20px 0 2px 0;
    text-align: center;
    padding: 0px 20px 5px 20px;
     border-left: 1px solid #e2e7ef;
} 
.handling_importbrands_list li:first-child {
  border: none; /* 親要素から見て一番目のli要素のボーダーを無しに */
}
.handling_points_list{
    margin: 0px auto 20px;
    /*text-align: center;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.handling_points_list li{
    font-size: 16px;
     display: inline;
    margin: 20px 0 0 0;
    text-align: center;
    padding: 0px 20px;
     border-left: 1px solid #e2e7ef;
} 
.handling_points_list li:first-child {
  border: none; /* 親要素から見て一番目のli要素のボーダーを無しに */
}


.hib_innerblock{
    padding: 20px 10px;        
}
.hib_stitle{
    background-color: #f7f9fc;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 16px 20px;
}
.wrapping_img{
    margin: auto;
    text-align: center;
}
.note_sent{
    color: #ff0000;
}
.bold_sent{
    font-weight: 700;
}
.bank_sent{
        text-indent: 1em;
    }
.card_sent{
    padding-left:1em;
	text-indent:-1em;
}
.g_table_01 {
    width: 800px;
    margin: auto;
    padding: 0px;
    border-collapse: collapse;
    font-size: 12px;
    color: #666;
    line-height: 150%;
}
    .g_table_01 th.g_th01 {
    width: 25%;
    padding: 4px 2px 2px 4px;
    text-align: center;
    vertical-align: middle;
    color: #666;
    background-color: #eee;
    border: 1px solid #666;
}
    .g_table_01 td.g_td01_3 {
    padding: 4px 2px 2px 4px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #666;
}
.receipt_pay_sent{
        padding-left:1em;
    }
.menu_box_list{
        margin: 10px auto -10px auto;
        text-align: left;
        font-weight: 700;
        font-size: 1.6rem;
        padding-left: 20px;
    }
.fs-c-documentColumn__content_guide {
    margin-bottom: 30px;
}
    .main_list_block3 {
    padding: 0 15px 15px 15px;
}
.guide_heading {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 16px;
    padding: 14px;
    border: double #e2e7ef;
    text-align: center;
}
.payment_heading {
    font-size: 16px;
    font-weight: 700;
    color: #2957a5;
    margin-top: 20px;
    margin-bottom: -15px;
}
.guide_menu_box{
    margin: 60px auto;
    }
    .guide_menu{
        text-align: center;
    }    
        
.guide_menu li {
  font-size: 18px;
  position: relative;
  padding: 0 20px;
  list-style: none;
  display: inline-block;
}
.guide_menu li a {
  text-decoration: none;
  position: relative;
}
.guide_menu li a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #2756a6;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.guide_menu li a:hover::after {
  transform: scale(1, 1);
}
.guide__inner {
  overflow: hidden;
  margin: 60px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.guide__box {
  width: 30%;
  /*display: inline-block;*/
  vertical-align: top;
  margin: 0 auto 60px auto;
}
.guide__subhead {
    line-height: 2.0;
}    
.guide__list {
  padding: 0;
  margin: 0 0 10px 0;
  position: relative;
}
    details[open] .guide__ul li{
  animation: fadeIn 0.8s ease-in-out;
}
    @keyframes fadeIn {
  0% {
    opacity: 0; /* Transparent */
    transform: translateY(-20px); 
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
summary {
  cursor: pointer;
  transition: 0.2s; /* 変化を滑らかに */
}
/* ホバー時のスタイル */
summary:hover {
  cursor: pointer; /* カーソルを指マークに */
  background-color: #f7f9fc;
}
.guide__link:hover {
  background: #fff;
  color: #9db2d7;
    transition: 0.1s;
}    
    .pc-only{
        display: block;
    }
    .sp-only{
    display: none;
    }
 
    
.accordion-003 {
    /*max-width: 500px;*/
    /*margin-bottom: 7px;*/
    /*border-bottom: double #e2e7ef;*/
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em;
    color: #121211;
    font-weight: 600;
    cursor: pointer;
    border-bottom: double #e2e7ef;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: 2px solid #e2e7ef;
    border-right: 2px solid #e2e7ef;
    content: '';
    transition: transform 0.4s;
}


.accordion-003[open] summary::after {
    transform: rotate(225deg);
}
.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}
    .guide__ul{
    list-style: none;
    padding: 0;
    margin: 15px 10px 20px 10px;
}
    .faq {
    padding: 20px 80px;
    background: #F7F9FC;
    margin: 0 0 30px;
}
    .faq:after {
    content: "";
    display: table;
    clear: both;
}
    .faq__head {
    margin: 10px auto 20px;
    text-align: center;
    padding: 12px 0;
    font-size: 22px;
    font-weight: bold;
}
    .faq__box {
    width: 45%;
    margin: auto;
}
    
    .faq__list {
    font-size: 16px;    
    margin: 10px 0;
    position: relative;
}
li.faq__list::before {
    content: '◆';
    font-size: 0.7em;
    padding-right: 0.5em;
    color: #2957a6;
}
    .aacd {
    padding: 20px 49px;
    margin: 0 0 60px;
}
    
    .faq_expart {
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
    .faq__subhead {
    font-size: 18px;    
    border-bottom: dotted 1px #e2e7ef;
    line-height: 2.0;
}
    .faq_orderbefore{
        padding-left:5px;
        font-size: 1.2em;
        font-weight: bold;
        color: #0080c8;
    }
    .faq_orderafter{
        padding-left:5px;
        font-size: 1.2em;
        font-weight: bold;
        color: #2957a6;
    }
.Qicon {
    margin: 10px auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    height: 48px;
    background: url(https://lovelove5061.itembox.design/item/Qicon.png?t=20230921104903) no-repeat;
    padding-left: 60px;
    border-bottom: solid 1px #e2e7ef;
    border-left:none;
    border-right:none;
    border-top:none;   
}
.faq_explain{
    margin: 0 0 40px 0;
    padding: 0;
}
.faq_block {
  padding: 0 15px 15px 60px;
  background: url(https://lovelove5061.itembox.design/item/Aicon.png?t=20230921104903) no-repeat;
  }
.faq_list summary {
    cursor: pointer;
    }
.faq_list summary:hover {
    cursor: pointer;
     background-color: #ffffff;
}
.faq_list[open] summary::after {
    transform: rotate(225deg);
}
.faq_list div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    color: #333333;
    transition: transform 1s, opacity 1s;
}

.faq_list[open] div {
    transform: none;
    opacity: 1;
}
.faq_menu_box {
    width: 45%;
    margin: 0 auto;
}
.faq_menu {
    padding: 20px 30px;
    background: #F7F9FC;
    margin: 0 0 30px;
}

.faq_menu_head {
    margin: 5px auto 0;
    text-align: left;
    padding: 12px 0;
    font-size: 22px;
    font-weight: bold;
}
a.faq__link::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #e1e9f5;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.8s;
    color: #ffffff;
}

a.faq__link:hover {
    color: #c9c9c9;
}
a.faq__link:hover::after {
transform: scale(1, 1);
    color: #c9c9c9;
}
ul.guide_ul {
    list-style: disc;
    padding-left: 1.4em;
}

/** SmartPhone
===================================*/
@media screen and (max-width: 767px) {
    .guide_menu {
    text-align: left;
}
    .guide_menu li {
    font-size: 16px;
    position: relative;
    padding: 0 10px;
    list-style: none;
    display: inline-block;
}
    .guide_menu_box {
    margin: 20px auto;
}
    .card_table{
     overflow: scroll;
    }
    .g_table_01 {
    width: 100%;
    margin: auto;
    padding: 0px;
    border-collapse: collapse;
    font-size: 12px;
    color: #666;
    line-height: 150%;
}
    .menu_box_list {
    margin: 10px auto;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    padding-left: 0;
}
    .handling_importbrands_box {
    padding: 20px;
    background: #F7F9FC;
    margin: 0 0 60px;
    width: 100%;
    font-size: 1.8rem;
    }
    .handling_points_list {
        margin: 0px auto 20px;
    }
    .handling_points_list li {
    text-align: left;
    display: block;
    font-size: 14px;
    margin: 0 0 10px 0;
    border: none;
    padding-left: 0;
    line-height: 1;
}
    .handling_importbrands_list li {
    font-size: 16px;
    display: inline;
    margin: 5px 0;
    text-align: left;
    padding: 0 10px;
    border: none;
}
.guide__ul {
    padding: 0 5px;
    }
    .guide__box {
    width: 100%;
    vertical-align: top;
    margin: 0px auto;
    }
    .guide__inner {
    overflow: hidden;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
    .pc-only{
    display: none;
    }
    .sp-only{
        display: block;
    }
    .faq {
    padding: 20px 10px;
    background: #F7F9FC;
    margin: 0 0 30px;
}    
    .faq__head {
    line-height: 1.6;    
    margin: 10px auto 20px;
    text-align: center;
    padding: 12px 0;
    font-size: 20px;
    font-weight: bold;
}
    .faq_expart {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
    .faq__box {
    width: 100%;
    margin: 0 auto 20px;
}
    .faq__list {
    font-size: 14px;
    margin: 10px 0;
    position: relative;
}
    .Qicon {
    margin: 10px auto;
    padding-top: 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    height: 48px;
    background: url(https://lovelove5061.itembox.design/item/Qicon.png?t=20230921104903) no-repeat;
    padding-left: 60px;
    border-bottom: solid 1px #e2e7ef;
    border-left: none;
    border-right: none;
    border-top: none;
}
    .faq_menu {
    padding: 10px;
    background: #F7F9FC;
    margin: 0 0 30px;
}

.faq_menu_head {
    margin: 5px auto 0;
    text-align: left;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
}
    .faq_menu_box {
    width: 100%;
    margin: 0 auto;
}
}/* @media */
