@charset "utf-8";
:root {
    --color-bk: #000;
    --color-wh: #fff;
    --color-gray: #EFEFEF;
    --color-gr: #096236;
    --color-gold: #AF984F;
    --txt-size: 1.25vw;
    --txt-lh: 1.5;
    --inner-size: 78.5vw;
    --hd-height: 8.4vw;
    --content-wrap: 120;
    --content-side : 10.75vw;
    --drop-shadow : drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
html, body {
    color: var(--color-bk);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--txt-size);
    font-weight: 500;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
#tpage {
    background-color: transparent;
    background-image: url(../img/bg-top.jpg);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}
* { min-height: 0vw; }
.hidden { display: none; }
.md-block { display: none; }
.sm-block { display: none; }
.grecaptcha-badge { visibility: hidden; }
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1, h2, h3, h4, h5, h6,
.sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 {
    font-weight: bold;
    line-height: 1.32;
    letter-spacing: 0;
    margin-bottom: 0;
}
h1, .sizeh1 { font-size: 5vw; }
h2, .sizeh2 { font-size: 4.68vw; }
h3, .sizeh3 { font-size: 4.2vw; }
h4, .sizeh4 { font-size: 3.8vw; }
h5, .sizeh5 { font-size: 3.4vw; }
h6, .sizeh6 { font-size: 3vw; }

hgroup {
    display: block;
    width: fit-content;
}
hgroup.text-center { margin-inline: auto; }
hgroup p {
    position: relative;
    display: inline-block;
    padding-left: 1.6vw;
}
hgroup p::before {
    content: "";
    display: block;
    width: 0.6vw;
    height: 0.6vw;
    position: absolute;
    left: 0.4vw;
    top: calc(50% - 0.2vw);
    background-color: var(--color-gold);
    border-radius: 100vmax;
}


/*--- aタグ ---*/
a, a:hover, a:focus { text-decoration: none; outline: none; }
a {
    color: #127aca;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
a:hover, a:focus { color: #00028A; }
a::before, a::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.anchorpoint-box {
    margin-bottom: 0!important;
}
.anchorpoint {
    display: block;
    padding-top: var(--hd-height);
    margin-top: calc(var(--hd-height) * -1);
}

/*--- imgタグ ---*/
img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.img-aspect3-2 { aspect-ratio: 3 / 2; object-fit: cover; }

hr {
    margin: 30px 0 50px;
    border-top: 2px solid #DADDDE;
    opacity: .25;
}

/* google recaptcha */
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
    margin: 0 4px!important;
    border-bottom: 1px solid currentColor!important;
}
.recaptcha_policy a::after {
    width: 9px!important;
    height: 9px!important;
    top: calc(50% - 3.5px)!important;
    filter: brightness(0)!important;
}
.grecaptcha-badge { visibility: hidden; }

/*--- マウスカーソルで選択したテキストの色と背景色 ---*/
::selection {
    /*color: var(--color-wh);*/
    background-color: rgba(18, 122, 202, 0.15);
}

/*--- 共通 ---*/
p {
    margin: 0 auto 3vw;
	padding: 0;
    line-height: 1.9;
    letter-spacing: 0.02em;
}
.txt-set { display: inline-block; }
.txt-cp { font-size: 0.8em; }
.txt-description {
    color: #757875;
    font-size: 0.8rem;
}
.txt-lh1 { line-height: 1; }
.txt-lh15 { line-height: 1.5; }
.txt-lh2 { line-height: 2; }
.txt-lh245 { line-height: 2.45; }
.color-gr { color: var(--color-gr); }
.color-gold { color: var(--color-gold); }
.color-bk { color: var(--color-bk); }
.color-wh { color: var(--color-wh); }
.bg-gr { background-color: var(--color-gr); }
.bg-wh { background-color: var(--color-wh); }
.bg-gray { background-color: var(--color-gray); }
.bg-none { background-color: transparent; }
.sec-bg-gr::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #25774e;
    mix-blend-mode: multiply;
    -webkit-backdrop-filter: blur(10px) opacity(81%);
    backdrop-filter: blur(10px) opacity(81%);
    opacity: 0.92;
}
.sec-bg-gray {
    background-color: transparent;
    background-image: url(../img/bg-img01.svg);
    background-size: 500px 500px;
    background-position: center;
    background-repeat: repeat;
}

/* --- flex-box --- */
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.grid2 { grid-template-columns: repeat(2, 1fr) }
.grid3 { grid-template-columns: repeat(3, 1fr) }
.grid4 { grid-template-columns: repeat(4, 1fr) }
.grid5 { grid-template-columns: repeat(5, 1fr) }
.grid-gap0 { grid-gap: 0!important; }

.row {
    margin-right: -20px;
    margin-left: -20px;
}
.row > * {
    padding-right: 20px;
    padding-left: 20px;
}

/*--- ul ---*/
ul.list-2col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-gap: 5px 3rem;
    grid-template-columns: repeat(2, auto);
}

