@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Shippori+Mincho&family=Zen+Old+Mincho&display=swap');

/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
common/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
/* 全ページ共通 */
html {
    //font-family: "Zen Old Mincho", "Shippori Mincho", serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3d3d3d;
    overflow-x: hidden;
}

@media screen and (max-width:768px) {
    html {
        font-size: 14px;
    }
}

img {
    width: 100%;
}

#wrapper {
    padding: 0 1.875rem;
}

main {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 0 150px 0;
}

.heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    color: #0C3387;
    margin-bottom: 2.5rem;
}

.heading::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #0C3387;
}

.heading_sub {
    position: relative;
    font-size: 1.7rem;
    color: #0C3387;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.heading_sub::before {
    content: "";
    position: absolute;
    transform: translateX(-2rem);
    width: 12px;
    height: 100%;
    background-color: #0C3387;
}

.more {
    width: 100%;
    display: flex;
    justify-content: right;
    margin-top: 2.5rem;
}

.more_button {
    position: relative;
    display: block;
    width: 5rem;
    font-size: 1.2rem;
    color: #0C3387;
    padding-bottom: 5px;
}

.more_button span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 18px / 2);
    height: 1px;
    background-color: #0C3387;
}

.more_button span div {
    float: right;
    transform: translate(50%, -50%);
    width: 18px;
    height: 18px;
    border: solid 1px #0C3387;
    border-radius: 500px;
    transition: 0.3s;
}

.more_button:hover.more_button span div {
    transform: translate(50%, -50%) scale(1.3);
}

.hover_img {
    overflow: hidden;
}

.hover_img img {
    transition: 0.3s;
}

a:has(.hover_img):hover img {
    transform: scale(1.1);
    transition: 0.3s;
}

.modal-img {
    position: relative;
    transition: 0.3s;
}

.modal-img:hover {
    opacity: 0.8;
}

.modal-img::before {
    font-family: "Font Awesome 5 Free";
    content: '\f00e';
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: 0.3s;
}

.modal-img:hover::before {
    opacity: 0.5;
}

/* パンくずリスト */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    margin-bottom: 4rem;
}

.breadcrumb li {
    color: #3d3d3da1;
}

.breadcrumb li::after {
    content: "/";
    padding-left: 1rem;
    color: #3d3d3d;
}

.breadcrumb li:last-of-type::after {
    content: "";
}

.breadcrumb li:not(.breadcrumb li:has(a)) {
    color: #0C3387;
}

/* pagination */
.pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #0C3387;
    font-size: 1.2rem;
    margin: 7rem 0 0 0;
}

.pagination ul li {
    padding: 0.5rem 1rem;
}

.pagination li:not(.pagination li:has(a)) {
    border-bottom: solid 1px #0C3387;
}

.pagination .next a,
.pagination .prev a {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 15px;
}

.pagination .next a::before,
.pagination .next a::after,
.pagination .prev a::before,
.pagination .prev a::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 10.9px;
    height: 1px;
    border-radius: 9999px;
    background-color: #0C3387;
    transform-origin: calc(100% - 0.5px) 50%;
}

.pagination .next a::before,
.pagination .prev a::before {
    transform: rotate(45deg);
}

.pagination .next a::after,
.pagination .prev a::after {
    transform: rotate(-45deg);
}

.pagination .prev a {
    transform: rotate(180deg);
}

/* header */
header {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #0C3387;
    padding-left: 30px;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0px 0px 15px 1px #3d3d3d1c;
}

header ul,
header ul li,
header ul li a {
    height: 100%;
    display: flex;
    align-items: center;
}

header ul {
    gap: 30px;
}

header ul li a {
    position: relative;
}

header ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0C3387;
    transition: 0.3s;
}

header ul li a:hover::before {
    width: 100%;
    transition: 0.3s;
}

header .contact_button {
    gap: 10px;
    padding: 0 30px;
    background-color: #0C3387;
    color: #fff;
    transition: 0.2s;
}

header .contact_button:hover {
    color: #4664b8;
    background-color: #fff;
    transition: 0.2s;
}

