.container {
    margin: 0 auto;
    padding: 0;
    padding-bottom: 200px;
}

/* ステップのスタイル */
.step {
    margin-bottom: 40px;
    padding: 20px;
    background: #f5f5f5;
    /* border-radius: 8px; */
    transition: all 0.5s ease-in-out;
}
.step h2 {
    font-weight:bold;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align:center;
    border-bottom: 2px solid #110e6d;
    display:inline-block;
    line-height: normal;
    font-size:1.4rem;
}
.step h2 span{
    font-size:1rem;
    color:#4123ff;
}
/* 色選択のスタイル */
.color-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap:6px;
    margin: 20px 0;
}

.color-item {
    position: relative;
}

.color-item input[type="radio"] {
    display: none;
}

.color-item label {
    display: block;
    height:100%;
    background: #f8f9fa;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.color-item input[type="radio"]:checked + label {
    border-color: #007bff;
}

.color-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.color-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-info {
    padding:.4rem;
    border-top: 1px solid #ddd;
}

.color-name {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align:center;
    margin: auto;
}

.price {
    display: block;
    font-weight: bold;
}
/* オンス */
.ounce-item {
    font-size: 1rem;
    margin:.6rem auto;
}
/* 印刷位置のスタイル */
.print-position {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.preview-item {
    flex: 1;
}

.preview-item h3 {
    text-align: center;
    margin-bottom: 20px;
}

.print-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.print-option {
    position: relative;
}

.print-option input[type="radio"] {
    display: none;
}

.print-option label {
    display: block;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.print-option input[type="radio"]:checked + label {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.print-option:first-child label {
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
}

.preview-image {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #ddd;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* スリーブの画像回転を削除 */
.sleeve-preview {
    position: relative;
}

.print-area {
    position: absolute;
    border: 2px solid rgba(255, 0, 0, 0.8);
    background-color: rgba(255, 0, 0, 0.2);
    left: 50%;
    transform: translateX(-50%);
}

.option-info {
    padding: 10px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.option-name {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.option-price {
    display: block;
    color: #dc3545;
    font-weight: bold;
    text-align: right;
}

/* サイズ選択のスタイル */
.size-selection {
    margin: 20px 0 0;
}

.size-quantity-list {
    display: flex;
    flex-wrap:wrap;
    /* flex-direction: column; */
    justify-content:center;
    gap: 15px;
    width:100%;
    /* max-width:100%; */
    margin: 0 auto;
}

.size-item {
    display: flex;
    align-items: center;
    justify-content:center;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 15px;
}

.size-item:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.size-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    min-width: 40px;
}

.quantity-select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    min-width: 80px;
    cursor: pointer;
}

.quantity-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}

.price-label {
    font-size: 12px;
    font-weight: normal;
    color: #666;
    text-align: right;
}

.size-price {
    font-size: 16px;
    font-weight: bold;
    color: #dc3545;
    text-align: right;
}

.unit-price {
    font-size: 12px;
    font-weight: normal;
    color: #666;
    text-align: right;
}
.tshirt-print-total,.subtotal{color: #000;font-size:.9rem;}

.ounce-selection{
    padding: .5rem;
    background: #fff;
    border-radius:.5rem;
}
/* 料金表示とカートボタンの固定エリア */
.price-summary {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background:#f5f5f5;
    /* box-shadow:0 -2px 10px rgb(134 133 133 / 50%), 0 -2px 10px rgb(234 234 234 / 78%); */
    padding:1rem 0.8rem;
    z-index: 9;
    backdrop-filter: blur(5px);
}

.price-summary-inner {
    max-width:750px;
    margin: 0 auto;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 15px;
    align-items: flex-start;
}

/*
/* 選択内容表示エリア（使用しない）
.selection-summary {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    flex-wrap: wrap;
    min-width: 0;
}

.selection-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.selection-item:hover {
    background-color: rgba(224, 224, 224, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 各STEPのレスポンシブ幅
.selection-item {
    min-width: 120px;
    flex: 1 1 auto;
}

#color-selection {
    min-width: 180px;
}

#print-selection {
    min-width: 200px;
}

#size-selection {
    min-width: 140px;
}

#white-base-selection {
    min-width: 150px;
}

#packaging-selection {
    min-width: 110px;
}

/* 選択中のスタイル
.selection-item.active {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

.selection-item.active:hover {
    background-color: rgba(76, 175, 80, 0.1);
}
*/

/*
.step-label {
    font-size: 0.8em;
    font-weight: bold;
    color: #666;
    padding: 2px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
}

.selection-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.print-positions {
    display: flex;
    gap: 5px;
}

.print-label {
    font-size: 0.9em;
    color: #333;
    white-space: nowrap;
}

.print-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.print-details .selection-text {
    display: block;
    padding-left: 10px;
    line-height: 1.4;
}

.selection-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.selection-text {
    font-size: 0.9em;
    color: #333;
}
*/

.price-details {
    flex: 1;
    text-align: right;
    padding-right: 15px;
    margin:auto;
    font-size:1rem;
}

.price-details > div {
    margin:auto;
    white-space: nowrap;
}

.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 2px #fffab1, 0 0 
}

/* ボタンのスタイル */
.form-buttons {
    flex-shrink: 0;
    margin:0 auto;
}

button {
    padding: 15px 15px;
    font-size:1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #45a049;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

button:disabled:hover {
    background: #cccccc;
}

.position-preview {
    margin: 20px 0;
}

/* STEP2とSTEP3のみに適用される非表示スタイル */
#step2, #step3, #step4, #step5 {
    display: none;
}

.step.active {
    display: block;
}

/* 印刷エリアのサイズ定義 */
.print-area.小 {
    width: 20%;
    height: 20%;
}

.print-area.中 {
    width: 30%;
    height: 30%;
}

.print-area.大 {
    width: 40%;
    height: 40%;
}

/* スリーブ用の特別なサイズ定義 */
.sleeve-preview .print-area.小 {
    width: 10%;
    height: 10%;
}

.sleeve-preview .print-area.中 {
    width: 15%;
    height: 15%;
}

.sleeve-preview .print-area.大 {
    width: 20%;
    height: 20%;
}

/* 印刷エリアの位置 */
.front-preview .print-area {
    top: 20%;
}

.back-preview .print-area {
    top: 20%;
}

/* スリーブの印刷エリアを45度回転 */
.sleeve-preview .print-area {
    left: 85%;
    top: 28%;
    transform: translate(-50%, -50%) rotate(42deg);
}

/* スマホサイズでは選択内容を非表示 */
@media (max-width: 768px) {
    .selection-summary {
        display: none;
    }
}

/* STEP5の下部マージン */
#step5 {
    margin-bottom: 120px;
}

/* 印刷位置選択のスタイル（色選択と統一） */
.print-position-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:1.2rem;
    margin: 20px 0;
}

.print-position-item {
    position: relative;
}

.print-position-item input[type="checkbox"] {
    display: none;
}

.print-position-item label {
    display: block;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.print-position-item input[type="checkbox"]:checked + label {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.print-position-item input[type="checkbox"]:checked + label .print-position-image {
    background:rgb(255 172 172);
}

.print-position-image {
    /* width: 100%; */
    aspect-ratio: 1;
    overflow: hidden;
    padding: 10px;
    background: #fff;
}

.print-position-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.print-position-info {
    padding: 10px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.print-position-name {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.print-position-price {
    display: block;
    color: #dc3545;
    font-weight: bold;
    text-align: right;
}

/* スマホサイズでの印刷位置選択を1列に */
@media (max-width: 768px) {
    .print-position-selection {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .color-selection {
        grid-template-columns: repeat(2, 1fr);
    }
    .color-name {
    font-size:.8rem;
}
}

/* STEP4: 白ベースデータ作成代行のスタイル */
.white-base-selection {
    display: flex;
    margin: 20px 0;
}

.white-base-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 15px;
    max-width: 400px;
    /* width: 100%; */
}

.white-base-item:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.label-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.option-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.option-note {
    font-size: 12px;
    color: #666;
}

.option-price {
    font-size: 16px;
    font-weight: bold;
    color: #dc3545;
    min-width: 35px;
}

/* STEP5: 個別梱包のスタイル */
.packaging-selection {
    display: flex;
    margin: 20px 0;
}

.packaging-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 15px;
    max-width: 400px;
    /* width: 100%; */
}

.packaging-item:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.step-container {
    display: flex;
    flex-direction:column;
    gap: 20px;
    align-items: center;
}

.step-container > .size-selection,
.step-container > .white-base-selection {
    flex: 1;
}

.custom-area {
    width: 98%;
    max-width: 90%;
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin: 0 auto;
}

.custom-area h3 {
    font-size:1.2rem;
    font-weight:bold;
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.custom-area img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.item_image{display:block;width:650px;max-width:98%;margin:1rem auto;}
.item_image img{display:block;width:100%;}
/* スマホサイズでの縦並び対応 */
@media (max-width: 768px) {
    .white-base-selection {
        flex-direction: column;
    }
    
    .packaging-selection {
        max-width: 100%;
    }

    .step-container {
        flex-direction: column;
    }
}


/* サムネイル画像のスタイル */
.thumbnail-image {
    max-width: 200px;
    height: auto;
    cursor: pointer;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


/**スライドショー部分**/
	.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {content: 'next';font-size: 25px !important;font-weight: bold;color: #fff;	text-shadow: 1px 1px 3px #666;}
	.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {content: 'prev';font-size: 25px !important;font-weight: bold;	color: #fff;text-shadow: 1px 1px 3px #666;}
	.swiper-pagination-bullet-active {background: #fff !important;}
	.swiper-container {  position: relative; overflow: hidden;}
	.swiper-container .swiper-slide { text-align: center; line-height: 1; display: flex; align-items: flex-start; justify-content: center;}
	.swiper-container .swiper-slide img { display: inline; width: auto; max-width: 100%; max-height: 100%; align-self: center;}
	.swiper-container .swiper-button-white:focus {outline: none;}

/**item_header部分**/
	.plan_gekiyasu{ background: #E4007F; color: #fff;}
	.plan_tsujyo{ background: #1d8fff; color: #fff;}
	.plan_tokyu{background: #292929; color: #fff;}

	.ff_Montserrat{ font-family: 'Montserrat', sans-serif;}
	.item_base{ margin-bottom: 3rem;}
	.item_header{display: flex; flex-wrap: wrap;}
	.item_img{ width: 58%; position: relative; overflow: hidden; margin: 0 auto;}
	.item_info{ width: 42%; padding:0 0 0 20px; box-sizing: border-box; line-height: 1.3;}
	.item_info_txt{ font-size: 19px; font-weight: bold; margin :0 0 15px 0;}
	.item_price_item{display: flex; flex-wrap: wrap; margin-bottom: 8px; box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 15%);}
	.item_price_L { width: 45%; padding: 10px; box-sizing: border-box; display: flex; flex-wrap: wrap; align-items: flex-end;}
	.item_price_003 .item_price_R { background: none;}
	.item_price_L_inner { width: 100%; text-align: right;}
		.item_price_L_txt01{ font-size: 20px; font-weight: bold;}
		.item_price_L_txt02{ font-size: 12px; line-height: 1.2; margin-top: 5px;}
	.item_price_R{ padding: 10px; box-sizing: border-box; flex: 1; display: flex; flex-wrap: wrap; align-items: center;}
	.item_price_R_inner{ width: 100%;}
		.item_price_001 .item_price_L{background: #E4007F; color: #fff;}
		.item_price_002 .item_price_L{background: #1d8fff; color: #fff;}
		.item_price_003 .item_price_L{background: #292929; color: #fff;}
		.item_price_001 .item_price_R{color: #E4007F; }
		.item_price_002 .item_price_R{color: #1d8fff; }
		.item_price_003 .item_price_R{color: #292929; }
		.item_price_R_txt01{font-size: 14px; font-weight: bold; color: #333;}
		.item_price_R_txt02{font-size: 31px;font-family: 'Montserrat', sans-serif; font-weight: bold; text-align: right;}
		.item_price_R_txt02 span{ font-size: 60%;}
		.item_price_R_txt03{ font-size: 12px; font-family: 'Montserrat', sans-serif; text-align: right;}

	.item_price_item_other{ font-size: 14px; text-align: right;}
	.item_price_item_other a{ text-decoration: underline; color:darkblue ;}

	.item_point_base{display: flex; flex-wrap: wrap; margin: 20px 0 10px 0;}
	.item_point{display: flex; flex-wrap: wrap; align-items: center; justify-content: center; width: 90px; min-height: 80px;  border-radius: 10px; text-align: center; font-size: 13px; font-weight: bold; line-height: 1.3; margin :0 10px 10px 0; box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 35%)}
	.item_point_01{background:linear-gradient(135deg, #FFD166, #FF7C43, #EF476F);}
	.item_point_02{background:linear-gradient(135deg, #4DCCBD, #3B9EE2, #235DFF);}
	.item_point_03{background: #FFD4E9;}
	.item_point_04{background: #D4FFD4;}
	.item_point_05{background: #FFE8D4;}

	@media screen and (max-width: 1200px){
		.iipLt_br{ display: none;}
	}
	@media screen and (max-width: 1000px){
		.item_img{ width: 100%;}
		.item_info{ width: 100%; padding: 0;}
	}
	@media screen and (max-width: 768px){
		.item_info_txt { font-size: 17px; margin :15px 0 15px 0;}
		.item_price_L_txt01 { font-size: 18px;}
		.item_price_L_txt02 { font-size: 12px;}
		.item_price_R_txt01 { font-size: 12px;}
		.item_price_R_txt02 { font-size: 26px;}
	}

/* サイズテーブルCSS */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1em;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
}

.size-table th,
.size-table td {
  border: 1px solid #ddd;
  padding:.4rem .5rem;
  text-align: center;
}

.size-table th {
    background-color: #626262;
    font-weight: bold;
    color: #fff;
}

.size-table td:first-child {
  font-weight: 600;
  background-color: #fafafa;
}

.size-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* オプション：テーブルを小さくしたい場合 */
@media (max-width: 600px) {
  .size-table {
    font-size: 14px;
    min-width: 100%;
  }
}

/* モーダル内画像の表示サイズ制御（競合も想定して強化） */
.modaal-content-container img,
.modaal-content img,
.modaal-gallery-image img {
  max-width: 90vw !important;
  max-height: 80vh !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* モーダル全体のレイアウト調整 */
.modaal-content-container {
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .modaal-content-container img {
    max-width: 95vw;
    max-height: 70vh;
  }
}

/* レスポンシブ対応: 画面幅が狭い時の調整 */
@media screen and (max-width: 1024px) {
  .price-summary-inner {
    gap: 10px;
  }
  
  .selection-summary {
    width: 100%;
    justify-content: center;
  }
  
  .price-details {
    width: 100%;
    /* text-align: center; */
    padding-right: 0;
    /* order: 1; */
  }
  
  .form-buttons {
    width: 100%;
    text-align: center;
    order: 3;
  }
}

@media screen and (max-width: 768px) {
  .selection-item {
    min-width: 100px;
    flex: 1 1 calc(50% - 7.5px);
  }
  
  #color-selection,
  #print-selection,
  #size-selection,
  #white-base-selection,
  #packaging-selection {
    min-width: 100px;
  }
}

@media screen and (max-width: 480px) {
  .selection-item {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.shipping-info{padding:.3rem;text-align: center;}
.shipping-info p{margin:0;font-size:.8rem;line-height:normal;color:#0018ff;font-weight:bold;}
#total{font-weight:bold;}
#order>section{padding:0;}
#order{padding:0;width: 855px;max-width: 100%;margin: 0 auto;}
.order-texp-p{font-size:1rem;color:#2e2e2e;}
#add_to_cart{font-size: 1rem;}


.img-sec{display:flex;justify-content:center;margin:2rem auto;}
.img-sec a {display:block;width:350px;max-width:48%;margin:0.5rem;}
.img-sec a img{display:block;width:100%;border:2px solid;border-radius:.4rem;}
@media (max-width:495px) {
	.img-sec{flex-direction:column;align-items:center;}
	.img-sec a{max-width:90%;}
}
.font01{margin:0 auto;padding:0 1.2rem;}
.font01 h4{font-size:1.1rem;font-weight:bold;}
.font01 p{margin:.2rem .5rem;}
/* .ul-box{} */
.ul-box ul{padding:1rem;}
.ul-box ul h4{font-weight: bold;font-size: 1.4rem;color: #ff1515;text-align: center;}
.ul-box ul p{font-size:.9rem;padding:.5rem;}
.ul-box ul li{margin:1.1rem auto;background: aliceblue;padding: 1.3rem 1rem;position:relative;border-radius:.4rem;max-width:100%;}
/* .ul-box ul li>div:nth-child(-n + 4)::after{content: "";display: inline-block;position: absolute;width: 100px;height: 100px;background-image: url(https://visipri.com/apron/img/u-ya.png);background-size: cover;background-repeat: no-repeat;vertical-align: middle;bottom: 98%;left: 43%;} */
.ul-box ul li img{width:600px;max-width:98%;margin:.5rem auto 1.2rem;display:block;}
.ul-box li>div {padding: 1rem;background: #fff;border-radius:.4rem;}

/* アコーディオン */
.animated {-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
.content-wrap {position: relative;overflow: hidden;transition: height 0.3s ease;}
.close-btn, .more-btn {display: block;width: 100%;padding: 45px 0 0;position: absolute;bottom: 0;left: 0;text-align: center;background: -moz-linear-gradient(top,rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 1) 60%);
background: -webkit-linear-gradient(top,rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 1) 60%);
background: linear-gradient(to bottom,rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 1) 60%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff',endColorstr='#ffffff',GradientType=0);z-index:2;}
.close-btn {background: none;}
.slide-up {
padding-bottom: 0;}
.slide-down {padding-bottom: 50px;}
.more-btn p,.close-btn p {display: inline-block;color: #fff;cursor: pointer;padding: 5px 20px;width: 25%;border-radius: 20px;font-size: 1.1rem;font-weight: bold;}
.more-btn p {background: linear-gradient(45deg, #ff4e2f, #ecd00f);animation: blinkAnime 1s infinite alternate;}
@keyframes blinkAnime{
   0% { color: #fff }
 100% { color: #55ff5dff }
}
.close-btn {padding:0;}
.close-btn p {background: #aaa; }
.content-wrap {
--content-txt: 16px;
.content-txt {
font-size: var(--content-txt);}}
@media (max-width: 768px) {.more-btn p,.close-btn p {font-size: 1rem; width: 40%;}}
/* アコーディオン end */
.idea-div ul{margin:0 .5rem 1.3rem;}
.idea-div ul li{margin:.8rem;}
.idea-div h4{font-weight:bold;font-size:1.15rem;color: #1e1eff;border-bottom: 3px solid;width: fit-content;}
.idea-div h5{font-size:1rem;font-weight:bold;}
.idea-div h5::before{content:'■';}
.idea-div p{margin:5px;}
.flex-img-3{display:flex;justify-content:center;align-items: baseline;margin:.3rem 0;}
.flex-img-3 a{display:block;width:200px;max-width:30%;height: fit-content;margin:.3rem;}
.flex-img-3 a img{display:block;width:100%;}
/* --お客様の声　20240205-------------------------------------------------- */
.voice_base{ padding: 15px; border: solid 1px #aaa; border-radius: 8px; position: relative; margin: 40px auto;}
.voice_base * {box-sizing: border-box;}
.voice_box{ display: flex; flex-wrap: wrap;}
.voice_c_01{ display: flex; flex-wrap: wrap; align-items: center; justify-content: center; background: #e1f0fc; width: 100px; margin-bottom: 7px; padding: 10px; font-size: 13px;}
.voice_c_02{ display: flex; flex-wrap: wrap; align-items: center; padding: 10px; flex: 1; font-size: 15px; margin-bottom: 7px;}
.voice_name{ display: inline-flex; align-items: center; font-size: 18px; font-weight: bold; position: absolute; top: -20px; left: 10px; background: #fff; color: #0202e5 ; padding: 3px 10px;}
.voice_name img{ width: 35px; height: 35px; margin: 0 10px 0 0; }
.voice_product{ margin: 15px 0 0 0;}
.voice_date .voice_c_02{ font-size: 13px;}
.voice_img .voice_c_02{ justify-content: space-between;}
.vi_block { width: 32%; max-width: 300px; aspect-ratio: 1 / 1; overflow: hidden;}
.vi_block_base::after{  content:"";  display: block;  width:32%;}
.vi_block img{ width: 100%; height: 100%; object-fit: cover;}
.voice_order_base{ text-align: right;}
.voice_order_btn{ display: inline-block; position: relative; max-width: 160px; font-size: 14px; color: #fff; margin: 5px 0 5px auto; padding:0; background: #0202e5;   border-radius: 20px; height: 30px;}
.voice_order_btn_txt{ position: absolute; left: 20px; top: 5px; z-index: 0;}
.voice_order_btn a{ font-size: 13px; color: #fff; padding: 7px 10px 0px 10px; display: inline-block; overflow: hidden; text-indent: 110%; white-space: nowrap; width: 160px; height: 100%; z-index: 1; position: relative;}
.voice_order_btn a br{ display: none;}
@media screen and (max-width: 768px){
	.voice_name{ font-size: 17px;}
	.voice_c_01{ font-size: 12px;}
	.voice_c_02{ font-size: 13px;}
	.voice_date .voice_c_02{ font-size: 12px;}
	.voice_img .voice_c_02{ justify-content: center;}
	.vi_block { width: 48%; margin: 5px 1% 5px 1%; }
	.vi_block_base::after{  content:"";  display: block;  width:48%;}
	.voice_order_base{ text-align: center;}
}