@charset "UTF-8";
/*==================================================================================================
	index
==================================================================================================*/
.mv {
    background: -webkit-linear-gradient(135deg, #0cd254 0%, #008630 100%);
    background: linear-gradient(-45deg, #0cd254 0%, #008630 100%);
    padding-top: 150px;
    padding-bottom: 80px;
}

@media (max-width: 960px) {
    .mv {
        padding-top: 110px;
        padding-bottom: 30px;
    }
}

.mv_slider_img img {
    opacity: .6;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, transform .5s;
    transition: opacity .5s, transform .5s, -webkit-transform .5s;
    width: 100%;
}

@media (max-width: 960px) {
    .mv_slider_img img {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.mv_slider_img.slick-center img {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.mv_slider .mv_slider_dots {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 540px) {
    .mv_slider .mv_slider_dots {
        margin-top: 20px;
    }
}

.mv_slider .mv_slider_dots button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.mv_slider .mv_slider_dots li {
    width: clamp(30px, 4vw, 50px);
    height: 6px;
    background-color: #FFF;
    cursor: pointer;
}

@media (max-width: 540px) {
    .mv_slider .mv_slider_dots li {
        height: 3px;
    }
}

.mv_slider .mv_slider_dots li.slick-active {
    background-color: #5d5d5d;
}

.top_nav {
    margin-top: -35px;
}

@media (max-width: 960px) {
    .top_nav {
        display: none;
    }
}

.top_nav_lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    background-color: #008630;
    padding: 10px 40px;
    border-radius: 40px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top_nav_list {
    position: relative;
    width: calc(100% / 5);
    text-align: center;
}

.top_nav_list:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 100%;
    background-color: #FFF;
    -webkit-transform: translate(0, -50%) rotate(30deg);
    transform: translate(0, -50%) rotate(30deg);
}

.top_nav_list_item {
    color: #FFF;
    padding: .5em 1em;
    display: block;
    cursor: pointer;
}

.top_nav_list_item:hover {
    color: #EF8200;
}

.top_nav_list.-goods::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #FFF;
    height: 10px;
    width: 14px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.top_nav_list.-goods:hover .nav_child {
    visibility: visible;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 1;
    -webkit-transition: .3s;
    transition: .3s;
}

.top_nav_list .nav_child {
    position: absolute;
    left: 50%;
    top: 100%;
    color: #FFF;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    width: 130%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .4s;
    transition: all .4s;
}

.top_nav_list .nav_child_item {
    text-align: left;
}

.top_nav_list .nav_child_item:not(:last-child) a {
    border-bottom: dotted 1px #FFF;
}

.top_nav_list .nav_child_item:last-child a {
    border-radius: 0 0 6px 6px;
}

.top_nav_list .nav_child_item a {
    font-size: 1.8rem;
    padding: 1em .5em;
    display: block;
    position: relative;
    background-color: #008630;
}

.top_nav_list .nav_child_item a::after {
    font-family: 'icomoon';
    content: "󰅂";
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 50%;
    right: .5em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.top_nav_list .nav_child_item a:hover {
    background-color: #63b580;
}

.top_nav_list .nav_child_item.-lighter a {
    position: relative;
    padding-left: 3em;
    font-size: 2.5rem;
}

.top_nav_list .nav_child_item.-lighter a::before {
    position: absolute;
    content: "";
    left: .5em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    background: url("../img/00_cmn/nav_lighter.png") center no-repeat;
    background-size: contain;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.top_nav_list .nav_child_item.-lighter a:hover::before {
    -webkit-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
}

.top_products {
    padding: clamp(20px, 7vw, 80px) 0 clamp(100px, 15vw, 200px);
    position: relative;
    overflow: hidden;
}

.top_products .banner_item a {
    margin: 1.5625vw;
    display: block;
}

.top_products .banner_item a img {
    border-radius: 10px;
    -webkit-box-shadow: 7px 7px 0 0 #008630;
    box-shadow: 7px 7px 0 0 #008630;
}

@media (max-width: 540px) {
    .top_products .banner_item a img {
        -webkit-box-shadow: 4px 4px 0 0 #008630;
        box-shadow: 4px 4px 0 0 #008630;
    }
}

.top_products .banner_item a:hover img {
    -webkit-transform: translate(7px, 7px);
    transform: translate(7px, 7px);
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
}

@media (max-width: 540px) {
    .top_products .banner_item a:hover img {
        -webkit-transform: translate(4px, 4px);
        transform: translate(4px, 4px);
    }
}

.top_products_middle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 2.60417vw;
}

@media (max-width: 1240px) {
    .top_products_middle {
        gap: 0;
    }
}

@media (max-width: 700px) {
    .top_products_middle {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.top_products_middle .middle_banner {
    width: 50%;
}

@media (max-width: 700px) {
    .top_products_middle .middle_banner {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.top_products_middle .products_search {
    width: 50%;
    padding: 2.60417vw;
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
}

@media (max-width: 1240px) {
    .top_products_middle .products_search {
        padding: 10px;
    }
}

@media (max-width: 700px) {
    .top_products_middle .products_search {
        width: 100%;
        margin: 20px auto;
    }
}

.top_products_middle .products_search .sec_ttl .en {
    font-size: clamp(3rem, 4vw, 5.5rem);
}

.top_products_middle .products_search .sec_ttl .ja {
    font-size: clamp(1.6rem, 1.9vw, 2rem);
}

.top_products_middle .products_search_lists {
    background-color: #FFF;
    border-radius: 12px;
    padding: 1.04167vw;
    margin: 30px auto;
}

@media (max-width: 1240px) {
    .top_products_middle .products_search_lists {
        margin: 10px auto 0;
    }
}

.top_products_middle .products_search_list {
    margin: 1em .5em;
}

.top_products_middle .products_search_list a {
    color: #008630;
    font-size: clamp(1.6rem, 1.5vw, 2.6rem);
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 0 2em 0 1em;
}

.top_products_middle .products_search_list a::after {
    font-family: 'icomoon';
    content: "󰅂";
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 50%;
    right: .5em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.top_products_middle .products_search_list a::before {
    position: absolute;
    content: "#";
    left: 0;
    top: 0;
}

.top_products_middle .products_search_list a::after {
    color: #FFF;
    background-color: #008630;
    border-radius: 1em;
    font-weight: 400;
    font-size: .75em;
    padding: 0 0.25em;
}

.top_products_middle .products_search_list a:hover {
    opacity: .6;
}

.top_products_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.top_products_bottom .banner_item {
    width: calc(100% / 3);
}

.top_products_bottom .banner_item.-item04 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
}

.top_products_bottom .banner_item.-item05 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

.top_products_bottom .banner_item.-item06 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

.top_products_bottom .banner_item.-item07 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
}

.top_products_bottom .banner_item.-item08 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
}

.top_products_bottom .banner_item.-item09 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
}

@media (max-width: 700px) {
    .top_products_bottom .banner_item {
        width: calc(100% / 2);
    }
    .top_products_bottom .banner_item.-item07 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .top_products_bottom .banner_item.-item08 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
    .top_products_bottom .banner_item.-item09 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
    .top_products_bottom .banner_item.-item09 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
}

.top_products .deco_1, .top_products .deco_2, .top_products .deco_3 {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.top_products .deco_1 {
    top: 3%;
    left: -2%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 700px) {
    .top_products .deco_1 {
        display: none;
    }
}

.top_products .deco_1 img {
    max-width: clamp(40px, 4.7vw, 90px);
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
}

.top_products .deco_1 img.anim1 {
    -webkit-animation: anim1 3s infinite;
    animation: anim1 3s infinite;
}

.top_products .deco_2 {
    bottom: 10%;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 700px) {
    .top_products .deco_2 {
        display: none;
    }
}

.top_products .deco_2 img {
    max-width: clamp(35px, 2.6vw, 50px);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    margin: -40px 0;
}

.top_products .deco_2 img.anim2 {
    -webkit-animation: anim2 3s infinite;
    animation: anim2 3s infinite;
}

.top_products .deco_3 {
    bottom: -3%;
    left: 10%;
    gap: 30px;
    z-index: -1;
}

@media (max-width: 700px) {
    .top_products .deco_3 {
        gap: 15px;
    }
}

.top_products .deco_3 img {
    max-width: clamp(40px, 4.7vw, 90px);
}

.top_products .deco_3 img:nth-child(1) {
    -webkit-transform: translateY(26%);
    transform: translateY(26%);
}

.top_products .deco_3 img.anim3 {
    -webkit-animation: anim3 3s infinite;
    animation: anim3 3s infinite;
}

@-webkit-keyframes anim1 {
    50% {
        -webkit-transform: rotate(15deg) translateX(7px);
        transform: rotate(15deg) translateX(7px);
    }
    100% {
        -webkit-transform: rotate(12deg) translateX(0px);
        transform: rotate(12deg) translateX(0px);
    }
}

@keyframes anim1 {
    50% {
        -webkit-transform: rotate(15deg) translateX(7px);
        transform: rotate(15deg) translateX(7px);
    }
    100% {
        -webkit-transform: rotate(12deg) translateX(0px);
        transform: rotate(12deg) translateX(0px);
    }
}

@-webkit-keyframes anim2 {
    50% {
        -webkit-transform: rotate(-35deg) translateY(20px);
        transform: rotate(-35deg) translateY(20px);
    }
    100% {
        -webkit-transform: rotate(-35deg) translateY(0px);
        transform: rotate(-35deg) translateY(0px);
    }
}

@keyframes anim2 {
    50% {
        -webkit-transform: rotate(-35deg) translateY(20px);
        transform: rotate(-35deg) translateY(20px);
    }
    100% {
        -webkit-transform: rotate(-35deg) translateY(0px);
        transform: rotate(-35deg) translateY(0px);
    }
}

@-webkit-keyframes anim3 {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
    50% {
        -webkit-transform: translateY(8%);
        transform: translateY(8%);
    }
    100% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
}

@keyframes anim3 {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
    50% {
        -webkit-transform: translateY(8%);
        transform: translateY(8%);
    }
    100% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
}

.ranking {
    background: -webkit-linear-gradient(135deg, #0cd254 0%, #008630 100%);
    background: linear-gradient(-45deg, #0cd254 0%, #008630 100%);
    padding: 50px 0 30px;
}

@media (max-width: 540px) {
    .ranking {
        padding: 30px 0 15px;
    }
}

.ranking_lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3.125vw;
    margin: clamp(30px, 3vw, 60px) auto;
}

.ranking_list {
    width: calc(33.333% - 3.125vw);
}

@media (max-width: 700px) {
    .ranking_list {
        width: calc(50% - 3.125vw);
    }
    .ranking_list.-no1 {
        width: 100%;
    }
}

.ranking_list_item {
    background-color: #FFF;
    border-radius: 10px;
    display: block;
    padding: 20px;
    position: relative;
}

@media (max-width: 540px) {
    .ranking_list_item {
        padding: 10px;
    }
}

.ranking_list_item .num {
    position: absolute;
    top: -8px;
    left: -8px;
    width: clamp(80px, 30%, 123px);
}

.ranking_list_item .thumb img {
    aspect-ratio: 1.33333;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.ranking_list_item .ttl {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    margin: .3em auto;
}

.ranking_list_item .tag-wrap .tag {
    display: inline-block;
    border: solid 1px;
    padding: 0 .75em;
    margin: 2px;
    border-radius: 1em;
    font-size: .85em;
}

.ranking_list_item:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.annotation {
    max-width: 1024px;
    margin: clamp(20px, 5.5vw, 60px) auto 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    border: solid 5px #D80000;
    padding: clamp(20px, 2.6vw, 50px);
}

@media (max-width: 700px) {
    .annotation {
        border-width: 3px;
    }
}

.annotation_ttl {
    text-align: center;
}

.annotation_ttl .en, .annotation_ttl .ja {
    display: block;
    color: #D80000;
}

.annotation_ttl .en {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    opacity: .5;
    line-height: 1;
}

.annotation_ttl .ja {
    font-size: clamp(2rem, 2.3vw, 3.2rem);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.25;
    margin: .25em auto .75em;
}

.annotation_ttl .ja::before, .annotation_ttl .ja::after {
    background-color: #D80000;
    content: "";
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 3px;
}

@media (max-width: 700px) {
    .annotation_ttl .ja::before, .annotation_ttl .ja::after {
        height: 2px;
    }
}

.annotation_ttl .ja::before {
    margin-right: 1em;
}

.annotation_ttl .ja::after {
    margin-left: 1em;
}

@media (min-width: 541px) {
    .annotation_ttl .ja br {
        display: none;
    }
}

.annotation_comments1 {
    font-size: clamp(1.6rem, 1.9vw, 2rem);
    color: #FFF;
    background-color: #D80000;
    padding: .5em;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 540px) {
    .annotation_comments1 {
        text-align: left;
    }
}

.annotation_comments2 {
    color: #D80000;
    font-size: clamp(1.6rem, 1.9vw, 2rem);
    font-weight: 600;
}

.annotation dl {
    margin: 30px auto;
}

@media (max-width: 540px) {
    .annotation dl {
        margin: 20px auto;
    }
}

.annotation dl dt {
    color: #D80000;
    font-size: clamp(1.6rem, 1.9vw, 2rem);
    margin: .5em 0;
    font-weight: 600;
}

.data_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.data_list dt, .data_list dd {
    padding: 20px;
    border-bottom: solid 1px #8d8d8d;
}

.data_list dt {
    width: 30%;
    font-size: clamp(1.6rem, 1.9vw, 2rem);
}

@media (max-width: 700px) {
    .data_list dt {
        width: 100%;
        border-bottom: none;
        padding: 15px 15px 5px 15px;
    }
}

.data_list dd {
    width: 70%;
    font-size: clamp(1.6rem, 1.9vw, 2rem);
}

@media (max-width: 700px) {
    .data_list dd {
        width: 100%;
        padding: 5px 15px 15px 15px;
    }
}

.data_list dd a {
    text-decoration: underline;
}

.data_list dd a:hover {
    color: #008630;
}

/*=================================================================
	ご注文の流れ flow
==================================================================*/
.flow_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
}

.flow_list {
    background-color: #F2F2F2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 70px 0 70px 30px;
}

@media (max-width: 540px) {
    .flow_list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 50px 0 50px 20px;
    }
}

.flow_list_img {
    width: 20%;
}

@media (max-width: 540px) {
    .flow_list_img {
        width: 90%;
    }
}

.flow_list_img figure {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
}

.flow_list_img figure img {
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.flow_list_body {
    width: 80%;
    padding: clamp(20px, 2.60417vw, 50px) 20px;
    position: relative;
}

@media (max-width: 540px) {
    .flow_list_body {
        width: 100%;
    }
}

.flow_list_body .num {
    color: #008630;
    font-size: clamp(4rem, 3.75vw, 7.2rem);
    font-weight: 600;
    line-height: 1;
    position: absolute;
    top: -.7em;
    left: .2em;
}

@media (max-width: 540px) {
    .flow_list_body .num {
        font-size: 4rem;
        top: -1em;
    }
}

.flow_list_body .ttl {
    color: #008630;
    font-size: clamp(1.8rem, 1.35417vw, 2.6rem);
}

.flow_list_body .color_main {
    color: #008630;
    font-weight: 600;
}

.order_lists .order_list {
    margin: 2em auto;
}

.order_lists .order_list:last-child {
    margin-bottom: 0;
}

.order_lists .order_list .ttl {
    position: relative;
    padding-left: 1.25em;
    font-size: 1.2em;
    margin-bottom: .5em;
    color: #333;
}

@media (max-width: 540px) {
    .order_lists .order_list .ttl {
        padding-left: .75em;
    }
}

.order_lists .order_list .ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #008630;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 13px;
}

@media (max-width: 540px) {
    .order_lists .order_list .ttl::before {
        width: 8px;
        height: 8px;
        border-radius: 8px;
    }
}

.order_lists .order_list .a_btn {
    font-weight: 600;
    background-color: #FFF;
    padding: .75em 1.5em .75em 2.75em;
    border-radius: 1.5em;
    display: inline-block;
    margin: 3px;
    border: solid 1px;
    position: relative;
}

.order_lists .order_list .a_btn::before {
    content: "";
    position: absolute;
    left: 1.25em;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1.2em;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.order_lists .order_list .a_btn.free {
    color: #008630;
    border-color: #008630;
}

.order_lists .order_list .a_btn.free::before {
    background-image: url("../img/00_cmn/icon_freetel.png");
}

.order_lists .order_list .a_btn.fax {
    color: #D80000;
    border-color: #D80000;
}

.order_lists .order_list .a_btn.fax.-paper::before {
    background-image: url("../img/00_cmn/icon_pdf.svg");
}

.order_lists .order_list .a_btn.fax.-number::before {
    background-image: url("../img/00_cmn/icon_fax2.svg");
}

.order_lists .order_list .a_btn.order {
    color: #008630;
    border-color: #008630;
}

.order_lists .order_list .a_btn.order::before {
    background-image: url("../img/00_cmn/icon_mail.svg");
    -webkit-filter: invert(30%) sepia(62%) saturate(1521%) hue-rotate(114deg) brightness(100%) contrast(102%);
    filter: invert(30%) sepia(62%) saturate(1521%) hue-rotate(114deg) brightness(100%) contrast(102%);
}

.delivery {
    background-color: #FFF;
}

/*=================================================================
	会社概要 company
==================================================================*/
.feature {
    margin-top: clamp(30px, 4vw, 80px);
}

.feature_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    padding-top: 0;
}

.feature_wrap h2 {
    max-width: 960px;
    -webkit-transform: translateY(-3.6vw);
    transform: translateY(-3.6vw);
}

.feature_wrap ul li:not(:first-child) {
    margin-top: clamp(30px, 2.5vw, 50px);
}

.feature_wrap ul li h3 {
    color: #008630;
    font-size: clamp(1.8rem, 2.34375vw, 4.5rem);
}

.greeting {
    background-color: #FFF;
}

.greeting_img {
    height: clamp(250px, 35vw, 400px);
    border-radius: clamp(25px, 4vw, 50px) 0 0 0;
    background: url("../img/03_company/company.jpg") center no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.greeting_under {
    text-align: center;
}

.greeting_under img {
    max-width: 800px;
}

.sdgs_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    padding-top: 0;
}

.sdgs .sec_ttl2 {
    -webkit-transform: translateY(-0.7em);
    transform: translateY(-0.7em);
}

.sdgs_imgs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 700px) {
    .sdgs_imgs {
        gap: 10px;
    }
}

.sdgs_imgs figure {
    width: calc(50% - 20px);
}

@media (max-width: 700px) {
    .sdgs_imgs figure {
        width: 100%;
    }
}

.company_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    padding-top: 0;
}

.company_wrap .deco {
    font-size: clamp(3rem, 5vw, 6.5rem);
    font-weight: 700;
    color: #008630;
    letter-spacing: 5px;
    -webkit-transform: translateY(-0.7em);
    transform: translateY(-0.7em);
    display: inline-block;
}

/*=================================================================
	よくあるご質問 qa
==================================================================*/
.qa_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    padding: clamp(20px, 3.5vw, 50px) clamp(20px, 4.5vw, 80px);
    margin-bottom: 30px;
}

.qa_wrap .ttl {
    color: #008630;
    font-size: 2em;
}

@media (max-width: 540px) {
    .qa_wrap .ttl {
        font-size: 1.5em;
    }
}

.qa_list {
    border-bottom: solid 1px #8d8d8d;
    padding: 1em;
}

@media (max-width: 540px) {
    .qa_list {
        padding: 1em .5em;
    }
}

.qa_list .q, .qa_list .a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.qa_list .q .num, .qa_list .a .num {
    width: 1.75em;
    color: #008630;
    font-size: 2em;
    font-weight: 600;
}

@media (max-width: 540px) {
    .qa_list .q .num, .qa_list .a .num {
        font-size: 1.5em;
    }
}

.qa_list .q .txt, .qa_list .a .txt {
    display: inline-block;
    width: calc(100% - 1.75em);
}

.qa_list .q {
    font-weight: 500;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.qa_list .a {
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
}

/*========================================================
	商品リスト products
==========================================================*/
.products_lists {
    position: relative;
    margin: clamp(30px, 4vw, 80px) auto;
}

.products_lists::before {
    position: absolute;
    left: -.4em;
    top: 10%;
    font-size: clamp(9rem, 13vw, 18rem);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #FFF;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 100vw;
    z-index: -1;
}

@media (max-width: 540px) {
    .products_lists::before {
        display: none !important;
    }
}

.products_lists.-lighter::before {
    content: "LIGHTER";
}

.products_lists.-ballpoint::before {
    content: "BALLPOINT";
}

.products_lists_ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 2.60417vw;
}

@media (max-width: 700px) {
    .products_lists_ul {
        gap: 40px 10px;
    }
}

.products_lists_li {
    width: calc((100% / 4) - 2vw);
    position: relative;
}

@media (max-width: 1240px) {
    .products_lists_li {
        width: calc((100% / 3) - 2vw);
    }
}

@media (max-width: 700px) {
    .products_lists_li {
        width: calc((100% / 2) - 5px);
    }
}

.products_lists_thumb {
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.products_lists_thumb figure {
    overflow: hidden;
}

.products_lists_thumb figure img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.products_lists_thumb:hover figure img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.products_lists_thumb:hover .tapbtn::before {
    width: 95%;
}

.products_lists_thumb:hover .tapbtn .hover {
    opacity: 1;
    display: inline;
}

.products_lists_price {
    position: absolute;
    top: -15px;
    left: 0;
    background-color: #D80000;
    color: #FFF;
    padding: .25em .5em;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 540px) {
    .products_lists_price {
        font-size: .85em;
        top: -10px;
    }
}

.products_lists_category {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px;
}

.products_lists_category li {
    background-color: #008630;
    color: #FFF;
    font-size: .85em;
    padding: .25em 1em;
}

@media (max-width: 700px) {
    .products_lists_category li {
        padding: 0 .5em;
    }
}

.products_lists_ttl {
    font-weight: 600;
    line-height: 1.25;
}

.tapbtn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #FFF;
    padding: .2em .5em;
    overflow: hidden;
}

.tapbtn::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #008630;
    border-radius: 15px;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    z-index: 1;
    bottom: 1px;
    right: 2px;
    -webkit-transition: all .3s allow-discrete;
    transition: all .3s allow-discrete;
}

@media (max-width: 540px) {
    .tapbtn::before {
        width: 24px;
        height: 24px;
        border-radius: 12px;
        right: 3px;
    }
}

.tapbtn span {
    position: relative;
    z-index: 2;
}

.tapbtn .plus {
    font-weight: 600;
}

.tapbtn .hover {
    font-size: .85em;
    font-weight: 500;
    margin-left: 3px;
    opacity: 0;
    display: none;
    -webkit-transition: all .2s allow-discrete;
    transition: all .2s allow-discrete;
}

.archive-empty {
    text-align: center;
}

.pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .5em;
    margin-top: 60px;
}

.pagination .page-numbers {
    font-size: 1.25em;
    padding: .4em .75em;
    background: #d4d4d4;
}

@media (max-width: 540px) {
    .pagination .page-numbers {
        font-size: 1em;
    }
}

.pagination .page-numbers.current {
    color: #FFF;
    background: #008630;
}

.pagination .page-numbers:hover {
    color: #FFF;
    background: #008630;
}

.pagination .prev,
.pagination .next {
    position: relative;
    padding: .4em 1em;
}

.pagination .prev::after,
.pagination .next::after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    position: absolute;
    font-size: 2rem;
}

.pagination .prev::after {
    content: "\f0141";
}

.pagination .next::after {
    content: "\f0142";
}

.translation_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 17px 17px 0;
}

