/*
Theme Name:   updaters
Description:  UPDATERS公式テーマは、株式会社updatersの公式テーマです。WordPressのカスタマイズや開発に役立つ機能を提供します。
Author:       株式会社updaters
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  updaters
Domain Path:  /languages
*/
/********************************
 * Reset & Base Styles
 ********************************/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:where(article, aside, div, figure, figcaption,
footer, header, hgroup, main, nav, section, summary) {
    display: block;
}
:where(html) {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 100%;
    line-height: 1.75;
    background: #fff;
}
html {
    line-height: 1.75;
}
body {
    margin: 0;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: var(--color-bg-bk);
    background-color: #fff;
}
@media screen and (max-width: 999px) {
    body {
        font-size: 14px;
    }
}
:where(h1, h2, h3, h4, h5, h6,
p, blockquote, pre) {
    margin: 0;
}
address {
    font-style: normal;
}
p + p {
    margin-top: 16px;
}
strong {
    font-weight: bold;
}
:where(figure) {
    line-height: 0;
    margin: 0;
}
figcaption {
  display: none;
}
:where(ul) {
  margin: 0;
  padding: 0;
  list-style: disc;
}
:where(ol) {
  margin: 0;
  padding: 0;
  list-style: auto;
}
:where(ol, ul) {
    padding-left: 18px;
}
:where(li) {
    margin: 4px 0;
}
:where(img, picture, video, canvas, svg) {
  display: block;
  max-width: 100%;
  height: auto;
}
:where(table) {
  border-collapse: collapse;
  width: 100%;
}
:where(th, td) {
  text-align: left;
  padding: 0.5em;
}
:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a:hover, a:focus) {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
:where(button, input, select, textarea) {
  font: inherit;
  line-height: inherit;
  border: none;
  background: none;
}
button { cursor: pointer; }
input:focus, button:focus, select:focus, textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
:where(adders, dfn, mark, small) {
  font-style: normal;
  font-weight: normal;
}
/* 11. Gutenberg Blocks */
.wp-block { margin-bottom: 1.5em; }
.alignwide, .alignfull { width:100%; max-width:100%; margin:0 auto; }

/* 12. Misc */
hr { border:none; height:0; overflow:visible; }
blockquote, q { quotes:none; }
blockquote::before, blockquote::after,
q::before, q::after { content:none; }
[hidden] { display:none !important; }


/*サイド*/
.floating-sns {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    right: -90px;
    top: 60%;
    z-index: 99;
    transform: rotate(90deg) translate(-50%, -50%);
}
.floating-sns p {
    line-height: 1;
    font-family: "Cormorant", serif;
}
.floating-border {
    width: 40px;
    height: 1px;
    background: var(--txt);
}
.floating-sns-con {
    display: flex;
    gap: 10px;
    align-items: center;
}
.floating-sns-con a {
    width: 30px;
    display: block;
    line-height: 0;
    transform: rotate(-90deg);
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .floating-sns {
        display: none;
    }
}

/********************************
 * Root Variables & Breakpoints
 ********************************/
:root {
    /* Colors */
    --color-text-wh: #fff;
    --color-text-bk: #333;
    --color-bg-wh:#fff;
    --color-bg-bk: #333;
    --color-gray: #F7F7F7;
    --color-main: #234382;
    --color-submain: #102458;
    --color-back: #F5F4F2;
    --color-yel: #FFE83A;
    --color-red: #DF0004;
    --color-grad: linear-gradient(270deg, #102458 0%, #234382 100%);

    /* Fluid Typography & Spacing */
    --bp-min:     320px;
    --bp-max:    1200px;
    --sp-min:     1rem;
    --sp-max:     3rem;
    --fs-base-min:1rem;    /* 16px */
    --fs-base-max:1.2rem;  /* 19.2px */

    /* ブレイクポイント */
    --bp-sm:  576px;
    --bp-md:  768px;
    --bp-lg: 1024px;
    --bp-xl: 1200px;

    /* メインコンテンツ幅 */
    --inner-width: calc(var(--bp-xl) + (var(--inner-padding-pc) * 2));

    /* コンテンツサイド余白 */
    --inner-padding-sp: 5%;
    --inner-padding-pc: 50px;
}

.sp {
  display: none!important;
}
.pc {
  display: block!important;
}

@media screen and (max-width: 1000px) {
  .pc {
    display: none!important;
  }
  .sp {
    display: block!important;
  }
}

/********************************
 * Utilities & Layout Helpers
 ********************************/
 /* ==========================================================================
   Naming Convention Guide (FLOCSS-style)
   l- : Layout  → レイアウト用（幅や配置）
   c- : Component → コンポーネント単位（ボタン・見出しなど）
   p- : Project/Page → ページ固有の装飾
   u- : Utility → 汎用の1回完結クラス（marginなど）
   js- : JavaScript用クラス（DOM操作対象）
========================================================================== */

/* .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
} */
.l-innerWidth {
  max-width: var(--inner-width);
  padding-left: var(--inner-padding-pc);
  padding-right: var(--inner-padding-pc);
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
.l-sectionHeight {
  padding-top: 100px;
  padding-bottom: 100px;
}
.img-maru {
  border-radius: 10px;
  overflow: hidden;
}
.seo-hidden {
    display: none !important;
}
.margin-top-20 {
    margin-top: 20px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .l-innerWidth {
        max-width: var(--inner-width);
        padding-left: var(--inner-padding-sp);
        padding-right: var(--inner-padding-sp);
        margin: 0 auto;
        position: relative;
        z-index: 99;
    }
    .l-sectionHeight {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* =============================
   固定ページ共通
   ============================= */
/* ページタイトル */
.page-ttl-wrap {
    background: var(--color-grad);
    padding-top: 100px;
    padding-bottom: 100px;
}
.page-ttl {
	position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}
.page-ttl h1 {
    position: relative;
	font-size: 60px;
    letter-spacing: 2px;
	line-height: 1;
	font-weight: 600;
    color: var(--color-text-wh);
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .page-ttl {
        position: relative;
        gap: 30px 10px;
        flex-direction: column;
        align-items: center;
    }
    .page-ttl h1 {
        font-size: 32px;
    }
}

/* コンテンツ内見出し */
.page-ttl02 h2 {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 2px;
}
.page-ttl02 p {
    margin-top: 5px;
    font-size: 18px;
    line-height: 1;
}
.page-ttl03 h2 {
    font-size: 32px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--color-gray);
    position: relative;
}
.page-ttl03 h2::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 3px;
    background: var(--color-main);
    bottom: -3px;
    left: 0;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .page-ttl02 h2 {
        font-size: 24px;
        line-height: 1;
        letter-spacing: 2px;
    }
    .page-ttl02 p {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1;
    }
    .page-ttl03 h2 {
        font-size: 24px;
        line-height: 1;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .page-ttl03 h2::before {
        width: 50px;
    }
}
/* ページ最初にセクションは上のpaddingなし */
.page section:first-child .l-sectionHeight {
    padding-top: 0;
}

/* サイト内ナビ */
.page-nav {
    text-align: center;
    margin-bottom: 30px;
}
.page-nav.l-sectionHeight {
    padding-bottom: 30px;
}
.page-nav ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    list-style: none;
    padding-left: 0;
}
.page-nav .btn02 {
    padding: 9px 40px 7px 20px;
    min-width: 160px;
    filter: drop-shadow(0 0 0 rgba(12, 28, 32, 0));
    border: 1px solid #ccc;
}
.page-nav .btn02-txt {
    font-weight: 400;
}
.page-nav .btn02-arrow {
    width: 26px;
    height: 26px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .page-nav {
        text-align: center;
        margin-bottom: 30px;
    }
    .page-nav.l-sectionHeight {
        padding-bottom: 0;
        padding-top: 40px;
    }
    .page-nav ul {
        column-gap: 10px;
    }
    .page-nav .btn02 {
        padding: 9px 30px 7px 10px;
        min-width: 100px;
        font-size: 12px;
    }
    .page-nav .btn02-txt {
        font-size: 12px;
    }
    .page-nav .btn02-arrow {
        width: 20px;
        height: 20px;
    }
}


/* =============================
   全ページ共通
   ============================= */
/* ボタン */
.btn-left {
    justify-content: flex-start;
    display: flex;
}
.btn-right {
    display: flex;
    justify-content: flex-end;
}
.btn-center {
    display: flex;
    justify-content: center;
}

.btn01 {
    display: flex;
    align-items: center;
    color: var(--color-text-bk);
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .1));
}
.btn01-arrow {
    position: relative;
    margin-left: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-main);
    border-radius: 50px;
}
/* 背景が濃い場合はテキスト白色 */
.white .btn01-txt {
    color: var(--color-text-wh);
}

