@charset "UTF-8";
/* 共通部分 */
body {
    background: var(--color-white);
    color: var(--color-text);
    overflow: hidden;
    font-size: 15px;
    font-size: clamp(15px, 0.8vw, 20px);
    letter-spacing: .05rem;
    counter-reset: number 0 counter-reset1 counter-reset2;
    position: relative;
    z-index: 0;
}
a, .post-content a {
    color: var(--color-text);
}
.font-1, .headline-font-type {
    font-family: var(--font-main);
    font-weight: 400;
}
p, .post-content p {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2;
}
.post-content ul {
    font-size: 0.9rem;
    font-weight: 400;
    list-style: disc;
}
.signage {
    height: 280px;
    background: var(--color-black);
    position: relative;
    z-index: 0;
}
.signage::after {
    content: '';
    position: absolute;
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.5;
}
.signage-title, .signage-title-sub {
    width: 86% !important;
    max-width: 1150px !important;
    text-align: center;
    margin: 0 auto;
    text-shadow: none;
}
.signage-title {
    font-size: 3.5rem !important;
    font-weight: 700;
    font-family: var(--font-eng);
    color: #fff !important;
    line-height: 1;
    letter-spacing: .2rem;
}
.signage-title-sub {
    font-size: 0.8rem !important;
    font-weight: 500;
    letter-spacing: .1rem;
    margin-top: 15px;
    line-height: 1;
    color: var(--color-white) !important;
}
.breadcrumb-wrapper {
    height: 40px;
    background: none;
}
.breadcrumb.inner {
    font-size: 0.7rem;
    font-weight: 400;
    width: fit-content !important;
    max-width: 1150px !important;
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0;
}
.breadcrumb li a, .breadcrumb li {
    color: #fff;
}
@media only screen and (max-width: 1200px) {
    .signage {
        height: 280px;
    }
}
@media only screen and (max-width: 768px) {
    .signage {
        height: 180px;
    }
    .signage-title {
        font-size: 2.5rem !important;
        letter-spacing: .1rem;
    }
    .signage-title-sub {
        font-size: 0.7rem !important;
        letter-spacing: .06rem;
        margin-top: 10px;
    }
}
/* 共通部分 END */
/* ナビ */
.header-bar {
    z-index: 50;
    background: var(--color-white) !important;
    box-shadow: none;
}
.logo-image {
    top: 30px;
    left: 15px;
    width: 290px;
    height: auto;
    position: absolute;
    box-sizing: border-box;
}
.header-bar-inner {
    width: 100%;
    max-width: unset;
    z-index: 100;
}
.global-nav > ul > li > a, .global-nav .sub-menu a {
    color: var(--color-text);
    font-weight: 400;
}
.global-nav > ul > li > a {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-eng);
    padding: 0 18px;
    line-height: 90px;
    position: relative;
    text-align: center;
    transition: 0.5s;
    overflow: hidden;
    z-index: 0;
}
.global-nav > ul > li > a::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    bottom: 16px;
    left: 0;
    line-height: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-main);
    letter-spacing: .05rem;
    transition: 0.5s;
    color: var(--color-main);
}
.global-nav > ul > li > a span {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    bottom: 16px;
    left: 0;
    line-height: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-main);
    letter-spacing: .05rem;
    transition: 0.5s;
    color: var(--color-main);
}
.global-nav > ul > li.global-menu-home > a::after {
    content: "ホーム";
}
.global-nav > ul > li.global-menu-price > a::after {
    content: "料金プラン";
}
.global-nav > ul > li.global-menu-about > a::after {
    content: "私たちについて";
}
.global-nav > ul > li.global-menu-company > a::after {
    content: "会社概要";
}
.global-nav > ul > li.global-menu-contact > a:hover {
    color: var(--color-main) !important;
    background: var(--color-base) !important;
}
.global-nav > ul > li.global-menu-contact > a {
    height: 100px;
    color: var(--color-white);
    background: var(--color-main);
    padding: 0 35px;
    margin-left: 15px;
    transition: 0.4s;
}
.global-nav > ul > li.global-menu-contact > a::before {
    content: none;
}
.global-nav > ul > li.global-menu-contact > a::after {
    content: "お問い合わせ";
    color: var(--color-white);
    bottom: 27px;
}
.global-nav > ul > li.global-menu-contact > a:hover::after {
    color: var(--color-main);
}
.global-nav .sub-menu {
    top: 111%;
}
.global-nav .sub-menu a {
    font-size: 13px;
    font-weight: 700;
    background: var(--color-base) !important;
}
.global-nav .sub-menu a:hover {
    color: var(--color-white) !important;
    background: var(--color-main) !important;
}
.global-nav .sub-menu a::before {
    content: none;
}
.global-nav .current-menu-item > a {
    color: var(--color-text);
}
@media only screen and (max-width: 1200px) {
    .logo-image {
        top: 20px;
        left: -5px;
        width: 200px;
    }
    .header-bar {
        border-color: var(--color-white);
    }
    .global-nav-button {
        border: 0;
    }
    .global-nav-button::before {
        color: var(--color-text);
    }
    .global-nav-button:hover::before {
        color: var(--color-main);
    }
    .global-nav {
        height: auto;
        padding: 0;
        background: none;
    }
    .global-nav a {
        background: var(--color-white);
        color: var(--color-text) !important;
    }
    .global-nav > ul > li > a {
        font-size: 15px;
        text-align: left;
        padding: 0 15px;
        line-height: 50px;
    }
    .global-nav > ul > li > a::after {
        position: relative;
        text-align: left;
        font-size: 10px;
        width: fit-content;
        bottom: 0;
        margin-left: 10px;
        display: inline-block;
    }
    .global-nav > ul > li > a span {
        position: relative;
        text-align: left;
        font-size: 10px;
        width: fit-content;
        bottom: 0;
        margin-left: 10px;
        display: inline-block;
    }
    .global-nav > ul > li.global-menu-contact > a {
        height: 50px;
        padding: 0 15px;
        margin-left: 0;
        background: var(--color-white);
    }
    .global-nav > ul > li.global-menu-contact > a::after {
        bottom: 2px;
        color: var(--color-main);
    }
    .global-nav .sub-menu a {
        font-size: 11px;
        line-height: 50px;
        padding: 0 15px;
    }
    .global-nav a:hover, .global-nav .sub-menu a:hover {
        color: var(--color-main) !important;
    }
    .global-nav a:hover {
        background: var(--color-white) !important;
    }
    .global-nav .sub-menu a:hover {
        background: var(--color-base) !important;
    }
    .global-nav .menu-item-has-children > a span::before {
        color: var(--color-text);
    }
    .global-nav > ul > li > a::before {
        content: none;
    }
}
/* ナビ END */
/* コンテンツ 共通 */
.flex-inner {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
p.caution {
    line-height: 1.5;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    box-sizing: border-box;
}
p.caution:last-of-type {
    margin-bottom: 0;
}
p.caution::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--color-caution);
}
span.caution {
    position: relative;
    padding-left: 15px;
    line-height: 1.6;
    box-sizing: border-box;
    display: inline-block;
}
span.caution::before {
    content: '※';
    padding-right: 5px;
    color: var(--color-caution);
    position: absolute;
    left: 0;
}
ul.list {
    margin: 0;
    list-style: none;
}
ul.list li {
    padding-left: 17px;
    line-height: 1.6;
    margin-bottom: 5px;
    box-sizing: border-box;
    position: relative;
}
ul.list li:last-child {
    margin-bottom: 0;
}
ul.list li::before {
    content: '';
    position: absolute;
    background: var(--color-main);
    border-radius: 100px;
    width: 6px;
    height: 6px;
    top: 9px;
    left: 0;
}
ul.list.caution_list li::before {
    content: '※';
    background: none;
    top: 0;
    color: var(--color-caution);
}
/* コンテンツ 共通 END */
/* コンテンツボタン */
a.content_but {
    width: 100%;
    max-width: 300px;
    padding: 11px 18px;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid;
    text-align: left;
    box-sizing: border-box;
    display: block;
    position: relative;
    transition: 0.5s;
}
a.content_but:hover {
    color: var(--color-white);
    border-color: var(--color-main);
    background: var(--color-main);
}
a.content_but::after {
    position: absolute;
    content: '\ea3c';
    font-family: 'design_plus';
    font-size: 12px;
    font-weight: 400;
    right: 18px;
    line-height: 2.4;
    transition: 0.5s;
}
/* コンテンツボタン END */
/* YouTube コントロールバー非表示 */
.mb_YTPBar {
    display: none !important;
}
/* YouTube コントロールバー非表示 */
/* トップ・フッター */
.top-slider-wrapper {
    background: var(--color-white);
}
.top-slider-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.35;
}
.top-slider-content {
    border-radius: 0;
    width: 100% !important;
    height: 100% !important;
}
.top-slider-content-inner, .top-slider-content-inner:hover {
    background: none;
}
.top-slider-content-inner {
    width: 100% !important;
    height: 90% !important;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.top-slider-nav, .top-slider-content-inner p {
    display: none;
}
.top-slider-content-inner:after {
    content: none;
}
.front-slider-box {
    width: 90%;
    margin: 0 auto;
}
.front-copy-img {
    width: 80%;
    max-width: 600px;
    margin-left: auto;
}
.scroll-box {
    position: absolute;
    width: 15%;
    display: block;
    left: 0;
    bottom: 0;
}
.scroll-box span {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-eng);
    text-align: center;
    letter-spacing: .05rem;
    color: var(--color-main);
    bottom: 45px;
}
.scroll-box::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 35px;
    background: var(--color-main);
    left: 50%;
    bottom: 0;
    z-index: -1;
}
h2.front-main-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-eng);
    line-height: 1;
    text-align: center;
    letter-spacing: .15rem;
    margin-bottom: 40px;
    color: var(--color-main);
}
h2.front-main-title span {
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-main);
    letter-spacing: .1rem;
    display: block;
    color: var(--color-text);
}
.front_original01, .content02, .front_original02, .front_original03 {
    border-bottom: 1px solid var(--color-main);
    box-sizing: border-box;
}

.front_original01 {
    padding: 6em 0;
}
.front-original01-inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
}
.front_original01 h2.front-main-title {
    text-align: left;
}
.front-original01__title {
    width: 30%;
    box-sizing: border-box;
}
.front-original01__text {
    width: 70%;
    padding-left: 4vw;
    box-sizing: border-box;
}
.front-original01__title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1rem;
    line-height: 2;
}
.front-original01__title h3 span {
    color: var(--color-main);
    font-family: var(--font-eng);
    font-weight: 800;
    letter-spacing: .15rem;
    margin-left: 10px;
}
.front-original01__text p {
    margin-bottom: 20px;
}
.front-original01__text p:last-child {
    margin-bottom: 0;
}
.front-original02-inner {
    align-items: center;
}
.front-original02__text {
    width: 55%;
    margin-left: 45%;
    padding: 2.2vw 5vw;
    box-sizing: border-box;
}
.front-original02__img {
    width: 45%;
    margin-left: -100%;
    box-sizing: border-box;
}
.front-original02__text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05rem;
    margin-bottom: 30px;
}
.front-original02__text p {
    margin-bottom: 20px;
}
.front-original02__text p:last-child {
    margin-bottom: 0;
}
.content02 {
    padding: 6em 0;
    color: var(--color-text);
    background: var(--color-white);
}
.content02-inner {
    width: 86%;
    margin: 0 auto;
    padding: 0;
}
.content02 h2.front-main-title {
    margin-bottom: 60px;
}
.content02-item {
    width: calc(33.3333% - 20px);
    border-left: 1px solid var(--color-main);
    margin-left: 30px;
    padding-bottom: 0;
    color: var(--color-text);
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}
.content02-item:last-of-type {
    margin-bottom: 0;
}
.content02-img {
    width: 100%;
    height: auto;
    border: 1px solid var(--color-main);
    border-left: 0 !important;
    position: relative;
    transition: all .8s;
    z-index: 0;
    box-sizing: border-box;
}
.content02-img .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: #0000007a;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.content02-img:hover .mask {
    opacity: 1;
}
.content02-img-inner {
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
    color: var(--color-white);
}
p.content02-img_title {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .15rem;
    line-height: 1;
    color: var(--color-main);
}
p.content02-img_title span {
    margin-top: 10px;
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    font-family: var(--font-main);
    letter-spacing: .05rem;
    color: var(--color-white);
}
.content02-text-box {
    padding-top: 25px;
    padding-left: 30px;
    padding-bottom: 65px;
    box-sizing: border-box;
}
h3.content02-title, .content02-text {
    color: var(--color-text);
}
h3.content02-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
}
.content02-text {
    font-size: 0.8rem;
    line-height: 2.2;
}
a.content02-but {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    display: block;
    width: 100%;
    max-width: 250px;
    height: 50px;
    line-height: 58px;
    padding: 0 2px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text);
    box-sizing: border-box;
    z-index: 0;
}
a.content02-but::before {
    width: 50px;
    height: 1px;
    background: var(--color-main);
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    z-index: -1;
    transition: all 0.4s ease 0s;
}
a.content02-but::after {
    content: 'MORE';
    position: absolute;
    right: 2px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .08rem;
    transition: 1s;
}
a.content02-but:hover {
    color: var(--color-text);
    background: none;
}
a.content02-but:hover::after {
    color: var(--color-main);
}
a.content02-but:hover::before {
    left: calc(100% - 50px);
}
.front_original03 {
    padding: 6em 0;
}
.front-original03-inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
}
.front_original03 h2.front-main-title {
    margin-bottom: 70px;
}
.third-box {
    align-items: center;
    margin-bottom: 50px;
}
.third-box:last-of-type {
    margin-bottom: 0;
}
.front-third-text {
    width: 45%;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}