@media (max-width: 540px) {
    .translation_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 7px 7px 0;
    }
}

.translation_wrap::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 100%;
    height: 100%;
    border: solid 2px #008630;
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    pointer-events: none;
}

@media (max-width: 540px) {
    .translation_wrap::after {
        left: 5px;
        top: 5px;
    }
}

.translation_wrap figure {
    width: 20%;
}

@media (max-width: 540px) {
    .translation_wrap figure {
        width: 80%;
    }
}

.translation_wrap_content .txt {
    font-weight: 500;
    font-size: clamp(1.6rem, 1.9vw, 2rem);
}

/*=================================================================
	詳細 single
==================================================================*/
.products_single_head .products_img img {
    aspect-ratio: 16/9;
    -o-object-fit: contain;
    object-fit: contain;
}

.products_single_head .subttl {
    color: #008630;
    font-size: clamp(2rem, 2vw, 3.2rem);
    font-weight: 600;
    line-height: 1.25;
}

.products_single_head .category li {
    background: #008630;
    color: #FFF;
    padding: 3px .5em;
    font-size: .85em;
    display: inline-block;
    margin: 3px;
}

.products_single_head .ttl {
    font-size: 1.25em;
    margin-top: .5em;
}

@media (max-width: 540px) {
    .products_single_head .ttl {
        font-size: 1em;
    }
}