.btn02 {
    text-align: center;
	color: var(--color-text-wh);
    display: inline-block;
    background: var(--color-main);
    line-height: 1;
    padding: 12px 50px 10px 30px;
    min-width: 200px;
    position: relative;
    border-radius: 50px;
	filter: drop-shadow(1px 2px 2px rgba(12, 28, 32, 0.3));;
}
.btn02-arrow {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-wh);
    border-radius: 50px;
    transform: translate(0, -50%);
}
.btn02-txt {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
/* 背景色メインカラーの場合 */
.btn02.white {
    background: var(--color-bg-wh);
    color: var(--color-text-bk);
}
.btn02.white .btn02-arrow {
    background: var(--color-main);
}



a.btn03 {
    position: relative;
    border-radius: 50px;
    filter: drop-shadow(0 0 6px rgba(12, 28, 32, 0.2));
}
a.btn03::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #fff;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    z-index: 98;
}
a.btn03::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 8px;
    background: url(images/arrow.svg) no-repeat center center / 100%;
    top: 50%;
    right: 18px;
    transform: translate(0, -50%);
    z-index: 99;
}
a.btn03 p {
    color: #fff;
    display: inline-block;
    background: #5B5953;
    padding: 15px 80px 14px 50px;
    position: relative;
    border-radius: 50px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .btn-02-wrap {
        margin-top: 20px;
    }
    a.btn-02 {
        padding: 7px 50px 5px 40px;
    }
    a.btn-02::before {
        width: 30px;
        height: 30px;
        right: 3px;
    }
    a.btn-02::after {
        width: 14px;
        height: 8px;
        top: 50%;
        right: 12px;
    }
    a.btn03::before {
        width: 25px;
        height: 25px;
        right: 6px;
    }
    a.btn03::after {
        width: 12px;
        height: 6px;
        right: 13px;
    }
    a.btn03 p {
        color: #fff;
        display: inline-block;
        background: #5B5953;
        padding: 10px 80px 9px 50px;
        position: relative;
        border-radius: 50px;
    }
}
/* =============================
   PARTS｜CONTACT
   ============================= */
#parts-btn-contact {
}
.parts-btn-contact-wrap {
    background: var(--color-grad);
    color: #fff;
    padding: 100px 60px 100px 0;
    border-left: 120px solid var(--color-submain);
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}
.parts-btn-contact-txt {
	margin-left: -60px;
}
.parts-btn-contact-txt h2 {
	color: #fff;
	font-size: 46px;
	letter-spacing: 2px;
}
.parts-btn-contact-txt p {
	margin-top: 5px;
	letter-spacing: 1px;
}

@media screen and (min-width: 0) and (max-width: 1030px) {
	.parts-btn-contact-wrap {
		padding: 50px 5% 50px 5%;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		border-left: 0;
        border-left: 10px solid var(--color-submain);
        border-right: 10px solid var(--color-submain);
	}
	.parts-btn-contact-txt {
		margin-left: 0;
		margin-bottom: 30px;
	}
	.parts-btn-contact-txt h2 {
		font-size: 40px;
	}
	.parts-btn-contact-txt p {
		margin-top: 7px;
	}
}
/* =============================
   ヘッダー
   ============================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}
.header-logo {
    display: flex;
    align-items: center;
}
.header-logo h1 img {
    height: 27px;
}
@media (max-width: 1399px) {
    .header {
        padding: 8px 5%;
    }
    .header-logo {
        width: 140px;
    }
}

/* PCナビ */
#header-navi {
    display: flex;
    align-items: center;
}
.header-navi-list {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}
.header-navi-list li {
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    list-style: none;
}
.header-navi-list li a {
    color: var(--color-text-bk);
}

/* ハンバーガー */
.menu-trigger {
    position: relative;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-bg-bk);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-trigger span:nth-child(1) {
    top: 0;
}
.menu-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-trigger span:nth-child(3) {
    bottom: 0;
}
.menu-trigger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-trigger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-trigger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(10px) rotate(-45deg);
}
@media (max-width: 1399px) {
    .header-header {
        padding: 7px 5%;
    }
    .menu-trigger {
        display: block;
    }
    body.is-menu-open {
        overflow: hidden;
    }
    .is-menu-open .menu-trigger {
        width: 30px;
        height: 0;
    }
    #header-navi {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 380px;
        height: 100vh;
        padding: 100px 20px 40px;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.12);
    }
    #header-navi.is-open {
        transform: translateX(0);
    }
    .header-header-logo h1 img {
        height: 24px;
    }
    .header-navi-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }
    .header-navi-list li {
        width: 100%;
    }
    .header-navi-list li a {
        width: 100%;
        text-align: left;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ccc;
        display: block;
    }
    .header-navi-list li:first-child {
        border-top: 1px solid #ccc;
    }
}



/* =============================
   フッター
   ============================= */
footer {
    background: #1B294D;
    padding-top: 80px;
    color: var(--color-text-wh);
}
.footer-inner {
    padding: 0 100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.footer-logo {
    display: block;
    width: 80px;
}
.footer-info {
    margin-top: 20px;
}
.footer-info p + p {
    margin-top: 5px;
    font-size: 14px;
}
.footer-nav-wrap {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    letter-spacing: 1px;
}
footer .menu-item {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
footer .sub-menu {
    padding-left: 25px;
}
footer .sub-menu .menu-item {
    position: relative;
    list-style-type: "ー ";
    font-weight: normal;
}
.footer-links {
    margin-top: 60px;
    text-align: center;
}
.footer-links a {
    font-size: 12px;
    color: var(--color-text-wh);
    display: inline-block;
    margin-bottom: 5px;
}
.footer-links a + a {
    margin-left: 20px;
}
footer .copyright {
    background: #132146;
    text-align: center;
    padding: 3px 0 4px;
    line-height: 1;
    color: var(--color-gray);
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    footer {
        padding-top: 80px;
    }
    .footer-inner {
        padding: 0 5%;
        flex-direction: column;
    }
    .footer-logo {
        width: 70px;
    }
    .footer-address {
        line-height: 1.5;
    }
    .footer-nav-wrap {
        flex-wrap: wrap;
        gap: 25px 5%;
        margin-top: 60px;
        padding-top: 60px;
        border-top: 1px solid #ccc;
    }
    .footer-list-nav {
        flex-wrap: wrap;
        padding-left: 0;
        gap: 20px 5%;
    }
    .footer-list-nav>.menu-item {
    }
    footer .menu-item {
        margin-bottom: 6px;
    }
    .sub-menu {
        margin-top: 10px;
    }
}


/* =============================
   TOP
   ============================= */
/* TOP共通 */
.page-top-ttl {
    margin: 0 0 45px;
    display: flex;
    align-items: center;
}
.page-top-ttl h2 {
    color: var(--color-main);
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    padding-right: 20px;
}
.page-top-ttl p {
    color: var(--color-text-bk);
    font-size: 20px;
    line-height: 1;
}
.page-top-ttl02 {
    color: var(--color-text-wh);
    text-align: center;
}
.page-top-ttl02 h2 {
    color: var(--color-text-wh);
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin-top: 8px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.25));
}
.page-top-ttl02 p {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.25));
}
.page-top-ttl03 {
    margin-bottom: 45px;
}
.page-top-ttl03 h2 {
    color: var(--color-main);
    font-size: 60px;
    line-height: 1;
}
.page-top-ttl03 p {
    color: var(--color-text-bk);
    font-size: 20px;
    line-height: 1;
    margin-top: 5px;
}
@media screen and (max-width: 1000px) {
    .page-top-ttl {
        margin: 0 0 30px;
        align-items: flex-start;
        flex-direction: column;
    }
    .page-top-ttl h2 {
        font-size: 45px;
        padding-right: 0;
    }
    .page-top-ttl p {
        font-size: 16px;
        margin-top: 3px;
    }
    .page-top-ttl02 {
    }
    .page-top-ttl02 h2 {
        font-size: 45px;
        margin-top: 8px;
    }
    .page-top-ttl02 p {
        font-size: 14px;
    }
    .page-top-ttl03 {
        margin-bottom: 30px;
    }
    .page-top-ttl03 h2 {
        font-size: 45px;
    }
    .page-top-ttl03 p {
        font-size: 16px;
        margin-top: 3px;
    }
}
.txt-bigtxt {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: var(--font-min);
    font-weight: 600;
}
.txt-bigtxt span {
    color: var(--color-red);
}
.txt-txt-wrap {
    margin-top: 30px;
}
.txt-txt + .txt-txt {
    margin-top: 15px;
}
@media screen and (max-width: 1000px) {
    .txt-bigtxt {
        font-size: 18px;
        letter-spacing: 0;
        line-height: 1.75;
    }
    .txt-bigtxt span {
    }
    .txt-txt-wrap {
        margin-top: 30px;
    }
    .txt-txt + .txt-txt {
        margin-top: 15px;
    }
}
/*FV*/
.home-fv {

}
.home-fv-con {
    height: 88vh;
    max-height: 727px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-fv-txt {
	position: relative;
	z-index: 2;
    margin-left: 15vw;
}
h2.home-fv-txt-main {
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: 0.4px;
    font-weight: 500;
}
.home-fv-txt-main span {
	color: var(--color-main);
}
.home-fv-txt-sub {
    margin-top: 30px;
    display: inline-block;
    border-radius: 5px;
    line-height: 1.5;
    font-size: 20px;
}
.home-fv-txt-img {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.home-fv-txt-img img {
    width: 153px;
}
.home-fv-img {
    width: 50%;
}
.home-fv-img-item {

}
.home-fv-scroll {
	position: absolute;
    bottom: 0%;
    left: 40%;
    padding-left: 5px;
    height: 100px;
    color: var(--color-main);
    letter-spacing: .2em;
    font-size: 14px;
    text-align: left;
    z-index: 1;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.home-fv-scroll::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--color-main);
    content: "";
}
.home-fv-scroll::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 20px;
    background: #fff;
    content: "";
    -webkit-animation: 1.5s ease 0s infinite forwards animeScroll;
    animation: 1.5s ease 0s infinite forwards animeScroll;
}
@keyframes animeScroll {
  0% {
    top: 0
  }
  100% {
    top: 80px
  }
}
@media screen and (min-width: 0) and (max-width: 1000px) {
	.home-fv {
		height: auto;
		padding-top: 90px;
        max-height: 100%;
	}
	.home-fv-con {
		width: 100%;
		text-align: center;
		padding-right: 0;
        flex-direction: column;
	}
	.home-fv-con::before {
		width: 100px;
		height: 331px;
		z-index: 1;
		top: auto;
		bottom: 0;
		left: 70%;
		background: url(images/logo_gy.svg) no-repeat center center / 70px auto;
		transform: translate(-50%, 0);
	}
	.home-fv-con .l-innerWidth {
		margin: 0;
	}
	.home-fv-txt {
        margin-left: 5%;
        margin-right: 5%;
	}
	h2.home-fv-txt-main {
		font-size: 24px;
		line-height: 1.45;
		font-weight: 700;
	}
	.home-fv-txt-sub {
		display: block;
		width: 100%;
		margin: 0 auto;
		margin-top: 20px;
        font-size: 16px;
	}
	.home-fv-txt-en {
		margin: 0 auto;
		margin-top: 30px;
	}
	#home-fv-img {
		position: relative;
		height: auto;
		width: 100%;
		border-radius: 0 0 0 0;
		margin-top: 60px;
	}
	#home-fv-img div {
		line-height: 0;
	}
	.home-fv-img {
		width: 100%;
	}
	.home-fv-scroll {
		display: none;
	}
	.home-fv-scroll::after {
		left: -1px;
		width: 3px;
		height: 15px;
	}
}

