@charset "UTF-8";

:root {
    --main-black: #333333;
    --white: #ffffff;
    --right-blue: #DEE8F2;
    --gray: #9c9c9c;
    --border-gray: #eae6e6;
    --g_side_margin: 20px;
}

html {
    background: var(--white)!important;
}

body {
    font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 2rem;
    letter-spacing: 0.12em;
    color: var(--main-black);
    font-weight: 600;
    background: var(--white)!important;
    min-height: 100dvh;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
    object-fit: cover;
}

.thumbnail {
    height: auto;
    object-fit: cover;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--main-black);
    display: inline-block;
    transition: opacity 0.3s ease;
}
.grecaptcha-badge {
    visibility: hidden;
}

@media screen and (min-width: 1071px) {
    a:hover {
        opacity: 0.7;
    }
}

.en {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.bold {
    font-weight: bold;
}

.container {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 20px;
}

.wrapper {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}


/* fadein */
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s;
}

/* section-title */
.section-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.section-title .en {
    font-size: 46px;
    line-height: 83.2px;
}

.section-title .ja {
    font-size: 20px;
    line-height: 100%;
}

/* subpage */

.subpage {
    padding-top: 50px;
}

.subpage-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 45px;
}

.subpage-title .en {
    font-size: 54px;
    line-height: 80px;
}

.subpage-title .ja {
    font-size: 18px;
    line-height: 100%;
}

/* btn */
.more-btn {
    margin-block: 40px;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1071px) {
    .more-btn:hover {
        opacity: 1;
    }
}

.more-btn span {
    font-weight: bold;
}


.text-btn {
    position: relative;
    margin-right: 24px;
    padding-bottom: 13px;
}

.text-btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--border-gray);
    bottom: 0;
    left: 0;
    margin-right: 24px;
}

.text-btn::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    background-color: var(--main-black);
    left: 0;
    bottom: -2px;
    transition: width 0.6s;
}

.more-btn:hover .text-btn::before {
    width: 100%;

}

.view {
    display: inline-block;
    width: 70px;
    padding-block: 18px;
    text-align: center;
    border: 1px solid var(--border-gray);
    border-radius: 35px;
    font-size: 10px;
    line-height: 16px;
}


/* scale-image */
.scale-img {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
}

.scale-img img {
    transition: all 0.3s ease;
}

@media screen and (min-width: 1071px) {
    .scale-img img:hover {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1070px) {
    .subpage-title .en {
        font-size: 42px;
        line-height: 64px;
    }

    .subpage-title .ja {
        font-size: 16px;
    }

    .subpage-title {
        padding-bottom: 30px;
    }

}


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

loading
---------------------*/
.ld_container {
    background: var(--right-blue);
    ;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s;
    transition-timing-function: var(--ease_in_out_quint);
}

/* 中央配置 */
.load_body {
    display: flex;
    align-items: baseline;
    gap: 4px;
    transition: .5s;
}

/* 各文字を弾ませる */
.loading-text span {
    display: inline-block;
    font-size: 18px;
    animation: bounceChar 2s infinite ease-in-out;
}

/* 各文字に時間差を付ける */
.loading-text span:nth-child(1) {
    animation-delay: 0s;
}

.loading-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.loading-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.loading-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.loading-text span:nth-child(7) {
    animation-delay: 0.6s;
}

/* 弾むアニメーション */
@keyframes bounceChar {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(0);
    }
}

/* ドット */
.dots {
    display: flex;
    gap: 3px;
    margin-left: 4px;
}

.dot {
    opacity: 0.2;
    animation: blink 1.2s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* 点滅アニメーション */
@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }
}

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

loading Responsive
---------------------*/
@media screen and (max-width: 1070px) {
    .loading-text span {
        font-size: 14px;
    }
}


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

header
---------------------*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;
}

.logo-tile {
    line-height: 0;
}

.logo {
    width: 200px;
}

header nav ul {
    display: flex;
    gap: 18px;
    font-size: 16px;
    font-weight: bold;
    align-items: last baseline;
}

header nav li a,
footer li a {
    position: relative;
    line-height: 40px;
}

@media screen and (min-width: 1071px) {

    header nav ul {
        gap: 24px;
    }
    header nav li a:hover,
    footer li a:hover {
        opacity: 1;
    }

    .hover::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #004ea2;
        bottom: 2px;
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .hover-in::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .hover-out::after {
        transform: scaleX(0);
        transform-origin: right;
    }
}


header nav .sns {
    font-size: 13px;
    justify-content: flex-end;

}

.sns img {
    width: 24px;
    vertical-align: text-bottom;
    margin-right: 8px;
}

.sns li a {
    display: flex;
    align-items: center;
}

.sns li:last-child img {
    height: 24px;
    width: auto;
}


.toggle-btn {
    display: none;

}

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

footer 
----------------------*/
footer {
    padding-bottom: 50px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-flex img {
    width: 200px;
}

.footer-flex ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
    line-height: 18px;
}

.footer-flex:last-of-type {
    align-items: end;
}

.adress {
    font-size: 12px;
    padding-top: 40px;
    line-height: 21.6px;
}

.copy {
    font-size: 12px;
    color: #B9B9B9;
    text-align: right;
    font-weight: 600;
}

.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: var(--right-blue);
    border-radius: 50%;
    border: 1px solid var(--border-gray);
}

.to-top::before {
    position: absolute;
    content: "↑";
    color: var(--white);
    font-size: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


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

main
-------------------- */
.mainvs {
    max-width: 1440px;
    margin-inline: auto;
    position: relative;
    margin-bottom: 80px;
}

.kv {
    opacity: 0;
    transition: .5s;
    z-index: 0;
}

.catchphrase {
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    line-height: 54px;
    top: 70px;
    left: 90px;
    z-index: 1;
}

.mainvs .catchphrase .word {
    opacity: 0;
    transition: 1s;
    transform: translateY(5px);
    display: inline-block;
}

.mainvs .catchphrase .second {
    transition-delay: .15s;
}

.mainvs .catchphrase .third {
    transition-delay: .3s;
}

.mainvs .catchphrase .forth {
    transition-delay: .3s;
}


.catchphrase .en {
    display: block;
    margin-top: 20px;
    font-size: 20px;
    line-height: 24px;
}

.sp {
    display: none;
}

#about {
    margin-bottom: 120px;
}