/*--- table ---*/
table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
table tr { border-bottom: 1px solid #DADDDE; }
table tr:nth-child(2n - 1) { background-color: ; }
table tr th, table tr td {
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 14px 10px;
    vertical-align: text-top;
}
table tr th {
    font-size: 0.96rem;
    padding: 2vw 0;
}
table tr td {
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 2vw 0 2vw 2.6vw;
}

/*--- .row-map ---*/
.row-map {
    line-height: 0;
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 30px;
}
.row-map iframe {
    width: 100%;
    height: 28.4vw;
}

/*--- .row-movie ---*/
.row-movie {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin-bottom: 2em;
}
.row-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn-wrap { margin-top: 3rem; }
.btn00 a {
    color: var(--color-wh);
    line-height: 1.4;
    letter-spacing: 0.03em;
    overflow-x: hidden;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    padding: 1.46vw 6vw 1.46vw 2.7vw;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: var(--color-gr);
    border-radius: 2.73vw;
}
.btn00 a::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 17px;
    z-index: 10;
    display: block;
    width: 2vw;
    height: 1px;
    background-color: var(--color-wh);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    transform: scaleX(1);
    transform-origin: center right;
}
.btn00 a:hover { background-color: #3B9A6A; }
.btn00 a:hover::before { transform: scaleX(0.5); }

.btn00-list .btn00 a {
    width: 25.7vw;
    margin-bottom: 2.16vw;
}


/* --------------------------------------------
    ナビゲーション
-------------------------------------------- */
#hd01 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: var(--hd-height);
    transition: all 0.4s ease;
    background-color: var(--color-wh);
}
.hd-logo {
    font-size: 0!important;
    width: 23.4vw;
    display: flex;
    align-items: center;
    margin-left: 3.12vw;
}
.hd-logo a {
    display: block;
    line-height: 1;
    background-color: var(--color-gray);
    border-radius: 24vw;
}
.scroll #hd01 {
    filter: var(--drop-shadow);
    -webkit-filter: var(--drop-shadow);
    -ms-filter: var(--drop-shadow);
}

/*--- LIST STYLE ---*/
#g-nav { flex: 1; }
#g-nav::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    transition: .4s cubic-bezier(.4, .4, 0, 1);
    pointer-events: auto;
}
.g-nav-list {
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    max-width: none;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}
.nav-list > li {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0 2vw;
}
.nav-list > li:not(:last-child) { margin-bottom: 0; }
.nav-list > li:not(:last-child)::before {
    content: "";
    display: block;
    width: 1px;
    height: var(--txt-size);
    position: absolute;
    top: calc(50% - (var(--txt-size) / 2));
    left: 100%;
    background-color: var(--color-bk);
}
.nav-list > li a {
    color: var(--color-bk);
    font-weight: 600;
    line-height: var(--hd-height);
    letter-spacing: 0.02em;
    position: relative;
    display: block;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.nav-list > li a:hover { color: var(--color-gr); }
.nav-list > li a::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: 25px;
    left: calc(50% - 1em);
    background-color: var(--color-gr);
    transform: scaleX(0);
    transform-origin: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.nav-list > li a:hover::after { transform: scaleX(1); }

.g-nav-list .nav-btn {
    color: var(--color-wh);
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
    width: 14.16vw;
    height: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 1.56vw;
    margin-right: 3.12vw;
    padding: 8px 16px;
    background-color: var(--color-gr);
    border-radius: 24vw;
}
.g-nav-list .nav-btn:hover { background-color: #3B9A6A; }
/*--- MENU / CLOSE BTN ---*/
.openbtn {
    position: fixed;
    top: 1.8vw;
    right: 1.8vw;
    z-index: 9999;
    display: block;
    width: 6.6vw;
    height: 6.6vw;
    background-color: var(--color-gray);
    border-radius: 100vmax;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.openline {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.openline span {
    display: inline-block;
    position: absolute;
    left: calc(50% - 1vw);
    width: 2.4vw;
    height: 1.5px;
    border-radius: 0;
	background-color: #333;
}
.openline span:nth-of-type(1),
.openline span:nth-of-type(3) { width: 1.4vw; }
.openline span:nth-of-type(1) { top: 2.5vw; left: 3.2vw; }
.openline span:nth-of-type(2) { top: calc(50% - 0.5px); }
.openline span:nth-of-type(3) { top: 4vw; left: 2.3vw; }

/* HOVER Anime */
.openbtn:hover { filter: brightness(0.9); transform: scale(0.9); }

@media screen and (min-width: 1280px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 1279px) {
    :root { --hd-height: auto; }
    #hd01 { background-color: transparent; }
    .hd-logo {
        position: fixed;
        top: 2.2vw;
        left: 1.8vw;
        z-index: 9999;
        width: 30.4vw;
        margin-left: 0;
    }
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 43vw;
        height: auto;
        padding: 5vw 3.4vw;
        position: absolute;
        top: 1vw;
        right: 1vw;
        background-color: var(--color-wh);
        border-radius: 0.6vw;
    }
    .nav-list {
        display: block;
        height: auto;
        margin-bottom: 20px;
    }
    .nav-list > li { margin: 0; padding: 0; }
    .nav-list > li a {
        line-height: 10vw;
        text-align: center;
        padding: 0;
    }
    .nav-list > li:not(:last-of-type) a {
        border-bottom: 1px solid var(--color-gray);
    }
    .nav-list > li:not(:last-child)::before,
    .nav-list > li a::after { display: none; }
    .g-nav-list .nav-btn {
        display: block;
        width: 100%;
        height: auto;
        margin-inline: auto;
        padding: 3.4vw 3vw;
        border-radius: 1vw;
    }
    /* OPEN Anime */
    .panelactive #g-nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        display: block;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }
    .panelactive #g-nav::before {
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.7);
    }
    .panelactive #g-nav .openbtn span { width: 2.6vw; left: calc(50% - 1.3vw); }
    .panelactive #g-nav .openbtn span:nth-of-type(2) { opacity: 0; }
    .panelactive #g-nav .openbtn span:nth-of-type(1),
    .panelactive #g-nav .openbtn span:nth-of-type(3) { top: 3.2vw; }
    .panelactive #g-nav .openbtn span:nth-of-type(1) { transform: rotate(42deg); }
    .panelactive #g-nav .openbtn span:nth-of-type(3) { transform: rotate(-42deg); }
    .panelactive #g-nav .g-nav-list { opacity: 1; visibility: inherit; }
}
@media screen and (max-width: 819px) {
    #g-nav::before { display: none; }
    .hd-logo {
        top: 4.4vw;
        left: 3vw;
        width: 62vw;
    }
    .openbtn {
        top: 3.6vw;
        right: 4vw;
        width: 14vw;
        height: 14vw;
    }
    .openline span {
        left: calc(50% - 2.5vw);
        width: 5vw;
    }
    .openline span:nth-of-type(1),
    .openline span:nth-of-type(3) { width: 3vw; }
    .openline span:nth-of-type(1) { top: 5.2vw; left: 4.5vw; }
    .openline span:nth-of-type(3) { top: 8.56vw; left: 6.4vw; }
    .panelactive #g-nav .openbtn span {
        width: 7vw;
        left: calc(50% - 3.2vw);
    }
    .panelactive #g-nav .openbtn span:nth-of-type(1),
    .panelactive #g-nav .openbtn span:nth-of-type(3) { top: 6.8vw; }
    #g-nav .g-nav-list {
        width: 100%;
        height: 100vh;
        padding: 30vw 6vw;
        top: 0;
        right: 0;
        border-radius: 0;
    }
    .nav-list > li a { line-height: 22vw; }
    .g-nav-list .nav-btn { padding: 9vw 4vw; border-radius: 3vw; }
}