#news .l-innerWidth {
    display: flex;
    justify-content: space-between;
    gap: 0;
}
.news-items-wrap {
    width: 70%;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    #news .l-innerWidth {
        flex-direction: column;
    }
    .news-items-wrap {
        width: 100%;
    }
}
/* MEDIA */
#home-media {
}

/* SERVICE */
#home-service {
    background: var(--color-grad);
}
#home-service h2 {
    color: var(--color-text-wh);
}
#home-service p {
    color: var(--color-text-wh);
}
.home-service-subtxt {
}
.home-service-con-wrap {
    margin-top: 45px;
}
.home-service-con {
    border-top: 1px solid var(--color-bg-wh);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.home-service-con:last-child {
    border-bottom: 1px solid var(--color-bg-wh);
}
.home-service-con-txt-number {
    line-height: 1;
    font-size: 32px;
    width: 40px;
    padding-right: 40px;
}
.home-service-con-txt {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-wh);
    width: calc(100% - 50px - 80px);
    padding-right: 80px;
}
.home-service-con-txt dt {
    font-weight: normal;
    font-size: 28px;
    letter-spacing: 2px;
}
.home-service-con-txt dd {
    margin-top: 8px;
    font-size: 16px;
}
.home-service-con-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-bg-wh);
    border-radius: 50%;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .home-service-con-wrap {
        margin-top: 30px;
    }
    .home-service-con {
        padding: 30px 0 28px;
    }
    .home-service-con-txt-number {
        display: none;
    }
    .home-service-con-txt {
        width: calc(100% - 40px);
        padding-right: 0;
    }
    .home-service-con-txt dt {
        font-size: 20px;
    }
    .home-service-con-txt dd {
        margin-top: 5px;
        font-size: 14px;
    }
    .home-service-con-btn {
        width: 30px;
        height: 30px;
    }
}

/* ABOUT US */
#home-about {
    background: var(--color-grad);
}
.home-about-con {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10px;
    background: url(images/about-us-bg.jpg) no-repeat center center / cover;
    color: var(--color-text-wh);
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .2));
}
.home-about-con +.home-about-con {
    margin-top: 30px;
}
/* RECRUIT */
#home-recruit {
    background: var(--color-grad);
}
.home-recruit-con {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10px;
    background: url(images/recruit-link-bg.jpg) no-repeat center center / cover;
    color: var(--color-text-wh);
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .2));
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .home-recruit-con {
        background: url(images/recruit-link-bg.jpg) no-repeat center right / cover;
    }
}


/* =============================
   ABOUT
   ============================= */
.page-nav {
    text-align: center;
    margin-bottom: 30px;
}
.page-nav.l-sectionHeight {
    padding-bottom: 30px;
}
.page-nav ul {
    display: flex;
    column-gap: 20px;
    list-style: none;
    padding-left: 0;
}
.page-nav .btn02 {
    padding: 9px 35px 7px 20px;
    min-width: 160px;
    filter: drop-shadow(0 0 0 rgba(12, 28, 32, 0));
    border: 1px solid #ccc;
}
.page-nav .btn02-txt {
    font-weight: 400;
}
.page-nav .btn02-arrow {
    width: 26px;
    height: 26px;
}
#mvv {
    background: var(--color-bg-wh);
}
#mvv .l-sectionHeight {
    padding-top: 0;
}
.about-mvv-item + .about-mvv-item {
    margin-top: 60px;
}
.about-mvv-item-mission .about-mvv-item-txt {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-main);
}
.about-mvv-item-txt {
    font-size: 20px;
    line-height: 2.5;
    color: var(--color-text-bk);
}
#message {
    background: var(--color-gray);
    position: relative;
    z-index: 0;
}
#message .l-sectionHeight {
    padding-bottom: 180px;
}
#message .page-ttl03 {
    border-color: #ccc;
}
.about-message-contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px 30px;
}
.about-message-ceo {
    width: 30%;
}
.about-message-ceo-name {
    margin-top: 10px;
}
.about-message-ceo-name span {
    color: var(--color-main);
}
.about-message-txt {
    width: calc(70% - 30px);
    line-height: 1.75;
}
.about-message-txt p:first-child {
    font-weight: 600;
}
.about-message-txt p + p {
    margin-top: 20px;
}

#outline {
    margin-top: -80px;
    border-radius: 60px 60px 0 0;
    background: var(--color-grad);
    color: var(--color-text-wh);
    position: relative;
    z-index: 1;
}
.about-outline {
    display: flex;
    justify-content: space-between;
}
.about-outline-wrap {
	width: 70%;
}
.about-outline-wrap dl {
	padding: 40px 0;
	border-bottom: 1px solid var(--color-back);
	display: flex;
}
.about-outline-wrap dl:first-child {
	padding-top: 0;
}
.about-outline-wrap dt {
	font-weight: bold;
	display: block;
    width: 25%;
    min-width: 170px;
}
.about-outline-wrap dd a {
    color: var(--color-text-b);
}
#map {
    text-align: center;
}
#map h2.page-ttl01-ttl {
    color: var(--color-main);
}
#map .page-ttl01-subttl {
    color: var(--color-text-a);
}
.about-map-wrap {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-top: 30px;
}
.about-map {
    width: calc((100% - 3%) / 2);
}
.map-iframe-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.map-iframe-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .about-message {
        text-align: left;
    }
    .about-message h2 {
    }
    .about-message p {
        margin-top: 10px;
    }
	#outline {
		flex-direction: column;
		padding-bottom: 40px;
	}
    #outline .page-ttl01 {
        widows: 100%;
        text-align: left;
    }
    #outline {
        margin-top: -80px;
        border-radius: 30px 30px 0 0;
    }
    .about-outline {
        flex-direction: column;
    }
	.about-outline-wrap {
		width: 100%;
		text-align: left;
	}
	.about-outline-wrap dl {
		padding: 20px 0;
		flex-direction: column;
	}
	.about-outline-wrap dl:first-child {
        border-top: 1px solid var(--color-back);
		padding-top: 20px;
        margin-top: 20px;
	}
	.about-outline-wrap dt {
		width: 100%;
	}
	.about-outline-wrap dd {
		width: 100%;
		margin-top: 3px;
	}
    .about-map-wrap {
        flex-direction: column;
        gap: 30px 30px;
    }
    .about-map {
        width: 100%;
    }
    .map-iframe-box {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }
    .map-iframe-box iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
/* オリジナルのCSSコードを以下に追加します。 */
.about-message-ceo {
    display: none;
}
.about-message-txt {
    width: 100%;
    line-height: 1.75;
}
.about-message-txt-ceo-name {
    text-align: right;
    line-height: 1.25;
}
.about-message-txt-ceo-name span {
    color: var(--color-main);
    font-size: 14px;
}