.products_single_body {
    background: #FFF;
    padding: 20px 20px 100px;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 960px) {
    .products_single_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.products_single_body .ttl {
    font-size: clamp(1.6rem, 1.9vw, 2rem);
    padding-left: .5em;
    position: relative;
}

.products_single_body .ttl::before {
    content: "";
    position: absolute;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 2px;
    height: 80%;
    background: #008630;
}

.products_single_body .place {
    width: calc((100% / 2) - 20px);
}

@media (max-width: 960px) {
    .products_single_body .place {
        width: 100%;
    }
}

.products_single_body .place_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.products_single_body .place_table_head th {
    font-weight: 600;
    color: #008630;
    text-align: left;
    padding: .75em .25em 0;
}

.products_single_body .place_table_head th span {
    font-size: .85em;
    color: #333;
    margin-left: .5em;
}

.products_single_body .place_table_content {
    border-bottom: dashed 1px;
}

.products_single_body .place_table_content td {
    padding: .75em .25em;
}

.products_single_body .place .remarks {
    margin: 1em 0;
}

.products_single_body .place .remarks p {
    line-height: 1.5;
    font-size: .85em;
}

.products_single_body .detail {
    width: calc((100% / 2) - 20px);
}

@media (max-width: 960px) {
    .products_single_body .detail {
        width: 100%;
    }
}

.products_single_body .detail_list {
    border-bottom: dashed 1px;
    padding: .75em .25em;
}

.products_single_body .detail_list_ttl {
    font-weight: 500;
}

.products_single_body .detail_list_txt {
    margin: 0;
}

.products_single_order {
    padding: 0 20px;
    margin-top: -50px;
}

.products_single_order a {
    display: block;
    background: #FFF;
    border: solid 1px #008630;
    padding: 1.5em 1em;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.products_single_order a::after {
    content: "";
    background: #008630;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: 1;
}

.products_single_order a span {
    padding-left: 1.75em;
    color: #008630;
    font-size: clamp(2rem, 2vw, 3.2rem);
    position: relative;
    z-index: 3;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.products_single_order a span::after {
    font-family: 'icomoon';
    content: "󰇮";
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 50%;
    left: .5em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.products_single_order a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.products_single_order a:hover span {
    color: #FFF;
}

.products_single .txt {
    margin: 1em;
}

.wp-edit img {
    width: auto;
    margin: .5em 0;
}

.wp-edit p {
    line-height: 1.5;
    word-break: break-all;
}

/*==================================================================
	事例 case
==================================================================*/
.case {
    margin-top: 40px;
}

.case_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    padding-top: 0;
}

.case_wrap .sec_ttl2 {
    -webkit-transform: translateY(-0.8em);
    transform: translateY(-0.8em);
}

.case_lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px;
}

@media (max-width: 1240px) {
    .case_lists {
        gap: 25px;
    }
}

@media (max-width: 700px) {
    .case_lists {
        gap: 20px 0;
    }
}

.case_list {
    width: calc((100% / 2) - (50px / 2));
    border: solid 3px #008630;
}

@media (max-width: 1240px) {
    .case_list {
        width: calc((100% / 2) - (25px / 2));
    }
}

@media (max-width: 700px) {
    .case_list {
        width: 100%;
    }
}

.case_thumb {
    position: relative;
}

.case_thumb figure {
    overflow: hidden;
}

.case_thumb figure img {
    aspect-ratio: 1.85714;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.case_ttl {
    background: #008630;
    color: #FFF;
    font-size: 1.15em;
    padding: .5em;
}

@media (max-width: 700px) {
    .case_ttl {
        padding: .25em .5em;
    }
}

.case a:hover .case_thumb img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.case a:hover .tapbtn::before {
    width: 95%;
}

.case a:hover .tapbtn .hover {
    opacity: 1;
    display: inline;
}

/*================================================================
	お問い合わせ contact
==================================================================*/
.order_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    margin-bottom: clamp(30px, 4vw, 80px);
}

.order_wrap .font_gr {
    font-size: 1.5em;
    font-weight: 600;
    color: #008630;
}

@media (max-width: 540px) {
    .order_wrap .font_gr {
        font-size: 1.25em;
    }
}

.contact_wrap {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
    padding-top: 10px;
}

.contact_wrap h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #008630;
    padding-left: 2em;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
    position: relative;
}

.contact_wrap h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: url("../img/00_cmn/icon_mail.svg") center no-repeat;
    background-size: contain;
    width: 1.5em;
    height: 1em;
    -webkit-filter: invert(30%) sepia(62%) saturate(1521%) hue-rotate(114deg) brightness(100%) contrast(102%);
    filter: invert(30%) sepia(62%) saturate(1521%) hue-rotate(114deg) brightness(100%) contrast(102%);
}