/* --------------------------------------------
    Content
-------------------------------------------- */
section {
    position: relative;
    /*overflow-x: hidden;*/
}
.sec-inner,
.sec-inner-start,
.sec-inner-end {
    box-sizing: content-box;
    container-type: inline-size;
}
.sec-inner {
    max-width: var(--inner-size);
    margin-inline: auto;
    padding-right: var(--content-side);
    padding-left: var(--content-side);
}
.sec-inner-start { padding-left: var(--content-side); }
.sec-inner-end { padding-right: var(--content-side); }
.content-wrap {
    padding-top: calc(var(--content-wrap) * 1px);
    padding-bottom: calc(var(--content-wrap) * 1px);
}

/*---------- sec00 ----------*/
.sec00 {
    width: 100vw;
    padding-top: var(--hd-height);
    padding-bottom: 17.8vw;
    overflow-x: hidden;
}
.main-slider {
    position: relative;
    width: 100vw;
    margin-top: 1.2vw;
    margin-left: auto;
}
.main-slider .swiper-slide .img {
    display: block;
    width: 74.1vw;
    margin-left: auto;
    border-radius: 15.6vw 0 0 0;
    overflow: hidden;
}
.sec00-txt {
    display: block;
    width: 46vw;
    position: absolute;
    top: 60%;
    left: 5.8vw;
    transform: translateY(-50%);
}
.sec00-txt .tit { margin-bottom: 1.7vw; }
.sec00-txt .txt { line-height: 2.2; }

/*100年テキスト用*/
.sec00-txt100 {
    display: block;
    width: 46vw;
    position: absolute;
    top: 44%;
    left: 5.8vw;
    transform: translateY(-50%);
}


/*---------- sec01 ----------*/
.sec01 { padding-bottom: 11.2vw; }
.sec01-box .item-start {
    flex: 445;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4.94vw;
}
.sec01-box .item-end { flex: 559; }
.sec01-box {
    position: relative;
    z-index: 10;
}
.sec01-img {
    position: relative;
    width: 69vw;
    margin-top: -5vw;
}

/*---------- sec02 ----------*/
.sec02-wrap {
    position: relative;
    z-index: 10;
    padding-top: 10.4vw;
    padding-bottom: 10.4vw;
}
.sec02-box {
    gap: 5.8vw;
}
.sec02-box .item-start { flex: 703; }
.sec02-box .item-end { flex: 364; }
.sec02-box .sec02-txt { padding-top: 1.6vw; }

.service-slider { width: 55vw; }
.service-slider .swiper-slide img  { border-radius: 0 5px 5px 0; }
/*スクロールバー*/
.swiper-scrollbar {
    flex: 1;
    position: relative !important;
    inset: 0 !important;
    width: 180px !important;
    height: 6px !important;
    margin-left: auto;
    margin-top: 15px;
    background-color: var(--color-wh);
    border-radius: 6px;
    overflow-x: hidden;
}
.swiper-scrollbar-drag {
    background-color: var(--color-gold);
}

/*---------- sec03 ----------*/
.sec03 { overflow-x: hidden; }
.sec03-wrap {
    position: relative;
    padding-top: 20.2vw;
    padding-bottom: 11vw;
}
.sec03-box .item-start { flex: 501; }
.sec03-box .item-end { flex: 640; }
.sec03-box .sec03-img img  { border-radius: 5px 0 0 5px; }

/*---------- sec04 ----------*/
.sec04-wrap {
    padding-top: 8.6vw;
    padding-bottom: 8.6vw;
}