#about .flex {
    display: flex;
    justify-content: space-between;
}

.about-text {
    width: 48%;
}

#about img {
    width: 48%;
}

.slide-img {
    width: 100%;
    overflow: hidden;
}

.slide-imge {
    display: flex;
    gap: 24px;
    width: max-content;
    margin-bottom: 120px;
    animation: slideImages 50s linear infinite;
}

.slide-imge img {
    flex: 0 0 auto;
    width: auto;
    height: 220px;
    border-radius: 30px;
}

@keyframes slideImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* -------------------------------------------
#pickup
--------------------- */
#pickup {
    margin-bottom: 60px;
    padding-inline: 0px;
    overflow: hidden;
}
#pickup .section-title {
    position: relative;
}
#pickup .list_outer {
    overflow: auto;
}
#pickup .list {
    display: flex;
    width: 1250px;
    /* padding: 0 var(--g_side_margin); */
}
#pickup .list img {
    border-radius: 10px;
}

/* Swiperデフォルトボタンを非表示 */
.swiper-button-prev,
.swiper-button-next {
    display: none;
}

/* カルーセル外枠 */
.pickup__swiper {
    position: relative;
    overflow: hidden;
}

/* CSSで生成するナビボタン共通 */
.pickup__nav {
    position: absolute;
    right: var(--g_side_margin);
    bottom: 20px;
    /* z-index: 10; */
    display: flex;
    gap: 10px;
}
.pickup__btn {
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border-gray);
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.pickup__btn:hover {
    background: var(--right-blue);
}

/* 矢印をCSSで描画（疑似要素） */
.pickup__btn::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--main-black);
    border-right: 1px solid var(--main-black);
    position: absolute;
    top: 50%;
    left: 50%;
}

/* 前へ：左向き矢印 */
.pickup__btn--prev {
    left: -90px;
}
.pickup__btn--prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

/* 次へ：右向き矢印 */
.pickup__btn--next {
    right: 0px;
}
.pickup__btn--next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

/* 端でボタンをグレーアウト */
.pickup__btn.is-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* スライド内の画像 */
.pickup__swiper .list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pickup__swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (min-width: 1070px) {
    #pickup {
        margin-bottom: 120px;
    }
    .pickup__nav {
        bottom: 10px;
    }
    #pickup .list li:not(:last-child) {
        margin-bottom: 0px;
        margin-right: 0px;
    }
    .pickup__btn {
        transform: translateY(-50%);
        width: 55px;
        height: 55px;
    }
    /* 矢印をCSSで描画（疑似要素） */
    .pickup__btn::before {
        width: 15px;
        height: 15px;
        border-top: 2px solid var(--main-black);
        border-right: 2px solid var(--main-black);
    }
}


/* -------------------------------------------
#service
--------------------- */
#service {
    margin-bottom: 220px;
}

#service .flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}

.service-text {
    width: 70%;
}

#service ul {
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

#service li {
    width: 100%;
}

#service .scale-img {
    height: 175px;
}

.service-list-img {
    width: 31%;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    position: relative;
}


.service-list-img a {
    display: block;
}

.sell-titlle {
    line-height: 48px;
    padding-inline: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
}

.ja-sell {
    font-size: 18px;
    font-weight: bold;
    background: var(--white);
    bottom: -22px;
    letter-spacing: 0.03em;
    padding-left: 14px;
}

.en-sell {
    font-size: 14px;
    color: var(--white);
    background: #222222;
    bottom: -74px;
}


/* -------------------------------------------
#blog
------------------------*/
#blog,
.stock-list {
    margin-bottom: 150px;
}

#blog .section-title {
    padding-bottom: 0;
}

.blog-contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
}

.blog-left {
    /* width: 30%; */
    position: relative;
    width: 25%;
    /* display: flex; */
    /* justify-content: end; */
    /* padding-left: 20px; */
}


.blog-left-img {
    position: absolute;
    max-width: 450px;
    width: 200%;
    right: 0%;
    top: 95%;
}

#blog h3 {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.days {
    margin-top: 5px;
    font-size: 14px;
    color: #999999;
}

.bswiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.bswiper-slide {
    width: 48%;
}
.bswiper-slide a {
    width: 100%;
}



@media (min-width: 1300px) {
    #blog {
        margin-bottom: 210px;
    }

    .blog-left-img {
        max-width: 550px;
        top: 95%;
        z-index: -1;
    }
}

.blog-right {
    width: 70%;
    position: relative;
}

.blog-header {
    display: flex;
    align-items: center;
    gap: 4%;
    margin-bottom: 16px;
}

.bswiper-controller {
    display: flex;
    gap: 8px;
}

.button-prev,
.button-next {
    position: static;
    width: 34px;
    height: 34px;
    background: #999999;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    position: relative;
}

.button-prev::after,
.button-next::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../img/arrow.svg);
}

.button-prev::after {
    transform: rotate(180deg);
}



@media screen and (min-width: 1071px) {

    .button-prev:hover,
    .button-next:hover {
        background: #666;
    }

    .card02 {
        overflow: hidden;
    }

    .bswiper {
        overflow: visible;
    }

    .bswiper-slide img {
        height: 240px;
        object-fit: cover;
    }

    .days {
        font-size: 13px;
    }
}

.news-title {
    font-size: 18px;
}

.blog-item {
    display: inline-block;
    font-size: 12px;
    line-height: 100%;
    padding: 8px;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    margin: 3px 3px 3px 0;
}

.pc-no {
    display: none;
}



/* -------------------------------------------
#contact
---------------------*/