.mailform_table dl {
    line-height: 1.8em;
    width: 100%;
    padding: 1.5em 1em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    border-bottom: solid 1px #8d8d8d;
}

@media (max-width: 960px) {
    .mailform_table dl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        padding: .8em 0;
    }
}

@media (max-width: 700px) {
    .mailform_table dl {
        line-height: 1.2;
    }
}

.mailform_table dl.column dt, .mailform_table dl.column dd {
    width: 100%;
}

.mailform_table dt {
    width: calc(30% - 10px);
    position: relative;
    vertical-align: middle;
    font-weight: 600;
}

@media (max-width: 960px) {
    .mailform_table dt {
        width: 100%;
        margin-bottom: 10px;
    }
}

.mailform_table dd {
    width: calc(70% - 10px);
    font-weight: 500;
}

@media (max-width: 960px) {
    .mailform_table dd {
        width: 100%;
    }
}

.mailform_table .required::after {
    content: "必須";
    background: #D80000;
    color: #FFF;
    padding: 2px .75em;
    line-height: 1.75;
    position: absolute;
    right: 15px;
    top: 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
}

@media (max-width: 1240px) {
    .mailform_table .required::after {
        right: 0;
    }
}

@media (max-width: 960px) {
    .mailform_table .required::after {
        margin-left: 10px;
        position: relative;
        top: -2px;
    }
}

