main {
    max-width: 1440px;
    min-width: 320px;
    margin: 124px auto 0 auto;
    /* flex-grow: 1; */
}

main.top {
    width: 100%;
    max-width: none;
    min-width: 0;
}

@media screen and (max-width: 1050px) {
    main {
        margin: 114px auto 0 auto;
    }
}

@media screen and (max-width: 767px) {
    main {
        margin: 60px auto 0 auto;
    }
}

/* 見出し */

.content-box {
    padding: 0 var(--spacing-main);
    margin-top: var(--spacing-gap);
}

main.top .content-box {
    max-width: 1440px;
    min-width: 320px;
    margin: var(--spacing-gap) auto 0 auto;
}

@media screen and (max-width: 1440px) {
    main.top .content-box {
        padding: 0 var(--spacing-main);
        max-width: none;
        min-width: 0;
        margin: var(--spacing-gap) 0 0 0;
    }
}

.content-title {
    padding-top: var(--spacing-content);
}

.content-title h2 {
    font-size: var(--text-xxl);
    font-weight: 400;
    margin-bottom: 4px;
}

.content-title h3 {
    font-weight: 400;
    font-size: var(--text-m);
}

.content-title p {
    margin-top: 12px;
    font-size: var(--text-s);
    max-width: 440px;
    min-width: 240px;
}


/* tab */

.tab {
    display: flex;
    gap: 0 70px;
    border-bottom: 1px solid var(--gray400);
}

.tab h3 {
    font-size: var(--text-l);
    text-align: center;
}

.tab p {
    font-size: var(--text-xxs);
    text-align: center;
}

.tab li a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 8px;
    height: 61px;
    border-bottom: 4px solid transparent;
}

.tab li a:hover {
    border-bottom: 4px solid var(--gray500);
}

.tab li.active a{
	border-bottom: 4px solid var(--blue);
}

.area-parent {
    position: relative;
}

.area {
    visibility: hidden;
	opacity: 0;
    position: absolute;
    width: 100%;
}

.area.is-active {
    visibility: visible;
    opacity: 1;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media screen and (max-width: 767px) {
    .tab {
        justify-content: space-between !important;
        gap: 0;
    }
}


/* breadcrumbList */

#breadcrumbList {
    display: flex;
    flex-wrap: wrap;
    padding: 24px var(--spacing-main) 0 var(--spacing-main);
    column-gap: 12px;
    row-gap: 8px;
}

#breadcrumbList li {
    position: relative;
    padding-right: 20px;
    font-size: var(--text-xs);
}

#breadcrumbList li:after {
    position: absolute;
    top: 6px;
    right: 0;
    content: '';
    margin-left: 12px;
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--black);
    border-top: 1px solid var(--black);
}

#breadcrumbList li:last-child {
    padding: 0;
}

#breadcrumbList li:last-child:after {
    content: '';
    border: none;
    width: 0;
    height: 0;
}

#breadcrumbList li a {
    text-decoration: underline;
}

.offwhite {
    background-color: var(--offWhite);
}

/*----------------------------------------
	slide-show
----------------------------------------*/

#slide-show {
    width: 100%;
    height: auto;
}

.slide-show_text {
    margin-left: var(--spacing-main);
    max-width: 40%;
    min-width: 30%;
}

.slide-show_inner {
    display: flex;
    align-items: center;
}

.slide-show_text h1 {
    font-size: var(--text-xxl);
    line-height: 1.34;
}

.slide-show_text p {
    font-size: var(--text-xl);
    font-weight: bold;
}

.slide-show_text button {
    margin-top: 27px;
}

.slide-show_image {
    width: 100%;
    max-height: calc(100vh - 124px);
    aspect-ratio: 16 / 9;
}

@media screen and (max-width: 1050px) {
    .slide-show_image {
        max-height: calc(100vh - 114px);
    }
}

@media screen and (max-width: 767px) {
    .slide-show_image {
        max-height: calc(100vh - 60px);
    }
}

.slide-show_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* slide-show slick custom */

  .slick-slide {
    height: auto !important;
  }

.slick-slide {
    user-select: text;
}

.slide-show_dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin-top: 12px;
    list-style: none;
    text-align: center;
  }

  .slide-show_dots li{
    position: relative;
    display: inline-block;
    width: 24px !important;
    height: 24px;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }

  .slide-show_dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slide-show_dots li button:hover,
  .slide-show_dots li button:focus{
    outline: none;
  }

  .slide-show_dots li button:hover:before,
  .slide-show_dots li button:focus:before{
    background-color: var(--gray500);
  }

  .slide-show_dots li button:before{
    font-family: 'slick';
    font-size: var(--text-xxl);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    content: '';
    text-align: center;
    background-color: var(--gray400);
    border-radius: 100%;
    border: var(--white) 2px solid;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slide-show_dots li.slick-active button:before{
    background-color: var(--black);
  }

  .slide-show-sp {
    display: none;
  }

.slick-prev,
.slick-next {
    position: absolute;
    cursor: pointer;
    outline: none;
    background-color: transparent;
    border: none;
}

#slide-show .slick-prev, 
#slide-show .slick-next {
   top: 45%;
   height: 44px;
   width: 44px;
}

.slick-prev:before,
.slick-next:before {
	content:'';
	position:absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: transparent;
}

#slide-show .slick-prev:before,
#slide-show .slick-next:before {
	width:12px;
	height:12px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
    filter:drop-shadow(0px 2px 8px rgba(0, 0, 0, 1));
}

#slide-show .slick-prev {
    left: 2%;
    z-index: 2;
}

#slide-show .slick-next {
    right: 2%;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: 0;
    cursor: default;
}
 
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}

#slide-show .slick-prev:before {
    left: 3px;
	transform:rotate(45deg);
}

#slide-show .slick-next:before {
    left: -3px;
	transform:rotate(-135deg);
}