.third-box:nth-of-type(odd) .front-third-text {
    padding-right: 4vw;
}
.third-box:nth-of-type(even) .front-third-text {
    margin-left: 55%;
    padding-left: 4vw;
}
.front-third-text::before {
    counter-increment: number 1;
    content: "POINT.0"counter(number) "";
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .1rem;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--color-main);
    display: block;
}
.front-third-img {
    width: 55%;
    box-sizing: border-box;
    position: relative;
}
.third-box:nth-of-type(even) .front-third-img {
    margin-left: -100%;
}
h3.third_title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}
.front_topics {
    padding: 6em 0;
}
.front-topics-inner {
    width: 86%;
    max-width: 1000px;
    margin: 0 auto;
}

h2.headline-primary {
    display: none;
}
.footer {
    margin: 0;
}
.footer-gallery-title, .align1 {
    display: none;
}
.footer_contact_sec {
    padding: 5em 0;
    color: var(--color-white);
    background: var(--color-black);
    position: relative;
    z-index: 0;
}
.footer_contact_sec::after {
    content: '';
    position: absolute;
    display: block;
    background-image: url("img/contact_img.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.45;
}
.footer_contact_inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
}
h2.front-main-title.footer-con-title {
    margin-bottom: 15px;
    color: var(--color-white);
    text-align: left;
}
p.footer-con-time {
    line-height: 1.5;
    box-sizing: border-box;
}
p.footer-con-time span {
    margin-right: 1vw;
}
address.footer_tel {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .15rem;
    margin-top: 15px;
}
span.footer_tel_sub {
    font-size: 0.95rem;
    margin-right: 3px;
}
address.footer_tel a {
    color: var(--color-white);
}
p.footer-con-caution {
    font-size: 0.8rem;
}
ul.footer_sns__links {
    width: 100%;
    max-width: 230px;
    margin-top: 20px;
}
li.footer_sns__links-item {
    width: calc(50% - 10px);
    margin-right: 20px;
}
li.footer_sns__links-item:last-of-type {
    margin-right: 0;
}
a.footer_sns {
    display: block;
    text-align: center;
    color: var(--color-white);
}
a.footer_sns::before {
    content: '';
    color: var(--color-white);
    font-family: design_plus;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 18px;
    font-weight: 400;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    transition: all 0.5s;
    z-index: 1;
}
a.footer_mail_but::before {
    content: "\f0e0";
    background: var(--color-main);
}
a.footer_line_but::before {
    content: "\e909";
    background: var(--color-line);
}
a.footer_mail_but:hover {
    color: var(--color-main);
}
a.footer_line_but:hover {
    color: var(--color-line);
}
a.footer_sns span {
    margin-top: 8px;
    text-align: center;
    display: block;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .05rem;
}
.footer_original_sec {
    padding: 4em 0;
}
.footer_original_inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
}
.footer_address_bg {
    width: 55%;
    box-sizing: border-box;
}
.footer_menu_bg {
    width: 45%;
    padding-left: 12vw;
    box-sizing: border-box;
}
h2.footer-logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .05rem;
    margin-bottom: 15px;
}
dl.address_body {
    width: 100%;
    max-width: 500px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    display: flex;
    margin-bottom: 8px;
}
dl.address_body:last-of-type {
    margin-bottom: 0;
}
dt.address_title {
    width: 10%;
}
dd.address_text {
    width: 90%;
    padding-left: 1vw;
    box-sizing: border-box;
}
span.address_caution {
    margin-top: 10px;
    line-height: 1.5;
}
.footer-content-list div {
    width: 50%;
    box-sizing: border-box;
}
.footer-content-list div:last-of-type {
    padding-left: 2vw;
}
.footer-menu-list li {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}
.footer-menu-list li:last-of-type {
    margin-bottom: 0;
}
.footer-menu-list li a {
    transition: 0.5s;
}
.footer-menu-list li a:hover {
    color: var(--color-main);
}
.footer-menu-list li a span{
    display: none;
}
.footer-content {
    display: none;
}
.footer-bar01, .footer-bar01-inner, .copyright {
    background: none;
}
.footer-bar01-inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
}
.copyright {
    font-size: 10px;
    font-weight: 500;
    text-align: left;
    color: var(--color-text);
}
.pagetop {
    right: 5px;
}
.pagetop a {
    background: none;
    color: var(--color-main);
    writing-mode: vertical-rl;
    position: relative;
    width: auto;
    height: 125px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-eng);
    line-height: 20px;
    letter-spacing: .1rem;
    transition: all 0.5s;
}
.pagetop a::before {
    content: none;
}
.pagetop a::after {
    content: '';
    position: absolute;
    display: block;
    background: var(--color-main);
    height: 40px;
    right: 10px;
    width: 1px;
    bottom: 0;
    z-index: -1;
    transition: all 0.5s;
}
.pagetop a:hover {
    height: 140px;
    background: none;
}
.pagetop a:hover::after {
    height: 60px;
}
@media only screen and (max-width: 1200px) {
    .front-original01__text, .front-original01__title {
        width: 100%;
    }
    .front-original01__text {
        padding-left: 0;
        margin-top: 15px;
    }
    .footer_menu_bg {
        padding-left: 5vw;
    }
}
@media only screen and (max-width: 1000px) {
    .front_original02 {
        padding-top: 4em;
    }
    .front-original02__text, .front-original02__img {
        width: 100%;
        margin-left: 0;
    }
    .front-original02__text {
        padding: 0 6vw 3em;
    }
}
@media only screen and (max-width: 991px) {
    .top-slider {
        height: calc(80vh - 80px);
    }
}
@media only screen and (max-width: 970px) {
    .front_original01, .content02, .front_original03, .front_topics {
        padding: 4em 0;
    }
    .content02-item {
        width: 100%;
        margin-left: 0;
    }
    .content02-item:nth-of-type(2), .content02-item:last-of-type {
        margin-top: 40px;
    }
    .front_original03 h2.front-main-title {
        margin-bottom: 40px;
    }
    .third-box {
        margin-bottom: 30px;
    }
    .front-third-img, .front-third-text {
        width: 100%;
    }
    .front-third-text {
        padding: 0;
        margin-bottom: 15px;
    }
    .third-box:nth-of-type(odd) .front-third-text {
        padding-right: 0;
    }
    .third-box:nth-of-type(even) .front-third-img, .third-box:nth-of-type(even) .front-third-text {
        margin-left: 0;
    }
    .third-box:nth-of-type(even) .front-third-text {
        padding-left: 0;
    }
    h2.front-main-title.front_topics_title {
        margin-bottom: 30px;
    }
    .footer_address_bg, .footer_menu_bg {
        width: 100%;
    }
    .footer_menu_bg {
        max-width: 300px;
        margin-top: 40px;
        padding-left: 0;
    }
    .dp-footer-bar {
        font-size: 10px;
        background: var(--color-main) !important;
        border-top: 1px solid var(--color-white) !important;
    }
    .dp-footer-bar-item + .dp-footer-bar-item {
        border-left: 1px solid var(--color-white) !important;
    }
    .dp-footer-bar a {
        color: var(--color-white);
    }
    .dp-footer-bar-icon:before {
        font-weight: 400;
    }
    .icon-file-text:before {
        content: "\e909";
    }
    .icon-share-alt::before {
        content: "\ea92";
    }
}
@media only screen and (max-width: 768px) {
    .front-copy-img {
        margin-left: 0;
    }
    .scroll-box {
        display: none;
    }
    h2.front-main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    h2.front-main-title span {
        margin-top: 10px;
        font-size: 0.7rem;
    }
    .front_original01, .content02, .front_original03, .front_topics, .footer_contact_sec {
        padding: 3em 0;
    }
    .front-original01__title h3 {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    .front-original01__text p {
        margin-bottom: 10px;
    }
    .content02 h2.front-main-title {
        margin-bottom: 30px;
    }
    .content02-text-box {
        padding-top: 15px;
        padding-left: 20px;
    }
    .front_original02 {
        padding-top: 2.5em;
    }
    .front-original02__text {
        padding-bottom: 2em;
    }
    .front-original02__text h2 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    .front-original02__text p {
        margin-bottom: 10px;
    }
    .front-third-text::before {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    h3.third_title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    address.footer_tel {
        font-size: 2rem;
    }
    span.footer_tel_sub {
        font-size: 0.75rem;
        letter-spacing: .05rem;
    }
    .footer_original_sec {
        padding: 2.5em 0 1em;
    }
    .social-nav {
        display: none;
    }
}
@media only screen and (max-width: 500px) {
    .top-slider {
        height: calc(50vh - 50px);
    }
    .front-original02__text {
        padding: 0 5vw 1.5em;
    }
    dl.address_body {
        display: block;
    }
    dt.address_title, dd.address_text {
        width: 100%;
    }
}
@media only screen and (max-height: 400px) {
    .top-slider {
        height: 100vh;
    }
}
/* トップ・フッター END */
/* 固定ページ */
.page .post-header {
    margin: 0;
}
.content_inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 100px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}
.post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 0;
}
.post-content h2::after {
    content: "";
    display: block;
    width: 2px;
    height: 30px;
    background: var(--color-main);
    margin: 15px auto 0;
}
.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    padding: 0 0 0 30px;
    position: relative;
    color: var(--color-main);
}
.post-content h3::before {
    content: '';
    position: absolute;
    background: var(--color-main);
    width: 20px;
    height: 3px;
    top: 53%;
    left: 0;
}
.post-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-main);
    padding: 0;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.post-content .s_table {
    width: 100%;
}
.post-content table {
    margin: 0;
}
.post-content th, .post-content td {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: .05rem;
    vertical-align: middle;
    line-height: 1.8;
    padding: 24px 2px 21px;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    box-sizing: border-box;
}
.post-content th {
    width: 20%;
    text-align: left;
    border-right: none;
    border-color: var(--color-main);
}
.post-content td {
    border-left: none;
    padding-left: 25px;
}
@media only screen and (max-width: 970px) {
    .post-content th, .post-content td {
        padding: 15px 4px 13px;
        line-height: 1.5;
        display: block;
        box-sizing: border-box;
        width: 100% !important;
    }
    .post-content th {
        border-bottom: none;
        padding-bottom: 0;
    }
    .post-content td {
        border-top: none;
    }
}
@media only screen and (max-width: 768px) {
    .content_inner {
        padding: 50px 0;
    }
    .post-content h2 {
        font-size: 1.3rem;
        letter-spacing: 0;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .post-content h2::after {
        height: 20px;
        margin-top: 8px;
    }
    .post-content h3 {
        font-size: 1.15rem;
    }
}
/* 固定ページ END */
/* お知らせ */
.archive.category .main, .post-template-default .main, .blog .main {
    padding-bottom: 100px;
}
.archive-header {
    margin-bottom: 40px;
}
.archive-title, .post-title {
    color: var(--color-text);
    font-weight: 700;
}
.post-title, p.post-meta {
    text-align: left;
}
.article03 {
    background: none;
    box-sizing: border-box;
    border: 1px solid var(--color-main);
}
.article03-content {
    padding: 12px 15px;
}
.article03-title {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text);
}
.article03-meta {
    line-height: 1;
}
.article03-date, .article03-category-item {
    font-size: 11px;
}
.article03-category-item:hover, .article03 a:hover .article03-title {
    text-decoration: none;
}
.nav-links01 {
    border-top: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
}
.nav-links01-previous + .nav-links01-next {
    border-left: 1px solid var(--color-main);
}
.nav-links01-previous a:hover:before, .nav-links01-previous a:hover:after, .nav-links01-next a:hover:before, .nav-links01-next a:hover:after {
    color: var(--color-text);
}
.article01-thumbnail {
    border: 1px solid var(--color-main);
    border-radius: 2px;
    box-sizing: border-box;
}
h3.article01-title {
    line-height: 1.3;
}
h3.article01-title a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--color-text);
}
.nav-links01-previous a::before, .nav-links01-next a::after {
    font-size: 11px;
}
.post-meta-box {
    background: var(--color-base);
    box-sizing: border-box;
}
.post-meta-box-item {
    font-weight: 700;
}
.post-meta-box-item::before {
    color: var(--color-main);
}
.headline-bar {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: var(--color-text);
    background: var(--color-base);
}
.side_widget .headline-bar {
    font-size: 17px;
    margin-bottom: 20px;
    padding: 15px 15px 13px;
    font-family: var(--font-eng);
    font-weight: 700;
    color: var(--color-main);
}
.widget_categories ul li a {
    padding: 5px 0;
}
.widget_recent_entries li {
    font-size: 12px;
    line-height: 1.6;
    border-color: var(--color-border);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.widget_recent_entries .post-date {
    margin-top: 8px;
    font-size: 11px;
    color: var(--color-text);
}
.widget_recent_entries .post-date::before {
    font-size: 11px;
    color: var(--color-main);
}
@media only screen and (max-width: 1200px) {
    .archive.category .main, .post-template-default .main {
        padding-bottom: 80px;
    }
    .article03-title {
        height: 55px;
        margin: 0;
    }
}
@media only screen and (max-width: 768px) {
    .archive.category .main, .post-template-default .main {
        padding-bottom: 30px;
    }
    .archive-header {
        margin: 50px 0 30px;
    }
    .nav-links01-previous a::before, .nav-links01-next a::after {
        color: var(--color-text);
    }
    .nav-links01 {
        border: 1px solid var(--color-border);
    }
    .headline-bar {
        padding-left: 12px;
    }
}
@media only screen and (max-width: 767px) {
    .side_widget .headline-bar {
        padding: 18px 15px;
        line-height: 5px;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 500px) {
    .post-title, .post-meta {
        text-align: left;
    }
    .article03-title {
        font-size: 10px;
        margin-top: 0;
    }
}
/* お知らせ END */
/* 料金プラン */
.price_box {
    margin-bottom: 70px;
}
.price_box:last-of-type {
    margin-bottom: 0;
}
.price_box h2 {
    text-align: left;
}
.price_box h2::after {content: none;}
.price_box p {
    margin-bottom: 15px;
}
.cost_box {
    margin-top: 15px;
    padding: 20px 25px;
    background: var(--color-base);
    box-sizing: border-box;
}
p.price {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
}
span.tax {
    font-size: 0.9rem;
    margin-left: 10px;
}
p.set_text {
    line-height: 1.5;
    margin-bottom: 10px;
}
table.price_tbl th, table.price_tbl td {
    font-size: 1rem;
    letter-spacing: .08rem;
    padding: 22px 30px 20px;
    border: 1px dotted var(--color-main);
}
table.price_tbl th {
    width: 30%;
    border-right: 0 !important;
}
table.price_tbl td {
    text-align: end;
    border-left: 0 !important;
}
@media only screen and (max-width: 970px) {
    table.price_tbl th, table.price_tbl td {
        padding: 13px 15px 12px;
        border: 1px dotted var(--color-main) !important;
        margin-bottom: -1px;
    }
    table.price_tbl th {
        padding-bottom: 0;
        border-bottom: 0 !important;
    }
    table.price_tbl td {
        border-top: 0 !important;
        text-align: left;
    }
}
@media only screen and (max-width: 768px) {
    .price_box {
        margin-bottom: 40px;
    }
    .cost_box {
        padding: 15px 20px;
    }
    p.price {
        font-size: 1rem;
    }
    span.tax {
        font-size: 0.7rem;
        margin-left: 5px;
    }
    table.price_tbl th, table.price_tbl td {
        font-size: 0.9rem;
    }
}
/* 料金プラン END */
/* ご依頼の流れ */
.flow_sec .content_inner {
    max-width: 1000px;
}
.flow {
    padding-left: 50px;
    padding-bottom: 40px;
    position: relative;
    box-sizing: border-box;
    z-index: 0;
}
.flow:last-of-type {
    padding-bottom: 0;
}
.flow::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--color-white);
    border: 9px solid var(--color-main);
    border-radius: 100%;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 0;
}
.flow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 11.5px;
    width: 1.5px;
    height: 100%;
    background: var(--color-main);
    z-index: -1;
}
.flow:last-of-type::after {
    display: none;
}
.flow h2 {
    font-size: 1.3rem;
    text-align: left;
    line-height: 1.5;
    border-bottom: 0;
    margin-bottom: 10px;
}
.flow h2::before {
    counter-increment: number 1;
    content: "STEP.0"counter(number)"";
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-eng);
    line-height: 0.8;
    letter-spacing: .1rem;
    color: var(--color-main);
    margin-bottom: 20px;
}
.flow h2::after {
    content: none;
}
.flow p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.flow p:last-of-type {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .flow {
        padding-left: 40px;
        padding-bottom: 30px;
    }
    .flow h2::before {
        font-size: 1.5rem;
        line-height: 1;
        margin-bottom: 10px;
    }
    .flow p {
        margin-bottom: 10px;
    }
}
/* ご依頼の流れ END */
/* よくある質問 */
.faq {
    margin-bottom: 50px;
    box-sizing: border-box;
}
.faq:last-of-type {
    margin-bottom: 0;
}
.faq h2 {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 5px;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    color: var(--color-main);
}
.faq p {
    position: relative;
    margin-bottom: 12px;
}
.faq p:last-child {
    margin-bottom: 0;
}
.faq h2, .faq p {
    padding-left: 45px;
}
.faq h2::before, p.answer::before {
    content: "Q";
    position: absolute;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-eng);
    color: var(--color-white);
    background: var(--color-main);
    width: 30px;
    height: 30px;
    line-height: 27px;
    border-radius: 100px;
    text-align: center;
    left: 0;
    top: 0;
}
.faq h2::after {
    content: none;
}
p.answer::before {
    content: 'A';
    color: var(--color-main);
    background: var(--color-base);
    line-height: 26px;
}
@media only screen and (max-width: 768px) {
    .faq {
        margin-bottom: 25px;
    }
}
/* よくある質問 END */
/* 使用機体 */
.drone_box {
    margin-bottom: 70px;
}
.drone_box h2 {
    line-height: 1.5;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.drone_box h2::after {
    width: 60px;
    height: 1px;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: -1px;
}

.drone_box p {
    margin-bottom: 15px;
}
.drone_box:last-of-type, .drone_box p:last-child {
    margin-bottom: 0;
}
table.drone_tbl th, table.drone_tbl td {
    font-size: 1rem;
    padding: 20px 25px 18px;
    border-color: var(--color-white);
    border-width: 5px;
    background: var(--color-base);
}

table.drone_tbl th {
    width: 25%;
}

table.drone_tbl td {
    text-align: end;
}
@media only screen and (max-width: 970px){
    table.drone_tbl th, table.drone_tbl td {
        padding: 15px 18px;
    }
    table.drone_tbl th {
        padding-bottom: 0;
    }
}
@media only screen and (max-width: 768px){
    .drone_box {
        margin-bottom: 40px;
    }
}
/* 使用機体 END */
/* 私たちについて */
.about_box {
    margin-bottom: 70px;
}
.about_box h2 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}
.about_box h2::after {
    width: 50px;
    height: 1px;
    margin-top: 7px;
    margin-left: 0;
    margin-bottom: -1px;
}
.about_box p {
    margin-bottom: 15px;
}
.about_box:last-of-type, .about_box p:last-child {
    margin-bottom: 0;
}
.greeting_inner {
    margin-top: 50px;
}
.greeting_inner p {
    margin-bottom: 10px;
}
.greeting_img {
    width: 35%;
    box-sizing: border-box;
}
.greeting_text {
    width: 65%;
    padding-left: 4vw;
    box-sizing: border-box;
}
.greeting_img h2 {
    font-size: 1.1rem !important;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 5px !important;
    border: 0;
}
.greeting_img h2::after {
    content: none;
}
@media only screen and (max-width: 970px) {
    .greeting_img, .greeting_text {
        width: 100%;
    }
    .greeting_text {
        padding-left: 0;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .about_box {
        margin-bottom: 30px;
    }
    .about_box h2 {
        margin-bottom: 10px;
    }
    .greeting_inner {
        margin-top: 25px;
    }
}
/* 私たちについて END */
/* 撮影実績 */
.works_sec .content_inner {
    max-width: 950px;
}
.works_box {
    margin-bottom: 80px;
}
.works_box:last-of-type {
    margin-bottom: 0;
}
.works_box h3 {
    text-align: center;
    margin-bottom: 25px;
    padding-left: 0;
}
.works_box h3::before {
    content: none;
}
.works_col {
    width: 50%;
    padding: 0 3px 5px;
    box-sizing: border-box;
}
@media only screen and (max-width: 768px){
    .works_box {
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 500px){
    .works_box h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .works_col {
        width: 100%;
        padding: 0 0 5px;
    }
    .works_col:last-of-type {
        padding-bottom: 0;
    }
}
/* 撮影実績 END */
/* 会社概要 */
.company_sec {
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: linear-gradient(180deg, var(--color-blue-pale) 0%, #ffffff 42%);
}
.company_sec::before {
    content: 'COMPANY';
    position: absolute;
    top: 1.5%;
    right: -3%;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(6rem, 17vw, 16rem);
    line-height: 1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 95, 180, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.company_sec .content_inner {
    position: relative;
    z-index: 1;
    max-width: 950px;
}
@media only screen and (max-width: 768px) {
    .company_sec::before { font-size: clamp(4.5rem, 26vw, 9rem); }
}
table.company_tbl th {
    width: 23%;
}
@media only screen and (max-width: 768px) {
    /* 横スクロールをやめて縦積みに */
    .company_sec .s_table { overflow-x: visible; }
    table.company_tbl,
    table.company_tbl tbody,
    table.company_tbl tr,
    table.company_tbl th,
    table.company_tbl td {
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
        box-sizing: border-box;
    }
    table.company_tbl th {
        padding: 12px 14px 6px;
        border-bottom: none;
    }
    table.company_tbl td {
        padding: 0 14px 16px;
    }
}
/* 会社概要 END */
/* キャンセルポリシー */
.policy_box {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color-main);
    box-sizing: border-box;
}

.policy_box:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}
.policy_box:first-of-type ul.policy_list {
    margin-bottom: 10px;
}
.policy_box h2 {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 15px;
}
.policy_box h2::after {content: none;}
.policy_box p {
    margin-bottom: 15px;
}
.policy_box p:last-child {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px){
    .policy_box {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}
/* キャンセルポリシー END */
/* お問い合わせ */
.contact_sec .content_inner, .mail_sec .content_inner {
    max-width: 850px;
}
.mail_sec .content_inner {
    padding-top: 0;
}
.con__inner {
    margin-bottom: 60px;
}
.con__inner p {
    margin-bottom: 15px;
}
.con__inner:last-of-type, .con__inner p:last-of-type {
    margin-bottom: 0;
}
address.con_tel {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-eng);
    font-style: normal;
    text-align: center;
    line-height: 1;
    letter-spacing: .08rem;
    margin-bottom: 20px;
}
span.con_tel_sub {
    font-size: 1.3rem;
    margin-right: 4px;
    color: var(--color-main);
}
p.con-time {
    line-height: 1.5;
    width: fit-content;
    margin: 0 auto;
}
p.con-time span {
    margin-right: 12px;
    font-weight: 500;
    color: var(--color-main);
}
.con_line_box {
    padding: 25px;
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--color-white);
    background: var(--color-line);
}
.con_line_box h2 {
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: 15px;
}
.con_line_box h2::after {
    content: none;
}
a.con_line_but {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: auto;
    padding: 20px 22px 18px;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-line);
    background: #fff;
    border-radius: 100px;
    box-sizing: border-box;
    position: relative;
    transition: 0.5s;
}
a.con_line_but::after {
    content: "\e909";
    font-family: 'design_plus';
    position: absolute;
    right: 22px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    transition: 0.5s;
}
a.con_line_but:hover {
    color: var(--color-white);
    background: var(--color-main);
}
p.con_line_text {
    width: fit-content;
    margin: 15px auto 0;
    line-height: 1.5;
    font-weight: 700;
}
.mail_info_box {
    margin-bottom: 30px;
}
.mail_info_box p {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .con__inner {
        margin-bottom: 30px;
    }
    .con_line_box {
        padding: 20px;
    }
    address.con_tel {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    span.con_tel_sub {
        font-size: 1rem;
    }
}
/* お問い合わせ END */
/* お問い合わせフォーム */
span.required {
    font-size: 0.65rem;
    letter-spacing: 0;
    line-height: 1;
    margin-left: 8px;
    margin-bottom: 5px;
    padding: 5px 5px 6px;
    border-radius: 2px;
    display: inline-block;
    color: var(--color-white);
    background: var(--color-caution);
}
span.required.any {
    background: var(--color-white);
}
.wpcf7 {
    border: none;
    background: none;
    margin-bottom: 0 !important;
}
.wpcf7 input, .wpcf7 textarea {
    background: #eaeaea;
    border: 0;
    border-radius: 2px;
    padding: 18px 12px;
    box-sizing: border-box;
}
.wpcf7 form {
    margin: 0;
}
.wpcf7 form p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 2.2;
    margin-bottom: 20px;
}
.wpcf7 form p:last-of-type {
    margin-bottom: 0;
}
.wpcf7 select, .wpcf7 .wpcf7-list-item-label {
    font-weight: 400;
}
.wpcf7 input.wpcf7-submit {
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05rem;
    height: 85px;
    color: var(--color-text);
    border: 1px solid !important;
    background: none;
    transition: all .5s;
    font-family: var(--font-main);
}
.wpcf7 input.wpcf7-submit:hover {
    color: var(--color-white);
    background: var(--color-main);
    border-color: var(--color-main) !important;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
    box-shadow: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border: none;
    background: var(--color-not);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    padding: 15px 20px;
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
        margin-top: 0;
    }
}
/* お問い合わせフォーム END */
/* ブログ記事の画像 */
.single .post-content img {
    width: auto;
}
/* ブログ記事の画像 END */
/* youtube 動画比率 */
.youtube-screen {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}
.youtube-screen iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
/* youtube 動画比率 END */