#contact.container {
    padding-inline: 40px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    background: var(--white);
}

.contact-box {
    width: 48%;
    padding: 80px 16px;
    text-align: center;
    border: 1px solid var(--border-gray);
    border-radius: 50px;
    background: var(--white);
    z-index: 0;
}

.contact-box h3,
.contact-box .h3 {
    font-size: 30px;
    margin-bottom: 40px;
}


.tel p:last-of-type {
    font-size: 24px;
    color: var(--white);
    background: #222222;
    border-radius: 50px;
    padding: 20px 50px;
    display: inline-block;
}

.tel span {
    font-size: 12px;
    font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
    margin-left: 8px;
}

.form {
    color: var(--white);
    background: #222222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form p {
    font-size: 24px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.form p::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    border: 1px solid var(--gray);
    border-radius: 50%;
    right: 17%;
    bottom: -15px;
}

.form p::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../img/arrow-right.svg);
    top: 50%;
    transform: translateY(-50%);
    right: 20%;
}




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

Responsive  index.html
--------------------*/

@media screen and (max-width: 1070px) {
    .text-btn {
        margin-right: 14px;
    }

    .section-title .en {
        font-size: 40px;
        line-height: 50px;
    }

    .section-title .ja {
        font-size: 16px;
    }

    /* header */
    header {
        align-items: center;
    }

    .toggle-btn {
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 20;
        position: fixed;
        right: 20px;
    }

    .toggle-btn span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #222222;
        left: 0;
        transition: all 0.3s;
    }

    .toggle-btn span:nth-child(1) {
        top: 20%;
    }

    .toggle-btn span:nth-child(2) {
        top: 50%;
        width: 50%;
    }

    .toggle-btn span:nth-child(3) {
        top: 80%;
        width: 65%;
    }

    .open .toggle-btn span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    .open .toggle-btn span:nth-child(2) {
        opacity: 0;
    }

    .open .toggle-btn span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
        width: 100%;
    }


    header nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--right-blue);
        height: 100dvh;
        padding-top: env(safe-area-inset-top);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        padding: 60px 30px 100px;
        overflow-y: auto;
        z-index: -10;
    }

    .open nav {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .nav-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }


    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav li a {
        position: relative;
        line-height: inherit;
    }


    header nav .sns {
        font-size: 16px;
    }

    .sns img {
        width: 25px;
        vertical-align: middle;
    }

    header nav .sp li a {
        padding: 20px;
        border-radius: 15px;
        font-size: 20px;
        text-align: center;
        display: block;
    }

    header nav .sp li:first-child {
        position: relative;
    }

    header nav .sp li:first-child a {
        background: var(--white);
        margin-block: 10px 20px;
        font-size: 28px;
        padding-top: 30px;
    }

    header nav .decotext {
        position: absolute;
        color: var(--white);
        background: var(--main-black);
        font-size: 14px;
        padding-inline: 20px;
        border-radius: 5px;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        z-index: 2;
        font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;

    }

    header nav .sp li:first-child .decotext::after {
        position: absolute;
        content: "";
        width: 15px;
        height: 15px;
        border: 8px solid transparent;
        border-top: 10px solid var(--main-black);
        top: 98%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .tel-text {
        background: var(--main-black);
        color: var(--white);
        font-size: 12px;
        display: block;
        max-width: 320px;
        padding-inline: 10px;
        border-radius: 15px;
        margin: 10px auto 0;
        font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;

    }

    header nav .sp li:last-child a {
        background: var(--main-black);
        color: var(--white);
    }

    .sp .icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../img/tel-icon.svg);
        background-size: contain;
    }

    .sp li:last-child a {
        display: flex;
        justify-content: center;
        align-items: end;
        gap: 10px;
    }

    @media screen and (max-width: 390px) {
        header nav .sp li a {
            font-size: 24px !important;
            padding: 20px 15px;
        }

        .sp li:last-child a {
            font-size: 18px !important;
            align-items: center;
        }

    }

    .sp li:last-child .icon {
        background-image: url(../img/meil-icon.svg);
    }

    body.no-scroll {
        overflow: hidden;
        /* height: 100vh; */
        background: var(--white);
    }



    /* mainvs */
    .mainvs {
        margin-bottom: 60px;
        padding-inline: 0;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .mainvs .catchphrase {
        left: 80px;
    }

    .mainvs .catchphrase {
        margin-top: 0;
        margin-bottom: 40px;
        padding-inline: 50px;
        line-height: 2em;
        left: 0;
        right: 0;
        margin-inline: auto;
        top: 40px;
    }

    .catchphrase .en {
        display: block;
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }

    /* about */
    #about .flex {
        align-items: center;
    }

    /* service */
    .ja-sell {
        font-size: 1.25rem;
    }

    .en-sell {
        font-size: 0.75rem;
    }

    #blog,
    .stock-list {
        margin-bottom: 100px;
    }

    /* blog */
    .blog-left {
        justify-content: flex-start;
    }


    .bswiper-slide {
        width: 50%;
    }

    /* contact */
    .contact-box {
        padding: 20px 16px;
    }

    .contact-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .tel span {
        display: block;
        margin-top: 7px;
        margin-left: 0px;
    }

    .tel p:last-of-type {
        border-radius: 15px;
        min-width: 90%;
    }

    .form p {
        font-size: 20px;
    }

    .form p::before {
        width: 50px;
        height: 50px;
        right: 4%;
        bottom: -10px;
    }

    .form p::after {
        right: 8%;
        width: 18px;
        height: 18px;
    }


}

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

    body {
        font-size: 14px;
        line-height: 1.8em;
    }

    .wrapper {
        padding-inline: 20px;
    }

    .section-title .en {
        font-size: 32px;
        line-height: 50px;
    }

    .more-btn {
        margin-block: 20px 40px;
    }

    .text-btn {
        font-size: 16px;
        margin-right: 24px;
    }

    .view {
        width: 60px;
        height: 60px;
        padding-block: 13px;
    }

    /* header */
    header {
        height: 65px;
    }

    .logo {
        width: 150px;
        z-index: 2;
    }

    /* mainvs */
    .mainvs .catchphrase {
        font-size: 22px;
        line-height: 36px;
        left: 25px;
        padding-inline: 0;
    }

    .mainvs .catchphrase .forth {
        transition-delay: .45s;
    }


    /* about */
    #about {
        margin-bottom: 20px;
    }

    .about-text {
        width: 100%;
    }

    #about img {
        display: none;
    }

    /* slide-img */
    .slide-imge {
        margin-bottom: 60px;
    }

    .slide-imge img {
        width: 180px;
        height: 120px;
        border-radius: 15px;

    }

    /*service*/
    #service {
        margin-bottom: 110px;
    }

    #service .flex {
        flex-direction: column;
        align-items: start;
    }

    .service-text {
        width: 100%;
    }

    #service ul {
        flex-direction: column;
        gap: 100px;
    }
    #service .scale-img {
        height: 230px;
    }
    .sell-titlle {
        /* line-height: 52px; */
    }

    .ja-sell {
        /* font-size: 24px; */
    }

    .en-sell {
        /* font-size: 16px; */
    }

    #service li {
        position: relative;
    }

    #service li a {
        display: block;
    }

    .sell-titlle {
        line-height: 40px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .ja-sell {
        font-size: 18px;
        bottom: -20px;
    }

    .en-sell {
        bottom: -60px;
    }

    /* blog */
    #blog,
    .stock-list {
        margin-bottom: 40px;
    }

    .blog-contents {
        flex-direction: column;
        /* padding-inline: 20px; */
    }

    .blog-left {
        width: 100%;
        justify-content: flex-start;
        height: 70px;
        padding-left: 0;
    }

    .blog-left .more-btn {
        display: none;
    }

    .blog-left-img {
        display: none;
    }

    .blog-right {
        width: 100%;
        margin-top: 40px;
    }

    .blog-header {
        display: none;
    }

    .bswiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .bswiper-slide {
        width: 100%;
    }

    .bswiper-slide a {
        display: block;
    }

    .bswiper-slide:nth-child(n+4) {
        display: none !important;
    }

    .pc-no {
        display: flex;
    }

    /* contact */
    #contact.container {
        flex-direction: column;
        padding-inline: 20px;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-box {
        display: block;
        width: 100%;
        padding: 20px 10px;
        border-radius: 20px;
    }

    .tel p {
        display: inline-block;
        border-radius: 20px;
    }

    .form {
        padding-block: 40px;
    }

    .form p {
        font-size: 16px;
    }

    .form p::before {
        width: 40px;
        height: 40px;
        right: -50px;
        bottom: -7px;
    }

    .form p::after {
        right: -38px;
        width: 14px;
        height: 14px;
    }

    /* footer */
    footer.wrapper {
        padding-inline: 60px;
        text-align: center;
    }

    .footer-flex {
        flex-direction: column;
    }

    .footer-flex ul {
        gap: 10px;
        flex-direction: column;
        font-size: 15px;
    }

    .footer-flex:last-of-type {
        align-items: center;
        gap: 20px;
    }

    .copy {
        text-align: center;
    }

    .to-top {
        bottom: 10px;
        right: 10px;
    }
}