/* =============
フォーム共通
=============== */
.form-content-wrap {
    padding: 80px 120px 80px;
    border-radius: 10px;
    background: var(--color-gray);
}
.form-page-con-img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-wh);
    border-radius: 100px;
    transform: scale(1.5);
}
.form-page-con-ttl {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 600;
}
.form-page-con-txt {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
#form-contact {
}




.form-page-item {
  margin-top: 40px;
}
.form-page-item:first-of-type {
    margin-top: 0;
}
.form-page-item-required {
  background: var(--color-red);
  padding: 2px 7px 1px 7px;
  display: inline-block;
  border-radius: 30px;
  line-height: 1;
  color: #fff;
  margin-left: 5px;
  font-size: 14px;
}
#form form {
    margin-top: 30px;
}
#form select , #form input , #form textarea {
    width: 100%;
    display: block;
    padding: 5px 10px 4px 10px;
    margin-top: 5px;
}
#form select , #form input , #form textarea {
    border-radius: 5px;
    border: 1px solid var(--color-back);
    background: var(--color-bg-wh);
}
#form select {
    padding: 8px 10px;
    color: var(--color-text-bk);
}
#form select option {
    color: var(--color-text-bk);
}
input::placeholder {
	color: #A0A0A0;
}
.wpcf7-acceptance {
    margin-top: 20px;
    display: block;
}
.wpcf7-acceptance label {
	display: flex;
	justify-content: center;
	line-height: 1;
}
.wpcf7-acceptance .wpcf7-list-item {
	display: block;
	margin: 0;
}
#form .form-check {
  width: 16px;
  margin-right: 10px;
  margin-top: 0;
}
.form-page-smalltxt {
    margin-bottom: 15px!important;
    font-size: 14px;
}
.form-page-smalltxt a {
  text-align: center;
  display: block;
  line-height: 1;
  margin-top: -10px;
  font-size: 14px;
  color: var(--color-text-bk);
}
.form-page-btn {
  margin-top: 30px;
}
#form .wpcf7-submit {
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px 14px;
  border-radius: 100px;
  background: var(--color-main);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  cursor: pointer;
  filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, .15));
  transition: .3s;
  border: none;
}
.wpcf7-submit:hover , .wpcf7-previous:hover {
  opacity: .6;
}
.form-page-file {
    margin-top: 60px;
    border-top: 1px solid var(--color-main);
    padding-top: 60px;
}
a.form-page-file-link {
    color: var(--color-main);
    font-weight: 600;
    font-size: 20px;
}
.form-page-file-item {
    margin-top: 30px;
}
.form-page-file-ttl {
    font-weight: 600;
}
.form-page-file-txt {
    color: var(--color-back);
    margin-top: 5px;
}
#form .wpcf7-file {
    border: none;
    margin-top: 10px;
    padding: 0;
    border: none;
    border-radius: 0;
}
#form li + li {
    margin-top: 8px;
}
#form ul + p {
    margin-top: 8px;
}
@media screen and (max-width: 1000px) {
    .form-wrap {
        padding: 30px 5% 40px;
    }
    .form-page-con-ttl {
        font-size: 20px;
    }
    .form-page-con-txt {
        text-align: left;
    }
}
/*
入力確認*/
.contact-confirm p + p {
	margin-top: 15px;
}
.contact-confirm form p:first-of-type {
	margin-top: 30px;
}
.confirm-txt {
    padding: 10px 10px 9px;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-top: 4px;
    display: block;
}
.confirm-txt-last {
	margin-bottom: 60px;
}
#form .wpcf7-previous {
    background: transparent!important;
    box-shadow: initial;
    border: solid 1px var(--color-text-bk)!important;
    font-size: 12px;
    color: var(--color-text-bk);
    width: 100%;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 20px;
    border-radius: 100px!important;
    font-weight: normal;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 20px;
}
/*サンクスページ*/
.thanks-page-check-icon svg {
    margin: 0 auto;
}
.thanks-page-con-ttl {
  text-align: center;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
}
.thanks-page-con-txt {
  text-align: center;
  margin-top: 15px;
}
#thanks h2.wp-block-heading {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-text-bk);
    text-align: center;
    margin-top: 30px;
    background: var(--color-bg-wh);
}

@media screen and (min-width: 0em) and (max-width: 1000px) {
    .form-page {
    }
    .form-page .inner-width {
        padding: 40px 5% 20px;
    }
    .form-page-item {
        margin-top: 20px;
    }
    .form-page-item-required {
        padding: 2px 7px 1px 7px;
        font-size: 10px;
    }
    label {
        padding: 10px 0 8px 0;
    }
    select , input , textarea {
        padding: 10px 5px 8px 5px;
    }
    select {
        height: 38px;
    }
    .form-page-content {
        padding: 30px 5%;
    }
    .contact-page-con-ttl {
        font-size: 20px;
    }
    .contact-page-con_txt {
        margin-top: 6px;
    }
    .form-page-wrap {
        margin-top: 30px;
    }
    .consent-check input {
        margin-top: 0;
        margin-left: 0;
    }
    .wpcf7-submit {
        width: 100%;
        padding: 15px 5%;
        font-size: 16px;
    }
    .form-page-smalltxt {
        margin-top: 5px;
        margin-bottom: 5px !important;
    }
    .form-page-item:last-child {
        margin-top: 5px;
    }
    .thanks-page-con-txt {
        text-align: left;
    }
}
/* =============
フォーム共通
=============== */

/* =============================
   事業紹介一覧
   ============================= */
.service {
    background: var(--color-grad) no-repeat left center / 50% auto;
}
.service-page {
    padding: 80px 60px;
    background: var(--color-bg-wh);
    filter: drop-shadow(5px 10px 12px rgba(0, 0, 0, 0.05));
}
.service-concept-en {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--color-main);
}
.service-concept-bigtxt {
    margin-top: 10px;
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-text-bk);
}
.service-concept-txt {
    margin-top: 20px;
}
.service-contents {
    margin-top: 60px;
}
.service-contents-item {
    border-top: 1px solid #ccc;
    padding: 60px 0;
}
.service-contents-item:last-child {
    border-bottom: 1px solid #ccc;
}
.service-contents-item-ttl {
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-text-bk);
}
.service-contents-item-ttl-en {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 8px;
    color: var(--color-main);
}
.service-contents-item-main {
    display: flex;
    gap: 20px 20px;
    margin-top: 15px;
}
.service-contents-item-main-img {
    width: 100%;
    max-width: 400px;
    /* aspect-ratio: 1 / 1; */
    position: relative;
    overflow: hidden;
}
.service-contents-item-main-txt-wrap {
    width: calc(100% - 250px);
}
.service-contents-item-main-bigtxt {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}
.service-contents-item-main-txt {
    margin-top: 10px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .service-page {
        padding: 60px 5%;
    }
    .service-concept-en {
        font-size: 12px;
    }
    .service-concept-bigtxt {
        font-size: 26px;
        line-height: 1.3;
    }
    .service-concept-txt {
        margin-top: 10px;
    }
    .service-contents-item-ttl {
        font-size: 24px;
    }
    .service-contents-item-ttl-en {
        font-size: 12px;
        margin-top: 6px;
    }
    .service-contents-item-main {
        flex-direction: column;
        margin-top: 20px;
    }
    .service-contents-item-main-txt-wrap {
        width: 100%;
    }
    .service-contents-item-main-bigtxt {
        font-size: 18px;
    }
    .service-contents-item-main-txt {
        margin-top: 8px;
    }
}

/* =============================
   事業紹介詳細
   ============================= */