@media screen and (max-width: 767px) {
    #slide-show {
        height: auto;
    }

    .slide-show-pc {
        display: none;
    }

    .slide-show-sp {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .slide-show-sp img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*----------------------------------------
	gallery
----------------------------------------*/

.gallery {
    margin-top: var(--spacing-content);
    display: flex;
    gap: 40px 2%;
    padding-bottom: var(--spacing-gap);
}

.gallery a {
    width: 15%;
}

.gallery a:hover .gallery_child img {
    opacity: .7;
}

.gallery a:hover .gallery_child p {
    color: var(--orange);
}

.gallery_child {
    width: 100%;
}

.gallery_child img {
    width: 140px;
    margin: 0 auto 20px auto;
}

.gallery_child p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--text-s);
}

@media screen and (max-width: 1050px) {
    .gallery {
        flex-wrap: wrap;
        gap: var(--spacing-column-gap) 5%;
        padding-bottom: var(--spacing-gap);
    }

    .gallery a {
        width: 30%;
    }
}

@media screen and (max-width: 767px) {
    .content-sp {
        padding: 0;
    }

    .content-sp .content-title {
        margin: 0 var(--spacing-content);
    }

    .gallery {
        flex-wrap: nowrap;
        gap: var(--spacing-column-gap) 4%;
        padding: 0 var(--spacing-main) var(--spacing-content) var(--spacing-main);
        overflow-x: auto;
    }

    .gallery a {
        width: 40%;
    }
}

/*----------------------------------------
	half-circle
----------------------------------------*/

.half-circle {
    position: relative;
    z-index: 1;
}

.half-circle::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 32px;
    display: inline-block;
    height: 100%;
    width: 75%;
    clip-path: ellipse(50% 120% at 50% 120%);
    background-color: var(--offWhite);
}

@media screen and (max-width: 1050px) {
    .half-circle::before {
        width: 80%;
        height: 60%;
        right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .half-circle::before {
        content: none;
    }
}

/*----------------------------------------
	category
----------------------------------------*/

.category_box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 16px;
    margin-top: 20px;
}

.category_box_child {
    width: calc(20% - 16px);
    text-align: center;
}

.category_box_img {
    position: relative;
}

.category_box_child:hover .category_box_img {
    position: relative;
    transition: all .3s;
}

.category_box_child:hover .category_box_img::before, .category_box_child:hover .category_box_img::after {
    opacity: 1;
    visibility: visible;
}

.category_box_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray400);
    margin-bottom: 8px;
}
.category_box_img::before {
    opacity: 0;
    visibility: hidden;
    content: 'VIEW MORE';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: opacity .3s;
}
.category_box_img::after {
    opacity: 0;
    visibility: hidden;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(43, 29, 64, .65);
    transition: opacity .3s;
}

.category_box_img img {
    width: 80%;
}

.category_box_child p {
    font-weight: 400;
    font-size: var(--text-xs);
    line-height: 1.4em;
}

@media screen and (max-width: 1050px) {
    .category_box {
        margin-bottom: 60px;
    }
    .category_box:last-of-type {
        margin-bottom: 0;
    }
    .category_box_child {
        width: calc(33.3334% - 13.3334px);
    }
}

/*----------------------------------------
	ranking
----------------------------------------*/

.ranking {
    display: flex;
    flex-direction: column;
    /* background-color: var(--offWhite); */
    margin-top: 0 !important;
}

.ranking-box {
    display: flex;
    column-gap: 12px;
    margin: 20px 0;
    margin-bottom: 40px;
}

.ranking-box_child {
    width: 100%;
}

.ranking-box_inner {
    display: flex;
    flex-direction: column;
    padding: 12px;
    width: 100%;
    height: 100%;
}

.ranking-box_inner .score {
    font-size: var(--text-s);
    font-weight: bold;
    width: 36px;
    color: var(--white);
    background-color: var(--orange);
    text-align: center;
    border-radius: 8px 0 8px 0;
}

.ranking-box_inner .podium {
    color: var(--white);
    background-color: var(--orange);
    padding: 5px 0;
}

.ranking-box_inner .normal {
    color: var(--gray600);
    background-color: var(--white);
    border: 2px solid var(--gray600);
    padding: 3px 0;
}

.ranking-box_inner img {
    width: 100%;
    margin: 0 auto;
}