/* ==============================================

下層ページ共通
=================================================
*/
.pegination {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    padding: 6px 18px;
    background: var(--main-black);
    color: var(--white);
    font-size: 13px;
    font-weight: bold;
    gap: 0 8px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 60px;
}

.home::after {
    content: "－";
    color: var(--white);
    margin-left: 8px;
}


/* block-title */
.block-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.block-title .ja {
    font-size: 32px;
    padding-bottom: 20px;
}

.gray-text {
    color: #666;
}


.company_overview dl,
.contact_form dl,
.recruit-dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-gray);
}

.company_overview dt,
.contact_form dt {
    font-weight: bold;
    border-bottom: 1px solid var(--border-gray);
    padding-block: 50px;
}

.company_overview dd,
.contact_form dd {
    border-bottom: 1px solid var(--border-gray);
    padding-block: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding-bottom: 40px;
    margin-top: -40px;
    gap: 40px 0;
}

.grid li {
    border-bottom: 1px solid var(--border-gray);
    padding: 40px 20px 40px 0;
}

.grid a {
    display: block;
}

.grid img {
    height: 180px;
}

.page-number-list.wrapper {
    padding-inline: 0;
}

.page-number-list {
    display: flex;
    gap: 10px;
}

.pagination {
    display: flex;
    gap: 10px;
}

.page-number-list .page-numbers,
.page-number-list .last {
    color: #222222;
    background: #ddd;
    padding-inline: 13px 11px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 2rem;
}

.page-number-list .page-numbers.current {
    background: var(--main-black);
    color: var(--white);
    display: block;
}

.page-number a,
.page-number span {
    color: var(--white);
}


/* --------------------------------------------
Responsive 下層ページ共通
--------------------*/