/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    color: var(--color-wh);
    position: relative;
    z-index: 5;
    background-color: #393939;
    border-top: 0.78vw solid var(--color-gr);
    overflow: hidden;
}
#ft01::before {
    content: '';
    display: block;
    width: 23.4vw;
    height: 3.5vw;
    position: absolute;
    bottom: calc(100% + 0.64vw);
    right: 10.2vw;
    z-index: 10;
    background-color: transparent;
    background-image: url(../img/car04.svg);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.ft-wrap a,
.ft-wrap p {
    color: var(--color-wh);
    font-size: 1.16vw;
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.ft-wrap p { font-weight: 400; margin-bottom: 2vw; }
.ft-wrap {
    align-items: stretch;
    position: relative;
    margin: 0 auto;
}
.ft-wrap > .item-start {
    width: 35vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-wh);
}
.ft-wrap > .item-end {
    position: relative;
    flex: 1;
    padding: 8vw 8vw 6.5vw 6.5vw;
}
.ft-wrap > .item-end::before {
    content: '';
    display: block;
    width: 36vw;
    height: 36vw;
    position: absolute;
    top: calc(50% - 19vw);
    right: -7.6vw;
    z-index: -1;
    background-color: transparent;
    background-image: url(../img/logo.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.07;
}
.ft-logo { width: 17.8vw; }
.ft-txt p b { font-size: var(--txt-size); font-weight: 600; }

.f-menu-box {
    gap: 3.12vw;
}
.f-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.f-menu li { margin-bottom: 26px; }
.f-menu li a {
    position: relative;
    font-size: 1.36vw;
    font-weight: 600;
    padding-left: 1.4vw;
}
.f-menu li a::before {
    content: "";
    display: block;
    width: 0.6vw;
    height: 0.6vw;
    position: absolute;
    left: 0;
    top: calc(50% - 0.2vw);
    background-color: var(--color-gold);
    border-radius: 100vmax;
}
.ft-ft { text-align: right; }
.f-cp-menu {
    margin-bottom: 1vw;
}
.ft-cp {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 1279px) {
    :root {
        --txt-size: 1.96vw;
        --txt-lh: 1.4;
        --inner-size: 81.6vw;
        --content-side: 5vw;
        --content-wrap: 80;
    }
    #tpage { background-image: url(../img/bg-top_m.jpg); }
    h2, .sizeh2 { font-size: 6vw; }
    hgroup p { padding-left: 2vw; }
    hgroup p::before { width: 0.8vw; height: 0.8vw; }
    .anchorpoint {
        padding-top: 12vw;
        margin-top: -12vw;;
    }
    .md-none { display: none; }
    .md-block { display: block; }
    .btn00 a { padding: 2.4vw 9vw 2.4vw 5vw; border-radius: 5vw; }
    .btn00 a::before { width: 2.4vw; }
    .row-map iframe { height: 29.4vw; }

    .sec00 { padding-top: 15.4vw; }
    .sec00-txt {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
        width: 48vw;
        margin-bottom: 5.2vw;
    }
    .sec00-txt .tit { margin-bottom: 1.8vw; }

    .sec00-txt100 {
        position: relative;
        inset: 0;
        transform: translateY(0);
        width: 80vw;
        margin-bottom: 4.6vw;
    }

    .main-slider { width: 91vw; }
    .main-slider .swiper-slide .img {
        width: 100%;
        border-radius: 17.6vw 0 0 0;
        aspect-ratio: 5 / 4;
        object-fit: cover;
    }

    .sec01 { padding-bottom: 13.2vw; }
    .sec01-box {
        flex-direction: column;
        align-items: center;
        gap: 14vw;
    }
    .sec01-box .item-start {
        padding-top: 1.6vw;
    }
    .sec01-box h2 { font-size: 7.2vw; }
    .sec01-txt p {
        text-align: center;
        margin-bottom: 5.6vw;
    }
    .sec01-txt .btn00 { text-align: center; }
    .sec01-img {
        width: 100%;
        margin-top: 6vw;
    }
    .sec02-wrap { padding-bottom: 10vw; }
    .sec02-box { gap: 3.8vw; }
    .sec02-box .item-start { flex: 360; }
    .sec02-box .item-end { flex: 270; }
    .sec02-box .sec02-txt { padding-top: 0; }
    .btn00-list .btn00 a {
        width: 86%;
        padding: 2vw 9vw 2vw 5vw;
    }
    .service-slider { width: 56.8vw; }
    .sec03-wrap {
        padding-top: 23vw;
        padding-bottom: 10vw;
        padding-left: 13vw;
    }
    .sec03-box { gap: 3.6vw; }
    .sec03-txt > p { line-height: 2.4; margin-bottom: 4.2vw; }
    .sec04-wrap { padding-bottom: 14vw; }
    #ft01::before {
        width: 35vw;
        height: 6vw;
        right: 7.2vw;
    }
    .ft-wrap { flex-direction: column; }
    .ft-wrap > .item-start { width: 100%; padding: 4vw 3vw; }
    .ft-wrap > .item-end::before {
        width: 46vw;
        height: 46vw;
        top: calc(50% - 23vw);
        right: -9vw;
    }
    .ft-wrap a, .ft-wrap p { font-size: 1.62vw; }
    .f-menu-box { gap: 8vw; }
    .f-menu li a { font-size: 2vw; }
}
@media screen and (max-width: 819px) {
    :root {
        --txt-size: 4.8vw;
        --txt-lh: 1.4;
        --inner-size: 80vw;
        --content-side: 6.4vw;
        --content-wrap: 60;
    }
    #tpage { background-image: url(../img/bg-top_s.jpg); }
    .sm-none { display: none; }
    .sm-block { display: block; }
    h2, .sizeh2 { font-size: 11.6vw; }
    hgroup p { padding-left: 4vw; }
    hgroup p::before { width: 2vw; height: 2vw; top: calc(50% - 0.6vw); }
    .anchorpoint {
        padding-top: 20vw;
        margin-top: -20vw;;
    }
    .txt-lh245 { line-height: 2.35; }
    .btn00 a {
        width: 100%;
        padding: 6vw 12vw 6vw 8vw;
        border-radius: 12vw;
    }
    .btn00 a::before { width: 10%; }
    .row-map iframe { height: 72vw; }
    .sec00 {
        padding-top: 25.2vw;
        padding-bottom: 33vw;
    }
    .sec00-txt100 {
        margin-bottom: 8.2vw;
        margin-left: 3.2vw;
    }
    .sec00-txt100 img { width: 100%; }
    .sec01 { padding-bottom: 30vw; }
    .sec01-box h2 { font-size: 9.2vw; }
    .sec00-txt { width: 81vw; margin-bottom: 10vw; }
    .sec00-txt .txt { display: none; }
    .sec01-box { gap: 18vw; margin-bottom: 42vw; }
    .sec01-txt {
        padding-left: 3vw;
        padding-right: 7vw;
    }
    .sec01-txt p { text-align: left; margin-bottom: 8vw; }
    .sec01-txt p br { display: none; }
    .main-slider { width: 90vw; }
    .main-slider .swiper-slide .img {
        display: block;
        width: 96%;
        margin-left: auto;
        border-radius: 30vw 0 0 0;
        aspect-ratio: auto;
    }
    .sec02-wrap { padding-top: 14vw; padding-bottom: 11vw; }
    .sec02-wrap hgroup { margin-bottom: 5vw; }
    .sec02-box { flex-direction: column; gap: 8.6vw; }
    .sec02-box .item-end { flex: 1; width: 100%; }
    .sec02-box .sec02-txt { padding-left: var(--content-side); }
    .btn00-list .btn00 a {
        width: 100%;
        margin-bottom: 8.2vw;
        padding: 6vw 14vw 6vw 8vw;
    }
    .service-slider { width: 93.6vw; }
    .swiper-scrollbar { width: 34vw !important; height: 1.2vw !important; }
    .sec03-wrap { padding-top: 38vw; padding-bottom: 22vw; padding-left: var(--content-side); padding-right: var(--content-side); }
    .sec03-box { flex-direction: column; gap: 15vw; }
    .sec03-box hgroup { text-align: center; margin-inline: auto; margin-bottom: 5vw; }
    .sec03-txt > p { margin-bottom: 10vw; }
    .sec03-box .item-end { width: calc(100% + var(--content-side)); }
    .sec04-wrap { padding-top: 20vw; padding-bottom: 38vw; }
    #ft01::before {
        width: 64vw;
        height: 11vw;
        right: 6vw;
    }
    .ft-wrap a, .ft-wrap p { font-size: 4vw; }
    .ft-wrap p { margin-bottom: 6vw; }
    .ft-wrap > .item-start { padding: 6vw 3vw; }
    .ft-wrap > .item-end { padding: 10vw 6.5vw; overflow: hidden; }
    .ft-wrap > .item-end::before {
        width: 80vw;
        height: 80vw;
        top: 50%;
        right: -16vw;
    }
    .ft-logo { width: 34vw; }
    .ft-txt-box { flex-direction: column; gap: 6vw; }
    .f-menu li { margin-bottom: 6vw; }
    .f-menu li a { font-size: 4.2vw; padding-left: 4.6vw; }
    .f-menu li a::before {
        width: 1.6vw;
        height: 1.6vw;
        left: 0.5vw;
        top: calc(50% - 0.6vw);
    }
    .f-cp-menu { margin-bottom: 4vw; }
}