.hamburger {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    header ul {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        align-items: flex-start;
        padding: 40px;
        background-color: #F2F6FD;
    }

    header ul.active {
        transform: translateX(0);
    }

    header ul li {
        height: fit-content;
        width: 100%;
        justify-content: center;
    }

    header ul li a {
        gap: 10px;
    }

    header .contact_button {
        padding: 15px 40px;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: block;
    }
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
    content: "";
    width: 18px;
    height: 1px;
    background-color: #0C3387;
    transition: 0.3s;
}

.menu-button.is-opened .menu-button__line {
    opacity: 0;
}

.menu-button.is-opened::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-button.is-opened::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media screen and (max-width:768px) {
    .header_search {
        order: -1;
    }

    .header_search-button {
        display: none;
    }
}

.header_search-form {
    width: 100%;
}

@media screen and (min-width:768px) {
    .header_search-form {
        position: absolute;
        top: 60px;
        left: 0;
        padding: 3rem;
        background-color: #fff;
        box-shadow: inset 0px 0px 15px 1px #3d3d3d1c;
        opacity: 0;
        pointer-events: none;
        transition: 0.2s;
    }
}

.header_search-form.search-form-open {
    opacity: 1;
    pointer-events: auto;
}

.header_search-form::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background-color: #00000060;
    z-index: -1;
}

.header_search-form form {
    max-width: 768px;
    margin: 0 auto;
}

.search-button-hover {
    transition: 0.2s;
}

.search-button-hover:hover {
    color: #FFEB00;
    transition: 0.2s;
}

/* footer */
footer {
    font-size: 0.75rem;
    text-align: center;
    background-color: #F2F6FD;
    padding-top: 8rem;
}

.footer_list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 1.5rem 0;
}

.footer_list li {
    border-right: solid 1px #0C3387;
    padding: 0 20px;
}

.footer_list li:last-of-type {
    border: none;
}

footer .copyright {
    background-color: #0C3387;
    color: #fff;
    padding: 10px;
}

/* CONTACT */
.contact {
    max-width: calc(1200px + 1.875rem * 2);
    padding: 0 1.875rem;
    margin: 0 auto;
    font-size: 1rem;
}

.contact .box {
    display: flex;
    gap: 1.6rem;
}

@media screen and (max-width:768px) {
    .contact .box {
        flex-wrap: wrap;
    }
}

.contact .box .item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 50%;
}

@media screen and (max-width:768px) {
    .contact .box .item {
        width: 100%;
    }
}

.contact .box .item span {
    font-size: 0.8rem;
    text-align: center;
}

.contact .box .item .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 10px;
    background-color: #0C3387;
    color: #fff;
    transition: 0.3s;
}

.contact .box .item .button:hover {
    background-color: #fff;
    color: #0C3387;
}

.contact .box .item .button.phone {
    background-color: #fff;
    color: #0C3387;
}

.contact .box .item .button.phone:hover {
    background-color: #0C3387;
    color: #fff;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background-color: #F2F6FD;
    z-index: -1;
}

/* accordion */
.accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #0C3387;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 10px 1.875rem;
    border-bottom: solid 1px #fff;
}

.accordion.active,
.accordion:hover {
    opacity: 0.8;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.panel img {
    object-fit: cover;
    display: block;
}

/* Swiper */
.swiper-wrapper {
    height: 250px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    transform: scale(0.4);
    color: #0C3387;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 60%;
}

span.swiper-pagination-bullet {
    width: 100%;
    height: 3px;
    border-radius: 0;
    margin: 0 !important;
}

.swiper-paginations {
    position: relative;
    width: 40%;
    height: 30px;
    margin: 0px auto 40px auto;
}

@media screen and (max-width:768px) {
    .swiper-paginations {
        width: 100%;
    }
}

/* product-output */
.product-output {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    background-color: #F2F6FD;
}

@media screen and (max-width:768px) {
    .product-output {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-output img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .product-output img {
        height: 250px;
    }
}

.product-output_text {
    font-size: 0.9rem;
    padding: 2rem;
}

.product-output_heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0C3387;
}

/* loading */
#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    transition: all 1s;
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999rem;
    border-top: 0.3rem solid rgba(12, 51, 135, 0.2);
    border-right: 0.3rem solid rgba(12, 51, 135, 0.2);
    border-bottom: 0.3rem solid rgba(12, 51, 135, 0.2);
    border-left: 0.3rem solid #0c3387;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* search */
.search-page .archive-items_ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 0 !important;
}