.service-content .page-ttl-wrap {
    background: url(./images/service-road-infrastructure-top.jpg);
}
.service-pavement .page-ttl-wrap {
    background: url(./images/service-pavement-top.jpg);
}
.service-hillside .page-ttl-wrap {
    background: url(./images/service-hillside-top.jpg);
}
.service-slope-protection .page-ttl-wrap {
    background: url(./images/service-slope-protection-top.jpg);
}
.service-snow-removal .page-ttl-wrap {
    background: url(./images/service-snow-removal-top.jpg);
}
.service-content h1 {
    color: #fff;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}
.service-content-concept-bigttx {
    font-size: 30px;
    color: var(--color-main);
    font-weight: 600;
}
.service-content-concept {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px 30px;
}
.service-content-concept-txt {
    width: 50%;
}
.service-content-concept-txt p + p {
    margin-top: 20px;
}
.service-content-concept-img {
    width: calc(50% - 30px);
}
.service-content-works {
    background: var(--color-gray);
    padding: 80px 50px;
    margin-top: 60px;
}
.service-content-works .page-ttl03 h2 {
    font-size: 32px;
    padding-bottom: 20px;
    margin-bottom: 32px;
    border-bottom: 3px solid #ccc;
    position: relative;
}
.service-content-works-list ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-content-works-list ul li + li {
    margin-top: 30px;
}
.service-content-works-list-item-number {
    width: calc(64px + 30px);
    font-size: 64px;
    color: var(--color-main);
    font-weight: 600;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #ccc;
}
.service-content-works-list-item-txt {
    width: calc(100% - (64px + 30px + 30px));
}
.service-content-works-list-item-txt h3 {
    font-size: 24px;
    font-weight: 600;
}
.service-content-works-list-item-txt p {
    margin-top: 5px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .service-content .page-ttl-wrap {
        background: url(./images/service-road-infrastructure-top.jpg)no-repeat center center /cover;
    }
    .service-pavement .page-ttl-wrap {
        background: url(./images/service-pavement-top.jpg)no-repeat center center /cover;
    }
    .service-hillside .page-ttl-wrap {
        background: url(./images/service-hillside-top.jpg)no-repeat center center /cover;
    }
    .service-slope-protection .page-ttl-wrap {
        background: url(./images/service-slope-protection-top.jpg)no-repeat center center /cover;
    }
    .service-snow-removal .page-ttl-wrap {
        background: url(./images/service-snow-removal-top.jpg)no-repeat center center /cover;
    }
    .service-content h1 {
    }
    .service-content-concept-bigttx {
        font-size: 24px;
        line-height: 1.35;
    }
    .service-content-concept {
        flex-direction: column;
    }
    .service-content-concept-txt {
        width: 100%;
    }
    .service-content-concept-txt p + p {
        margin-top: 15px;
    }
    .service-content-concept-img {
        width: 100%;
    }
    .service-content-works {
        background: var(--color-gray);
        padding: 60px 5%;
        margin-top: 60px;
    }
    .service-content-works .page-ttl03 h2 {
        font-size: 24px;
        line-height: 1.35;
    }
    .service-content-works-list ul {
        padding-left: 0;
    }
    .service-content-works-list ul li {
        align-items: normal;
    }
    .service-content-works-list ul li + li {
        margin-top: 30px;
    }
    .service-content-works-list-item-number {
        width: calc(24px + 15px);
        font-size: 24px;
        padding-right: 15px;
        margin-right: 15px;
    }
    .service-content-works-list-item-txt {
        width: 100%;
    }
    .service-content-works-list-item-txt h3 {
        font-size: 18px;
        line-height: 1.35;
    }
    .service-content-works-list-item-txt p {
        margin-top: 5px;
    }
}
/* =============================
   記事ページ共有
   ============================= */
.post-content-main > * {
    margin-bottom: 30px;
}
/* --------------------------------
   記事ページ｜ブロックエディター
-------------------------------- */
h2.wp-block-heading {
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-text-bk);
    background-color: var(--color-gray);
    padding: 15px 10px 12px;
    border-bottom: 1px solid var(--color-main);
    margin-top: 120px;
    margin-bottom: 40px;
}
h3.wp-block-heading {
    font-size: 20px;
    line-height: 1.25;
    color: var(--color-text-bk);
    margin-top: 60px;
    position: relative;
    padding: 2px 5px;
    border-left: solid 5px var(--color-main);
    margin-bottom: 32px;
}
h4.wp-block-heading {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-bk);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-main);
    margin-top: 32px;
    margin-bottom: 32px;
}
h5.wp-block-heading {
    margin-top: 32px;
}
h6.wp-block-heading {
    margin-top: 32px;
}
@media screen and (min-width: 0em) and (max-width: 1000px) {
    h2.wp-block-heading {
        font-size: 20px;
        line-height: 1.5;
        color: var(--color-text-bk);
        background-color: var(--color-gray);
        padding: 15px 10px 12px;
        border-bottom: 1px solid var(--color-main);
        margin-top: 80px;
        margin-bottom: 30px;
    }
    h3.wp-block-heading {
        font-size: 16px;
        line-height: 1.25;
        color: var(--color-text-bk);
        margin-top: 50px;
        position: relative;
        padding: 2px 5px;
        border-left: solid 5px var(--color-main);
        margin-bottom: 26px;
    }
    h4.wp-block-heading {
        font-size: 14px;
        line-height: 1.5;
        color: var(--color-text-bk);
        padding-bottom: 10px;
        border-bottom: 1px solid var(--color-main);
        margin-top: 24px;
        margin-bottom: 24px;
    }
    h5.wp-block-heading {
        margin-top: 24px;
    }
    h6.wp-block-heading {
        margin-top: 24px;
    }
}
.wp-block-image {
    margin-top: 15px;
}
figure.wp-block-embed.wp-has-aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
figure.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
figure.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.wp-block-gallery .wp-block-image {
    flex: 0 1 calc(33.333% - 10px);
    box-sizing: border-box;
}
.wp-block-gallery .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 999px) {
    .wp-block-gallery .wp-block-image {
        flex: 0 1 calc(50% - 10px);
    }
}
@media screen and (max-width: 480px) {
    .wp-block-gallery .wp-block-image {
        flex: 0 1 100%;
    }
}

@media screen and (max-width: 999px) {
    .wp-block-column + .wp-block-column {
        margin-top: 30px;
    }
}
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
.wp-block-columns + .wp-block-columns {
    margin-top: 60px;
}
.wp-block-columns.has-2-columns .wp-block-column {
    flex: 0 1 calc(50% - 20px);
    box-sizing: border-box;
}
.wp-block-columns.has-3-columns .wp-block-column {
    flex: 0 1 calc(33.333% - 20px);
}
.wp-block-columns.has-4-columns .wp-block-column {
    flex: 0 1 calc(25% - 20px);
}
@media screen and (max-width: 999px) {
    .wp-block-columns.has-2-columns .wp-block-column,
    .wp-block-columns.has-3-columns .wp-block-column,
    .wp-block-columns.has-4-columns .wp-block-column {
        flex: 0 1 100%;
    }
}
.wp-block-button__link {
    margin-top: 30px;
    position: relative;
    display: inline-block;
    padding: 10px 80px 9px 50px;
    border-radius: 50px;
    filter: drop-shadow(0 0 6px rgba(12, 28, 32, 0.2));
    background: var(--color-main);
    color: #fff;
    text-decoration: none;
    line-height: 1;
}
.wp-block-button__link::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    z-index: 98;
}
.wp-block-button__link::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 8px;
    background: url("images/arrow.svg") no-repeat center center / 100%;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    z-index: 99;
}
.wp-block-button__link:hover {
    transition: .3s;
}
@media screen and (min-width: 0em) and (max-width: 1000px) {
    .wp-block-button__link {
        color: #fff;
        display: inline-block;
        background: var(--color-main);
        padding: 10px 80px 9px 50px;
        position: relative;
        border-radius: 50px;
    }
    .wp-block-button__link::before {
        width: 25px;
        height: 25px;
        right: 6px;
    }
    .wp-block-button__link::after {
        width: 12px;
        height: 6px;
        right: 13px;
    }
    .wp-block-button__link:hover {
    }
}
.wp-block-preformatted {
    margin-top: 30px;
    background-color: var(--color-back);
    border: 1px solid #ccc;
    border-left: 5px solid var(--color-main);
    padding: 20px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.wp-block-flexible-table-block-table {
}
.wp-block-table {
}
.wp-block-table>table {
    margin-bottom: 0;
}
.wp-block-table table , .wp-block-flexible-table-block-table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 1.6;
    max-width: 100%;
    text-align: left;
    width: 100%
}
.wp-block-table tfoot, .wp-block-table thead, .wp-block-flexible-table-block-table tfoot, .wp-block-flexible-table-block-table thead {
    border: none;
}
.wp-block-table thead td,.wp-block-table thead th, .wp-block-flexible-table-block-table thead td, .wp-block-flexible-table-block-table thead th {
    background-color: var(--thead-color--bg,var(--color-main));
    color: var(--thead-color--txt,#fff)
}
.wp-block-table td, .wp-block-table th, .wp-block-flexible-table-block-table td, .wp-block-flexible-table-block-table th {
    background-clip: padding-box;
    border: 1px solid #dcdcdc;
    min-width: 0!important;
    padding: 8px 12px;
    position: relative;
    vertical-align: top;
    z-index: 0;
}
.wp-block-table>table tr>:first-child:not(.-no1),  .wp-block-flexible-table-block-table tr>:first-child:not(.-no1) {
    max-width: auto;
    min-width: 0;
    width: auto;
}
.wp-block-separator {
    margin: 60px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    border-top: 1px solid rgba(0, 0, 0, .3);
}
.wp-block-quote {
    padding: 1.5em 2em 1.5em 3em;
    background: var(--color-gray);
    position: relative;
    margin-top: 30px;
}
.wp-block-quote::before {
    position: absolute;
    content: "";
    display: block;
    width: 5px;
    height: calc(100% - 3em);
    top: 1.5em;
    left: 1.5em;
    border-left: solid 1px rgba(180, 180, 180, .75);
    border-right: solid 1px rgba(180, 180, 180, .75);
}

/* --------------------------------
   記事｜パーツ
-------------------------------- */
.post-parts-banner {
    margin-top: 60px;
    background: url(./images/post-parts-banner-back.jpg) no-repeat center left / cover;
    padding: 60px 30px;
    color: #fff;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-parts-banner-txt p {
    margin-top: 5px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .post-parts-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 5%;
    }
    .post-parts-banner .btn02 {
        margin-top: 10px;
    }
}