/* --------------------------------------------
    other page
-------------------------------------------- */
#cpage {
    background-color: var(--color-wh);
}
#titbar {
    padding-top: var(--hd-height);
    background-color: var(--color-gr);
}
#titbar::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 42vw;
    height: 100%;
    background: linear-gradient(90deg,rgba(9, 98, 54, 1) 10%, rgba(9, 98, 54, 0) 70%);
}
#titbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    display: block;
    width: 40vw;
    height: calc(100% - var(--hd-height));
    background-color: var(--color-gr);
    background-image: url(../img/titbar.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#titbar hgroup {
    position: relative;
    z-index: 100;
    width: 100%;
    padding-top: 4.2vw;
    padding-bottom: 5.6vw;
}
#titbar hgroup p {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    margin-bottom: 0!important;
}
#titbar hgroup h1 {
    color: #fff;
    position: relative;
    display: block;
    text-transform: capitalize;
}

.other-content h1,
.other-content .sizeh1 { font-size: 3vw; }
.other-content h2,
.other-content .sizeh2 { font-size: 2.6vw; }
.other-content h3,
.other-content .sizeh3 { font-size: 2.2vw; }
.other-content h4,
.other-content .sizeh4 { font-size: 2vw; }
.other-content h5,
.other-content .sizeh5 { font-size: 1.8vw; }
.other-content h6,
.other-content .sizeh6 { font-size: 1.6vw; }
.other-content h2 { margin-bottom: 3vw; }
.other-content h3 { margin-bottom: 2.4vw; }
.other-content h4 { margin-bottom: 2.2vw; }
.other-content h5 { margin-bottom: 2vw; }
.other-content h6 { margin-bottom: 1.8vw; }
.other-content h2 {
    position: relative;
    padding: 0 0 8px 0;
    border-bottom: 4px solid #C3C3C3;
}
.other-content h2::before {
    content: '';
    display: block;
    width: 1.6em;
    height: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 10;
    background-color: var(--color-gr);
}