@media (max-width: 700px) {
    .mailform_table .required::after {
        font-size: .8em;
    }
}

.mailform_table .order_detail h3 {
    font-size: 1.25em;
    color: #008630;
    padding: 1.8rem 1.8rem 0 1.8rem;
}

@media (max-width: 700px) {
    .mailform_table .order_detail h3 {
        padding: 1.8rem 0 0 0;
    }
}

.mailform_table .order_detail p {
    font-weight: 600;
    padding: 0 1.8rem;
}

@media (max-width: 700px) {
    .mailform_table .order_detail p {
        padding: 0;
    }
}

.mailform_table .order_detail ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mailform_table .order_detail ul li {
    width: 50%;
    padding: 0 1.8rem;
    border-bottom: solid 1px #8d8d8d;
}

@media (max-width: 700px) {
    .mailform_table .order_detail ul li {
        width: 100%;
        padding: 0;
    }
}

.mailform_table .order_detail ul li:nth-child(odd) {
    border-right: solid 1px #8d8d8d;
}

@media (max-width: 700px) {
    .mailform_table .order_detail ul li:nth-child(odd) {
        border-right: none;
    }
}

.mailform_table .order_detail ul li h4 {
    margin-top: 1em;
    font-size: 1.1em;
}

.mailform_table .order_detail ul li dl {
    border-bottom: none;
    padding: 1em 0;
}