/* == 260505 マイクロドローン == */
.micro_sec .content-wrap + .content-wrap {
    margin-top: 80px;
}
@media (max-width: 768px) {
    .micro_sec .content-wrap + .content-wrap {
        margin-top: 50px;
    }
}
.micro_sec .howto {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(241, 143, 13, 0.1);
}
@media (max-width: 768px) {
    .micro_sec .howto {
        padding: 20px;
    }
}
.micro_sec .howto p {
    text-align: left;
}
.micro_sec .point {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
    gap: 10px;
    justify-content: center;
}
.micro_sec .point li {
    padding: 5px 10px;
    font-weight: 600;
    color: #fff;
    background: #f18f0d;
}
@media (max-width: 768px) {
    .micro_sec .point li {
        width: 100%;
    }
}
.micro_sec .point i {
    display: inline-block;
    margin-right: 0.5em;
}
@media (min-width: 769px) {
    .micro_sec .lead {
        text-align: center;
    }
}
.micro_sec .strengths-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    counter-reset: num;
}
.micro_sec .strengths {
    display: flex;
    flex-direction: column;
    width: calc((100% - 40px) / 3);
    padding: 20px;
    border: 1px solid #f18f0d;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .micro_sec .strengths {
        width: 100%;
    }
}
.micro_sec .strengths h3 {
    display: flex;
    padding-left: 0;
}
.micro_sec .strengths h3:before {
    counter-increment: num;
    content: counter(num);
    position: inherit;
    display: inline-block;
    margin-right: 0.5em;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    color: #fff;
    border-radius: 100vmax;
    top: 0;
}
.micro_sec .strengths p {
    margin-bottom: 1em;
}
.micro_sec .result {
    margin-top: auto;
    margin-bottom: 0 !important;
    padding: 5px 1em;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    background: #f18f0d;
}
.micro_sec .recommend {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
}
.micro_sec .recommend li {
    width: 16.6666666667%;
    padding: 20px;
    text-align: center;
    border-left: 1px solid #f18f0d;
    border-top: 1px solid #f18f0d;
    border-bottom: 1px solid #f18f0d;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .micro_sec .recommend li {
        width: 33.3333333333%;
        padding: 10px 5px;
    }
}
.micro_sec .recommend li:last-of-type {
    border-right: 1px solid #f18f0d;
}
@media (max-width: 768px) {
    .micro_sec .recommend li:nth-of-type(-n+3) {
        border-bottom: none;
    }
}
@media (max-width: 768px) {
    .micro_sec .recommend li:nth-of-type(3) {
        border-right: 1px solid #f18f0d;
    }
}
.micro_sec .recommend li p {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .micro_sec .recommend li p {
        font-size: 12px;
    }
}
.micro_sec .recommend li img {
    max-width: 100px;
    margin: 0 auto 15px;
}
@media (max-width: 768px) {
    .micro_sec .recommend li img {
        max-width: 50px;
    }
}
.micro_sec .recommend li .icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 100px);
    height: min(100%, 100px);
    margin: 0 auto 15px;
}
@media (max-width: 768px) {
    .micro_sec .recommend li .icon-text {
        max-width: 50px;
        max-height: 50px;
    }
}
.micro_sec .recommend li .icon-text p {
    font-size: 1.5em;
    font-weight: 600;
    color: #f18f0d;
}
@media (max-width: 768px) {
    .micro_sec .recommend li .icon-text p {
        font-size: 1.1em;
    }
}
.micro_sec .comparison {
    margin-bottom: 20px;
    border-collapse: collapse;
}
.micro_sec .comparison thead {
    color: #fff;
    background: #f18f0d;
}
.micro_sec .comparison th {
    font-weight: 600;
}
.micro_sec .comparison th, .micro_sec .comparison td {
    text-align: center;
    border: 1px solid #efbd7b;
}
@media (max-width: 768px) {
    .micro_sec .comparison th, .micro_sec .comparison td {
        display: table-cell;
        padding: 15px 5px;
        width: 33.3333333333% !important;
        font-size: 14px;
    }
}
.micro_sec .comparison tbody th {
    background: rgba(241, 143, 13, 0.1);
}
.micro_sec .label {
    display: inline-block;
    padding-inline: 5px;
    margin-right: 10px;
    font-weight: 600;
    color: #fff;
    background: #f18f0d;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .micro_sec .label {
        display: block;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.micro_sec .list-area p {
    margin-bottom: 0;
}
.micro_sec .list-area ul {
    margin: 0;
    list-style: none;
}
.micro_sec .list-area ul li {
    position: relative;
    padding-left: 1.3em;
    font-weight: 600;
}
.micro_sec .list-area ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    display: inline-block;
    font-weight: 600;
    color: #f18f0d;
    position: absolute;
    left: 0;
}
.micro_sec .flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 50px;
}
.micro_sec .flex-item:has(img) {
    max-width: 300px;
}
.micro_sec .price {
    max-width: 600px;
    margin: 0 auto 20px;
    border: 1px solid #f18f0d;
}
.micro_sec .price th {
    width: 50%;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: #f18f0d;
    border-bottom: none;
}
@media (max-width: 768px) {
    .micro_sec .price th {
        padding: 15px;
    }
}
.micro_sec .price td {
    width: 50%;
    text-align: center;
    border-bottom: none;
}
.micro_sec .caution {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    list-style: none;
}
@media (max-width: 768px) {
    .micro_sec .caution {
        margin: 0;
    }
}
.micro_sec .caution li:before {
    content: "※";
    display: inline-block;
    margin-right: 0.5em;
    color: #f18f0d;
}
.micro_sec .contact-btn {
    display: block;
    max-width: 400px;
    margin-inline: auto;
    padding-block: 25px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    background: #f18f0d;
    transition: opacity 0.3s;
}
@media (any-hover: hover) {
    .micro_sec .contact-btn:hover {
        opacity: 0.8;
    }
}
.micro_sec .youtube {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    margin-inline: auto;
}
@media (max-width: 768px) {
    .micro_sec .sc-tbl {
        overflow-x: auto;
        display: block;
    }
}
@media (min-width: 769px) {
    .sp-br {
        display: none;
    }
}