.other-content h3 {
    color: var(--color-wh);
    line-height: 1.3;
    position: relative;
    z-index: 10;
    padding: 0.18em 2.4em 0.22em 0.4em;
    background-color: var(--color-gold);
}
.other-content h3::before {
    content: '';
    display: block;
    width: 3.8vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: var(--color-gr);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.other-content h4 {
    position: relative;
    line-height: 1.3;
    padding-left: 20px;
    font-feature-settings: "palt";
}
.other-content h4::before {
    content: '';
    display: block;
    width: 8px;
    height: 1.2em;
    position: absolute;
    left: 0;
    top: 0.05em;
    background-color: var(--color-gr);
}

.other-content h5 {
    display: inline-block;
    padding: 0 2px 5px 2px;
    border-bottom: 3px solid #C3C3C3;
}

.other-content h6 {
    line-height: 1.3;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.36rem;
}
.other-content h6::before {
    content: '';
    display: block;
    width: 0.8em;
    height: 0.8em;
    background-color: var(--color-gold);
    border-radius: 100vmax;
}

/*--- main / side ---*/
.other-content .content-wrap { position: relative; }
.other-content .main-content { padding-left: 18vw; }
.other-content .side-content {
    position: -webkit-sticky;
    position: sticky;
    top: calc((var(--content-wrap) * 1px) + var(--hd-height));
    width: 13vw;
    -webkit-padding-end: 1.25rem;
    box-sizing: content-box;
    pointer-events: auto;
    padding-bottom: 5vw;
}
.anchor-nav {
    width: 100%;
    position: absolute;
}
.anchor-nav a {
    color: #8d908d;
    font-size: 0.9em;
    display: block;
    margin-bottom: 1vw;
}
.anchor-nav a::before {
    content: "";
    position: absolute;
    top: .5lh;
    left: 0;
    transition: width 200ms cubic-bezier(0.25,0.46,0.45,0.94);
    display: block;
    height: 1px;
    width: 0;
    background-color: var(--color-bk);
}
.anchor-nav a.is-active { color: var(--color-bk); padding-left: 1.25rem; }
.anchor-nav a.is-active::before { width: .75rem; }

/*--- ul / ol ---*/
.other-content .content-wrap ul {
    list-style: none;
    margin-bottom: 1vw;
    padding: 0;
}
.other-content .content-wrap ul li {
    position: relative;
    margin-bottom: 0.5vw;
    padding-left: 1.6vw;
}
.other-content .content-wrap ul > li:before {
    content: "";
    display: block;
    width: 0.6vw;
    height: 0.6vw;
    position: absolute;
    left: 0.4vw;
    top: calc(50% - 0.2vw);
    background-color: var(--color-gold);
    border-radius: 100vmax;
}

.other-content .content-wrap ol {
    list-style: none;
    counter-reset: li;
    margin-bottom: 1vw;
    padding-left: 1em;
}
.other-content .content-wrap ol li {
    position: relative;
    margin-bottom: 1.5vw;
    padding-left: 10px;
    line-height: 1.6;
}
.other-content .content-wrap ol > li:before {
    position: absolute;
    counter-increment: li;
    content: counter(li) ".";
    left: -1em;
    top: 0;
}
@media screen and (max-width: 1279px) {
    #titbar::before { width: 52vw; }
    #titbar::after { width: 50vw; height: 100%; }
    #titbar hgroup { padding-top: 12.6vw; }
    .other-content h1,
    .other-content .sizeh1 { font-size: 4vw; }
    .other-content h2,
    .other-content .sizeh2 { font-size: 3.6vw; }
    .other-content h3,
    .other-content .sizeh3 { font-size: 2.9vw; }
    .other-content h4,
    .other-content .sizeh4 { font-size: 2.7vw; }
    .other-content h5,
    .other-content .sizeh5 { font-size: 2.4vw; }
    .other-content h6,
    .other-content .sizeh6 { font-size: 2.2vw; }
    .other-content h2 { margin-bottom: 3.2vw; }
    .other-content h3 { margin-bottom: 3vw; }
    .other-content h3::before { width: 5vw; }
    .other-content h4 { margin-bottom: 2.8vw; }
    .other-content h5 { margin-bottom: 2.4vw; }
    .other-content h6 { margin-bottom: 2.2vw; }
    .other-content .main-content { padding-left: 0; }
    .other-content .side-content {
        position: -webkit-relative;
        position: relative;
        top: 0;
        width: 100%;
        display: none;
    }
    .anchor-nav { position: relative; }

    table tr td { padding-left: 5vw; }
}
@media screen and (max-width: 819px) {
    #titbar::before {
        width: 92vw; background:
        linear-gradient(90deg, rgba(9, 98, 54, 1) 40%, rgba(9, 98, 54, 0) 80%);
    }
    #titbar::after { width: 90vw; }
    #titbar hgroup { padding-top: 24vw; padding-bottom: 8vw; }
    .other-content h1,
    .other-content .sizeh1 { font-size: 7.4vw; }
    .other-content h2,
    .other-content .sizeh2 { font-size: 6.8vw; }
    .other-content h3,
    .other-content .sizeh3 { font-size: 6vw; }
    .other-content h4,
    .other-content .sizeh4 { font-size: 5.8vw; }
    .other-content h5,
    .other-content .sizeh5 { font-size: 5.4vw; }
    .other-content h6,
    .other-content .sizeh6 { font-size: 5.2vw; }
    .other-content h2 { margin-bottom: 7vw; }
    .other-content h3 { margin-bottom: 6vw; }
    .other-content h3::before { width: 9vw; padding: 0.3em 1.6em 0.4em 0.5em; }
    .other-content h4 { margin-bottom: 5vw; }
    .other-content h5 { margin-bottom: 4vw; }
    .other-content h6 { margin-bottom: 3vw; }
    .other-content .content-wrap { max-width: none; padding-bottom: 25vw; }
    .other-content .content-wrap p { margin-bottom: 7vw; }
    .other-content .content-wrap .grid2,
    .other-content .content-wrap .grid3 { grid-template-columns: 1fr; grid-gap: 5vw; }
    .other-content .content-wrap ul li {
        margin-bottom: 3vw;
        padding-left: 4vw;
    }
    .other-content .content-wrap ul > li:before {
        width: 2vw;
        height: 2vw;
        left: 0.2vw;
        top: 0.6em;
    }
    .other-content .content-wrap ol li {
        margin-bottom: 6vw;
        padding-left: 4px;
    }
    table.table-cell tr th,
    table.table-cell tr td { padding: 6vw 0; }
    table.table-cell tr td { text-align: right; padding-left: 6vw; padding-right: 4vw; }
    table:not(.table-cell) tr th,
    table:not(.table-cell) tr td { display: block; }
    table:not(.table-cell) tr th { padding: 6vw 0 4vw; }
    table:not(.table-cell) tr td { padding: 0 0 6vw; }
}