@media screen and (max-width:768px) {
    .search-page .archive-items_ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

.search-results {
    margin-bottom: 3rem;
}

.search-form {
    width: 100%;
    position: relative;
    display: flex;
}

.search-form_label {
    width: 100%;
}

.search-field {
    width: 100%;
    padding: 0.8rem 2rem;
    background-color: #f3f3f3;
    border-radius: 999px;
}

@media screen and (max-width:768px) {
    .search-field {
        background-color: #fff;
    }
}

.search-field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search-field:focus {
    outline: none;
}

.search-submit {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    appearance: none;
    cursor: pointer;
}





/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TOP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
#top::before {
    position: fixed;
    content: "";
    width: 100vw;
    height: 100vh;
    background-color: #F2F6FD;
    z-index: -1;
}

#top .background {
    position: fixed;
    width: 100%;
    height: 100vh;
}

@media screen and (max-width:768px) {
    #top .background {
        content-visibility: hidden;
    }
}

#top .background .inner {
    width: 100%;
    position: absolute;
    bottom: 8%;
}

#top .swiper_background .swiper-wrapper {
    transition-timing-function: linear;
}

#top .background img {
    padding: 0 20px;
    pointer-events: none;
}

#top .background ul {
    height: auto;
}

#top .container {
    display: flex;
    flex-direction: column;
    gap: 150px;
    position: relative;
    max-width: 768px;
    margin: 0 auto;
    background-color: #fff;
    padding: 0 1.875rem;
    box-shadow: 0px 0px 15px 1px #3d3d3d42;
}

/* mv */
.mv {
    position: relative;
    height: 95vh;
    overflow: hidden;
    margin: 0 -1.875rem;
    z-index: 1;
}

.mv img {
    height: 100%;
    object-fit: cover;
}

.mv_background-swiper-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("/wp-content/uploads/2025/01/mv_bottom.png");
    background-repeat: no-repeat;
    background-position: bottom;
    bottom: -1px;
    z-index: 2;
    pointer-events: none;
}

.mv_background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.mv_background-swiper,
.mv_background-swiper-wrapper,
.mv_background-swiper-slide {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.mv .title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 3.8rem;
    color: #fff;
    font-family: "DM Serif Text", serif;
    text-shadow: 0 0 20px rgba(35, 9, 3, 0.75);
    z-index: 1;
    line-height: 1.2;
}

.mv .scroll_button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #fff;
    z-index: 1;
}

.scroll_button_arrow {
    position: relative;
    display: inline-block;
    width: 16.1px;
    height: 9.1px;
}

.scroll_button_arrow::before,
.scroll_button_arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 12px;
    border-radius: 9999px;
    background-color: #0C3387;
    transform-origin: 50% calc(100% - 1px);
}

.scroll_button_arrow::before {
    transform: rotate(45deg);
}

.scroll_button_arrow::after {
    transform: rotate(-45deg);
}

.pulse-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 20px #fff;
    cursor: pointer;
}

.pulse-btn::before,
.pulse-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    animation: pulsate 2s linear infinite;
}