/* --------------------------------
   記事｜ページジェネレーション
-------------------------------- */
.nav-links-wrap {
    margin-top: 15px;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.25px;
    height: 27.5px;
    width: 27.5px;
    font-size: 16px;
    color: var(--txt);
    border-radius: 100%;
    will-change: color, background-color;
    transition: color 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95), background-color 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.nav-links .page-numbers.current {
    color: var(--txt);
    background-color: #f2f1f0;
}
.fa-chevron-right {
    background: url(images/arrow.svg) no-repeat center center / 100%;
    width: 14px;
    height: 10px;
}
.fa-chevron-left {
    background: url(images/arrow.svg) no-repeat center center / 100%;
    width: 14px;
    height: 10px;
    transform: rotate(180deg);
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .nav-links-wrap {
        margin-top: 15px;
    }
    .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .nav-links .page-numbers {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-text-bk);
        border-radius: 100%;
        will-change: color, background-color;
        transition: color 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95), background-color 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    }
    .nav-links .page-numbers.current {
        color: var(--color-text-bk);
        background-color: #f2f1f0;
    }
    .fa-chevron-right {
        background: url(images/arrow.svg) no-repeat center center / 100%;
        width: 14px;
        height: 10px;
    }
    .fa-chevron-left {
        background: url(images/arrow.svg) no-repeat center center / 100%;
        width: 14px;
        height: 10px;
        transform: rotate(180deg);
    }
}
/* --------------------------------
   記事リスト｜部品
-------------------------------- */
.post-time-item {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
}
.post-taxonomy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 5px;
}
.post-taxonomy-item , a .post-taxonomy-item {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: var(--color-main);
    padding-left: 10px;
    margin-top: 0;
}
.post-taxonomy-item::before , a .post-taxonomy-item::before {
    position: absolute;
    content: "#";
    font-size: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.post-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 5px;
}
.post-tag-item , a .post-tag-item {
    font-size: 14px;
    position: relative;
    color: #A0A0A0;
}
/* --------------------------------
   記事リスト｜縦リスト
-------------------------------- */
.c-postList {
}
.c-postList__items {
    padding-left: 0;
}
.c-postList__item {
    list-style: none;
}
.c-postList__item > a {
    padding-top: 30px;
    padding-bottom: 25px;
    padding-left: 8px;
    border-bottom: 1px solid #ccc;
    color: var(--color-text-bk);
    display: block;
}
.c-postList__item > a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.c-postList__item:first-child > a {
    border-top: 1px solid #ccc;
}
.c-postList__contents {
}
.c-postList__info {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    line-height: 1;
    flex-wrap: wrap;
}
.c-postList__text {
    margin-top: 5px;
}
@media screen and (max-width: 1000px) {
    .c-postList__item > a {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .c-postList__info {
        flex-wrap: wrap;
        gap: 8px 8px;
    }
    .c-postList__text {
        margin-top: 3px;
    }
}

/* --------------------------------
   記事リスト｜1カラム（サムネあり）
-------------------------------- */
.c-1columnList {
    margin-top: 120px;
    border-top: 1px solid #ccc;
    padding-top: 60px;
}
.c-1columnList__items {
    margin-top: 30px;
}
.c-1columnList__item {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.c-1columnList__item + .c-1columnList__item {
    margin-top: 40px;
}
.c-1columnList__article {
}
.c-1columnList__link {
    gap: 5%;
    color: var(--color-text-b);
    display: block;
}
.c-1columnList__imgWrap {
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.c-1columnList__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.c-1columnList__txt {
}
.c-1columnList__cat {
    margin-top: 10px;
    display: flex;
    gap: 2px 8px;
    flex-wrap: wrap;
    color: var(--color-main);
}
.c-1columnList__catItem {
    background: #141212;
    padding: 3px 8px 2px;
    line-height: 1;
    font-size: 1.20px;
    border-radius: 20px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {

}
/* --------------------------------
   記事リスト｜2カラム
-------------------------------- */
.c-2columnList {
    margin-top: 120px;
    border-top: 1px solid #ccc;
    padding-top: 60px;
}
.c-2columnList__items {
    margin-top: 30px;
}
.c-2columnList__item {
    width: calc((100% - 5%) / 2);
}
.c-2columnList__item + .c-2columnList__item {
    margin-top: 20px;
}
.c-2columnList__article {
}
.c-2columnList__link {
    gap: 5%;
    color: var(--color-text-b);
    display: block;
}
.c-2columnList__imgWrap {
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.c-2columnList__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.c-2columnList__txt {
}
.c-2columnList__cat {
    margin-top: 10px;
    display: flex;
    gap: 2px 8px;
    flex-wrap: wrap;
    color: var(--color-main);
}
.c-2columnList__catItem {
    background: #141212;
    padding: 3px 8px 2px;
    line-height: 1;
    font-size: 1.20px;
    border-radius: 20px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {

}
/* --------------------------------
   記事リスト｜3カラム
-------------------------------- */
.c-3columnList {
}
.c-3columnList__items {
    display: flex;
    gap: 30px 2.5%;
    padding-left: 0;
    list-style: none;
    flex-wrap: wrap;
}
.c-3columnList__item {
    background: var(--color-bg-wh);
    border-radius: 5px;
    width: calc((100% - 5%) / 3);
    filter: drop-shadow(1px 1px 7px rgba(0, 0, 0, 0.08))
}
.c-3columnList__item + .c-3columnList__item {
}
.c-3columnList__article {
}
.c-3columnList__link {
    color: var(--color-text-b);
    display: block;
}
.c-3columnList__imgWrap {
    border-radius: 5px 5px 0 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.c-3columnList__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.c-3columnList__txt {
    background: var(--color-bg-wh);
    padding: 20px 20px 15px;
}
.c-3columnList__title {
    font-weight: 600;
    line-height: 1.5;
    margin-top: 10px;
    font-size: 16px;
}
.c-3columnList__taxonomy {
    display: flex;
    gap: 2px 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: space-between;
}
.c-3columnList__taxonomy-items {
    width: calc(100% - 72px - 8px);
}
.c-3columnList .post-time-item {
    position: absolute;
    right: 10px;
    bottom: 10px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .c-3columnList__items {
        margin-top: 30px;
        gap: 20px 2.5%;
    }
    .c-3columnList__item {
        width: 100%;
    }
    .c-3columnList__item + .c-3columnList__item {
        margin-top: 20px;
    }
    .c-3columnList__txt {
        width: 100%;
        padding: 15px 5% 20px;
    }
    .c-3columnList__link {
        flex-direction: column;
        gap: 10px 0;
    }
    .c-3columnList__title {
        font-size: 16px;
    }
    .c-3columnList__date {
        bottom: 0px;
        right: 10px;
    }
}
/* --------------------------------
   記事リスト｜事例
-------------------------------- */
.c-case-columnList {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}
.c-case-columnList-item {
    width: calc((100% - 40px) / 3);
    list-style: none;
}
.c-case-columnList-con {
    padding: 30px 30px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: var(--color-bg-wh);
    display: block;
}
.c-case-columnList-con-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 20px;
}
.c-case-columnList-con-top-txt {
    width: calc(100% - 80px - 20px);
}
.c-case-columnList-con-top-txt-ttl {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    line-height: 1.5;
}
.c-case-columnList-con-top-img {
    width: 80px;
    height: auto;
    border-radius: 990px;
    overflow: hidden;
}
.c-case-columnList-con-top-img img {
    width: 100%;
    height: auto;
}
.c-case-columnList-con-under {
    margin-top: 20px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {
    .c-case-columnList {
        gap: 20px 5%;
    }
    .c-case-columnList-item {
        width: 100%;
    }
    .c-case-columnList-con {
        padding: 20px 5%;
    }
    .c-case-columnList-con-top-txt {
        width: 100%;
    }
    .c-case-columnList-con-top-img {
        display: none;
    }
    .c-case-columnList-con-under {
        margin-top: 15px;
    }
}
/* =============================
   記事アーカイブ
   ============================= */
.c-archive-taxonomy-wrap {
    margin-bottom: 40px;
}
.c-archive-taxonomy-list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.c-archive-taxonomy-item {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 50px;
}
.c-archive-taxonomy-item .btn02 {
    padding: 9px 40px 7px 20px;
    min-width: 140px;
    filter: drop-shadow(0 0 0 rgba(12, 28, 32, 0));
}
.c-archive-taxonomy-item .btn02-txt {
    font-weight: 400;
}
.c-archive-taxonomy-item .btn02-arrow {
    width: 26px;
    height: 26px;
}
@media screen and (min-width: 0) and (max-width: 1000px) {

}
/* --------------------------------
   記事アーカイブ｜事例
-------------------------------- */
.case-filter-form {
}
.case-filter-submit-reset {
    display: inline-block;
    padding: 6px 20px 5px;
    line-height: 1;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #5a5a5a;
    border-right: 1px solid #ccc;
}
.case-filter-submit-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
}
.case-selected-filters-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    line-height: 1;
}
.case-selected-filter-item {
}
.case-filter-submit-btn {
    display: inline-block;
    padding: 6px 20px 5px;
    line-height: 1;
    border-radius: 5px;
    color: var(--color-text-bk);
    cursor: pointer;
    border: 1px solid #ccc;
}
.case-filter {
    margin-bottom: 40px;
}
.case-tab-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    column-gap: 5px;
    border-bottom: 2px solid #ddd;
}
.case-tab-button {
    width: calc((100% / 3) - 5px);
    padding: 10px 20px 9px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-bk);
    background: var(--color-gray);
}
.case-tab-button.is-active {
    font-weight: bold;
    border-bottom-color: var(--color-main);
}
.case-tab-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    transition: all 0.4s ease-out;
}
.case-tab-panel.is-active {
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: 500px;
}
.case-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    border: none;
}
.case-checkbox-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.case-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.case-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
@media (max-width: 1000px) {
    .case-filter-form {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }
    .case-filter-submit-reset {
        display: inline-block;
        padding: 6px 15px 5px;
        line-height: 1;
        border-radius: 5px;
        border: 1px solid #ccc;
        color: #5a5a5a;
        border-right: 1px solid #ccc;
        font-size: 14px;
    }
    .case-selected-filters-display {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .case-tab-buttons,.case-tab-panels,.case-filter-submit-area {
        display: contents;
    }
    .case-tab-buttons {
        border-bottom: none; margin-top: 0;
    }
    .case-tab-button {
        width: 100%;
        display: block;
        text-align: left;
        padding: 10px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #f6f8fa;
        color: var(--color-text-bk);
        position: relative;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
    }
    .case-tab-button::after {
        content: "▾";
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform .2s ease;
    }
    .case-tab-button.is-active {
        background: var(--color-gray);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .case-tab-button.is-active::after {
        transform: translateY(-50%) rotate(180deg);
    }
    .case-tab-panel {
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0 0 8px 8px;
        background: #fff;
        padding: 0 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: -1px;
        transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
    }
    .case-tab-panel.is-active {
        padding: 12px;
        max-height: 60vh;
        opacity: 1;
        margin-top: -11px;
    }
    .case-checkbox-items {
        gap: 12px 16px;
    }
    .case-checkbox-item {
        gap: 12px;
    }
    .case-checkbox-item label {
        line-height: 1;
    }
    .case-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    .case-tab-button:nth-of-type(1) { order: 10; }
    .case-tab-panel:nth-of-type(1)  { order: 11; }
    .case-tab-button:nth-of-type(2) { order: 12; }
    .case-tab-panel:nth-of-type(2)  { order: 13; }
    .case-tab-button:nth-of-type(3) { order: 14; }
    .case-tab-panel:nth-of-type(3)  { order: 15; }
    .case-tab-button:nth-of-type(4) { order: 16; }
    .case-tab-panel:nth-of-type(4)  { order: 17; }
    .case-tab-button:nth-of-type(5) { order: 18; }
    .case-tab-panel:nth-of-type(5)  { order: 19; }

    .case-filter-submit-reset {
        order: 1;
        align-self: flex-start;
    }
    .case-selected-filters-display {
        order: 2;
    }
    .case-filter-submit-btn {
        order: 999;
        width: 100%;
        padding: 14px 18px;
        border-radius: 8px;
        font-weight: 700;
        border: 1px solid var(--color-main);
        background: var(--color-main);
        color: #fff;
        position: sticky; bottom: 0; z-index: 1;
    }
    .case-filter {
        margin-bottom: 20px;
    }
}

/* =============================
   記事ページ詳細
   ============================= */
/* --------------------------------
   記事詳細ページ｜共通
-------------------------------- */
.post {
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    line-height: 1.75;
}
.post-main {
    width: calc(100% - 300px - 60px);
    margin-left: auto;
    margin-right: auto;
}
h1.post-ttl {
    font-size: 36px;
    color: var(--color-main);
    line-height: 1.3;
    margin-bottom: 36px;
}
.post-info {
    display: flex;
    gap: 20px 20px;
    margin-bottom: 60px;
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.post-main a.post-taxonomy-item {
    font-size: 18px;
}
.post-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
#post-footer {
    background: var(--color-back);
}
#post-footer .page-ttl03 h2 {
    border-bottom: #ccc 3px solid;
}
@media screen and (max-width: 999px) {
    .post-main {
        width: 100%;
    }
    h1.post-ttl {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .post-main a.post-taxonomy-item {
        font-size: 14px;
    }
}
/* --------------------------------
   記事詳細ページ｜目次
-------------------------------- */
.post-toc {
    margin-bottom: 120px;
}
.updaters-toc-wrapper {
    position: relative;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--color-back);
    margin-bottom: 30px;
    border-bottom: 4px #ccc double;
    border-top: 4px #ccc double;
}
.updaters-toc-wrapper.expanded {
    transition: max-height 0.4s ease;
}
.updaters-toc-title {
    font-size: 16px;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 10px;
    line-height: 1;
}
.updaters-toc-list {
    list-style: none;
    margin: 0;
    padding: 0 40px 20px;
    counter-reset: toc-counter;
}
.updaters-toc-wrapper.expanded .updaters-toc-content {
    padding-bottom: 30px;
}
.updaters-toc-list > .updaters-toc-item.level-2 {
    counter-increment: toc-counter;
    position: relative;
    padding-left: 30px;
    margin: 0 0 15px;
}
.updaters-toc-list > .updaters-toc-item.level-2::before {
    color: var(--color-main);
    content: counter(toc-counter, decimal-leading-zero) " |";
    position: absolute;
    left: 0;
    top: -1px;
}
.updaters-toc-sublist {
    list-style: none;
    margin: 6px 0;
}
.updaters-toc-sublist .updaters-toc-item {
    position: relative;
    padding-left: 10px;
}
.updaters-toc-sublist .updaters-toc-item::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: calc(50% - 1px);
    left: 0;
    transform: translate(-50%, -50%);
    background-color: var(--color-main);
    border-radius: 50px;
}
.updaters-toc-item a {
    text-decoration: none;
}
.updaters-toc-item a:hover {
    text-decoration: underline;
}
.toggle-btn-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
    height: auto;
    padding-bottom: 5px;
    z-index: 99;
}
.toggle-btn-wrap::before {
    background: #F2F1F0;
    bottom: 0;
    content: "";
    height: 37px;
    left: 0;
    opacity: .75;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.updaters-toc-toggle {
    cursor: pointer;
    background: var(--color-back);
    line-height: 1;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 5px 60px 4px;
    border-radius: 50px;
}
/* --------------------------------
   記事詳細ページ｜事例
-------------------------------- */
.post-case-header {
    display: flex;
    justify-content: space-between;
    gap: 20px 20px;
    margin-bottom: 40px;
}
.post-case-header-txt {
    width: calc(100% - 120px - 20px);
}
.post-case-header .post-info {
    margin-bottom: 0;
}
.post-case-header .c-case-columnList-con-top-img {
    width: 120px;
    height: 120px;
}
#post-case a .post-taxonomy-item {
    font-size: 18px;
}
#post-case .post-info {
    flex-direction: row;
}
.post-case-info {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}
.post-case-info-content {
    display: flex;
    background: var(--color-gray);
    gap: 20px 20px;
    padding: 20px 15px 18px;
}
.post-case-info-content-item {
    width: auto;
    display: flex;
    min-width: 150px;
}