/* == 260508 ブログテンプレ == */
.blog-temple {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid var(--color-border);
}
.blog-temple p {
    text-align: center;
}
.blog-temple .flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
}
.blog-temple .flex-wrap div:has(.link-btn) {
    width: min(100%, 300px);
    box-sizing: border-box;
}
@media (max-width: 575px) {
    .blog-temple .flex-wrap div:has(.link-btn) {
        width: min(100%, 100%);
    }
}
.blog-temple .link-btn {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.3s;
}
@media (any-hover: hover) {
    .blog-temple .link-btn:hover {
        opacity: 0.8;
        color: #fff;
    }
}
.blog-temple .link-btn:after {
    font-family: design_plus;
}
.blog-temple .link-btn.contact {
    background: #f18f0d;
}
.blog-temple .link-btn.contact:after {
    content: "\f0e0";
    scale: 1.2;
}
.blog-temple .link-btn.line {
    background: var(--color-line);
}
.blog-temple .link-btn.line:after {
    content: "\e909";
    font-weight: 400;
    scale: 1.4;
}

/* == 260517 == */
.mail_sec .content_inner {
    padding-bottom: 0;
}
.con-voice_sec .content_inner {
    padding: 0;
}
.voice_sec .review-btn {
    display: block;
    max-width: 400px;
    margin: 50px auto 0;
    padding: 25px;
    font-weight: 600;
    text-align: center;
    color: var(--color-white);
    background: var(--color-main);
    box-sizing: border-box;
    transition: opacity 0.3s;
}
@media (any-hover: hover) {
    .voice_sec .review-btn:hover {
        opacity: 0.8;
        color: var(--color-white);
    }
}

/* == 260522 料金プラン == */
.price_sec .content-wrap + .content-wrap {
    margin-top: 80px;
}
@media (max-width: 768px) {
    .price_sec .content-wrap + .content-wrap {
        margin-top: 50px;
    }
}
.price_sec .content-wrap p, .price_sec .content-wrap h2, .price_sec .content-wrap h3 {
    margin-bottom: 0;
}
@media (min-width: 769px) {
    .price_sec .lead-txt {
        text-align: center;
    }
}
.price_sec .price-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    margin-top: 50px;
}
.price_sec .price-box {
    position: relative;
    width: calc((100% - 40px) / 3);
    border: 1px solid var(--color-main);
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .price_sec .price-box {
        width: 100%;
    }
}
.price_sec .price-box .detail {
    padding: 30px 20px;
}
.price_sec .price-box ul {
    margin: 20px 0;
    list-style: none;
}
.price_sec .price-box li {
    position: relative;
    padding-left: 1.5em;
}
.price_sec .price-box li:before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    display: inline-block;
    font-weight: 600;
    color: var(--color-main);
    position: absolute;
    left: 0;
}
.price_sec hgroup {
    padding: 25px 0 15px;
    background: rgba(241, 143, 13, 0.1);
}
.price_sec hgroup p {
    display: inline-block;
    width: 65%;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: var(--color-main);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}
@media (max-width: 768px) {
    .price_sec hgroup p {
        width: 80%;
    }
}
.price_sec h2 {
    font-weight: 800;
    color: var(--color-main);
}
.price_sec h2:after {
    content: none;
}
.price_sec h2 span {
    font-size: 12px;
}
.price_sec p.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 900;
    margin-top: 0;
}
.price_sec p.price:before {
    content: "料金";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--color-main);
    border-radius: 100vmax;
}
.price_sec p.price small {
    font-size: 14px;
}
.price_sec p.price + p {
    font-size: 14px;
    color: var(--color-main);
}
.price_sec .point {
    position: relative;
    padding: 10px;
    background: rgba(241, 143, 13, 0.1);
}
.price_sec .point b {
    color: var(--color-main);
    font-size: 0.9rem;
}
.price_sec .point p {
    font-size: 12px;
}
.price_sec .data {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: var(--color-main);
}
.price_sec .plan-content {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 30px;
    border: 1px solid var(--color-main);
}
.price_sec .plan-content li {
    width: 20%;
    padding: 20px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .price_sec .plan-content li {
        width: 100%;
        display: flex;
        gap: 10px;
        border-bottom: 1px solid var(--color-main);
    }
}
@media (min-width: 769px) {
    .price_sec .plan-content li + li {
        border-left: 1px solid var(--color-main);
    }
}
.price_sec .plan-content li:nth-of-type(-n+5) {
    border-bottom: 1px solid var(--color-main);
}
.price_sec .plan-content li:nth-of-type(6) {
    border-left: none;
}
@media (max-width: 768px) {
    .price_sec .plan-content li:last-of-type {
        border-bottom: none;
    }
}
.price_sec .plan-content img {
    display: block;
    width: 60%;
    margin: 0 auto 15px;
}
@media (max-width: 768px) {
    .price_sec .plan-content img {
        width: calc((100% - 10px) * 0.25);
        -o-object-fit: contain;
        object-fit: contain;
        margin: 0;
    }
}
.price_sec .option-tbl {
    margin: 30px 0 15px;
}
.price_sec .option-tbl th {
    width: 30%;
    font-weight: 600;
    color: var(--color-main);
}

/* ======================================================================
   FRONT PAGE REDESIGN  ―  白 × 黒 × 青 / Drone (.tk-front)
====================================================================== */
.tk-front {
    --tk-pad: clamp(60px, 8.5vw, 130px);
    --tk-radius: 14px;
    --tk-line: rgba(13, 27, 42, 0.10);
    overflow: hidden;
}
.tk-front .tk-inner {
    width: 88%;
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}
.tk-front p {
    font-size: 0.92rem;
    line-height: 2.1;
    color: var(--color-text);
}