/* --------------------------------------------
    トラックアニメーション
-------------------------------------------- */
/*
.truck-animation {
    position: absolute;
    width: 400px;
}
.truck01 {
    bottom: calc(100% - 1vw);
    left: 0;
}
.truck01 .item-anime {
    width: 6.7vw;
    margin-left: -10vw;
}
.truck02 {
    top: 12.3vw;
    right: 0vw;
    text-align: right;
    z-index: -1;
}
.truck02 .item-anime {
    width: 11.1vw;
}
.truck03 {
    top: 8.8vw;
    left: 24vw;
}
.truck03 .item-anime {
    width: 8.7vw;
}
@media screen and (max-width: 1279px) {
    .truck01 { bottom: calc(100% + 3.8vw); left: 5vw; }
    .truck01 .item-anime { width: 10.2vw; margin-left: 0; }
    .truck02 { top: 4.6vw; right: 20vw; }
    .truck02 .item-anime { width: 16.4vw; }
    .truck03 { top: 8.4vw; left: 27vw; }
    .truck03 .item-anime { width: 10.8vw; }
}
@media screen and (max-width: 819px) {
    .truck01 { bottom: calc(100% + 4vw); left: -80vw; }
    .truck01 .item-anime { width: 16.2vw; }
    .truck02 { top: -29vw; right: 10vw; }
    .truck02 .item-anime { width: 30vw; }
    .truck03 { top: 15vw; left: 30vw; }
    .truck03 .item-anime { width: 20vw; }
}
*/