@media screen and (max-width: 750px) {
    .pegination {
        margin-bottom: 40px;
        padding: 4px 12px;
        font-size: 11px;
        gap: 0 5px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .home::after {
        margin-left: 6px;
    }


    .block-title {
        padding-bottom: 20px;
    }

    .block-title .ja {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .block-title .en {
        font-size: 14px;
    }

    .grid li {
        padding: 0px 5px 20px;
    }

    .page-numbers {
        flex-wrap: wrap;
        margin-bottom: 80px;
    }
}




/* ===========================================

company.html
=============================================
*/
.greeting,
.company_overview,
.map {
    margin-bottom: 120px;
}

.greeting-flex {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.greeting-text {
    width: 50%;
}

.greeting-text p {
    padding-bottom: 20px;
}

.greeting-flex img {
    width: 48%;
    border: 1px solid var(--border-gray);
    border-radius: 20PX;
}

.company_overview dt {
    width: 25%;
}

.company_overview dd {
    width: 75%;
}

iframe {
    border-radius: 50px;
    height: 450px;
}

/* --------------------------------------------
Responsive company
--------------------*/

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

    .greeting,
    .company_overview,
    .map {
        margin-bottom: 80px;
    }

    .greeting-text p {
        padding-bottom: 16px;
    }

    .greeting-flex {
        flex-direction: column;
        gap: 20px;
    }

    .greeting-text {
        width: 100%;
    }

    .greeting-flex img {
        width: 100%;
    }

    .company_overview dt,
    .company_overview dd {
        padding-block: 20px;
    }

    iframe {
        border-radius: 20px;
        height: 300px;
    }


}


/* =============================================

contact.html
================================================
*/
.contact_form {
    /* margin-bottom: 120px; */
}
.wpcf7-form {
    margin-bottom: 120px;
}

.contact_form dl {
    margin-block: 60px 40px;
}

.contact_form dt {
    display: flex;
    align-items: center;
    width: 30%;
    padding-right: 60px;
    position: relative;
}

.contact_form dt p {
    display: flex;
    align-items: center;
}

.required,
.no-required {
    color: var(--white);
    background: rgb(239, 65, 65);
    font-size: 10px;
    display: inline-block;
    line-height: 12px;
    padding: 6px 6px 6px 8px;
    border-radius: 5px;
    margin-left: 8px;
}

.no-required {
    background: #999999;
}

.contact_form dt::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 50px;
    background: var(--border-gray);;
    right: 40px;
}

.contact_form dd {
    width: 70%;
}

.contact_form dd label {
    display: inline-flex;
    align-items: center;
    width: auto;
    cursor: pointer;
}

input,
textarea {
    font-size: 16px;
}

.contact_form label .contact_form dd input[type="radio"] {
    margin-right: 4px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    background: #f7f7f7;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px #004ea2;
    outline: none;
}

textarea {
    height: 10rem;
}

/* ラジオボタン */
.radio .wpcf7-list-item.first {
    margin: 0;
}

.radio label {
    display: inline-block;
}

.radio label:not(:last-child) {
    margin-right: 15px;
    margin-bottom: 0px;
}


.radio .wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* デフォルトのボタン */
.radio input[type="radio"] {
    opacity: 0;
    position: center;
    position: absolute;
}

/* チェック前のボタン */
.radio .wpcf7-list-item-label::before {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 100%;
    content: "";
    margin-bottom: auto;
    margin-right: 8px;
    margin-top: auto;
    transition: background-color .3s;
    height: 1.8em;
    width: 1.8em;
}

/* チェック後のボタン */
input[type="radio"]:checked+.wpcf7-list-item-label::before {
    background-color: #004ea2;
    box-shadow: inset 0 0 0 4px var(--white);
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    gap: 40px;
}

#privacy-check {
    margin-right: 5px;
    transform: scale(1.2);
    cursor: pointer;
    margin-top: 40px;
}


.privacy-consent label {
    font-size: 14px;
    color: var(--main-black);
}

.privacy-link {
    border-bottom: solid 1px var(--main-black);
    line-height: 1rem;
}

.form-container .wpcf7-list-item {
    margin: 0;
}

.submit-btn {
    position: relative;

}

.wpcf7-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 70px;
    line-height: 0;
    padding: 15px 20px;
    background-color: #222222;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

@media screen and (min-width: 1071px) {

    .cf7mls_next:hover,
    .confirm-button:hover,
    .wpcf7-submit:hover {
        background-color: var(--main-black);
    }
}

.arrow {
    width: 16px;
    height: 16px;
    background-image: url(../img/arrow-right.svg);
    margin-left: 10px;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 24px;
    top: 29px;
}

.wpcf7-previous {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 70px;
    background-color: #222;
    color: var(--white);
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpcf7-not-valid-tip {
    color: var(--main-black);
    background: rgba(255, 0, 0, 0.5);
    display: inline-block;
    padding: 0px 10px;
    line-height: 28px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
}

@media screen and (min-width: 1071px) {

    .wpcf7-previous:hover {
        background-color: var(--main-black);
    }
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
    text-align: center;
    margin: 0;
    padding: 0;
}


/*------------------------------------
Responsive contact.html
--------------------*/

@media screen and (max-width: 1070px) {
    .contact_form dl {
        flex-direction: column;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .contact_form dt {
        width: 100%;
        border-bottom: none;
        padding-block: 20px 0;
        justify-content: flex-start;
        gap: 20px;
    }

    .contact_form dd {
        padding-block: 20px;
        width: 100%;
    }

    .contact_form dt::after {
        display: none;
    }

    /* ラジオボタン */
    /* チェック前のボタン */
    .radio .wpcf7-list-item-label::before {
        height: 18px;
        width: 18px;
        margin-right: 6px;
    }

    /* チェック後のボタン */
    input[type="radio"]:checked+.wpcf7-list-item-label::before {
        box-shadow: inset 0 0 0 3px var(--white);
    }

    .form-container {
        gap: 20px;
    }

}






/* ===========================================

services.html
=============================================
*/

.flex-service {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}


.servive-text {
    width: 48%;
}

.servive-text ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.servive-text li {
    position: relative;
    border-bottom: 1px solid var(--gray);
    font-weight: bold;
    margin-right: 30px;
    margin-bottom: 16px;
    padding: 0 5px 5px 40px;
}

.servive-text li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/check-icon.png);
    left: 7px;
    top: 14px;
    z-index: 2;
}

.servive-text li::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--border-gray);
    border-radius: 50%;
    left: 0;
    top: 5px;
}

.flex-service img {
    width: 48%;
    object-fit: cover;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
}

#service-menu {
    margin-bottom: 120px;
}

.service-img-list {
    padding: 40px 60px;
    border: 1px solid #B9B9B9;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 120px;
}

.service-img-list p {
    font-size: 30px;
}