.ranking-box_inner h4 {
    font-size: var(--text-xs);
    font-weight: 400;
    /* text-align: center; */
    height: 36px;
    margin: 12px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ranking-box_inner p {
    font-size: var(--text-s);
    text-align: center;
}

.ranking-box_inner .price {
    margin-bottom: 12px;
}

.ranking-box_inner .number {
    font-size: var(--text-s);
    font-weight: bold;
}

.ranking-box_inner .unit {
    margin-left: 2px;
    font-size: var(--text-xs);
}

.ranking-box_inner .explain {
    margin-bottom: 12px;
    flex-grow: 1;
}

.ranking-box_inner a {
    display: block;
    width: fit-content;
    margin: auto;
}

.ranking-box_inner button {
    width: fit-content;
    padding: 11px 30px;
    border-radius: 999px;
}

@media screen and (max-width: 1200px) {
    .ranking-box {
        display: flex;
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .ranking-box_child {
        width: calc(33.3334% - 8px);
    }
}

@media screen and (max-width: 1050px) {
    .ranking {
        row-gap: 12px;
        flex-wrap: wrap;
    }

    .ranking-box {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
}

@media screen and (max-width: 767px) {
    .ranking {
        row-gap: 12px;
        background-color: var(--white);
    }

    .ranking-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        max-width: none;
        gap: var(--spacing-gap) 4%;
        padding-bottom: 0;
    }

    .ranking-box_child {
        width: 48%;
        margin: 0;
    }

    .ranking-box_inner {
        padding: 0;
        box-shadow: none;
    }

    .ranking-box_inner a {
        display: none;
    }
}

.ranking-box .slick-prev, 
.ranking-box .slick-next {
    top: 45%;
    background-color: var(--white);
    height: 44px;
    width: 44px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.ranking-box .slick-prev:before,
.ranking-box .slick-next:before {
	width:12px;
	height:12px;
	border-left: 2px solid var(--gray600);
	border-bottom: 2px solid var(--gray600);
}

.ranking-box .slick-prev {
    left: -2%;
    z-index: 2;
}

.ranking-box .slick-next {
    right: -2%;
}

.ranking-box .slick-prev:before {
    left: 3px;
	transform:rotate(45deg);
}

.ranking-box .slick-next:before {
    left: -3px;
	transform:rotate(-135deg);
}

/*----------------------------------------
	information
----------------------------------------*/

.infomation .tab {
    margin-top: var(--spacing-header);
}

.info-content {
    padding: var(--spacing-header) 0;
}

.info-content a:hover ul li {
    color: var(--orange)!important;
}

.info-content ul {
    width: 100%;
    display: flex;
    gap: 0 12px;
    margin-bottom: 12px;
}

.info-content .tag {
    font-size: var(--text-xxs);
    text-align: center;
    line-height: 21px;
    font-weight: bold;
    width: 50px;
    height: fit-content;
    color: var(--white);
    padding: 0 5px;
}

.newsTag {
    background-color: var(--tagBlue);
}

.styleTag {
    background-color: var(--tagGreen);
}

.eventTag {
    background-color: var(--tagPurple);
}

.info-content .date {
    width: 80px;
    font-size: var(--text-s);
    font-family: serif;
    color: var(--gray600);
}

.info-content .headline {
    width: calc(100% - 100px);
    font-size: var(--text-s);
}

#all .headline {
    width: calc(100% - 170px);
    font-size: var(--text-s);
}

@media screen and (max-width: 767px) {
    .info-content ul {
        flex-wrap: wrap;
        row-gap: 2px;
        column-gap: 4px;
    }

    .info-content .date {
        width: calc(100% - 70px);
    }

    .info-content .headline,
    #all .headline {
        width: 100%;
    }
}


/*----------------------------------------
	warning.blade.php
----------------------------------------*/
.warning{
    width:1050px;
    background-color: #fced21;
    margin: 0 auto;
    margin-bottom: 30px;
    border: solid 3px #000; 
    box-sizing:border-box;
}

.waring-left-wrap{
    background-color: black
}

.waring-left{
    width: 240px;
    font-size:20px; 
    font-weight:bold; 
    color:#fced21; 
    padding:5px 10px; 
    line-height:1.2;
}

.warning-right{
    font-size:13px; 
    padding:5px 10px; 
    line-height:1.1;

}

@media (max-width: 1050px) {
    .warning{
        width: 90%;
    }



    .waring-left {
        width: 220px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .warning{
        display: none;
    }
}


/*----------------------------------------
	category_details.html
----------------------------------------*/

.category-details {
    padding-top: 140px;
}

.category-details h1,
.category-details p {
    text-align: center;
}

.category-details p {
    font-size: var(--text-m);
}

/*----------------------------------------
	product_details.html
----------------------------------------*/

.product-title {
    margin-bottom: var(--spacing-gap);
}

.product-title-tag {
    font-size: var(--text-xs);
    font-weight: bold;
    color: var(--white);
    width: fit-content;
    background-color: var(--tagPurple);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    padding: 4px 20px 4px 8px;
    margin-bottom: 12px;
}

.product-title h1 {
    font-weight: 400;
    font-size: 24px;
    font-family: system-ui, sans-serif;
}

.product-title p {
    font-size: var(--text-s);
    margin-top: 8px;
}

.product-title .tag_btns a {
    font-size: var(--text-s);
}

.product-overview {
    display: flex;
    align-items: flex-start;
    column-gap: calc(var(--spacing-column-gap) * 2);
}

.product-gallery {
    display: flex;
    align-items: flex-start;
    column-gap: var(--spacing-column-gap);
}

#choice-btn {
    width: 72px;
    position: relative;
}

#choice-btn li {
    cursor: pointer;
	outline: none;
    width: 72px !important;
    height: 72px !important;
}

#choice-btn li img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#main-gallery {
    width: 550px;
}

#main-gallery li {
    width: 100%;
}

#main-gallery li img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

#main-gallery .slick-prev, 
#main-gallery .slick-next {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 44px;
    width: 44px;
}

#main-gallery .slick-prev:before,
#main-gallery .slick-next:before {
	width:12px;
	height:12px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
    filter:drop-shadow(0px 2px 8px rgba(0, 0, 0, 1));
}

#main-gallery .slick-prev {
    left: 2%;
    z-index: 2;
}

#main-gallery .slick-next {
    right: 2%;
}

#main-gallery .slick-prev:before {
    left: 3px;
	transform:rotate(45deg);
}

#main-gallery .slick-next:before {
    left: -3px;
	transform:rotate(-135deg);
}

#choice-btn li {
    padding: 2px;
    border: 2px solid var(--white);
}

#choice-btn li:hover {
    border: 2px solid var(--gray500);
    border-radius: 6px;
}

#choice-btn li.slick-current {
    border: 2px solid var(--black);
    border-radius: 6px;
}

#choice-btn li img{
	opacity: 0.4;
    border-radius: 4px;
}

#choice-btn li.slick-current img{
	opacity: 1;
}

#choice-btn .slick-prev, 
#choice-btn .slick-next {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    height: 44px;
    width: 44px;
}

#choice-btn .slick-prev:before,
#choice-btn .slick-next:before {
	width:12px;
	height:12px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
    filter:drop-shadow(0px 2px 8px rgba(0, 0, 0, 1));
}