@media (max-width: 700px) {
    .mailform_table .order_detail ul li dl {
        padding: 0 0 1em;
    }
}

@media (max-width: 960px) {
    .mailform_table .order_detail ul li dl dt {
        margin-bottom: 5px;
        margin-top: 10px;
    }
}

.txt_area {
    width: 100%;
    padding: 0 10px;
    height: 2.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    resize: vertical;
    border: solid 1px #8d8d8d;
    border-radius: 6px;
}

.txt_area.txt_area2 {
    min-height: 200px;
}

.txt_area.code {
    display: inline-block;
    width: 9em;
    margin: 0 0 5px 5px;
}

.privacy_policy, .privacy_policy_check, .kakunin {
    margin: 30px auto;
    font-weight: 500;
}

@media (max-width: 960px) {
    .privacy_policy, .privacy_policy_check, .kakunin {
        margin: 25px auto;
    }
}

.privacy_policy_check {
    text-align: center;
}

.kakunin {
    text-align: center;
}

.kakunin .btn_kakunin {
    padding: 1em 2em;
    background-color: #008630;
    color: #FFF;
    border-radius: 2em;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.kakunin .btn_kakunin:hover {
    background-color: #63b580;
}

.kakunin .btn_kakunin[disabled] {
    background-color: #d4d4d4;
    pointer-events: none;
}

.privacy_policy_check label span {
    margin-left: 3px;
}

.privacy_policy_txt a {
    text-decoration: underline;
}

.privacy_policy_txt a:hover {
    color: #008630;
}

input[type=checkbox] {
    display: none;
}

.checkbox {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px 5px 25px;
    position: relative;
    width: auto;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.checkbox::before {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    content: '';
    display: block;
    height: 14px;
    width: 14px;
    left: 5px;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.checkbox::after {
    border-right: 3px solid #008630;
    border-bottom: 3px solid #008630;
    content: '';
    display: block;
    height: 15px;
    width: 8px;
    top: 55%;
    left: 8px;
    margin-top: -18px;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
    transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.checkbox:hover::before {
    border-color: #008630;
}

input[type=checkbox]:checked + .checkbox::before {
    border-color: #008630;
}

input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}

/*==================================================================
	個人情報保護方針 privacypolicy
==================================================================*/
.policy {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
}

.dl_style dl {
    margin: 2em auto;
}

.dl_style dl dt {
    font-weight: 600;
    padding-left: .5em;
    position: relative;
}

.dl_style dl dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: .25em;
    width: 2px;
    height: 1em;
    background-color: #008630;
}

.dl_style dl dd {
    margin: .75em auto;
}

/*====================================================================
	特定商取引法に基づく表記 law
===================================================================*/
.law {
    border-radius: clamp(25px, 4vw, 50px) 0 clamp(25px, 4vw, 50px) 0;
    padding: clamp(20px, 4.3vw, 70px);
    background-color: #FFF;
}

/*=================================================================
	確認画面
==================================================================*/
.confirm .txt {
    font-weight: 500;
}

.confirm .cmn_inner {
    padding-top: clamp(30px, 2.6vw, 50px);
}

.confirm-items {
    width: 100%;
    margin-top: 20px;
}

.confirm-items tbody tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-bottom: solid 1px #8d8d8d;
}

@media (max-width: 540px) {
    .confirm-items tbody tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.confirm-items tbody tr th, .confirm-items tbody tr td {
    padding: .75em 1em;
}

@media (max-width: 540px) {
    .confirm-items tbody tr th, .confirm-items tbody tr td {
        width: 100% !important;
    }
}

.confirm-items tbody tr th {
    width: 12em;
    text-align: left;
    font-weight: 600;
}

.confirm-items tbody tr td {
    width: calc(100% - 12em);
    font-weight: 500;
}

.confirm-btns {
    margin: 30px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 540px) {
    .confirm-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.confirm-btns .confirm-btn {
    border: none;
}

.confirm-btns .confirm-btn-back {
    border-radius: 1.5em;
    background-color: #FFF;
    padding: .5em 1.5em;
}

.confirm-btns .confirm-btn-back:hover {
    opacity: .6;
}

.confirm-btns .confirm-btn-submit {
    display: inline-block;
    background-color: #008630;
    color: #FFF;
    font-weight: 500;
    border-radius: 2em;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 1em 2em 1em 1.5em;
}

.confirm-btns .confirm-btn-submit::after {
    font-family: 'icomoon';
    content: "󰅂";
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 50%;
    right: .5em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.confirm-btns .confirm-btn-submit:hover {
    color: #FFF;
    background-color: #63b580;
}

/*=================================================================
	404、thanks、etc
==================================================================*/
.etc {
    text-align: center;
    margin-top: 80px;
}

@media (max-width: 700px) {
    .etc {
        text-align: left;
    }
}

.etc h2 {
    color: #008630;
    font-size: 1.5em;
    margin-bottom: 1em;
}

.etc .btn {
    margin: 50px auto;
}

@media (max-width: 700px) {
    .etc .btn {
        margin: 30px auto;
    }
}