.service-img-list ul {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.service-img-list ul p {
    font-size: 16px;
    line-height: 140%;
    margin-top: 10px;
}


/*------------------------------------
Responsive services.html
--------------------*/

@media screen and (max-width: 1070px) {
    .flex-service {
        flex-direction: column-reverse;
        gap: 20px;
    }

    #lease-sell {
        flex-direction: column;
    }


    .servive-text,
    .flex-service img {
        width: 100%;
    }

    .service-img-list {
        padding-inline: 20px;
    }

    .service-img-list ul {
        gap: 20px;
    }
}

@media screen and (max-width: 750px) {
    .flex-service {
        margin-bottom: 60px;
    }

    .servive-text ul {
        margin-top: 20px;
    }

    .servive-text li::before {
        left: 7px;
        top: 9px;
    }

    .servive-text li::after {
        width: 25px;
        height: 25px;
    }

    .service-img-list {
        padding: 20px;
    }

    .service-img-list p {
        font-size: 20px;
    }

    .service-img-list ul {
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }

    .servive-text li {
        padding: 0 5px 5px 28px;
        margin: 0 15px 15px 0;
    }

    .servive-text li::before {
        left: 5px;
        top: 10px;
        width: 10px;
        height: 10px;
        background-size: contain;
    }

    .servive-text li::after {
        width: 20px;
        height: 20px;
        top: 3px;
    }

    #service-menu,
    .service-img-list {
        margin-bottom: 80px;
    }

}

/* ===========================================

aechive-inventory.php
=============================================
*/

.stock-list .stock-img {
    height: 180px;
    object-fit: cover;
}

.car-title {
    font-size: 18px;
    margin-top: 20px;
}

.stock-list .info {
    line-height: 1.2rem;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    margin-block: 16px;
    padding-block: 10px;
    gap: 10px 0;
}

.stock-list .info dt {
    width: 40%;
    font-weight: bold;
}

.stock-list .info dd {
    width: 60%;
}

.stock-list .price {
    display: flex;
    font-weight: bold;
    gap: 20px;
}

.body-price {
    color: #666;
}

.price-ne {
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
}

.price-ne span {
    font-size: 14px;
}



/*------------------------------------
Responsive aechive-inventory.php
--------------------*/


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

    .stock-list .stock-img {
        height: 200px;
    }

    .stock-list .info {
        margin-block: 15px;
    }
}


/* ===========================================

car-stock_detail.html
=============================================
*/
/* ===== 販売在庫ページ共通 ===== */
.subpage-car_stock {
    position: relative;
}

.car-stock-top {
    position: absolute;
    width: 40%;
    bottom: 0;
    right: 0;
}

.inventory-detail {
    margin-bottom: 120px;
}

.inventory-detail .flex {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* =====画像==== */
.inv-gallery {
    width: 50%;
    margin: 0 auto;
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
}

.inv-main {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.inv-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .35s;
}

.inv-main img.is-active {
    opacity: 1;
}

.inv-main .inv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: var(--white);
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.inv-main .inv-arrow::after {
    position: absolute;
    content: "";
    background-image: url(../img/arrow.svg);
    width: 16px;
    height: 16px;
    top: 15px;
    left: 17px;
}


@media screen and (min-width: 1071px) {
    .inv-main .inv-arrow:hover {
        opacity: 0.7;
    }
}

.inv-main .inv-prev {
    left: 10px
}

.inv-main .inv-prev::after {
    transform: rotate(180deg);
    left: 13px;
}

.inv-main .inv-next {
    right: 10px
}

.inv-thumbsWrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    position: relative;
}

.inv-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefoxでスクロールバー非表示 */
}

.inv-thumbs::-webkit-scrollbar {
    display: none;
    /* Chrome系でスクロールバー非表示 */
}

.inv-thumb {
    flex: 0 0 auto;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    opacity: .55;
    cursor: pointer;
    transition: transform .2s, opacity .2s;
    border: 2px solid transparent;
    background: #eee
}

.inv-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.inv-thumb.is-active {
    opacity: 1;
    border-color: var(--main-black);
    transform: scale(1.02)
}

.inv-thArrow {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border: 0;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    background-image: url(../img/arrow-black.svg);
}

.inv-thArrow:disabled {
    opacity: .35;
    cursor: default
}

.inv-thPrev {
    left: -20px;
    transform: rotate(180deg);
}

.inv-thNext {
    right: -20px;
}



.inventory-right {
    width: 48%;
}


/* ===== 車両タイトル・価格 ===== */
.inventory-head {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
    font-size: 12px;
}


.inventory-head h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.flexs p {
    display: inline;
}


.inventory-head span {
    font-weight: 700;
    font-size: 28px;
}

.inventory-head .total-price_text,
.inventory-head .price_text {
    font-size: 12px;
    font-weight: normal;
    margin-right: 10px;
}

.total-price,
.price {
    margin-right: 16px;
}



.inventory-head .price {
    color: #666;
}


.inventory-head .small {
    font-size: 12px;
}

/* ===== 各セクション ===== */
.inventory-info,
.inventory-spec,
.inventory-condition,
.inventory-cost,
.inventory-other,
.inventory-comment {
    margin-bottom: 50px;
}