#choice-btn .slick-prev {
    z-index: 2;
}

#choice-btn .slick-next {
    bottom: 0;
}

#choice-btn .slick-prev:before {
	transform:rotate(135deg);
}

#choice-btn .slick-next:before {
	transform:rotate(-45deg);
}

.details-content-tab {
    position: sticky;
    bottom: -1px;
    top: 124px;
    z-index: 9;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.04) 0px -12px 12px -12px;
}

.tab-details {
    justify-content: center;
}

.tab-details-box {
    margin: 0 var(--spacing-main);
    border-bottom: 1px solid var(--gray400);
}

.details-content {
    padding: var(--spacing-gap) var(--spacing-column-gap);
}

#details{
    white-space:pre-wrap;
}

.details-content h2, .details-content h3 {
    font-size: var(--text-l);
}

.details-text, #quality , #bonus{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 48px;
    margin-top: var(--spacing-column-gap);
}

.details-text div, .details-content .txt h2 {
    margin-bottom: var(--spacing-column-gap);
}

.details-content .txt p a {
    color: var(--blue);
    font-size: var(--text-s);
}

.details-content .txt p a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.details-text div, .details-content .txt {
    width: calc(60% - 24px);
}

.details-text div .text-btn {
    color: var(--blue);
}

.details-text img, .details-content .img {
    width: calc(40% - 24px);
}

.details-text ol{
    width: 80%;
}

.details-text li {
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1.5em;
    padding: 0.5em 0.5em 0.5em 0px;
    margin-bottom: 16px;
    white-space:pre-wrap;
}

.details-text li span{
    font-weight: bold;
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid #ccc;
}

.details-text li:before {
    position: absolute;
    display:inline-block;
    background: var(--black);
    color: var(--white);
    font-weight:bold;
    font-size: var(--text-m);
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}

.details-text .details-title{
    font-weight: bold;
    font-size: var(--text-m);
}

@media screen and (max-width: 1250px) {
    #main-gallery {
        width: 450px;
    }

    #choice-btn {
        width: 60px;
    }

    #choice-btn li {
        width: 60px !important;
        height: 60px !important;
    }
}

@media screen and (max-width: 1050px) {

    .product-gallery {
        width: 100%;
    }

    #main-gallery {
        width: 320px;
        flex-grow: 1;
    }

    .details-content-tab {
        top: 114px;
    }

    .details-text, #quality {
        column-gap: 36px;
    }
    
    .details-text div, .details-content .txt {
        width: calc(60% - 18px);
    }
    
    .details-text img, .details-content .img {
        width: calc(40% - 18px);
    }
}

@media screen and (max-width: 767px) {

    .product-overview {
        flex-wrap: wrap;
    }
    #main-gallery {
        width: 10px;
        flex-grow: 1;
    }

    #choice-btn {
        display: none;
    }

    .details-content-tab {
        top: 60px;
    }

    .details-text, #quality {
        row-gap: var(--spacing-header);
    }
    
    .details-text div, .details-content .txt {
        width: 100%;
    }
    
    .details-text img, .details-content .img {
        width: 100%;
    }
}

.product-info {
    width: 100%;
}

.product-info h2 {
    width: 100%;
    text-align: end;
    padding-top: 24px;
    border-top: 1px solid var(--gray400);
}

.product-price {
    font-size: var(--text-xl);
    font-weight: normal;
    font-family: system-ui, sans-serif;
    margin-right: 4px;
}

.product-unit {
    font-weight: 400;
    font-size: var(--text-l);
    font-family: system-ui, sans-serif;
}

.product-info-detail {
    margin: 24px 0;
}

.product-info-detail ul {
    display: flex;
    margin-bottom: 8px;
}

.product-info-detail ul li {
    font-size: var(--text-s);
}

.product-info-detail .text-btn {
    font-size: var(--text-s);
}

.radio_area , .sku-color-area{
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 8px;
    width: 100%;
}



.product-info-btns {
    display: flex;
    justify-content: end;
}

.list-header {
    font-weight: bold;
    width: 130px;
    flex-shrink: 0;
}

.select-item {
    display: flex;
    flex-direction: column;
    font-size: var(--text-m);
    margin: 32px 0;
}

.select-item label {
    display: flex;
    align-items: baseline;
    width: fit-content;
}

.select-item span::before {
    content: "";
    padding-right: 8px;
    border-left: 1px solid var(--gray500);
}

.select-item span:first-of-type::before {
    content: "";
    padding-right: 0;
    border: none;
}

#select-item {
    margin-bottom: 24px;
}

#select-item .form-control {
    display: flex;
    font-size: var(--text-s);
}

#select-item .form-control input {
    flex-shrink: 0;
}

#product-option {
    font-size: var(--text-s);
    padding-bottom: 24px;
}

#purchase p {
    font-size: var(--text-s);
    margin-bottom: 8px;
}

.purchase-box {
    display: flex;
    column-gap: 12px;
    align-items: stretch;
}

.purchase-box select {
    width: 4.5rem;
    padding-left: 8px;
    border: 1px solid var(--gray500);
    border-radius: 8px;
    flex-shrink: 0;
}

.purchase-box input {
    display: none;
    padding-left: 8px;
    outline: none;
    border: 1px solid var(--gray500);
    width: 4.5rem;
    flex-shrink: 0;
}

.purchase-box input:hover,
.purchase-box input:focus {
    border: 1px solid var(--black);
}

@media screen and (max-width: 1050px) {
    .product-info {
        margin-top: var(--spacing-main);
    }
}

@media screen and (max-width: 767px) {
    .product-info-detail ul li {
        font-size: var(--text-xs);
    }
}

.content-title-s {
    padding-top: var(--spacing-content);
}

.content-title-s div {
    display: flex;
    align-items: center;
    column-gap: var(--spacing-gap);
}