.pulse-btn::after {
    animation-delay: 1s;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ABOUT */
.about h3 {
    font-size: 1.8rem;
    color: #0C3387;
    margin-bottom: 20px;
}

.about .about_text {
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about .about_text::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1.875rem;
    width: 70%;
    height: 250px;
    background-color: #F2F6FD;
    z-index: -1;
}

/* LINE UP */
.product .accordion {
    width: calc(1.875rem * 2 + 100%);
    position: relative;
    transform: translateX(-1.875rem);
}

.product .accordion.active .product_button_icon {
    transform: rotate(180deg);
    transition: 0.3s;
}

.product .product_button_icon {
    transition: 0.3s;
}

@media screen and (min-width:768px) {
    .product .swiper ul {
        padding: 2rem 0;
    }
}

.item-tab {
    display: flex;
    position: relative;
    width: calc(1.875rem* 2 + 100%);
    transform: translateX(-1.875rem);
    background-color: #F2F6FD;
    overflow: hidden;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 30%;
    height: fit-content;
}

.tab-button {
    background-color: #0C3387;
    color: #fff;
    border: solid 1px #ffffff80;
    padding: 1rem;
    cursor: pointer;
    transition: 0.1s;
}

.tab-button:hover {
    opacity: 0.8;
}

.tab-button.active {
    background-color: #F2F6FD;
    border: solid 1px #F2F6FD;
    color: #0C3387;
}

.tab-content {
    content-visibility: hidden;
    display: none;
}

.tab-content.active {
    content-visibility: visible;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: auto;
    max-height: 100%;
    padding: 0 2rem;
    overflow-y: auto;
    scrollbar-width: thin;
}

@media screen and (max-width:768px) {
    .tab-content.active {
        gap: 1rem;
        padding: 0 1rem;
    }
}

.top_item-list {
    width: 100%;
    height: max-content;
    overflow: hidden;
}

.top_item-list .top_item-list_title {
    color: #0C3387;
    font-size: 0.9rem;
    padding-top: 0.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 新着製品 */
.new-product ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.popularity-h {
    padding-top: 0.6rem;
}

/* ご利用案内 */
.guide {
    position: relative;
    padding: 150px 0;
    z-index: 1;
}

.guide::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(1.875rem * 2 + 100%);
    height: 100%;
    background-color: #F2F6FD;
    z-index: -1;
}

.guide .guide_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    z-index: 1;
}

.guide .guide_box::before {
    content: "";
    position: absolute;
    left: calc(55px / 2);
    width: 1px;
    height: 98%;
    background-color: #0C3387;
    z-index: -1;
}

.guide .guide_heading {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.guide .accordion {
    background-color: #fff;
    color: #0C3387;
    padding: 0;
    border: solid 1px #fff;
    transition: 0.2s;
}

.guide .accordion:hover,
.guide .accordion.active {
    border: solid 1px #0C3387;
}

.guide .accordion i {
    background-color: #0C3387;
    color: #fff;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide .plus {
    position: relative;
    padding: 8px;
    border: solid 1px #0C3387;
    border-radius: 500px;
    margin-right: 20px;
}

.guide .plus::before,
.guide .plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0C3387;
}

.guide .plus::before {
    width: 8px;
    height: 1px;
}

.guide .plus::after {
    width: 1px;
    height: 8px;
    transition: 0.3s;
}

.guide .accordion.active .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: 0.3s;
}

.guide .panel_item {
    background-color: #fff;
    padding: 30px;
    border-top: solid 2px #F2F6FD;
}

.guide .accordion.active,
.guide .accordion:hover {
    opacity: 1;
}

/* ギフトラッピング */
.wrapping .wrapping_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 -1.875rem;
}

.wrapping .wrapping_list li {
    position: relative;
}

.wrapping .wrapping_list li:hover .wrapping_list_heading {
    opacity: 1;
    transition: 0.3s;
}

.wrapping .wrapping_list_heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background-color: #0c33877c;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.wrapping_inline_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width:768px) {
    .wrapping_inline_box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.wrapping_inline_box .text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .wrapping_inline_box .text {
        padding: 2rem;
    }
}

.wrapping_inline_box .wrapping_contact {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    padding-top: 2rem;
}

.wrapping_inline_box .wrapping_contact span {
    font-size: 10px;
}

.wrapping_inline_box .contact_button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 40px;
    border: solid 1px #0C3387;
    background-color: #0C3387;
    color: #fff;
    transition: 0.3s;
}

.wrapping_inline_box .contact_button:hover {
    border: solid 1px #0C3387;
    background: initial;
    color: #0C3387;
    transition: 0.3s;
}

.wrapping-page .wrapping_list2 {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.wrapping-page .wrapping_inline_box .text {
    padding: 3rem 0 3rem 3rem;
}

@media screen and (max-width: 768px) {
    .wrapping-page .wrapping_inline_box .text {
        padding: 1.5rem 0 0 0;
    }
}

/* 採用実績 */
.achievements {
    overflow: hidden;
}

@media screen and (min-width:768px) {
    .achievements img {
        width: 340px;
        height: 250px;
        object-fit: cover;
    }
}

.achievements ul {
    height: auto;
    margin-bottom: 40px;
}

.achievements .achievements_text p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 0;
    font-size: 12px;
}