.inventory-info h3,
.inventory-condition h3,
.inventory-spec h3,
.inventory-cost h3,
.inventory-other h3,
.inventory-comment h3 {
    font-size: 14px;
    background: var(--gray);
    color: var(--white);
    text-align: center;
    padding-block: 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.inventory-detail .flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.table-flex {
    width: 48%;
}



/* ===== テーブル ===== */
.table {
    border: 1px solid #ddd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 12px;
    border-inline: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    line-height: 20px;
}

th,
td {
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    padding-block: 5px;
}

th {
    background: #f7f7f7;
    width: 35%;
    font-weight: bold;
}

td {
    padding-inline: 10px;
}

tr:last-child th,
tr:last-child td {
    border-bottom: none;
}



/* ===== コメント ===== */
.inventory-comment p {
    font-size: 14px;
    padding: 15px 25px;
    line-height: 28px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #ddd;
}

.stock-img-list ul {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.stock-img-list li {
    width: 30%;
}

.stock-img-list li:nth-child(n+4) {
    width: 22%;
}

/*------------------------------------
Responsive car-stock_detail.html
--------------------*/

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

    .stock-img-list li {
        width: 28%;
    }

    .stock-img-list li:nth-child(n+4) {
        width: 20%;
    }
}

@media screen and (max-width: 750px) {
    .car-stock-top {
        width: 50%;
        bottom: 40%;
    }

    .inventory-detail {
        margin-bottom: 80px;
    }

    .inventory-detail .flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .inv-gallery {
        width: 100%;
        position: relative;
    }

    .inv-main {
        height: 280px;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        position: static;
    }

    .inv-main img {
        position: relative;
        flex: 0 0 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
        scroll-snap-align: center;
        opacity: 1
    }

    .inv-main .inv-arrow {
        top: 40%;
    }


    .inventory-right {
        width: 100%;
    }

    .inventory-info,
    .inventory-spec,
    .inventory-condition,
    .inventory-cost,
    .inventory-other {
        margin-bottom: 40px;
    }

    .inventory-head .flexs>div {
        display: flex;
        align-items: baseline;
    }

    .inventory-head .flexs p {
        width: 30%;
    }

    .stock-img-list ul {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .stock-img-list li {
        width: 45%;
    }

    .stock-img-list li:nth-child(n+4) {
        width: 45%;
    }

    .inventory-comment p {
        font-size: 12px;
        padding: 5px 10px;
        line-height: 24px;
    }

}




/* ===========================================

blog.html
=============================================
*/

.articl-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.blog,
.articl-flex article {
    width: 75%;
}

.post-thumbnail {
    margin-block: 40px;
}

.post-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-bottom: 30px;
}

.post-tags li {
    background: #f2f2f2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.post-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.post-body p {
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(transparent 70%, #fff78a 70%);
    font-weight: 600;
}

h3.wp-block-heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
    color: #004ea2;
}

h4.wp-block-heading {
    font-size: 20px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1010px) {
    h3.wp-block-heading {
        font-size: 20px;
        line-height: 30px;
    }

    h4.wp-block-heading {
        font-size: 18px;
        column-gap: 5px;
    }

}



h4.wp-block-heading::before {
    width: 1em;
    height: 0.6em;
    border-bottom: 4px solid #004ea2;
    border-left: 4px solid #004ea2;
    transform: rotate(-45deg) translate(2px, -2px);
    content: '';
}

.wp-block-list li {
    list-style: disc;
    margin-left: 20px;
}

/* 目次 */
#toc_container {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
}

.toc_list {
    counter-reset: listnum;
    padding-left: 1.2em;
    color: var(--main-black);
}

.toc_list {
    margin-bottom: 6px;
    position: relative;
}

.toc_list li::before {
    counter-increment: listnum;
    content: counter(listnum) ".";
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: var(--gray);
}

.toc_list a {
    border-bottom: 1px solid var(--gray);
}

#toc_container {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
}

#toc_container .toc_title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

#toc_container .toc_toggle {
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 1071px) {
    #toc_container .toc_toggle:hover {
        color: #0D62A5;
    }
}

/* 比較表 */
.compare-section {
    margin-top: 60px;
}

.post-body h2 {
    background: var(--main-black);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.compare-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.compare-section .table {
    margin-bottom: 30px;
    border-radius: 10px;
    width: 70%;
}

.compare-table {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.compare-table th,
.compare-table td {
    border: 1px solid #ccc;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
}

.compare-table th {
    background: #f0f0f0;
    font-weight: 600;
}

.compare-table td:first-child {
    font-weight: bold;
}

/* 強調セクション */
.highlight-section {
    border-radius: 6px;
    margin-bottom: 30px;
}

.highlight-section h3 {
    background: #222222;
    color: var(--white);
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.highlight-section h3 span {
    font-weight: 700;
    font-size: 18px;
}

.highlight-section p {
    margin-bottom: 10px;
}

.blog-pagenetion {
    display: flex;
    justify-content: center;
    padding-block: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    gap: 20px;
    margin-bottom: 120px;
}

.blog-pagenetion a {
    color: #4d4c4c;
}

.blog-pagenetion li {
    padding-inline: 20px;
}

.blog-pagenetion li:first-child,
.blog-pagenetion li:last-child {
    position: relative;
}

.blog-pagenetion li:first-child {
    border-right: 1px solid #888;
}

.blog-pagenetion li:last-child {
    border-left: 1px solid #888;
}

.blog-pagenetion li:first-child::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--main-black);
    border-left: 2px solid var(--main-black);
    transform: rotate(-45deg);
    left: 0;
    top: 12px;
}

.blog-pagenetion li:last-child::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--main-black);
    border-right: 2px solid var(--main-black);
    transform: rotate(45deg);
    right: 0;
    top: 12px;
}

/* aside */
aside {
    width: 20%;
}

aside h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

aside ul {
    background: #f7f7f7;
    padding: 0 15px;
    border-radius: 10px;
}

aside li {
    padding-block: 15px;
    border-bottom: 1px solid var(--gray);
    position: relative;
}

aside li:last-child {
    border-bottom: none;
}

aside li::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background-image: url(../img/arrow-black.svg);
    right: 0;
    top: 24px;
    cursor: pointer;
}

aside li a {
    display: block;
}



aside h3:last-of-type {
    margin-top: 40px;
}

aside .archive-box form {
    margin: 0;
}