@media screen and (max-width: 999px) {
    .post-case-header-txt {
        width: 100%;
    }
    .post-case-header .post-info {
        margin-bottom: 0;
    }
    .post-case-header .c-case-columnList-con-top-img {
        display: none;
    }
    #post-case a .post-taxonomy-item {
        font-size: 14px;
    }
    #post-case .post-info {
    }
    .post-case-info {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .post-case-info-content {
        gap: 5px 5%;
        padding: 15px 5% 12px;
    }
    .post-case-info-content-item {
        width: calc(50% - 2.5%);
    }
}

/* =============================
   サイドバー
   ============================= */
#siderbar {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.sidebar-post , .c-sideTaxonomies__group {
    margin-bottom: 60px;
}
.sidebar-post h3 , .c-sideTaxonomies__group h3 {
    position: relative;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    font-size: 20px;
    margin-bottom: 20px;
}
.sidebar-post h3::before , .c-sideTaxonomies__group h3::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-main);
}
.sidebar-post-list {
    list-style: none;
    padding-left: 0;
}
.sidebar-post-list li {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.sidebar-post-list li:last-child {
    border-bottom: none;
}
.sidebar-post-item {
    display: flex;
    gap: 10px;
    color: var(--color-text-bk);
}
.sidebar-post-item-img {
    width: 38%;
    filter: drop-shadow(1px 2px 1px rgba(12, 28, 32, 0.18));
}
.sidebar-post-item-txt {
    width: calc(62% - 10px);
    line-height: 1.35;
    font-weight: 600;
}
.c-sideTaxonomies__list {
    list-style: none;
    padding-left: 0;
}
.c-sideTaxonomies__level-group .cat-item {
    margin: 0;
}
.c-sideTaxonomies__level-group .cat-item a {
    display: block;
    width: 100%;
    line-height: 1;
    padding-top: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
    padding-left: 5px;
}
.c-sideTaxonomies__level-group .cat-item:first-child a {
    border-top: 1px solid #eee;
}
.c-sideTags {
    display: flex;
    gap: 10px 10px;
    flex-wrap: wrap;
}
.c-sideTags__item {
    margin: 0;
    line-height: 1;
}
.c-sideTags__link {
    min-width: 60px;
    text-align: center;
    display: inline-block;
    padding: 5px 14px;
    line-height: 1;
    background: var(--color-back);
    color: var(--color-text-bk);
    font-size: 14px;
}

.case-filter-sidebar {
    background: var(--color-back);
    padding: 30px 15px 20px;
    margin-bottom: 60px;
}
.case-filter-sidebar h3 {
    border-bottom: none;
    position: inherit;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
}
.case-filter-select {
    margin-top: 15px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}
.case-filter-select:first-child {
    padding-top: 0;
    border: none;
}
.case-filter-select label {
    display: block;
    font-weight: 600;
    line-height: 1;
}
.case-filter-select select {
    display: block;
    width: 100%;
    background: var(--color-bg-wh);
    padding: 6px 5px;
    border-radius: 5px;
    margin-top: 5px;
}
.case-filter-actions {
    text-align: center;
    margin-top: 25px;
}
.case-filter-actions .case-filter-submit-btn {
    display: inline-block;
    margin: ;
    padding: 6px 20px 5px;
    line-height: 1;
    border-radius: 5px;
    color: var(--color-text-bk);
    cursor: pointer;
    border: 1px solid #ccc;
}


/* =============================
   資料請求ページ
   ============================= */
.document {
    display: flex;
    justify-content: space-between;
}
.document-contents {
  width: 58%;
}
.document-con-ttl h2 {
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 60px;
    border-bottom: 5px solid var(--color-main);
    line-height: 1.35;
}
.document-con-ttl p {
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 5px solid var(--color-main);
}
.document-contents .post-thumbnail {
    box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.035);
}
.document-subcon-wrap {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #ccc;
}
.document-subcon-service-ttl {
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}
.document-subcon-service {
    text-align: center;
    margin-top: 30px
}
.document-subcon-service figure {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.document-subcon-service figure + figure {
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 30px;
}
.document-subcon-service-txt {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 20px;
}
.document-subcon-sev-ttl , .document-subcon-logo-ttl {
    text-align: center;
    line-height: 1;
}
.document-subcon-sev-ttl p , .document-subcon-logo-ttl h2 {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}
.document-subcon-sev-ttl h2 {
    position: relative;
}
.document-subcon-sev-txt {
    font-size: 1.8rem;
    margin-top: 30px;
}
.document-subcon-sev-txt p + p {
    margin-top: 5px;
}
.document-subcon-logo {
}
.document-subcon-logo-ttl p {
    font-size: 1.2rem;
    margin-top: 5px;
}
.document-subcon-logo-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1px 20px;
    margin-top: 30px;
}
.document-subcon-logo-con figure {
    width: calc((100% - 60px) / 3);
    text-align: center;
}
.form-document {
    width: 38%;
}
.form-document-wrap {
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-document-input {
    display: block;
    margin-top: 30px;
}
.form-document-input span {
    display: block;
}
span.form-document-name-ttl {
    display: inline-block;
}
.form-document-name-ttl {
    margin-bottom: 7px;
    position: relative;
    padding-right: 40px;
}
.form-document-name-ttl.required::after {
    position: absolute;
    content: "必須";
    color: #fff;
    font-size: 12px;
    background: var(--color-main);
    padding: 5px 7px 4px;
    line-height: 1;
    border-radius: 20px;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
.form-document-name-txt {
    padding: 5px 10px;
    border-radius: 5qpx;
    border: 1px solid #ccc;
    margin-top: 5px;
}
.form-document-input .wpcf7-form-control-wrap {
    display: block;
}
.form-document-input .wpcf7-form-control {
    font-size: 16px;
    width: 100%;
}
.form-document .wpcf7-not-valid-tip {
	color: var(--color-red);
}
.form-policy-wrap {
    margin-top: 30px;
}
.form-policy {
    margin-bottom: 10px;
    font-size: 12px;
}
.form-document-wrap .wpcf7-spinner {
    position: absolute;
    top: 24%;
    right: 70px;
}
.form-document-warning {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 30px;
    background: var(--color-main);
    display: block;
    color: #fff;
    padding: 10px 0 9px;
    line-height: 1;
}
@media screen and (max-width: 980px) {
    ..document {
        flex-direction: column;
    }
    .document-contents {
      width: 100%;
    }
    .document-con-ttl h1 {
        font-size: 3.2rem;
    }
    .document-con-ttl p {
        font-size: 2.4rem;
        padding-bottom: 15px;
        margin-bottom: 30px;
        border-bottom: 3px solid var(--color-main);
    }
    h2.document-subcon-service-ttl {
        font-size: 2rem;
    }
    .document-subcon-service {
        margin: 0 auto;
        margin-top: 20px;
        width: 80%;
    }
    .document-subcon-logo-ttl h2 {
        font-size: 2rem;
    }
    .document-subcon-logo-con {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1px 15px;
        margin-top: 20px;
    }
    .document-subcon-logo-con figure {
        width: calc((100% - 30px) / 3);
        max-height: 75px;
        text-align: center;
    }
    .form-document {
        width: 100%;
        margin-top: 60px;
    }
    .form-document-wrap {
        padding: 30px 5%;
    }
    .form-document-input {
        display: block;
        margin-top: 30px;
    }
    .form-policy-wrap .checkbox [type=checkbox] {
		width: 20px;
		height: 20px;
	}
}

/* =============================
   404ページ
============================= */
.page-404-under {
    border-top: 1px solid #eee;
    margin-top: 100px;
}



/* =============
お問い合わせページ
=============== */
.form-content-wrap {
    padding: 80px 120px 80px;
    border-radius: 10px;
    background: var(--color-gray);
}
.form-page-con-img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-wh);
    border-radius: 100px;
    transform: scale(1.5);
}
.form-page-con-ttl {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 600;
}
.form-page-con-txt {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 999px) {
    .form-content-wrap {
        padding: 60px 5% 40px;
    }
    .form-page-con-ttl {
        font-size: 20px;
    }
}
/*
入力確認*/
.confirm-txt {
    padding: 10px 10px 9px;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-top: 4px;
    display: block;
    background: var(--color-bg-wh);
}
.confirm-txt-last {
	margin-bottom: 60px;
}
#form .wpcf7-previous {
    background: transparent!important;
    box-shadow: initial;
    border: solid 1px var(--color-text-bk)!important;
    font-size: 12px;
    color: var(--color-text-bk);
    width: 100%;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 20px;
    border-radius: 100px!important;
    font-weight: normal;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 20px;
}
/*サンクスページ*/
.thanks-page-check-icon svg {
    margin: 0 auto;
}
.thanks-page-con-ttl {
  text-align: center;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
}
.thanks-page-con-txt {
  text-align: center;
  margin-top: 15px;
}
#thanks h2.wp-block-heading {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-text-bk);
    text-align: center;
    margin-top: 30px;
    background: none;
    border: none;
}