/* --------------------------------------------
    お知らせリスト - info-box
-------------------------------------------- */
.info-box {
    margin-bottom: 4vw;
}
.info-item {
    position: relative;
    color: var(--color-bk);
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 2.34vw;
    margin-bottom: 0;
    padding: 2.2vw 0;
    border-bottom: 1px solid #D6D6D6;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.info-item dt {
    color: #6E7777;
    font-size: 0.92rem;
    font-weight: 500;
    display: block;
    width: 6em;
}
.info-item dd {
    position: relative;
    flex: 1;
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 7vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.info-item dd::before,
.info-item dd::after {
    content: "";
    position: absolute;
    z-index: 10;
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.info-item dd::before {
    top: calc(50% - 1vw);
    right: 0;
    width: 3.2vw;
    height: 2vw;
    background-color: var(--color-gr);
    border-radius: 2.73vw;
}
.info-item dd::after {
    top: calc(50% - 0.5px);
    right: 0.92vw;
    width: 1.4vw;
    height: 1px;
    background-color: var(--color-wh);
    transform: scaleX(1);
    transform-origin: center right;
}
.info-item:hover dd::before { background-color: #3B9A6A; }
.info-item:hover dd::after { transform: scaleX(0.5); }

.info-box > a:hover .info-item,
.info-box > a:focus .info-item {
    color: var(--color-bk);
    text-decoration: none;
    outline: none;
}
@media screen and (max-width: 1279px) {
    .info-item dd::before {
        top: calc(50% - 1.5vw);
        width: 4.6vw;
        height: 3vw;
    }
    .info-item dd::after {
        right: 1.4vw;
        width: 1.8vw;
    }
}
@media screen and (max-width: 819px) {
    .info-box { padding: 0 0 20px; }
    .info-item { flex-direction: column; gap: 6px; padding: 5vw 0; }
    .info-item dd {
        padding-right: 0;
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .info-item dd::before,
    .info-item dd::after { display: none; }
}

/* --------------------------------------------
    .point-box
-------------------------------------------- */
.point-box-g { grid-gap: 0 0.6vw; }
.point-box {
    padding: 1.6vw 1.8vw;
    background-color: var(--color-gray);
    border-radius: 5px;
    margin-bottom: 0.6vw;
}
.point-box .point-tit {
    font-weight: bold;
    margin-bottom: 0.6vw;
}
.point-box .point-txt {
    color: #5c5f5c;
    font-size: 0.9rem;
}
.point-box .point-txt p:last-of-type { margin-bottom: 0; }
.point-box .point-txt ul:last-of-type { margin-bottom: 0; }
@media screen and (max-width: 1279px) {
    .point-box-g { grid-template-columns: 1fr; }
    .point-box { padding: 2.2vw 2.6vw;  margin-bottom: 1vw; }
}
@media screen and (max-width: 819px) {
    .point-box-g { grid-gap: 0!important; }
    .point-box {
        padding: 4vw 5vw;
        margin-bottom: 3vw;
    }
    .point-box .point-tit { margin-bottom: 3vw; }
}

/* --------------------------------------------
    pagination
-------------------------------------------- */
.pnavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    margin-top: 3rem;
    padding: 0;
}
.pnavi .page-numbers {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-bottom: 2px solid #f2f2f2;
    color: #000;
    font-size: 13px;
    text-decoration: none;
}
.pnavi .current {
    border-bottom: 2px solid var(--color-gr);
    pointer-events: none;
}
.pnavi .next,
.pnavi .prev {
    width: fit-content;
    border-bottom-color: transparent;
}
.pnavi .dots { border-bottom-color: transparent; }

/* --------------------------------------------
    .tel-box
-------------------------------------------- */
.tel-box {
    position: relative;
    color: var(--color-wh);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 3rem;
    padding: 15px;
    background-color: var(--color-gr);
}
.tel-box::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    z-index: 10;
    display: block;
    width: 23px;
    height: 2px;
    background-color: var(--color-wh);
    transform: scaleX(1);
    transform-origin: center right;
}
.tel-box .txt {
    font-size: 16px;
}
.tel-box .tel {
    font-weight: 900;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}
.tel-box .tel .cp {
    font-size: 20px;
}
.tel-box .tel .num {
    font-size: 30px;
    line-height: 1.2;
}
.tel-box:hover { color: #fff; }
.tel-box:hover::before {
    transform: scaleX(0.3);
}

/* --------------------------------------------
    CONTACT FORM 7
-------------------------------------------- */
.contact-form p {
    width: 100%!important;
    margin-bottom: 0!important;
    line-height: 1.5!important;
}
.contact-form dl {
    margin: 0;
    padding: 20px 0;
}
.contact-form dl label { margin-bottom: 0; }
.contact-form dl dt {
/*    font-size: 15px;*/
    display: block;
    padding: 0 4px 6px;
}
.contact-form dl dd {
    flex: 1;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-form dl dd input,
.contact-form dl dd textarea {
    max-width: 100%;
    padding: 10px 12px;
    border: none;
    border: solid 1px #ccc;
}
.contact-form dl dd textarea { width: 100%; }
.contact-form input[type="radio"],
.contact-form input[type="checkbox"] { margin-right: 5px; }
.contact-form input[type="checkbox"] { display: none!important; }

/* radio */
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: none;
}
.wpcf7-radio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}
.wpcf7-radio label::before,
.wpcf7-radio label:has(:checked)::after {
    content: '';
    display: block;
    border-radius: 50%;
}
.wpcf7-radio label::before {
    width: 20px;
    height: 20px;
    background-color: var(--color-wh);
    border: solid 1px #ccc;
}
.wpcf7-radio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--color-gr);
}
.wpcf7-radio input {
    display: none;
}

/* checkbox */
.wpcf7-checkbox {
    border: none;
}
.wpcf7-checkbox label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    margin-bottom: .5em;
    cursor: pointer;
}
.wpcf7-checkbox label::before,
.wpcf7-checkbox label:has(:checked)::after {
    content: '';
}
.wpcf7-checkbox label::before {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: var(--color-gray);
}
.wpcf7-checkbox label:has(:checked)::before {
    background-color: var(--color-gr);
}
.wpcf7-checkbox label:has(:checked)::after {
    position: absolute;
    top: 11px;
    left: 12px;
    transform: rotate(45deg);
    width: 8px;
    height: 11px;
    border: solid var(--color-wh);
    border-width: 0 2px 2px 0;
}
.contact-form .wpcf7-list-item { margin: 0!important; }
.contact-form .wpcf7-list-item label {
    padding: 6px;
}
.contact-form .wpcf7-file { font-size: 15px; border: none; }

.contact-form .must {
    color: #C30008 !important;
    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin-left: 5px !important;
    padding: 2px 4px 4px !important;
    vertical-align: baseline !important;
}
.wpcf7-submit {
    color: #fff!important;
    font-size: 18px!important;
    width: 12em!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: block!important;
    margin: 30px auto!important;
    padding: 20px 5em!important;
    text-align: center;
    background: var(--color-gr)!important;
    background-size: 100%!important;
    background-position: center!important;
    border: none!important;
    border-radius: 0!important;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.wpcf7-submit:hover { background: var(--color-gr)!important; }
.wpcf7-not-valid-tip {
    color: #C30008 !important;
    font-size: 14px !important;
    padding-top: 3px !important;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
/*    font-size: 16px;*/
    text-align: center;
    border: none!important;
    margin: 0!important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output { color: #C30008 !important; }
@media screen and (max-width: 767px) {
    .contact-form dl { display: block; }
    .contact-form dl dt { width: 100%; }
    .contact-form dl dd { width: 100%; }
}