aside .archive-box select {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background: #f8f8f8;
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%),
        linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 15px) calc(1em + 4px), calc(100% - 10px) calc(1em + 4px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

aside .archive-box select:focus {
    outline: none;
}



/*------------------------------------
Responsive aside.html
--------------------*/

@media screen and (max-width: 1010px) {
    .articl-flex {
        flex-direction: column;
    }

    .blog,
    .articl-flex article {
        width: 100%;
    }

    .grid {
        margin-top: 0;
    }

    aside {
        width: 100%;
        display: flex;
        gap: 20px;
    }

    .category {
        width: 70%;
    }
}

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

    .post-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
    }


    .toc-box ol {
        padding-left: 0;
    }

    aside {
        flex-direction: column;
        gap: 0;
    }

    .category {
        width: 100%;
    }
}






/* ===========================================

recruite.html
=============================================
*/
.recruit-section {
    margin-bottom: 120px;
}

.message {
    font-size: 20px;
}

.recruit-section p {
    margin-bottom: 40px;
}

.recruit .slide-img {
    gap: 0;
}

.job-flex {
    display: flex;
    align-items: center;
    padding-block: 20px;
    border-block: 1px solid var(--border-gray);
}

.job-flex .bold {
    width: 20%;
}

.job-flex ul {
    border-left: 1px solid var(--border-gray);
    padding-left: 20px;
}

.job-flex li {
    list-style: inside;
}



.gray-back {
    padding-block: 80px;
    background: #f0efef6c;
    margin-bottom: 120px;
}


.recruit-dl dt {
    width: 20%;
    font-weight: bold;
    padding-bottom: 20px;
    padding-block: 40px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
}


.recruit-dl dd {
    width: 80%;
    padding: 40px 0 40px 20px;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
}

.recruit-dl dd::before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 80px);
    background-color: var(--border-gray);
    left: 0;
}

.recruit-dl li {
    list-style: inside;
}

.recruit-dl .star {
    list-style: none;
    position: relative;

}

.recruit-dl .star::before {
    content: "★";
    margin-inline: -5px 10px;
}


.go-entry {
    display: block;
    margin: 40px auto 0;
    position: relative;
    width: 350px;
    text-align: center;
    line-height: 80px;
    background-color: #222222;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
}

.go-entry::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/arrow-right.svg);
    top: 32px;
    right: 20px;
}


.adress-flex label:last-of-type {
    margin-top: 20px;
}

/*------------------------------------
Responsive recruit.html
--------------------*/

@media screen and (max-width: 1010px) {
    .recruit-dl dt {
        width: 30%;
    }


    .recruit-dl dd {
        width: 70%;
    }

}

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

    .recruit-section,
    .gray-back {
        margin-bottom: 80px;
    }

    .recruit-section p {
        margin-bottom: 20px;
    }

    .job-flex {
        flex-direction: column;

    }

    .job-flex .bold {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
        text-align: center;
        padding-bottom: 20px;
    }

    .job-flex ul {
        border: none;
    }

    .job-flex li {
        list-style: outside;
    }

    .job-flex li::before {
        left: 0;
    }

    .gray-back {
        padding-block: 40px;
    }


    .go-entry {
        font-size: 14px;
        width: 300px;
    }

    .recruit-dl ul {
        margin-left: 20px;
    }

    .recruit-dl li {
        list-style: outside;
    }

    .star {
        margin-left: -17px;
    }
}



/* ===========================================

entry.html
=============================================
*/

.adress-flex {
    flex-direction: column;
    gap: 20px;
}

.adress-flex .adress_num {
    width: 200px;
}

.contact_form .border::after {
    height: calc(100% - 100px);
    background: var(--border-gray);
    right: 40px;
}

select {
    width: 30%;
    padding: 10px 40px 10px 20px;
    appearance: none;
    background: #f7f7f7;
    color: #4d4c4c;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%234d4c4c" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5 8l5 5 5-5H5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

@media screen and (max-width: 750px) {
    select {
        width: 70%;
    }
}

/* =========================
    404.php
========================*/

/****************************** mobile,cpmmon ******************************/
.nfBg {
    background: #ffffff;
    width: 100%;
    height: 100vh;
    position: relative;
}

.nfCon {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nfHead {
    font-family: Avenir Next, Avenir, Lato, Arial, Ebrima, Modern, sans-serif;
    margin-bottom: 20px;
    color: #232323;
}

.nfHeadFc {
    display: block;
    font-weight: 600;
    font-size: 60px;
}

.nfHeadSc {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
}

.nfText {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 60px;
}

.nfTopAnchor {
    border: 1px solid #000000;
    height: 45px;
    width: 240px;
    line-height: 45px;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 1px;
}

/****************************** tablet ******************************/
@media (min-width: 600px) {}

/****************************** tablet Pro ******************************/
@media (min-width: 960px) {
    .nfTopAnchor:hover {
        background: #232323;
        color: #ffffff;
        transition: 0.3s;
    }

    .nfHeadFc {
        font-size: 80px;
    }

    .nfHeadSc {
        font-size: 24px;
    }
}

/* =============================
    thankyou.php
===========================*/
/****************************** mobile,cpmmon ******************************/
.tksCnBg {
    background: #ffffff;
    width: 100%;
    height: 100vh;
}

.nfHeadFc {
    line-height: 120%;
}

.tksCnCon {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.tksCnHead {
    font-family: Avenir Next, Avenir, Lato, Arial, Ebrima, Modern, sans-serif;
    margin-bottom: 20px;
    color: #232323;
}

.tksCnHeadFc {
    display: block;
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 20px;
}

.tksCnHeadSc {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
}

.tksCnText {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 30px;
}

.tksCnTopAnchor {
    border: 1px solid #000000;
    height: 50px;
    width: 240px;
    line-height: 50px;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 1px;
}

/****************************** tablet ******************************/
@media (min-width: 600px) {}

/****************************** tablet Pro ******************************/
@media (min-width: 960px) {
    .tksCnTopAnchor:hover {
        background: #232323;
        color: #ffffff;
        transition: 0.3s;
    }

    .tksCnHeadFc {
        font-size: 70px;
        margin-bottom: 30px;
    }

    .tksCnHeadSc {
        font-size: 20px;
    }

    .tksCnText {
        font-size: 16px;
    }
}