@media screen and (min-width: 0em) and (max-width: 1000px) {
}
/* =============
フォーム共通
=============== */
/* =============
フォームアイテム
=============== */
#form label {
    display: block;
    margin-top: 30px;
}
#form input, #form select, #form textarea {
    background-color: var(--color-bg-wh);
    border: 1px solid #ccc;
    border-radius: 0;
    color: var(--color-text-bk);
    padding: 5px 10px;
    width: 100%;
    border-radius: 5px;
}
#form select {
    padding: 8px 10px;
    color: var(--color-text-bk);
}
#form select option {
    color: var(--color-text-bk);
}
#form input::placeholder {
	color: #A0A0A0;
}
.form-btn-submit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#form .wpcf7-submit {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 18px;
    border-radius: 100px;
    background: var(--color-main);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, .15));
    transition: .3s;
    border: none;
}
.wpcf7-submit:hover , .wpcf7-previous:hover {
  opacity: .6;
}



.form-item-ttl {
    line-height: 1;
    font-weight: 600;
    position: relative;
}
.form-item-ttl.required::before {
    position: absolute;
    content: "必須";
    font-size: 10px;
    top: 45%;
    right: -50px;
    background: var(--color-red);
    color: var(--color-text-wh);
    padding: 4px 10px 3px;
    line-height: 1;
    border-radius: 30px;
    transform: translate(0, -50%);
}
.form-btn {
    margin-top: 30px;
    text-align: center;
}
.form-smalltxt {
    margin-bottom: 15px!important;
    font-size: 14px;
}
.form-smalltxt a {
  text-align: center;
  display: block;
  line-height: 1;
  margin-top: -10px;
  font-size: 14px;
  color: var(--color-text-bk);
}
/* --------------------------------
   フォームアイテム｜プラポリ承認ボタン
-------------------------------- */
#form .checkbox {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 0;
}
#form .checkbox label {
    text-align: center;
    margin-top: 5px;
}
.checkbox input[type="checkbox"] {
  display: none!important;
}
.checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  display: inline-block;
}
.checkbox .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: var(--color-bg-wh);
  transition: all 0.2s ease;
}
.checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--color-text-wh);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