.content-title-s div a {
    font-size: var(--text-s);
    color: var(--blue);
}

.content-title-s div a:hover {
    color: var(--black);
}

.content-title-s h2 {
    font-size: var(--text-xl);
}

.content-title-s h3 {
    font-weight: 400;
    font-size: var(--text-s);
}

.product-detail p {
    margin-top: var(--spacing-header);
    padding-bottom: var(--spacing-header);
}

.style-box {
    width: 100%;
    margin-top: var(--spacing-header);
}

.style_img {
    margin: 0 4px;
}

.style-box img {
    /* width: 100%; */
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.style-box .slick-prev, 
.style-box .slick-next {
    top: calc(50% - 18px);
    background-color: var(--white);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.style-box .slick-prev:before,
.style-box .slick-next:before {
	width:10px;
	height:10px;
	border-left: 2px solid var(--gray600);
	border-bottom: 2px solid var(--gray600);
}

.style-box .slick-prev {
    left: -18px;
    z-index: 2;
}

.style-box .slick-next {
    right: -18px;
}

.style-box .slick-prev:before {
    left: 3px;
	transform:rotate(45deg);
}

.style-box .slick-next:before {
    left: -3px;
	transform:rotate(-135deg);
}

@media screen and (max-width: 767px) {
    .content-title-s div {
        justify-content: space-between;
    }

    .list-header {
        width: 100px;
    }
}

.medium-zoom-overlay {
    z-index: 999;
}

.medium-zoom-image--opened {
    z-index: 9999;
    height: auto !important;
    aspect-ratio: auto;
}

/*----------------------------------------
	category_○○○○.html
----------------------------------------*/

.main-background {
    width: 100%;
}

.main-background img {
    width: 100%;
    object-fit: cover;
}

.content-title-text {
    margin-top: 20px;
    padding-bottom: var(--spacing-content);
}

.content-title-text h3 {
    font-size: var(--text-xl);
}

.content-title-text p {
    font-size: var(--text-l);
    margin-top: 4px;
}

.content-title-text .secondary-btn {
    width: auto;
    margin-top: 20px;
    padding: 12px var(--spacing-column-gap);
}

.category-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-gap) var(--spacing-column-gap);
}

.category-box {
    width: calc((100% - var(--spacing-column-gap) * 2) / 3);
    height: 390px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    overflow: hidden;
}

.category-box>img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-box-text {
    padding: 20px;
}

.category-box-text h4 {
    font-size: var(--text-l);
}

.category-box-text ul {
    width: 100%;
    margin-top: 10px;
}

.category-box-text ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    font-size: var(--text-l);
    font-weight: bold;
}

.category-box-text ul a {
    display: block;
    border-bottom: 1px solid var(--gray400);
}

.category-box-text ul a:last-of-type {
    border: none;
}

.category-box-text ul li img {
    height: fit-content;
}

@media screen and (max-width: 1050px) {
    .category-box-wrapper {
        row-gap: var(--spacing-gap);
        column-gap: var(--spacing-column-gap);
    }

    .category-box {
        width: calc((100% - var(--spacing-column-gap)) / 2);
    }
}

@media screen and (max-width: 767px) {
    .content-title-text h3 {
        font-size: var(--text-l);
    }
    
    .content-title-text p {
        font-size: var(--text-s);
    }

    .content-title-text .secondary-btn {
        font-size: var(--text-s);
        padding: 8px 12px;
    }

    .category-box-wrapper {
        row-gap: var(--spacing-gap);
        column-gap: var(--spacing-column-gap);
    }

    .category-box {
        width: 100%;
        height: fit-content;
    }
}

/*----------------------------------------
	product_list.html
----------------------------------------*/

.product-list {
    display: flex;
    column-gap: 40px;
}

.product-list-menu {
    display: flex;
    flex-direction: column;
    width: 240px;
}

.product-list-main {
    width: calc(100% - 280px);
}

.product-list-title {
    display: flex;
    align-items: center;
    justify-content:space-between;
    margin-bottom: 46px;
}

.product-list-title h2 {
    font-size: var(--text-xxl);
}

.product-list-title select {
    border:  1px solid var(--gray500);
    padding: 8px;
    padding-right: 2rem;
    height: fit-content;
    border-radius: 8px;
}

.product-list-gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 28px;
    row-gap: 42px;
}

.product-list-menu h3 {
    font-size: var(--text-l);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray400);
}

.product-list-menu h3:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.product-list-menu h4,
.product-list-menu li {
    font-size: var(--text-s);
    margin-left: 12px;
}

.product-list-menu h4 {
    margin-top: 12px;
}

.product-list-menu li {
    margin-top: 4px;
}

.category-item {
    padding: 5px 0; 
}
.category-content {
    display: flex;
    align-items: center; 
    justify-content: space-between;
}
.toggle-children-btn {
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    user-select: none;
}
.children {
    display: none; 
    padding-left: 20px;
}

.product-list-menu label.form-control {
    width: auto;
    margin-left: 12px;
    font-size: var(--text-s);
    margin-top: 8px;
}

.product-list-menu h3 a:hover,
.product-list-menu ul li a:hover {
    color: var(--orange);
    cursor: pointer;
}

.product-box {
    position: relative;
    width: calc((100% - 56px) / 3);
}