/* ---- 共通セクション見出し ---- */
.tk-sec-num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: .18rem;
    color: var(--color-main);
}
.tk-sec-num::after {
    content: '';
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue), rgba(35,120,230,0));
}
.tk-sec-en {
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: .04em;
    color: var(--color-ink);
    margin: 14px 0 8px;
}
.tk-sec-jp {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--color-main);
}
.tk-sec-head--center {
    text-align: center;
    margin-bottom: clamp(38px, 5vw, 64px);
}
.tk-sec-head--center .tk-sec-num {
    justify-content: center;
}
.tk-sec-head--center .tk-sec-num::before {
    content: '';
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, rgba(35,120,230,0), var(--color-blue));
}

/* ---- 共通 MORE ボタン ---- */
.tk-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-bottom: 6px;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: .12em;
    color: var(--color-ink);
}
.tk-more::before { content: 'MORE'; }
.tk-more span {
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--color-text);
}
.tk-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-border);
    transition: background .4s ease;
}
.tk-card:hover .tk-more::after { background: var(--color-main); }
.tk-more span::after {
    content: '\2192';
    margin-left: 8px;
    color: var(--color-main);
    transition: transform .4s ease;
    display: inline-block;
}
.tk-card:hover .tk-more span::after { transform: translateX(6px); }

/* ====================== CONCEPT ====================== */
.tk-concept {
    position: relative;
    padding: var(--tk-pad) 0;
    background: var(--color-white);
}
.tk-concept__bg {
    position: absolute;
    top: 4%;
    right: -2%;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(7rem, 20vw, 20rem);
    line-height: 1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 95, 180, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.tk-concept__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
}
.tk-concept__tag {
    display: block;
    margin-top: 22px;
    font-family: var(--font-eng);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--color-border);
}
.tk-concept__title {
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .03em;
    color: var(--color-ink);
    padding-left: 22px;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-main);
}
.tk-concept__text p { margin-bottom: 1.4em; }
.tk-concept__text p:last-child { margin-bottom: 0; }

/* ====================== OUR ABOUT ====================== */
.tk-about {
    padding: var(--tk-pad) 0;
    background: linear-gradient(180deg, var(--color-blue-pale) 0%, #ffffff 100%);
}
.tk-about__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 34px);
}
.tk-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--tk-radius);
    overflow: hidden;
    box-shadow: 0 18px 40px -28px rgba(10, 27, 61, 0.45);
    transition: transform .45s ease, box-shadow .45s ease;
    display: flex;
    flex-direction: column;
}
.tk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px -28px rgba(10, 27, 61, 0.55);
}
.tk-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.tk-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.tk-card:hover .tk-card__media img { transform: scale(1.07); }
.tk-card__label {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 18px 9px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--color-white);
    background: rgba(10, 27, 61, 0.82);
    backdrop-filter: blur(2px);
    border-top-right-radius: 10px;
}
.tk-card__label em {
    display: block;
    font-family: var(--font-eng);
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--color-blue);
    line-height: 1.2;
}
.tk-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 26px 30px;
}
.tk-card__title {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--color-ink);
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 16px;
}
.tk-card__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    background: var(--color-main);
}
.tk-card__text {
    font-size: 0.84rem !important;
    line-height: 2 !important;
    color: var(--color-text);
}
.tk-card .tk-more { margin-top: auto; padding-top: 18px; }

/* ====================== PARTNER ====================== */
.tk-partner {
    position: relative;
    padding: var(--tk-pad) 0;
    background: radial-gradient(120% 120% at 80% 0%, #123163 0%, var(--color-navy) 55%, #060f24 100%);
    overflow: hidden;
}
.tk-partner::before {
    content: 'PARTNER';
    position: absolute;
    bottom: -3%;
    left: -1%;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(6rem, 16vw, 16rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
}
.tk-partner__inner {
    position: relative;
    z-index: 1;
    width: 88%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.tk-partner__media {
    position: relative;
    border-radius: var(--tk-radius);
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}
.tk-partner__media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--tk-radius);
}
.tk-partner__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tk-partner__panel {
    position: relative;
    margin-left: -10%;
    padding: clamp(34px, 4vw, 56px);
    background: rgba(255,255,255,0.97);
    border-radius: var(--tk-radius);
    box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.tk-partner__panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 64px;
    background: linear-gradient(180deg, var(--color-blue), var(--color-blue-deep));
    border-radius: 0 0 6px 0;
}
.tk-partner__en {
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: .2em;
    color: var(--color-main);
}
.tk-partner__title {
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-ink);
    margin: 12px 0 24px;
}
.tk-partner__panel p { margin-bottom: 1.2em; }
.tk-partner__panel p:last-child { margin-bottom: 0; font-weight: 600; color: var(--color-main); }

/* ====================== OUR FEATURE ====================== */
.tk-feature {
    padding: var(--tk-pad) 0;
    background: var(--color-white);
}
.tk-feature__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(28px, 4.5vw, 76px);
    margin-bottom: clamp(46px, 6vw, 90px);
}
.tk-feature__row:last-child { margin-bottom: 0; }
.tk-feature__row:nth-child(even) .tk-feature__text { order: 2; }
.tk-feature__num {
    display: block;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(3.6rem, 7vw, 5.6rem);
    line-height: .9;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-main);
    margin-bottom: 6px;
}
.tk-feature__title {
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--color-ink);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--tk-line);
}
.tk-feature__img {
    position: relative;
    border-radius: var(--tk-radius);
    overflow: hidden;
    box-shadow: 0 26px 50px -30px rgba(10, 27, 61, 0.5);
}
.tk-feature__img::before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0; right: 0;
    border-width: 0 0 56px 56px;
    border-style: solid;
    border-color: transparent transparent var(--color-main) transparent;
    opacity: .9;
}
.tk-feature__img img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.tk-feature__row:hover .tk-feature__img img { transform: scale(1.05); }

/* ====================== TOPICS ====================== */
.tk-topics {
    padding: var(--tk-pad) 0;
    background: var(--color-blue-pale);
}
.tk-topics .headline-primary { display: none; }
.tk-topics #index-news,
.tk-topics #index-blog { width: 100%; }
.tk-topics #index-blog { margin-top: 46px; }
.tk-topics .top-news,
.tk-topics .top-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 28px);
    margin: 0;
}
.tk-topics .top-news { grid-template-columns: 1fr; gap: 0; max-width: 880px; margin: 0 auto; }
.tk-topics .article02 {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 26px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 22px 6px;
    background: none;
    border-bottom: 1px solid var(--tk-line);
}
.tk-topics .article02:first-child { border-top: 1px solid var(--tk-line); }
.tk-topics .article02-thumbnail {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}
.tk-topics .article02-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.tk-topics .article02-content { padding: 0; }
.tk-topics .article02-date {
    display: inline-block;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: .08em;
    color: var(--color-main);
    margin-bottom: 8px;
}
.tk-topics .article02-title { font-size: 1.02rem; line-height: 1.6; margin-bottom: 6px; }
.tk-topics .article02-title a { color: var(--color-ink); }
.tk-topics .article02-title a:hover { color: var(--color-main); }
.tk-topics .article02-text { font-size: 0.82rem; line-height: 1.9; color: var(--color-text); }

.tk-topics .top-blog { max-width: 1180px; }
.tk-topics .article03 {
    width: 100%;
    margin: 0;
    background: var(--color-white);
    border-radius: var(--tk-radius);
    overflow: hidden;
    box-shadow: 0 18px 40px -30px rgba(10, 27, 61, 0.4);
    transition: transform .4s ease, box-shadow .4s ease;
}
.tk-topics .article03:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -28px rgba(10, 27, 61, 0.5);
}
.tk-topics .article03-thumbnail { aspect-ratio: 3 / 2; overflow: hidden; }
.tk-topics .article03-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.tk-topics .article03-content { padding: 20px 20px 24px; }
.tk-topics .article03-title { font-size: 1rem; line-height: 1.6; color: var(--color-ink); margin-bottom: 10px; }
.tk-topics .article03-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tk-topics .article03-date {
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: .06em;
    color: var(--color-main);
}
.tk-topics .article03-category { font-size: 0.72rem; color: var(--color-text); }
.tk-topics .button { text-align: center; margin-top: 44px; }
.tk-topics .button a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .1em;
    color: var(--color-white);
    background: linear-gradient(120deg, var(--color-blue), var(--color-blue-deep));
    border-radius: 50px;
    box-shadow: 0 16px 30px -16px rgba(26, 95, 180, 0.8);
    transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
}
.tk-topics .button a:hover { transform: translateY(-3px); box-shadow: 0 22px 36px -16px rgba(26, 95, 180, 0.9); opacity: .96; }