.achievements .achievements_text p span {
    display: block;
    width: fit-content;
    padding: 3px 10px;
    border: solid 1px #0C3387;
}

.achievements .achievements_text h3 {
    color: #0C3387;
}

.achievements .swiper-slide {
    justify-content: center;
}

.achievements .swiper-paginations {
    margin: 0 auto;
}

/* よくある質問 */
.faq .accordion {
    align-items: initial;
    justify-content: initial;
    background: none;
    color: inherit;
    border-top: solid 1px #CED6E7;
    padding: 1rem 0;
}

.faq .accordion:last-of-type,
.faq .accordion:last-of-type+.panel .panel_item {
    border-bottom: solid 1px #CED6E7;
}

.faq .accordion.active:last-of-type {
    border-bottom: none;
}

.faq .panel_item {
    display: flex;
    padding: 1rem 0 3rem 0;
    color: #0C3387;
    width: calc(100% - 2rem);
    margin: 0 auto;
}

.faq .initials {
    font-size: 1.2rem;
    display: block;
    height: 100%;
    margin-right: 1rem;
}





/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
archive////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
/* archive-case */
.archive-achievements_ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 0 !important;
}

@media screen and (max-width:768px) {
    .archive-achievements_ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.archive-case img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* archive-items */
.product_cat-items {
    overflow: initial;
}

.product_cat-items_inner {
    display: flex;
    gap: 2.5rem;
}

@media screen and (max-width:768px) {
    .product_cat-items_inner {
        flex-direction: column;
    }
}

@media screen and (min-width:768px) {
    .archive-items_categories {
        position: sticky;
        top: 100px;
        width: 300px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        scrollbar-width: thin;
    }
}

.archive-items_categories_inner {
    width: 100%;
    display: grid;
    justify-content: left;
}

@media screen and (max-width:768px) {
    .archive-items_categories_inner {
        grid-template-columns: repeat(2, 1fr);
        justify-content: initial;
        gap: 1rem;
    }
}

.archive-items_cat {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width:768px) {
    .archive-items_cat {
        border-bottom: solid 1px #3d3d3d50;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .archive-items_cat:first-of-type {
        border-top: solid 1px #3d3d3d50;
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
}

.product_cat-child {
    padding-left: 1rem;
    font-size: 0.9rem;
}

@media screen and (max-width:768px) {
    .product_cat-child {
        display: none;
    }
}

#clear-selections {
    background-color: #F2F6FD;
    color: #0C3387;
    padding: 0.3rem;
    text-align: center;
    border-radius: 999px;
    margin-bottom: 1rem;
    transition: 0.2s;
}

@media screen and (max-width:768px) {
    #clear-selections {
        display: none;
    }
}

#clear-selections:hover {
    opacity: 0.7;
    transition: 0.2s;
}

.archive-items img {
    width: 100%;
    height: auto;
}

.archive-items_ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0 !important;
}

@media screen and (max-width:768px) {
    .archive-items_ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}





/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
single/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
/* single-items */
.product-page {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
}

.product-page_category {
    font-size: 12px;
    margin-left: 2rem;
}