.product-top-left-tag {
    position: absolute;
    font-size: var(--text-xs);
    font-weight: bold;
    color: var(--white);
    width: fit-content;
    background-color: var(--tagPurple);
    clip-path: polygon(0 0, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    padding: 4px 20px 4px 8px;
}

.product-box a img {
    width: 200px;
    min-height: 200px;
    margin: 28px auto 20px auto;
    object-fit: contain;
}

.product-box h5 {
    font-size: var(--text-s);
    font-weight: 400;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-box .brand{
    font-weight: bold;
}

.product-box p {
    font-size: var(--text-s);
    text-align: center;
    margin-top: 8px;
}

.product-box-price {
    font-weight: bold;
}

.tag_btns {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 4px;
    margin-top: 12px;
}

.tag_btns a {
    font-size: var(--text-xs);
    color: var(--gray700);
    padding: 2px 6px;
    border-radius: 999px;
    background-color: var(--gray400);
}

.tag_btns a:hover {
    background-color: #E1E1E1;
}

.pagination {
    margin-top: 46px;
    font-size: var(--text-l);
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  text-decoration: none;
  width: 42px;
  height: 42px;
  padding: 14px 0;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1;
}

.pagination a:hover {
    background-color: var(--hoverWhite);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .current {
    background: var(--black);
    color: #FFF;
  }

@media screen and (max-width: 1250px) {
    .product-list-menu {
        width: 200px;
    }

    .product-list-main {
        width: calc(100% - 240px);
    }
}

@media screen and (max-width: 1050px) {
    .product-list {
        column-gap: 28px;
    }

    .product-list-menu {
        width: 180px;
    }

    .product-list-main {
        width: calc(100% - 208px);
    }

    .product-box {
        width: calc((100% - 28px) / 2);
    }
}

@media screen and (max-width: 767px) {
    .product-list-menu {
        display: none;
    }

    .product-list-main {
        width: 100%;
    }
}

/*----------------------------------------
	cart.html
----------------------------------------*/

.cart-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: var(--spacing-header);
}

.cart-top:first-of-type {
    margin-top: 0;
}

.cart-content {
    display: flex;
    column-gap: 40px;
    align-items: flex-start;
    margin-top: 28px;
}

.cart-main {
    width: 100%;
}

.cart-top h3 {
    font-size: var(--text-l);
}

.form-main .cart-top p {
    margin-top: var(--spacing-header);
}

.cart-box {
    display: flex;
    column-gap: 12px;
    width: 100%;
    padding: var(--spacing-header) 0;
    border-bottom: 1px solid var(--gray400);
}

.cart-box:last-of-type {
    border-bottom: none;
}

.cart-box-inner {
    border: none;
}

.cart-box-main {
    display: flex;
    align-items: flex-start;
    column-gap: 32px;
    flex-grow: 1;
}

.cart-product-link:hover{
    border-bottom: 1px solid #bf0000;
    color: #bf0000;
}

.cart-box-main img {
    width: 120px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.cart-box-main select {
    margin-top: 4px;
}

.cart-text h4 {
    font-size: var(--text-m);
    font-weight: 400;
    margin-bottom: 4px;
}

.cart-text input {
    margin-right: 8px;
}

.cart-text-flex {
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
}

.cart-box-sub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 280px;
    flex-shrink: 0;
}

.delete-btn-pc {
    display: flex;
    align-items: center;
    font-size: var(--text-xs);
    color: var(--gray500);
    border: none;
    background-color: transparent;
    margin-right: 0;
    margin-left: auto;
}

.delete-btn-sp {
    display: none;
    width: 24px;
    height: auto;
    border: none;
    background-color: transparent;
}

.amount {
    font-size: var(--text-xs);
    margin-bottom: 2px;
}

.amount-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amount-total select {
    font-size: var(--text-m);
    width: 60px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid var(--gray500);
}

.amount-total input {
    display: none;
    padding-left: 8px;
    outline: none;
    border: 1px solid var(--gray500);
    width: 60px;
    height: 32px;
    flex-shrink: 0;
}

.amount-total p {
    font-size: var(--text-m);
}

.cart-info {
    position: sticky;
    top: 157px;
    width: 300px;
    padding: 20px;
    background-color: var(--offWhite);
    flex-shrink: 0;
}

.cart-info h5 {
    font-size: var(--text-m);
    margin-bottom: 24px;
}

.cart-info ul {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 4px;
    font-size: var(--text-s);
}

.coupon {
    color: var(--orange);
}

.coupon-text {
    display: flex;
    align-items: center;
}

.coupon-text button {
    margin-left: 4px;
}

.coupon-area {
    padding: 12px 0 8px 0;
    margin-top: 8px;
    border-top: 1px solid var(--white);
}

.coupon-box {
    display: flex;
    column-gap: 12px;
    width: 100%;
}

.coupon-area input {
    border-radius: 0;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--gray500);
    padding-left: 8px;
}

.coupon-area input:hover,
.coupon-area input:focus {
    border: 1px solid var(--black);
    outline: none;
}

.coupon-area .secondary-btn {
    width: fit-content;
    padding: 8px 12px;
}

.cart-info-flex {
    align-items: center !important;
}

.subtotal {
    padding-top: 2px;
    border-top: 1px solid var(--white);
}

.cart-btn-box {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-top: 40px;
}

.cart-btn-box .tertiary_btn {
    width: 100%;
    padding: 11px 0;
}

.cart-sp {
    display: none;
}



@media screen and (max-width: 1250px) {
    .cart-box {
        flex-wrap: wrap;
        align-items: flex-start;
        column-gap: 20px;
    }

    .cart-box-main {
        width: calc(100% - 44px);
    }

    .cart-box-main img {
        width: 90px;
    }
    
    .cart-box-sub {
        width: 100%;
        padding-left: 122px;
    }

    .print-cart {
        display: none;
    }

    .delete-btn-sp {
        display: block;
    }

    .delete-btn-pc {
        display: none;
    }

    .cart-info {
        top: 147px;
        width: 240px;
    }
}

@media screen and (max-width: 767px) {
    .cart-content {
        flex-direction: column;
        row-gap: 40px;
    }

    .cart-top {
        margin-top: var(--spacing-content);
    }

    .cart-top:first-of-type {
        margin-top: var(--spacing-content);
    }

    .cart-box {
        flex-wrap: wrap;
        align-items: flex-start;
        column-gap: 12px;
    }

    .cart-box-main {
        column-gap: 12px;
        width: calc(100% - 36px);
    }

    .cart-box-main img {
        width: 60px;
    }
    
    .cart-box-sub {
        width: 100%;
        padding-left: 72px;
    }
    
    .cart-info {
        position: static;
        width: 100%;
        z-index: 1;
    }

    .cart-sp {
        display: block;
    }

    .cart-pc {
        display: none;
    }

    .cart-title-sp {
        display: flex;
        column-gap: 8px;
    }

    .cart-title-price {
        font-size: var(--text-l);
        font-weight: bold;
        margin-right: 4px;
    }

    .cart-text-price {
        font-weight: 400;
    }

    .amount-total p {
        font-weight: bold;
    }
}


/*----------------------------------------
	pay.html
----------------------------------------*/

.pay-box {
    width: 100%;
    padding: var(--spacing-header) 0;
    border-bottom: 1px solid var(--gray400);
}

.pay-box .form-content {
    width: 100%;
}

.radio_box {
    padding: 8px 12px 8px 8px;
    width: min(600px, 100%);
}


.radio_area
.radio_box:has(input:disabled) , .sku-color-area .radio_box:has(input:disabled){
    color: var(--gray500);
    background-color: #f5f5f5;
    border-color: var(--gray500);
    cursor: not-allowed;
}

.radio_area .radio_box,
.sku-color-area .radio_box {
    border: 2px solid var(--gray400);
    border-radius: 8px;
    width: calc((100% - 8px) / 2);
    padding: 8px;
    margin: 0;
    display: flex;
    box-sizing: border-box;
}



.checked_box {
    background-color: #FFF6F2;
    border: 1px solid var(--orange);
    border-radius: 6px;
    padding: 7px 11px 7px 7px;
}

.single.form-control {
    margin-bottom: 0;
}

.pay-form {
    display: flex;
    margin-bottom: 20px;
}

.pay-form .form-name {
    width: 152px;
}

.pay-form .form-area {
    width: fit-content;
    flex-grow: 0;
}

.pay-box .edit-btn {
    flex-shrink: 0;
    line-height: 1.5;
    font-size: var(--text-m);
}

.pay-box .add-btn {
    margin-top: 1rem;
}

.input-label {
    display: flex;
    flex-direction: column;
}

.input-edit {
    display: flex;
    align-items: flex-start;
    column-gap: 12px;
    font-size: var(--text-m);
    justify-content: space-between;
    line-height: 1.5;
    margin: -3.5px 0;
}

.pay-box .input-caption {
    font-size: var(--text-s);
    line-height: 1.5;
    margin-top: 8px;
}

.pay-form p {
    font-size: var(--text-xs);
    margin-top: 8px;
}

.addCredit {
    width: 500px !important;
}

.addCredit .modal-btns {
    padding-bottom: 0;
}

.inner-input {
    display: none;
    margin: 1em 0;
}

.inner-input input {
    margin: auto 0 !important;
}

input[type="radio"]:checked + .input-label .inner-input, .error_message+.input-label .inner-input {
    display: block;
}


@media screen and (max-width: 767px) {
    .pay-form {
        flex-direction: column;
    }
}

/*----------------------------------------
	account.html
----------------------------------------*/

.mypage-title {
    display: flex;
    justify-content: space-between;
}

.account-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 28px;
}