/* ====================== FV / ファーストビュー ====================== */
.tk-fv {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    min-height: 560px;
    overflow: hidden;
    background: var(--color-navy);
    z-index: 0;
}
.header-bar-fixed ~ .tk-fv { margin-top: 100px; }
@media only screen and (max-width: 1200px){
    .header-bar-fixed ~ .tk-fv{
        margin-top: 56px;
    }
}
.admin-bar .header-bar-fixed ~ .tk-fv { margin-top: 68px; }
.tk-fv__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: 50% 50%;
    transform: scale(1.05);
    animation: tkFvZoom 16s ease-in-out 0s infinite alternate;
    will-change: transform;
}
.tk-fv__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(7,18,40,.88) 0%, rgba(7,18,40,.58) 36%, rgba(7,18,40,.12) 68%, rgba(7,18,40,.30) 100%),
        linear-gradient(180deg, rgba(7,18,40,.45) 0%, rgba(7,18,40,0) 22%, rgba(7,18,40,0) 58%, rgba(7,18,40,.60) 100%);
}
.tk-fv__word {
    position: absolute;
    right: 1.5%;
    bottom: -5%;
    z-index: 1;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(9rem, 27vw, 27rem);
    line-height: .8;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.09);
    pointer-events: none;
    user-select: none;
    opacity: 0;
    animation: tkFvWord 1.7s cubic-bezier(.22,1,.36,1) forwards .25s;
}
.tk-fv__inner {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 13%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 1180px;
    color: #fff;
    box-sizing: border-box;
}
.tk-fv__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(255,255,255,.92);
    margin-bottom: 22px;
    opacity: 0;
    animation: tkFvRise .9s ease forwards .2s;
}
.tk-fv__eyebrow span {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .18em;
    color: #fff;
}
.tk-fv__eyebrow span::after {
    content: '';
    width: 46px;
    height: 2px;
    margin: 0 16px 0 14px;
    background: var(--color-blue);
    transform-origin: left center;
    animation: tkLineExpand 1s ease forwards .35s;
    transform: scaleX(0);
}
.tk-fv__copy {
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-weight: 900;
    font-size: clamp(2.5rem, 6.6vw, 5.6rem);
    line-height: 1.12;
    letter-spacing: .04em;
    text-shadow: 0 6px 36px rgba(0,0,0,.35);
    margin-bottom: 26px;
}
.tk-fv__line {
    display: block;
    overflow: hidden;
    padding-bottom: .04em;
}
.tk-fv__line > span {
    display: block;
    transform: translateY(112%);
    animation: tkFvLine 1.05s cubic-bezier(.22,1,.36,1) forwards;
}
.tk-fv__line:nth-child(1) > span { animation-delay: .35s; }
.tk-fv__line:nth-child(2) > span { animation-delay: .55s; }
.tk-fv__copy b { font-weight: 900; color: #5ea8f0; }
.tk-fv__triad {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-weight: 700;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    letter-spacing: .2em;
    margin-bottom: 22px;
    opacity: 0;
    animation: tkFvRise .9s ease forwards .95s;
}
.tk-fv__triad em { font-style: normal; }
.tk-fv__triad i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-blue);
}
.tk-fv__lead {
    max-width: 560px;
    font-size: 0.92rem !important;
    line-height: 2 !important;
    color: rgba(255,255,255,.9);
    opacity: 0;
    animation: tkFvRise 1s ease forwards 1.1s;
}
.tk-fv__scroll {
    position: absolute;
    z-index: 3;
    right: 4.5%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.85);
    opacity: 0;
    animation: tkFvRise 1s ease forwards 1.3s;
}
.tk-fv__scroll span {
    font-family: var(--font-eng);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: .22em;
    writing-mode: vertical-rl;
}
.tk-fv__scroll::after {
    content: '';
    width: 1px;
    height: 66px;
    background: rgba(255,255,255,.30);
    position: relative;
}
.tk-fv__scroll::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 66px;
    background: var(--color-blue);
    transform: scaleY(0);
    transform-origin: top;
    animation: tkScroll 2.2s ease-in-out 1.6s infinite;
}
@keyframes tkFvZoom { from { transform: scale(1.05); } to { transform: scale(1.2); } }
@keyframes tkFvWord { from { opacity: 0; transform: translateX(48px); } to { opacity: 1; transform: translateX(0); } }
@keyframes tkFvRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tkFvLine { to { transform: translateY(0); } }
@keyframes tkLineExpand { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes tkScroll {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (prefers-reduced-motion: reduce) {
    .tk-fv__media,
    .tk-fv__word,
    .tk-fv__eyebrow,
    .tk-fv__eyebrow span::after,
    .tk-fv__line > span,
    .tk-fv__triad,
    .tk-fv__lead,
    .tk-fv__scroll,
    .tk-fv__scroll::before {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ====================== レスポンシブ ====================== */
@media only screen and (max-width: 1000px) {
    .tk-concept__grid { grid-template-columns: 1fr; gap: 26px; }
    .tk-about__list { grid-template-columns: 1fr 1fr; }
    .tk-partner__inner { grid-template-columns: 1fr; }
    .tk-partner__media { max-width: 92%; }
    .tk-partner__panel { margin-left: auto; margin-top: -42px; width: 92%; margin-right: 0; }
    .tk-topics .top-blog { grid-template-columns: 1fr 1fr; }
}
@media only screen and (max-width: 768px) {
    .tk-fv { height: calc(100svw*9/16); min-height: 0; }
    .tk-fv__inner { bottom: 12%; }
    .tk-fv__eyebrow { font-size: 0.74rem; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
    .tk-fv__eyebrow span { font-size: 0.8rem; display: none;}
    .tk-fv__eyebrow span::after { width: 30px; margin: 0 10px; }
    .tk-fv__copy { margin-bottom: 18px; }
    .tk-fv__triad { gap: 12px; margin-bottom: 16px; display: none;}
    .tk-fv__lead { font-size: 0.84rem !important; line-height: 1.9 !important; display: none;}
    .tk-fv__scroll { right: 5%; }
    .tk-front .tk-inner { width: 90%; }
    .tk-sec-en { margin-top: 10px; }
    .tk-about__list { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .tk-concept__title { padding-left: 16px; border-left-width: 3px; margin-bottom: 22px; }
    .tk-feature__row { grid-template-columns: 1fr; gap: 22px; }
    .tk-feature__img { order: 1; }
    .tk-feature__text,
    .tk-feature__row:nth-child(even) .tk-feature__text { order: 2; }
    .tk-feature__num { font-size: 3.4rem; -webkit-text-stroke-width: 1.5px; }
    .tk-partner__media, .tk-partner__panel { width: 100%; max-width: none; }
    .tk-partner__panel { margin-top: -30px; }
    .tk-topics .top-blog { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .tk-topics .article02 { grid-template-columns: 110px 1fr; gap: 16px; padding: 18px 2px; }
    .tk-topics .article02-text { display: none; }
}
@media only screen and (max-width: 500px) {
    .tk-card__body { padding: 22px 20px 24px; }
    .tk-topics .article02 { grid-template-columns: 92px 1fr; gap: 14px; }
    .tk-topics .article02-title { font-size: 0.95rem; }
}
/* ===== FRONT PAGE REDESIGN END ===== */

/* ======================================================================
   FOOTER  ―  トンマナ統一（白 × 黒 × 青 / navy）
====================================================================== */
.footer { background: var(--color-navy); }

/* ---- CONTACT ---- */
.footer_contact_sec {
    position: relative;
    padding: clamp(64px, 8vw, 120px) 0;
    color: #fff;
    background: radial-gradient(125% 130% at 80% 0%, #123163 0%, var(--color-navy) 55%, #060f24 100%);
    overflow: hidden;
    z-index: 0;
}
.footer_contact_sec::after {
    opacity: .14;
    mix-blend-mode: luminosity;
}
.footer_contact_inner {
    position: relative;
    z-index: 1;
    width: 88%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}
.footer_contact_inner::after {
    content: 'CONTACT';
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(7rem, 18vw, 18rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}
h2.front-main-title.footer-con-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: .04em;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}
h2.front-main-title.footer-con-title::before {
    content: '';
    display: block;
    width: 46px;
    height: 2px;
    margin: 0 auto 24px;
    background: var(--color-blue);
}
h2.front-main-title.footer-con-title::after {
    content: 'お問い合わせ';
    display: block;
    margin-top: 14px;
    font-family: var(--font-main);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: rgba(255,255,255,.8);
}
p.footer-con-time {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 30px;
    font-size: .9rem;
    color: rgba(255,255,255,.85);
}
p.footer-con-time span {
    display: inline-block;
    margin-right: 12px;
    padding: 3px 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50px;
}
ul.footer_sns__links {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 18px;
    width: 100%;
    max-width: 540px;
    margin: 38px auto 0;
}
li.footer_sns__links-item {
    flex: 1;
    width: auto;
    max-width: 250px;
    margin: 0 !important;
}
/* ボタンが1つだけのとき（LINE非表示時）は中央に配置 */
li.footer_sns__links-item:only-child {
    flex: 0 1 auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto !important;
}
a.footer_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 62px;
    border-radius: 50px;
    background: #fff;
    color: var(--color-navy);
    box-shadow: 0 16px 30px -16px rgba(0,0,0,.5);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
}
a.footer_sns span {
    margin-top: 0;
    font-family: var(--font-eng);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .12em;
}
a.footer_sns::before {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: none !important;
    font-size: 20px;
    line-height: 1;
}
a.footer_mail_but::before { color: var(--color-main); }
a.footer_line_but::before { color: var(--color-line); }
a.footer_sns:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px -16px rgba(0,0,0,.6);
}
a.footer_mail_but:hover { background: var(--color-main); color: #fff; }
a.footer_mail_but:hover::before { color: #fff; }
a.footer_line_but:hover { background: var(--color-line); color: #fff; }
a.footer_line_but:hover::before { color: #fff; }

/* ---- 会社情報 + メニュー ---- */
.footer_original_sec {
    padding: clamp(48px, 5vw, 74px) 0 clamp(34px, 4vw, 50px);
    background: var(--color-navy);
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.85);
}
.footer_original_inner {
    width: 88%;
    max-width: 1180px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
}
h2.footer-logo-name {
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: .04em;
    color: #fff;
    margin-bottom: 16px;
}
h2.footer-logo-name::after {
    content: 'DRONE SERVICE — MATSUSAKA, MIE';
    display: block;
    margin-top: 10px;
    font-family: var(--font-eng);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .14em;
    color: var(--color-blue);
}
dl.address_body { color: rgba(255,255,255,.82); }
dt.address_title { color: var(--color-blue); font-weight: 700; }
.footer-menu-list li a {
    position: relative;
    padding-left: 16px;
    color: rgba(255,255,255,.82);
}
.footer-menu-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--color-blue);
}
.footer-menu-list li a:hover { color: #fff; }

/* ---- コピーライト + PAGE TOP ---- */
.footer-bar01 {
    padding: 18px 0;
    background: #07122a;
    border-top: 1px solid rgba(255,255,255,.08);
}
.copyright {
    color: rgba(255,255,255,.55);
    font-family: var(--font-eng);
    letter-spacing: .05em;
}
.pagetop a { color: #fff; }
.pagetop a::after { background: var(--color-blue); }
.pagetop a:hover { color: var(--color-blue); }

@media only screen and (max-width: 970px) {
    .footer_address_bg, .footer_menu_bg { width: 100%; }
    .footer_menu_bg { max-width: none; margin-top: 36px; padding-left: 0; }
}
@media only screen and (max-width: 768px) {
    .footer_contact_sec { padding: clamp(48px, 12vw, 70px) 0; }
    ul.footer_sns__links { flex-direction: column; gap: 12px; max-width: 320px; }
    li.footer_sns__links-item { max-width: none; width: 100%; }
    a.footer_sns { height: 56px; }
    .footer_contact_inner::after { font-size: clamp(5rem, 26vw, 9rem); }
    h2.footer-logo-name { font-size: 1.3rem; }
}
/* ===== FOOTER トンマナ END ===== */

/* ======================================================================
   FAQ（よくあるご質問）― トップページにトンマナ統一
====================================================================== */
.faq_sec {
    position: relative;
    background: linear-gradient(180deg, var(--color-blue-pale) 0%, #ffffff 100%);
    overflow: hidden;
    z-index: 0;
}
.faq_sec::before {
    content: 'FAQ';
    position: absolute;
    top: 1.5%;
    right: -3%;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(6rem, 17vw, 16rem);
    line-height: 1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 95, 180, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.faq_sec .content_inner {
    position: relative;
    z-index: 1;
    width: 88%;
    max-width: 920px;
    padding: clamp(60px, 8vw, 110px) 0;
}
.faq_sec .faq {
    position: relative;
    background: #fff;
    border: 1px solid rgba(13, 27, 42, .07);
    border-radius: 14px;
    box-shadow: 0 16px 38px -28px rgba(10, 27, 61, .45);
    margin-bottom: 18px;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}
.faq_sec .faq:last-child { margin-bottom: 0; }
.faq_sec .faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 48px -28px rgba(10, 27, 61, .5);
}
.faq_sec .faq h2 {
    position: relative;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: .02em;
    color: var(--color-ink);
    text-align: left;
    margin: 0;
    padding: 26px 30px 26px 76px;
}
.faq_sec .faq h2::after { content: none !important; }
.faq_sec .faq h2::before {
    content: 'Q';
    position: absolute;
    left: 26px;
    top: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-deep));
    border-radius: 9px;
    box-shadow: 0 8px 16px -8px rgba(26, 95, 180, .8);
}
.faq_sec .answer {
    position: relative;
    margin: 0;
    padding: 24px 30px 28px 76px;
    font-size: 0.9rem !important;
    line-height: 2 !important;
    color: var(--color-text);
    background: #fafbfe;
    border-top: 1px solid rgba(13, 27, 42, .08);
}
.faq_sec .answer::before {
    content: 'A';
    position: absolute;
    left: 26px;
    top: 22px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--color-blue);
    background: var(--color-blue-pale);
    border: 1px solid rgba(35, 120, 230, .28);
    border-radius: 9px;
}
.faq_sec a.content_but.faq_con_but {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    max-width: none;
    height: auto;
    margin-top: 16px;
    padding: 11px 26px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    border-radius: 50px;
    text-align: left;
}
.faq_sec a.content_but.faq_con_but::after {
    position: static;
    right: auto;
    margin-left: 2px;
    line-height: 1;
}
.faq_sec a.content_but.faq_con_but:hover {
    color: #fff;
    background: var(--color-main);
    border-color: var(--color-main);
}
@media only screen and (max-width: 768px) {
    .faq_sec::before { font-size: clamp(4.5rem, 26vw, 9rem); }
    .faq_sec .faq h2 {
        font-size: 0.98rem;
        padding: 20px 20px 20px 62px;
    }
    .faq_sec .faq h2::before,
    .faq_sec .answer::before {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
        left: 18px;
    }
    .faq_sec .faq h2::before { top: 18px; }
    .faq_sec .answer {
        padding: 20px 20px 22px 62px;
        font-size: 0.86rem !important;
    }
    .faq_sec .answer::before { top: 18px; }
}
/* ===== FAQ END ===== */

/* ======================================================================
   PRICE / CHEMICAL（料金・対応薬剤）― トップページにトンマナ統一
====================================================================== */
.tk-price, .tk-chem { position: relative; overflow: hidden; z-index: 0; }
/* 細い英字ストロークのウォーターマーク（他ページと統一） */
.tk-price::before,
.tk-chem::before {
    position: absolute;
    top: 1.5%;
    right: -3%;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(6rem, 17vw, 16rem);
    line-height: 1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 95, 180, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.tk-price::before { content: 'PRICE'; }
.tk-chem::before { content: 'CHEMICAL'; }
/* テーマ .post-content h2::after（中央の縦棒）が見出しに出るのを打ち消す */
.tk-price .tk-sec-en::after,
.tk-chem .tk-sec-en::after { content: none !important; }
/* このページは日本語を主役に：英字を小さなエンブレム、和文を大見出しに */
.tk-price .tk-sec-en,
.tk-chem .tk-sec-en {
    font-size: clamp(13px, 2.5vw, 15px) !important;
    letter-spacing: .14em;
    line-height: 1.4;
    color: var(--color-main);
    margin: 6px 0 6px;
}
.tk-price .tk-sec-jp,
.tk-chem .tk-sec-jp {
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-size: clamp(1.4rem, 2.8vw, 1.95rem);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: .04em;
    color: var(--color-ink);
}
.tk-price .tk-sec-head--center,
.tk-chem .tk-sec-head--center { margin-bottom: clamp(34px, 4.5vw, 58px); }
.tk-price { background: #fff; }
.tk-chem { background: linear-gradient(180deg, var(--color-blue-pale) 0%, #ffffff 100%); }
.tk-price .content_inner,
.tk-chem .content_inner {
    position: relative;
    z-index: 1;
    width: 88%;
    max-width: 1080px;
    padding: clamp(60px, 8vw, 110px) 0;
}
.tk-price .content-wrap + .content-wrap,
.tk-chem .content-wrap + .content-wrap { margin-top: clamp(50px, 6vw, 90px); }

/* リード文 */
.tk-price .lead-txt,
.tk-chem .lead-txt {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.02rem !important;
    font-weight: 500;
    line-height: 2.1 !important;
    color: var(--color-ink);
}
.tk-price .lead-txt strong,
.tk-chem .lead-txt strong {
    color: var(--color-main);
    font-weight: 700;
    background: linear-gradient(transparent 62%, rgba(35,120,230,.18) 0);
}

/* セクション内・大見出し（共通）― 大きく・太く */
.tk-price .content-wrap > h2,
.tk-chem .category-title {
    position: relative;
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-size: clamp(1.4rem, 2.8vw, 1.95rem);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: .01em;
    color: var(--color-ink);
    text-align: left;
    padding-left: 26px;
    margin-bottom: 32px;
    border-left: none;
}
/* 太い縦グラデバー（テーマの h3::before 横棒・h2::after を打ち消して二重を解消） */
.tk-price .content-wrap > h2::before,
.tk-chem .category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.12em;
    width: 8px;
    height: 1.05em;
    background: linear-gradient(180deg, var(--color-blue), var(--color-blue-deep));
    border-radius: 4px;
}
.tk-price .content-wrap > h2::after,
.tk-chem .category-title::after { content: none !important; }
.tk-price .content-wrap > h2 span,
.tk-chem .category-title span {
    display: inline-block;
    margin-left: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--color-main);
}

/* 料金ハイライト（1反1,000円〜）― 価格部分のみネイビーカードで囲む */
.tk-price .price-highlight {
    margin-top: clamp(40px, 5vw, 64px);
    text-align: center;
}
/* キャッチコピー（囲みの外・本文色） */
.tk-price .price-highlight .ph-lead {
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: .02em;
    color: var(--color-ink);
    margin-bottom: clamp(22px, 3vw, 32px);
}
.tk-price .price-highlight .ph-lead span {
    color: var(--color-main);
    background: linear-gradient(transparent 60%, rgba(35,120,230,.18) 0);
}

/* ▼ 囲むのはここだけ（目安料金カード） */
.tk-price .price-highlight .ph-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: clamp(30px, 4vw, 46px) clamp(24px, 4vw, 52px);
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(125% 130% at 80% 0%, #123163 0%, var(--color-navy) 55%, #060f24 100%);
    box-shadow: 0 30px 60px -34px rgba(10, 27, 61, .65);
}
.tk-price .price-highlight .ph-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 16px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50px;
}
.tk-price .price-highlight .ph-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    line-height: 1;
    color: #fff;
}
.tk-price .price-highlight .ph-unit {
    font-size: clamp(.9rem, 1.8vw, 1.05rem);
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.tk-price .price-highlight .ph-num {
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(3.4rem, 9vw, 5.6rem);
    letter-spacing: .01em;
    color: var(--color-blue);
}
.tk-price .price-highlight .ph-yen {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
}
.tk-price .price-highlight .ph-compare {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: #fff;
}
.tk-price .price-highlight .ph-compare strong {
    color: var(--color-blue);
    font-size: 1.25em;
    font-weight: 900;
}

/* 注釈・認定バッジ（囲みの外） */
.tk-price .price-highlight .ph-note {
    margin-top: clamp(20px, 3vw, 28px);
    font-size: .82rem;
    line-height: 1.95;
    color: var(--color-text);
}
.tk-price .price-highlight .ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 22px;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--color-ink);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}
.tk-price .price-highlight .ph-badge i { color: var(--color-main); font-size: 1.05em; }

/* サービス概要パネル */
.tk-price .service-summary {
    position: relative;
    margin-top: 44px;
    padding: clamp(30px, 3.8vw, 52px);
    background: #fff;
    border: 1px solid rgba(13, 27, 42, .08);
    border-top: 5px solid var(--color-main);
    border-radius: 4px 4px 16px 16px;
    box-shadow: 0 24px 50px -30px rgba(10, 27, 61, .45);
}
.tk-price .service-summary h2 {
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-size: clamp(1.4rem, 2.8vw, 1.95rem);
    font-weight: 900;
    color: var(--color-ink);
    text-align: left;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 2px solid rgba(13, 27, 42, .1);
}
.tk-price .service-summary h2::after { content: none !important; }
.tk-price .service-summary > p { font-size: 0.95rem; line-height: 2; }
.tk-price .service-summary ul { margin-top: 20px; display: grid; gap: 14px; list-style: none; }
.tk-price .service-summary ul li {
    position: relative;
    padding-left: 26px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.9;
}
.tk-price .service-summary ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .62em;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-deep));
}
.tk-price .service-summary ul li strong { color: var(--color-main); font-weight: 700; }
.tk-price .service-summary .point {
    position: relative;
    margin-top: 26px;
    padding: 24px 26px;
    background: linear-gradient(120deg, var(--color-blue-pale), #dfeafb);
    border-radius: 12px;
    overflow: hidden;
}
.tk-price .service-summary .point p { font-size: 0.95rem; line-height: 1.95; }
.tk-price .service-summary .point b { color: var(--color-blue-deep); font-weight: 800; }

/* 電話CTA */
.tk-price .contact-cta-box {
    position: relative;
    text-align: center;
    margin-top: 44px;
    padding: clamp(34px, 4vw, 54px);
    background: radial-gradient(125% 130% at 80% 0%, #123163 0%, var(--color-navy) 55%, #060f24 100%);
    border-radius: 16px;
    color: #fff;
    overflow: hidden;
}
.tk-price .contact-cta-box h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.tk-price .contact-cta-box p { color: rgba(255,255,255,.85); font-size: 0.9rem; }
.tk-price .contact-cta-box .cta-tel {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(2rem, 4.4vw, 2.9rem);
    letter-spacing: .04em;
    color: #fff;
    line-height: 1.1;
}
.tk-price .contact-cta-box .cta-tel i { font-size: .7em; color: var(--color-blue); }
.tk-price .contact-cta-box .cta-note { margin-top: 8px; font-size: 0.82rem; color: rgba(255,255,255,.62); }

/* お見積りに含まれる基本対応（アイコングリッド） */
.tk-price .plan-content {
    counter-reset: incl;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 26px);
    margin-top: 38px;
    padding: 0;
    list-style: none;
}
.tk-price .plan-content li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin: 0;
    padding: 50px 22px 30px;
    background: #fff;
    border: 1px solid rgba(13, 27, 42, .08);
    border-radius: 16px;
    box-shadow: 0 18px 40px -30px rgba(10, 27, 61, .45);
    overflow: hidden;
}
/* 左上のコーナー連番バッジ（ホバーなし） */
.tk-price .plan-content li::before {
    counter-increment: incl;
    content: counter(incl, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    padding: 0 12px;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-deep));
    border-radius: 0 0 14px 0;
}
.tk-price .plan-content li img {
    width: 92px;
    height: 92px;
    margin: 0;
    object-fit: contain;
}
.tk-price .plan-content li p { font-size: 0.9rem; font-weight: 500; line-height: 1.85; color: var(--color-ink); }

/* テーブル共通（追加オプション・薬剤一覧） */
.tk-price .s_table,
.tk-chem .s_table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tk-price .option-tbl,
.tk-chem .chemical-tbl {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 36px -30px rgba(10, 27, 61, .4);
}
.tk-chem .chemical-tbl thead th {
    background: linear-gradient(120deg, var(--color-navy), #14306a);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: .05em;
    text-align: left;
    padding: 18px 20px;
}
.tk-price .option-tbl th,
.tk-price .option-tbl td,
.tk-chem .chemical-tbl th,
.tk-chem .chemical-tbl td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(13, 27, 42, .08);
    font-size: 0.92rem;
    line-height: 1.85;
    text-align: left;
    vertical-align: top;
}
.tk-chem .chemical-tbl tbody tr:nth-child(even) td,
.tk-chem .chemical-tbl tbody tr:nth-child(even) th { background: #f5f9ff; }
.tk-price .option-tbl tbody th,
.tk-chem .chemical-tbl tbody th {
    background: var(--color-blue-pale);
    color: var(--color-ink);
    font-weight: 700;
    font-size: 0.95rem;
}
.tk-price .option-tbl tbody th { width: 60%; }
.tk-price .option-tbl td { width: 40%; color: var(--color-main); font-weight: 700; white-space: nowrap; }
.tk-chem .chemical-tbl .type,
.tk-chem .chemical-tbl .target { color: var(--color-blue-deep); font-weight: 700; white-space: nowrap; }
.tk-chem .chemical-tbl td small { display: inline-block; margin-top: 2px; color: var(--color-text); font-size: 0.76rem; }
.tk-price .option-tbl tr:last-child th,
.tk-price .option-tbl tr:last-child td { border-bottom: 0; }
.tk-price .content-wrap > p,
.tk-chem .category-desc {
    margin-top: 16px;
    font-size: 0.86rem;
    line-height: 1.9;
    color: var(--color-text);
}
.tk-chem .category-desc { margin-top: 0; margin-bottom: 18px; }
/* タイトル直下の余白を詰める（CHEMICALのみ） */
.tk-chem .category-title { margin-bottom: 12px; }

/* 薬剤カテゴリー */
.tk-chem .sec-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 26px;
}
.tk-chem .chemical-category { margin-top: clamp(42px, 5vw, 72px); }

/* 注意事項ボックス */
.tk-chem .attention-box {
    margin-top: clamp(44px, 5vw, 70px);
    background: #fff;
    border: 1px solid rgba(13, 27, 42, .1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 36px -30px rgba(10, 27, 61, .4);
}
.tk-chem .attention-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 20px 28px;
    background: linear-gradient(120deg, var(--color-navy), #14306a);
    color: #fff;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: .02em;
}
.tk-chem .attention-title i { color: #ffc14d; font-size: 1.3rem; }
.tk-chem .attention-list { margin: 0; padding: 28px 30px; list-style: none; }
.tk-chem .attention-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.95;
    color: var(--color-ink);
}
.tk-chem .attention-list li:last-child { margin-bottom: 0; }
.tk-chem .attention-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .8em;
    width: 8px;
    height: 2px;
    background: var(--color-blue);
}
.tk-chem .attention-list li strong { color: var(--color-main); font-weight: 700; }

@media only screen and (max-width: 768px) {
    .tk-price::before,
    .tk-chem::before { font-size: clamp(4.5rem, 26vw, 9rem); }
    .tk-price .plan-content { grid-template-columns: 1fr 1fr; gap: 14px; }
    .tk-price .plan-content li { padding: 46px 14px 24px; gap: 12px; }
    .tk-price .plan-content li img { width: 74px; height: 74px; }
    .tk-price .plan-content li::before { min-width: 42px; height: 30px; font-size: 1.1rem; }
    .tk-price .contact-cta-box .cta-tel { font-size: 1.9rem; }

    /* 二重パディング回避：内側 .point は左右を狭く */
    .tk-price .service-summary { padding: 24px 18px; }
    .tk-price .service-summary .point { padding: 18px 16px; }

    /* リード文はスマホだけ左揃え */
    .tk-price .lead-txt,
    .tk-chem .lead-txt { text-align: left; }

    /* ▼ スマホは横スクロールをやめて縦積みに組み替え */
    .tk-price .s_table,
    .tk-chem .s_table { overflow-x: visible; }

    /* 追加オプション（2列）：ラベル帯＋値を縦に */
    .tk-price .option-tbl,
    .tk-price .option-tbl tbody,
    .tk-price .option-tbl tr,
    .tk-price .option-tbl th,
    .tk-price .option-tbl td {
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .tk-price .option-tbl tbody th {
        padding: 12px 18px;
        border-bottom: 0;
    }
    .tk-price .option-tbl td {
        padding: 11px 18px 15px;
        border-bottom: 1px solid rgba(13, 27, 42, .08);
    }
    .tk-price .option-tbl tr:last-child td { border-bottom: 0; }

    /* 薬剤一覧（3列）：行ごとにカード化。見出し帯＋項目ラベル付き */
    .tk-chem .chemical-tbl thead { display: none !important; }
    .tk-chem .chemical-tbl,
    .tk-chem .chemical-tbl tbody,
    .tk-chem .chemical-tbl tr,
    .tk-chem .chemical-tbl th,
    .tk-chem .chemical-tbl td {
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .tk-chem .chemical-tbl {
        background: none;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
        margin-top: 18px;
    }
    .tk-chem .chemical-tbl tr {
        margin-bottom: 14px;
        background: #fff;
        border: 1px solid rgba(13, 27, 42, .1);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 14px 30px -26px rgba(10, 27, 61, .4);
    }
    .tk-chem .chemical-tbl tbody th {
        background: var(--color-navy) !important;
        color: #fff !important;
        white-space: normal !important;
        padding: 13px 16px;
        font-size: 1rem;
    }
    .tk-chem .chemical-tbl td {
        background: #fff !important;
        padding: 13px 16px;
        border-bottom: 1px solid rgba(13, 27, 42, .07);
    }
    .tk-chem .chemical-tbl tr td:last-child { border-bottom: 0; }
    .tk-chem .chemical-tbl td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 3px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .04em;
        color: var(--color-main);
    }
}
@media only screen and (max-width: 480px) {
    .tk-price .plan-content { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
/* ===== PRICE / CHEMICAL END ===== */


/* ======================================================================
   CONTACT PAGE  ―  白 × 黒 × 青 / Drone (.contact-sec)
   TOPページとトンマナを合わせたお問い合わせページ
====================================================================== */
.contact-sec {
    position: relative;
    background: linear-gradient(180deg, var(--color-blue-pale) 0%, #ffffff 46%);
    overflow: hidden;
    z-index: 0;
}
.contact-sec::before {
    content: 'CONTACT';
    position: absolute;
    top: 1.5%;
    right: -3%;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(6rem, 18vw, 17rem);
    line-height: 1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 95, 180, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.contact-sec .content_inner {
    position: relative;
    z-index: 1;
    width: 88%;
    max-width: 1100px;
    padding: clamp(60px, 8vw, 110px) 0;
}

/* ---- 共通：カード内の見出し（英字エンブレム + 青バー + 和文） ---- */
.contact-sec .tel-box h2,
.contact-sec .mail-box h2,
.contact-sec .line-box h2 {
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
}
.contact-sec .tel-box h2::before,
.contact-sec .mail-box h2::before,
.contact-sec .line-box h2::before {
    display: block;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.contact-sec .tel-box h2::after,
.contact-sec .mail-box h2::after,
.contact-sec .line-box h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 2px;
    background: var(--color-blue);
    margin: 16px auto 0;
}
.contact-sec h2 {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    padding-top: 0;
}
.contact-sec h2::after { /* 既存 .post-content h2::after を無効化 */
    height: auto;
}

/* ====================== TEL（見出し・注意は枠外、番号〜時間だけネイビー枠） ====================== */
.contact-sec .tel-box {
    position: relative;
    text-align: center;
}
.contact-sec .tel-box h2 { color: var(--color-main); }
.contact-sec .tel-box h2::before {
    content: 'PHONE';
    color: var(--color-ink);
}
/* 電話番号＋OPEN時間だけを囲むネイビーカード */
.contact-sec .tel-card {
    width: 100%;
    max-width: 680px;
    margin: clamp(24px, 3.5vw, 34px) auto 0;
    padding: clamp(36px, 5vw, 52px) clamp(34px, 7vw, 80px);
    border-radius: 16px;
    color: #fff;
    background: radial-gradient(125% 130% at 80% 0%, #123163 0%, var(--color-navy) 55%, #060f24 100%);
    box-shadow: 0 30px 60px -34px rgba(10, 27, 61, .65);
    overflow: hidden;
    box-sizing: border-box;
}
.contact-sec .contact-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 0;
    font-family: var(--font-eng);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1;
    letter-spacing: .02em;
    white-space: nowrap;
    color: #fff;
}
.contact-sec .contact-tel span {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--color-blue);
}
.contact-sec .contact-time {
    margin-top: 18px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .85);
}
.contact-sec .contact-time span {
    display: inline-block;
    margin-right: 12px;
    padding: 3px 14px;
    font-family: var(--font-eng);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50px;
    vertical-align: middle;
}
.contact-sec .contact-caution {
    margin-top: 20px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--color-text);
}
.contact-sec .contact-caution::before {
    content: '\25BC';
    display: inline-block;
    margin-right: 8px;
    font-size: .7em;
    color: var(--color-blue);
}

/* ====================== MAIL FORM（白カード） ====================== */
.contact-sec .mail-box {
    margin-top: clamp(40px, 5vw, 64px);
    padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 60px);
    background: #fff;
    border: 1px solid var(--tk-line, rgba(13, 27, 42, .10));
    border-radius: 16px;
    box-shadow: 0 24px 50px -36px rgba(10, 27, 61, .35);
}
.contact-sec .mail-box h2 {
    color: var(--color-main);
    margin-bottom: clamp(30px, 4vw, 46px);
}
.contact-sec .mail-box h2::before {
    content: 'MAIL FORM';
    color: var(--color-ink);
}

/* CF7 フォームの微調整（TOPのトンマナに寄せる） */
.contact-sec .wpcf7 input:not(.wpcf7-submit),
.contact-sec .wpcf7 textarea,
.contact-sec .wpcf7 select {
    background: var(--color-blue-pale);
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color .3s ease, background .3s ease;
}
.contact-sec .wpcf7 input:not(.wpcf7-submit):focus,
.contact-sec .wpcf7 textarea:focus,
.contact-sec .wpcf7 select:focus {
    background: #fff;
    border-color: var(--color-blue);
}
.contact-sec .wpcf7 input.wpcf7-submit {
    display: block;
    margin: 36px auto 0;
    height: 74px;
    border-radius: 50px;
    border: 1px solid var(--color-main) !important;
    background: var(--color-main);
    color: #fff;
    letter-spacing: .08em;
    box-shadow: 0 18px 34px -18px rgba(26, 95, 180, .65);
}
.contact-sec .wpcf7 input.wpcf7-submit:hover {
    background: var(--color-navy);
    border-color: var(--color-navy) !important;
    box-shadow: 0 22px 40px -18px rgba(10, 27, 61, .6);
}

/* ====================== LINE（白カード＋緑ボタン） ====================== */
.contact-sec .line-box {
    margin-top: clamp(40px, 5vw, 64px);
    padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 60px);
    background: #fff;
    border: 1px solid var(--tk-line, rgba(13, 27, 42, .10));
    border-radius: 16px;
    box-shadow: 0 24px 50px -36px rgba(10, 27, 61, .35);
    text-align: center;
}
.contact-sec .line-box h2 {
    color: var(--color-line);
    margin-bottom: clamp(22px, 3vw, 32px);
}
.contact-sec .line-box h2::before {
    content: 'LINE';
    color: var(--color-ink);
}
.contact-sec .line-desc {
    max-width: 640px;
    margin: 0 auto clamp(26px, 3.5vw, 36px);
    font-size: .92rem;
    line-height: 2;
    color: var(--color-text);
}
.contact-sec .line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    height: 74px;
    border-radius: 50px;
    background: var(--color-line);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    box-shadow: 0 18px 34px -18px rgba(0, 185, 0, .6);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.contact-sec .line-btn i { font-size: 1.4em; line-height: 1; }
.contact-sec .line-btn:hover {
    transform: translateY(-3px);
    background: #00a300;
    box-shadow: 0 24px 40px -18px rgba(0, 185, 0, .7);
}

/* ====================== 注意書き（アラート） ====================== */
.contact-sec .mail-caution {
    margin-top: clamp(26px, 3vw, 40px);
    padding: clamp(22px, 3vw, 30px) clamp(22px, 4vw, 36px);
    background: var(--color-blue-pale);
    border-left: 4px solid var(--color-main);
    border-radius: 0 12px 12px 0;
}
.contact-sec .mail-caution h3 {
    margin-bottom: 10px;
    padding-left: 26px;
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--color-ink);
    position: relative;
}
.contact-sec .mail-caution h3::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-family: var(--font-eng);
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-main);
    border-radius: 50%;
}
.contact-sec .mail-caution p {
    margin: 0;
    font-size: .86rem;
    line-height: 1.95;
    color: var(--color-text);
}