.product-page_contents {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

@media screen and (max-width:768px) {
    .product-page_contents {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
}

.product-page_contents_overview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-page_contents_overview ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media screen and (max-width:768px) {
    .product-page_contents_overview ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-page_contents_overview ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 10px;
    border: solid 1px #0C3387;
    color: #0C3387;
    transition: 0.3s;
}

.product-page_contents_overview ul li:last-of-type a {
    background-color: #0C3387;
    color: #fff;
}

.product-page_contents_overview ul li a:hover {
    background-color: #0C3387;
    color: #fff;
}

.product-page_contents_overview ul li:last-of-type a:hover {
    background-color: #fff;
    color: #0C3387;
}

.product-page_contents_detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media screen and (max-width:768px) {
    .grid-gc-22 {
        grid-column: span 2 / span 2;
    }
}

.product-page_contents_detail img {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

.product-page_contents_detail_color ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width:768px) {
    .product-page_contents_detail_color ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-page_contents_detail_heading,
.product-page_contents_detail_price {
    border-bottom: solid 1px #CED6E7;
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
    font-weight: bold;
}

.product-page_contents_detail_price {
    float: right;
    margin: 2rem 0 0 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.product-page_cautionary-note {
    grid-column: 1 / -1;
    display: flex;
    justify-content: right;
}

@media screen and (max-width:768px) {
    .product-page_cautionary-note {
        justify-content: left;
    }
}

.product-page_cautionary-note_link {
    text-decoration: underline;
}

.grid-gc-22 {
    container-type: inline-size;
    container-name: price;
}

@container price (max-width: 300px) {
    .product-page_contents_detail_price.first {
        flex-direction: column;
        gap: 0.3rem;
    }
}

main:has(.product-page) .breadcrumb{
    margin-bottom: 1.5rem;
}

/* ----------------------- */

@media screen and (min-width:1000px) {
    .product-page_contents {
        grid-template-columns: 1fr 2fr;
    }

    .product-page_contents_overview ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-gc-22 {
        grid-column: span 2 / span 2;
    }

    .product-page_contents_detail {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.page-pdf {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
    margin: 0 auto;
}

.page-pdf:hover {
    color: #0C3387;
}

.page-pdf::before {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #0C3387;
}

.page-pdf:hover::before {
    width: 100%;
}

.page-pdf,
.page-pdf:hover,
.page-pdf::before,
.page-pdf:hover::before {
    transition: 0.2s;
}

/* single-case */
.page-achievements_mv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

@media screen and (max-width:768px) {
    .page-achievements_mv {
        grid-template-columns: repeat(1, 1fr);
    }
}

.page-achievements_mv_heading {
    font-size: 1.2rem;
    color: #0C3387;
    border-bottom: solid 1px rgb(12 51 135 / 30%);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.page-achievements_ul {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}





/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
contact-page///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
.mw_wp_form .horizontal-item+.horizontal-item {
    margin: 0 !important
}

.contact-page {
    width: 768px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .contact-page {
        max-width: 768px;
        width: 100%;
    }
}

.contact-table,
.thanks {
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.thanks {
    margin-top: 0;
}

.contact-table tr {
    display: flex;
    border-top: 1px #3d3d3d47 solid
}

.contact-table tr:last-of-type {
    border-bottom: 1px #3d3d3d47 solid
}

@media screen and (max-width:768px) {
    .contact-table tr {
        flex-direction: column
    }
}

.contact-table th,
.contact-table td {
    padding: 2rem 0
}

@media screen and (max-width:768px) {
    .contact-table th {
        padding-bottom: 0
    }
}

.contact-table th {
    width: 30%;
    padding-right: 3rem
}

.contact-table td {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(1, 1fr)
}

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

    .contact-table th,
    .contact-table td {
        width: 100%
    }
}

.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table textarea {
    width: 100%
}

.contact-table input,
.contact-table textarea {
    background-color: #F2F6FD;
    padding: 1rem
}

.contact-table input {
    height: 3rem
}

.contact-table .check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1rem
}

@media screen and (max-width:768px) {
    .contact-table .check-list {
        grid-template-columns: repeat(1, 1fr)
    }
}

.btn-area-flex {
    text-align: center;
}

.btn-area-flex .btn,
.thanks_button {
    background-color: #0C3387;
    border: solid 1px #0C3387;
    color: #fff;
    width: 250px;
    height: 60px;
    margin: 0 auto;
    transition: 0.3s;
}

.btn-area-flex .btn:hover,
.thanks_button:hover {
    background: none;
    color: #0C3387;
    transition: 0.3s;
}

.thanks_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hs {
    display: flex;
    align-items: center;
}

.hs::before {
    content: "■";
    font-size: 0.4rem;
    color: red;
    margin-right: 0.3rem;
}

.email-conf {
    margin-top: 1rem;
}

.grid-gc-1-1 {
    grid-column: 1 / -1;
}