.account-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
}

.account-box:nth-child(1) {
    grid-column: 1 / 2;
}

.account-box:nth-child(2) {
    grid-column: 2;
}

.account-box:nth-child(3) {
    grid-column: 3;
}

.account-box .edit-btn {
    padding: 4px;
    border-radius: 6px;
}

.account-box .edit-btn img {
    filter: none;
}

.account-box .edit-btn:hover {
    background-color: var(--hoverWhite) !important;
}

.add-list-button .edit-btn:hover {
    background-color: transparent !important;
}

@media screen and (max-width: 1250px) {
    .account-content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .account-box:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .account-box:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
    
    .account-box:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
}

@media screen and (max-width: 800px) {
    .account-content {
        display: flex;
        flex-direction: column;
    }
}

.account-title-box,
.account-title {
    display: flex;
    align-items: center;
}

.account-title-box {
    justify-content: space-between;
    margin-bottom: 20px;
}

.account-title {
    column-gap: 12px;
}

.account-title-box a h4 {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--blue);
}

.account-title-box a h4:hover {
    color: var(--black);
}

.account-box ul {
    display: flex;
    font-size: var(--text-s);
    margin-bottom: 12px;
}

.account-box li:first-of-type {
    width: 120px;
}

.card-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray400);
}

.card {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.card-text {
    display: flex;
    column-gap: 1rem;
}

.card-text h5,
.card-text h6 {
    font-size: .8rem;
    font-weight: 400;
}

.card-text p {
    font-size: .8rem;
    color: var(--gray500);
}

.card img,
.cards img {
    width: 50px;
    height: 32px;
    object-fit: contain;
}

.add-list-button {
    width: 100%;
    padding-top: 12px;
}

.add-list-button .edit-btn img {
    filter: invert(33%) sepia(100%) saturate(3427%) hue-rotate(197deg) brightness(95%) contrast(94%);
}

.add-list-button .edit-btn:hover img {
    filter: none;
}

.account-box button {
    display: flex;
    align-items: center;
    font-size: var(--text-s);
    color: var(--blue);
    border: none;
    background-color: transparent;
}

.address-box {
    border-bottom: 1px solid var(--gray400);
    margin-top: 12px;
    padding-bottom: 12px;
}

.address-list {
    flex-direction: column;
    margin-bottom: 0 !important;
}

.remarks {
    color: var(--gray500);
    margin-bottom: 0 !important;
    max-width: 340px;
}

.remarks li {
    width: 340px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.purchase-history-box {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
    border-bottom: 1px solid var(--gray400);
}

.purchase-history-box:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.purchase-history-box img {
    width: 100px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.purchase-history-box h4 {
    font-weight: 400;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 4px;
}

.purchase-history-box p {
    font-size: .8rem;
}

.order-history-list {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray400);
}

.order-history-list:last-of-type {
    border: none;
}

.order-history-list ul {
    margin: 0;
    column-gap: 16px;
}

.order-history-list li:first-of-type {
    width: 70px;
}

.order-history-list button {
    margin-left: 86px;
}

.order-history-list button:hover {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.purchase-history-list ul {
    margin-bottom: 0;
}

/*----------------------------------------
	done.html
----------------------------------------*/

.centerd_parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 20px;
    text-align: center;
}

.centered h2 {
    font-size: var(--text-l);
}

.centered-title {
    display: flex;
    column-gap: 8px;
    font-size: var(--text-xl);
}

.centered-title h1 {
    flex-shrink: 0;
}

.centered-btns {
    display: flex;
    column-gap: 1rem;
    margin-bottom: var(--spacing-content);
}

.centered-btns .secondary-btn {
    padding: 9.5px 20px;
}

/*----------------------------------------
	personal_infomation.html
----------------------------------------*/

.checked-area {
    display: none;
    margin-top: var(--spacing-header);
}

.form-main .secondary-btn {
    margin-bottom: 0;
}

.secondary-btn.purchase-flow {
    padding: 9.5px 20px;
    height: 42px;
}

.processing-btns {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
    padding-top: 32px;
    border-top: 1px solid var(--gray400);
}

.processing-btns button {
    width: 240px;
    padding: 9.5px 20px;
}

@media screen and (max-width: 767px) {
    .processing-btns a, .processing-btns button {
        width: 100%;
    }
}

/*----------------------------------------
	multiple_delivery.html
----------------------------------------*/

.content-title .secondary-btn {
    padding: 9.5px 20px;
    height: 42px;
    margin-top: var(--spacing-header);
}

.pulldowns {
    display: flex;
    column-gap: 8px;
    margin-top: 8px;
}

.pulldowns .amount-total select {
    margin-top: 0;
}

.pulldowns .amount-total input {
    margin-right: 0;
}

.pulldowns select.fit-size {
    margin-top: 0;
    width: min(300px, 100%) !important;
    padding: 0 24px 0 8px;
}

.pulldowns .delete-icon-btn {
    flex-shrink: 0;
}

.pulldowns .delete-icon-btn img {
    width: 24px;
    height: 24px;
}

.multiple-content .cart-text .edit-btn {
    margin-top: 12px;
}

.multiple-content .cart-text .edit-btn img {
    width: 12px;
    height: 12px;
}

.multiple-content .cart-text {
    flex-grow: 1;
}

.multiple-content {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.multiple-content .secondary-btn {
    padding: 9.5px 20px;
    height: 42px;
}

@media screen and (max-width: 1050px) {
    .multiple-content .cart-box-main {
        width: 100%;
    }
}

/*----------------------------------------
	date_and_pay.html
----------------------------------------*/

.form-main h4 {
    margin-bottom: 20px;
}

.form-area-text {
    font-size: var(--text-m);
    padding-top: 8px;
}

/*----------------------------------------
	purchase_history.html
----------------------------------------*/

.card-gallery {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.flex-card {
    display: flex;
    column-gap: 16px;
    width: calc((100% - 40px) / 3);
    border: 1px solid var(--gray400);
    border-radius: 15px;
    padding: 20px 20px 4px;
}

.flex-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.flex-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.flex-card .cart-text h4 {
    margin-bottom: 0;
    color: var(--blue);
}

.flex-card .cart-text h4:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--blue);
}

.flex-card .cart-text ul {
    margin-bottom: 0;
}

.list-btn {
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--gray400);
}

.list-btn img {
    width: 24px !important;
    height: 24px !important;
}

@media screen and (max-width: 1250px) {
    .flex-card img {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 1050px) {
    .flex-card {
        width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 767px) {
    .flex-card {
        width: 100%;
    }
}

/*----------------------------------------
	address.html
----------------------------------------*/

.half-list {
    width: 650px;
    border-bottom: 1px solid var(--gray400);
    padding-bottom: 12px;
    margin: 12px 0 !important;
}

.address-text {
    font-size: var(--text-s);
    color: var(--gray500);
    margin-top: 8px;
}

@media screen and (max-width: 767px) {
    .half-list {
        width: 100%;
    }
}

/*----------------------------------------
	card.html
----------------------------------------*/

.cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 12px;
}

.modal-inner-title {
    font-size: var(--text-m);
    padding: 12px 0;
}

/*----------------------------------------
	unsubscribed.html
----------------------------------------*/

.unsubscribed-flow .form-main {
    padding-top: var(--spacing-content);
}

.unsubscribed-flow .form-main .explain-text {
    font-size: var(--text-l);
    padding-bottom: var(--spacing-content);
}


/*----------------------------------------
	外部ショップ
----------------------------------------*/

.banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: 20px 0;
  }

  .banner {
    width: calc((100% - 20px*3) / 4);
    box-sizing: border-box;
    /* 各バナー内の余白を設定 */
    border: 2px solid #C1C4C9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    border-radius: 12px;
  }

  .banner a {
    display: block;
    padding: 30px 50px;
    /* 左右に余白を設定 */
    box-sizing: border-box;
    width: 100%;
  }

  .banner img {
    object-fit: cover;
    /* コンテナに合わせて切り取られるように */
  }



  /* スマートフォン表示の際のメディアクエリ */
  @media (max-width: 768px) {
    .banners {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 12px;
      margin: 20px 0;
    }

    .banner {
      width: calc((100% - 12px) / 2);
    }
  }