@media only screen and (max-width: 768px) {
    .contact-sec .content_inner { width: 90%; }
    .contact-sec .contact-tel {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        white-space: nowrap;
        font-size: clamp(1.5rem, 7.2vw, 2.6rem);
    }
    .contact-sec::before { font-size: clamp(4.5rem, 26vw, 9rem); }
}
/* ===== CONTACT PAGE END ===== */


/* ======================================================================
   GREETING PAGE  ―  白 × 黒 × 青 / Drone (.kp-main-content.greeting)
   代表挨拶ページ：TOPとトンマナを合わせる（style.css の既存指定を上書き）
====================================================================== */
section.kp-main-content.greeting {
    position: relative;
    background: linear-gradient(180deg, var(--color-blue-pale) 0%, #ffffff 42%);
    overflow: hidden;
    z-index: 0;
}
section.kp-main-content.greeting::before {
    content: 'MESSAGE';
    position: absolute;
    top: 1.5%;
    right: -3%;
    font-family: var(--font-eng);
    font-weight: 800;
    font-size: clamp(6rem, 17vw, 16rem);
    line-height: 1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 95, 180, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
section.kp-main-content.greeting .kp-content_inner {
    position: relative;
    z-index: 1;
    max-width: 1040px;
}

/* ---- セクション英字エンブレム見出し ---- */
section.kp-main-content.greeting .kp-content::before {
    content: 'GREETING';
    display: block;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1;
    letter-spacing: .04em;
    color: var(--color-ink);
    text-align: center;
    margin-bottom: 12px;
}
section.kp-main-content.greeting .kp_greeting_imgbox::before {
    content: 'ごあいさつ';
    display: block;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--color-main);
    padding-bottom: 22px;
    margin: 6px 0 clamp(34px, 5vw, 56px);
    background: linear-gradient(var(--color-blue), var(--color-blue)) no-repeat center bottom / 44px 2px;
}

/* ---- 代表写真 + ネームプレート ---- */
.kp_greeting_imgbox {
    position: relative;
    margin-bottom: clamp(36px, 5vw, 60px);
}
.kp_greeting_img {
    position: relative;
    z-index: 1;
    width: 78%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px -34px rgba(10, 27, 61, .55);
}
.kp_greeting_img img {
    display: block;
    width: 100%;
    height: auto;
}
.kp_greeting_text {
    position: absolute;
    z-index: 2;
    width: 32vw;
    max-width: 360px;
    bottom: 24px;
    right: 0;
}
.kp_greeting_text h2 {
    margin: 0;
    padding: 22px 28px;
    background: radial-gradient(125% 130% at 80% 0%, #123163 0%, var(--color-navy) 55%, #060f24 100%);
    border-left: 4px solid var(--color-blue);
    border-radius: 10px;
    box-shadow: 0 22px 44px -24px rgba(10, 27, 61, .6);
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-align: left;
}
.kp_greeting_text h2 span {
    display: block;
    margin: 0 0 6px;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .18em;
    color: var(--color-blue);
}
.post-content .kp_greeting_text h2::after { display: none; }

/* ---- 本文 ---- */
section.kp-main-content.greeting .kp-content > p {
    font-size: .95rem;
    line-height: 2.1;
    color: var(--color-text);
    margin-bottom: 1.6em;
}
section.kp-main-content.greeting .kp-content > p:last-of-type {
    margin-bottom: 0;
}

/* ---- 保有資格・許可（カード） ---- */
section.kp-main-content.greeting .kp_greeting_sikaku {
    margin-top: clamp(44px, 5vw, 68px);
    padding: clamp(30px, 4vw, 46px) clamp(26px, 4vw, 48px);
    background: #fff;
    border: 1px solid rgba(13, 27, 42, .10);
    border-top: 5px solid var(--color-main);
    border-radius: 4px 4px 16px 16px;
    box-shadow: 0 24px 50px -34px rgba(10, 27, 61, .32);
}
section.kp-main-content.greeting .kp_greeting_sikaku h3 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 16px;
    font-family: "Zen Kaku Gothic Antique", var(--font-main);
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: .03em;
    color: var(--color-ink);
    border-bottom: 1px solid rgba(13, 27, 42, .10);
}
/* テーマ .post-content h3::before（青い横棒）を完全に打ち消し、英字ラベルとして表示 */
section.kp-main-content.greeting .kp_greeting_sikaku h3::before {
    content: 'LICENSE & PERMIT';
    position: static;
    display: block;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    margin: 0 0 8px;
    background: none;
    font-family: var(--font-eng);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .16em;
    color: var(--color-main);
}
section.kp-main-content.greeting .kp_greeting_sikaku h3::after { content: none !important; }
section.kp-main-content.greeting .kp_greeting_sikaku p {
    margin: 0;
    font-size: .98rem;
    font-weight: 500;
    line-height: 2.3;
    color: var(--color-ink);
}

@media screen and (max-width: 736px) {
    section.kp-main-content.greeting::before { font-size: clamp(4.5rem, 26vw, 9rem); }
    .kp_greeting_img { width: 100%; z-index: 1; }
    /* スマホ：静的配置だと z-index が効かず名前が画像の下に潜るため relative + z-index で前面固定 */
    .kp_greeting_text {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: none;
        margin-top: -28px;
        padding: 0 4%;
    }
    .kp_greeting_text h2 {
        padding: 12px 18px;
        font-size: 1.15rem;
        border-radius: 8px;
    }
    .kp_greeting_text h2 span { margin-bottom: 2px; font-size: .68rem; }
}
/* ===== GREETING PAGE END ===== */