@charset "utf-8";
/*
Theme Name: ものづくり総合技術展2025.11
Author: BASARA
Version: 1.0
*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    backface-visibility: hidden;
}
*:before,
*:after {
    pointer-events: none;
}
:root {
    --base-font-color: #333333;
    --base-bg-color: #fff;
    --blue: #23b9e1;
    --pink: #ea6da4;
    --green: #6fb92c;
    --orange: #ef8200;
    --purple: #9700b9;
    --red: #d01000;
    --blue-green: #2eb6aa;
    --main-color: #00a4e3;
    --accent-color: #ffe200;
    --gray-color: #e6e6e6;
    --small-contents-width: 800px;
    --main-contents-width: 1000px;
    --medium-contents-width: 1200px;
    --large-contents-width: 1540px;
    --thin-font-weight: 300;
    --normal-font-weight: 400;
    --bold-font-weight: 700;
    --black-font-weight: 900;
}
html {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    color: var(--base-font-color);
    font-size: 20px;
    font-weight: var(--normal-font-weight);
    line-height: 1.8;
    overflow-wrap: anywhere; /* 収まらない場合に折り返す */
    word-break: normal; /* 単語の分割はデフォルトに依存 */
    line-break: strict; /* 禁則処理を厳格に適用 */
    margin: 0;
    padding: 0;
}
div,
p,
ul,
ul li,
dl,
dt,
dd {
    font-size: 1em;
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img,
video,
object {
    max-width: 100%;
    height: auto;
    border: none;
}
img {
    display: block;
    image-rendering: -webkit-optimize-contrast;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    line-height: 1;
    letter-spacing: 0.025em;
    padding: 0;
    margin: 0;
}
a {
    color: var(--link-color);
    text-decoration: none;
    transition: all ease 0.3s;
}
a:hover {
    color: var(--main-color);
    opacity: 1;
    text-decoration: underline;
}
a[href^="tel:"] {
    text-decoration: none;
    pointer-events: none;
    text-emphasis: none !important;
}
a[href^="fax:"] {
    text-decoration: none;
    pointer-events: none;
}
.pc {
    display: inherit;
}
.tb {
    display: none;
}
.mb {
    display: none;
}
@media only screen and (max-width: 820px) {
    body {
        font-size: 18px;
    }
    .pc {
        display: none;
    }
    .tb {
        display: block;
    }
    .mb {
        display: none;
    }
}
@media only screen and (max-width: 468px) {
    body {
        font-size: 15px;
        min-width: 375px;
    }
    a[href^="tel:"] {
        pointer-events: all;
    }
    .pc {
        display: none;
    }
    .tb {
        display: none;
    }
    .mb {
        display: block;
    }
}

/* =========================================================================================
Header
=========================================================================================*/
#header {
    width: 100%;
    height: 100px;
    background: #fff;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: 0.5s;
}
#header .inner {
    width: calc(100% - 20px - 20px);
    max-width: 1920px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    padding: 0;
    position: relative;
}
#header .logo {
    width: 20%;
    max-width: 280px;
}

/*globalnavi*/
#header #g-navi-area {
    width: 100%;
    height: 100%;
}
#header #g-navi-list {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(250px, 25%);
    align-items: center;
    gap: 20px;
}
#header #g-navi {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}
#header #g-navi ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 3%;
}
#header #g-navi ul li {
    font-size: clamp(0.889rem, calc(0.538rem + 0.645vw), 1.111rem); /* min: 16px, max: 20px */
    font-weight: var(--bold-font-weight);
}
#header #g-navi ul li a,
#header #g-navi ul li span {
    color: var(--base-font-color);
    display: block;
}
#header #g-navi ul li a:hover {
    text-decoration: none;
}
/*アイコン*/
#header #g-navi ul li.overview > a,
#header #g-navi ul li.overview > span {
    background: url(images/common/navi_overview.svg) no-repeat left;
    background-size: 1.2em;
    padding-left: 1.45em;
}
#header #g-navi ul li.news > a,
#header #g-navi ul li.news > span {
    background: url(images/common/navi_news.svg) no-repeat left;
    background-size: 1.3em;
    padding-left: 1.55em;
}
#header #g-navi ul li.event > a,
#header #g-navi ul li.event > span {
    background: url(images/common/navi_event.svg) no-repeat left;
    background-size: 1.2em;
    padding-left: 1.4em;
}
#header #g-navi ul li.exhibitor-list > a,
#header #g-navi ul li.exhibitor-list > span {
    background: url(images/common/navi_exhibitor.svg) no-repeat left;
    background-size: 0.9em;
    padding-left: 1.2em;
}
#header #g-navi ul li.recruit > a,
#header #g-navi ul li.recruit > span {
    background: url(images/common/navi_recruit.svg) no-repeat left;
    background-size: 1em;
    padding-left: 1.25em;
}
#header #g-navi ul li.access > a,
#header #g-navi ul li.access > span {
    background: url(images/common/navi_access.svg) no-repeat left;
    background-size: 1em;
    padding-left: 1.2em;
}
#header #g-navi ul li.for-exhibitors > a,
#header #g-navi ul li.for-exhibitors > span {
    background: url(images/common/navi_for_exhibitors.svg) no-repeat left top 60%;
    background-size: 1.2em;
    padding-left: 1.25em;
}

/*ドロップダウン*/
#header #g-navi ul li.has-child {
    position: relative;
    padding-right: 1.1em;
}
#header #g-navi ul li.has-child::after {
    content: "";
    width: 0.75em;
    aspect-ratio: 4 / 3;
    background: var(--base-font-color);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    border-radius: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -30%;
    z-index: 10;
}
/*hoverしたら表示*/
#header #g-navi ul li.has-child:hover > ul,
#header #g-navi ul li.has-child ul li:hover > ul,
#header #g-navi ul li.has-child:active > ul,
#header #g-navi ul li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1;
}
/*2階層目以降*/
#header #g-navi ul ul {
    display: block;
    position: absolute;
    background: #fff;
    top: calc(100% + 10px);
    left: 0;
    transform: translateX(-1em);
    padding: 0.75em 1.5em;
    margin: 0;
    border: 2px solid #9a9a9a;
    border-radius: 20px;
    width: max-content;
    min-width: 100%;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: 0.3s;
}
#header #g-navi ul ul li + li {
    margin-top: 0.25em;
}
#header #g-navi ul ul li a {
    padding: 0.25em 0;
}
#header #g-navi ul ul li a:hover {
    opacity: 1;
}
/*ボタン*/
#header #header-btn ul {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    justify-content: right;
    gap: 15px;
}
#header #header-btn ul li a {
    color: rgba(0, 0, 0, 0);
    line-height: 1;
    text-indent: -9999px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto 0;
}
#header #header-btn ul li a:hover {
    opacity: 0.8;
}
#header #header-btn ul li.form a {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 230 / 75;
    background-image: url(images/common/btn_buyer_form.svg);
}
#header #header-btn ul li.insta a {
    width: 40px;
    aspect-ratio: 1 / 1;
    background-image: url(images/common/sns_insta.png);
}
#header #header-btn ul li.facebook a {
    width: 40px;
    aspect-ratio: 1 / 1;
    background-image: url(images/common/sns_fb.svg);
}

#header .g-navi-logo,
#header .openbtn,
#header #g-navi-sp {
    display: none; /*PCでは非表示*/
}
@media only screen and (max-width: 980px) {
    #header {
        height: 60px;
        padding: 0;
        background: #fff;
    }
    #header .inner {
        justify-content: space-between;
        padding-right: 50px;
    }
    #header .logo {
        width: 150px;
    }
    /* HAMBURGER MENU */
    #header .openbtn {
        color: #fff;
        font-size: 12px;
        line-height: 1;
        width: 65px;
        height: 60px;
        background: var(--main-color);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding-top: 2px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        transition: 0.3s;
    }
    #header .openbtn span {
        width: 50%;
        height: 2px;
        background: #fff;
        border-radius: 10px;
        transform-origin: 50% 40%;
        transition: 0.5s;
    }
    #header .openbtn.active {
        background: var(--light-color);
        gap: 0;
        padding-top: 12px;
    }
    #header .openbtn.active span:nth-of-type(1) {
        display: none;
    }
    #header .openbtn.active span:nth-of-type(2) {
        width: 55%;
        transform: rotate(32.5deg);
    }
    #header .openbtn.active span:nth-of-type(3) {
        width: 55%;
        transform: rotate(-32.5deg) translateY(-2px);
        margin-bottom: 15px;
    }
    #header #g-navi-area {
        display: initial;
        width: 350px !important;
        height: 100vh;
        background: var(--main-color);
        border-radius: 0;
        padding: 0;
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        transition: all 0.5s;
    }
    #header #g-navi-area.panelactive {
        /*アクティブクラスがついたら位置を0に*/
        right: 0;
    }
    #header #g-navi-list {
        /*ナビの数が増えた場合縦スクロール*/
        width: 100%;
        height: 100vh;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: start;
        gap: 5vh;
        padding: 120px 40px 100px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        z-index: 99;
    }
    #header #g-navi-list .g-navi-logo {
        display: inline-block;
        width: 150px;
        position: absolute;
        top: 20px;
        left: 30px;
    }
    #header #g-navi-list .g-navi-logo a:hover {
        opacity: 1;
    }
    #header #g-navi {
        height: auto;
    }
    #header #g-navi ul {
        width: 100%;
        flex-direction: column;
        align-items: start;
        justify-content: left;
        gap: 0.75em;
        padding: 0;
        margin: auto;
        position: relative;
        z-index: 999;
    }
    #header #g-navi ul li {
        font-size: 1.1em;
        text-align: left;
    }
    #header #g-navi ul li a,
    #header #g-navi ul li span {
        color: #fff;
        padding: 0;
        padding-left: 0 !important;
        background: none !important;
    }
    #header #g-navi ul li a:hover {
        opacity: 0.8;
    }
    /*2階層目以降*/
    #header #g-navi ul ul {
        line-height: 1.4;
        position: static;
        background: transparent;
        transform: none;
        padding: 0 0 0 1.25em;
        margin: 0;
        border: none;
        border-radius: 0;
        width: 100%;
        min-width: auto;
        /*表示*/
        display: block !important;
        visibility: visible;
        opacity: 1;
    }
    #header #g-navi ul li.has-child::after {
        display: none;
    }
    #header #g-navi ul li.has-child span,
    #header #g-navi ul li.has-child a {
        color: #fff;
    }
    #header #g-navi ul li.has-child ul {
        margin-top: 0.25em;
    }
    #header #g-navi ul li.has-child ul li + li {
        margin-top: 0.375em;
    }
    #header #g-navi ul ul li a {
        font-size: 0.85em;
        font-weight: var(--normal-font-weight);
        padding: 0;
    }
    #header #g-navi ul ul li a:hover {
        opacity: 0.8;
    }
    /*ボタン*/
    #header #header-btn {
        width: 100%;
        background: #fff;
        padding: 30px 10px;
        border-radius: 10px;
    }
    #header #header-btn ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    #header #header-btn ul li a {
        color: rgba(0, 0, 0, 0);
        line-height: 1;
        text-indent: -9999px;
        display: block;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        margin-inline: auto 0;
    }
    #header #header-btn ul li a:hover {
        opacity: 0.8;
    }
    #header #header-btn ul li.form a {
        width: 230px;
        aspect-ratio: 230 / 75;
        background-image: url(images/common/btn_buyer_form.svg);
    }
    #header #header-btn ul li.insta a {
        width: 40px;
        aspect-ratio: 1 / 1;
        background-image: url(images/common/sns_insta.png);
    }
    #header #header-btn ul li.facebook a {
        width: 40px;
        aspect-ratio: 1 / 1;
        background-image: url(images/common/sns_fb.svg);
    }

    #header #g-navi-sp {
        display: block;
        width: 100%;
    }
    #header #g-navi-sp ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 5px 1.5em;
        margin: auto;
    }
    #header #g-navi-sp li {
        font-size: 1rem;
        position: relative;
    }
    #header #g-navi-sp li a {
        color: #fff;
    }
    #header #g-navi-sp li a:hover {
        text-decoration: none;
        opacity: 0.8;
    }
}
@media only screen and (max-width: 468px) {
    #header #g-navi-area {
        width: 100% !important;
        right: -150%;
    }
    #header #g-navi-area #g-navi-list {
        min-width: 375px;
        padding: 120px 45px 100px;
    }
    #header #g-navi ul li {
        font-size: 1.2em;
    }
    #header #header-btn ul {
        gap: 20px;
    }
    #header #header-btn ul li.form a {
        width: 230px;
        max-width: 230px;
    }
}

/* =========================================================================================
Footer
=========================================================================================*/
#footer {
    font-size: 0.9em;
    color: #fff;
    background: var(--main-color);
    padding-block: 50px;
    position: relative;
}
#footer .inner {
    max-width: var(--large-contents-width);
    display: grid;
    grid-template-columns: minmax(400px, 35%) 1fr;
    gap: 50px 5%;
}

/* footer-navi */
#footer .f-navi {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    order: 2;
}
#footer .f-navi > div {
    width: 100%;
}
#footer .f-navi ul.menu {
    width: 100%;
    /* display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
    gap: 2em 7.5%;
}
#footer .f-navi ul.menu li {
    max-width: 180px;
    min-width: 80px;
    display: inline-table;
    list-style-type: none;
}
#footer .f-navi ul.menu > li > a,
#footer .f-navi ul.menu > li > span {
    color: #fff;
    font-size: 1.1em;
    font-weight: var(--bold-font-weight);
    display: block;
}
#footer .f-navi li ul.sub-menu {
    width: 100%;
    display: inline-block;
    margin-top: 0.25em;
    margin-left: 0;
}
#footer .f-navi li ul.sub-menu li {
    line-height: 1.4;
    display: list-item;
    list-style-type: none;
}
#footer .f-navi li ul.sub-menu li + li {
    margin-top: 0.25em;
}
#footer .f-navi li ul.sub-menu li a {
    color: #fff;
    font-size: 0.9em;
}
#footer .f-navi ul#menu-footernavi-small {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: right;
    gap: 0.5em 1em;
}
#footer .f-navi ul#menu-footernavi-small li a {
    font-size: 0.9em;
    font-weight: var(--nomal-font-weight);
}

/* info */
#footer .info {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1em;
    order: 1;
}
#footer .info .logo {
    width: 100%;
    max-width: 500px;
}
#footer .info .logo a:hover {
    opacity: 1;
}
#footer dl.address {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    justify-content: start;
    gap: 0;
}
#footer dl.address dd {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    gap: 0;
}
@media only screen and (max-width: 980px) {
    #footer .f-navi ul.menu {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5em 8%;
    }
    #footer .f-navi ul.menu li {
        max-width: none;
        min-width: auto;
    }
}
@media only screen and (max-width: 820px) {
    #footer .inner {
        display: flex;
        flex-direction: column;
    }
    #footer .f-navi {
        order: 1;
    }
    #footer .f-navi ul#menu-footernavi-small {
        justify-content: left;
    }
    #footer .info {
        order: 2;
        font-size: 0.9em;
        align-items: center;
    }
    #footer .info .logo {
        padding-left: 5%;
    }
    #footer .info .address {
        justify-content: center;
        margin-bottom: 2em;
    }
}
@media only screen and (max-width: 468px) {
    #footer .f-navi ul.menu {
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        justify-content: left;
        gap: 2em 20px;
        margin: auto;
    }
    #footer .f-navi ul.menu > li:nth-of-type(odd) {
        width: calc(60% - 20px);
    }
    #footer .f-navi ul.menu > li:nth-of-type(even) {
        width: 40%;
    }
    #footer .f-navi ul#menu-footernavi-small li {
        width: auto;
    }
}

/* =========================================================================================
Page Top
=========================================================================================*/
#page-top {
    display: none; /*最初は非表示*/
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
}
#page-top a {
    display: block;
    text-decoration: none;
    color: #fff;
    width: 60px;
    aspect-ratio: 1 / 1;
    line-height: 1;
    background: var(--main-color);
    text-indent: -9999px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
#page-top a::after {
    content: "";
    background: #fff;
    width: 60%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transform: rotate(-90deg);
    z-index: 1;
    -webkit-mask-image: url(images/common/arrow_mask.svg);
    mask-image: url(images/common/arrow_mask.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: 0.5s;
}
#page-top a:hover {
    background: var(--green);
    opacity: 1;
}
#page-top a:hover::after {
    background: #fff;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Layout
=========================================================================================*/
#wrapper {
    padding: 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#contents {
    padding-block: 100px 0;
    margin: 0 auto;
    position: relative;
}
#main {
    padding: 0;
    margin: 0;
}
section {
    position: relative;
    padding-block: 100px;
    margin: 0;
}
.inner {
    max-width: var(--main-contents-width);
    width: calc(100% - 40px - 40px); /*左右の余白40pxずつ*/
    margin: 0 auto;
    position: relative;
}
@media only screen and (max-width: 980px) {
    #contents {
        padding-block: 60px 0;
    }
}
@media only screen and (max-width: 820px) {
    section {
        padding-block: 75px;
    }
    .inner {
        width: calc(100% - 30px - 30px);
    }
}
@media only screen and (max-width: 468px) {
    section {
        padding-block: 50px;
    }
    .inner {
        width: calc(100% - 20px - 20px);
    }
}

/*sidebar*/
#contents:has(#sidebar) /*#sidebarがあるとき*/ {
    width: calc(100% - 40px - 40px);
    max-width: var(--main-contents-width);
    display: grid;
    grid-template-columns: minmax(200px, 10%) 1fr;
    gap: 5%;
    margin: 0 auto;
}
#contents:has(#sidebar) #main {
    min-width: 0; /*はみ出し対策*/
    order: 2;
}
#contents:has(#sidebar) #main .inner {
    width: 100%;
}
#sidebar {
    padding-block: 0 50px;
    margin: 0;
    order: 1;
}
#sidebar h2 {
    font-size: 1.25rem;
    border-bottom: 1px solid;
    padding-block: 0.5em;
    margin-bottom: 0.5em;
}
#sidebar nav {
    margin-bottom: 50px;
}
#sidebar .banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: start;
    gap: 5%;
}
#sidebar .banner a {
    display: block;
}
@media only screen and (max-width: 820px) {
    #contents:has(#sidebar) /*#sidebarがあるとき*/ {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    #contents:has(#sidebar) #main {
        order: 1;
    }
    #contents:has(#sidebar) #main .inner,
    #sidebar {
        width: calc(100% - 30px - 30px);
    }
    #sidebar {
        order: 2;
        margin-inline: auto;
    }
}
@media only screen and (max-width: 468px) {
    #contents:has(#sidebar) #main .inner,
    #sidebar {
        width: calc(100% - 20px - 20px);
    }
}

/* =========================================================================================
Tabs
=========================================================================================*/
.tabs {
    margin: auto;
}
.tabs .tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 5px;
    margin: 0;
}
.tabs .tab-list .tab-item {
    font-size: 0.9em;
    font-weight: var(--bold-font-weight);
    text-align: center;
    line-height: 1.4;
    background: #b8b8b8;
    border: none !important;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75em 0.5em;
    cursor: pointer;
    transition: 0.3s;
}
.tabs .tab-list .tab-item.active {
    color: #fff;
    background: var(--green);
}
.tabs .tab-content {
    background-color: #b8b8b8;
    padding: 1px;
    /* margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%); */
}
.tabs .tab-content .box {
    background: #fff;
    padding: 30px;
}
.tabs .tab-content .box .btn {
    margin-top: 2em;
}
/*制御*/
.tabs .tab-content .tab-panel {
    display: none;
}
.tabs .tab-content .tab-panel.active {
    display: block;
}
@media only screen and (max-width: 820px) {
    .tabs .tab-list .tab-item {
        font-size: clamp(0.667rem, calc(0.386rem + 1.348vw), 1rem); /* min: 12px, max: 18px */
        min-height: 3em;
        padding: 0.5em 0.25em;
    }
}
@media only screen and (max-width: 468px) {
    .tabs .tab-content .box {
        padding: 15px 15px;
    }
}

/* =========================================================================================
Btn / WP-block-button
=========================================================================================*/
.btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.wp-block-buttons {
    display: flex;
    align-items: stretch;
}
.btn a,
.wp-block-button a {
    color: #fff;
    font-size: 1em;
    font-weight: var(--bold-font-weight);
    text-align: center;
    background: var(--base-font-color);
    border: 1px solid var(--base-font-color);
    border-radius: 0;
    position: relative;
    transition: 0.3s;
}
.btn a {
    min-width: 200px;
    padding: 0.5em 2.5em 0.5em 1em;
}
.wp-block-button a {
    height: 100%;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 2.5em 0.5em 1.25em;
}
.btn a::after,
.wp-block-button a::after {
    content: "";
    background: #fff;
    width: 1.25em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    right: 0.75em;
    top: 50%;
    translate: 0 -50%;
    z-index: 1;
    -webkit-mask-image: url(images/common/arrow_mask.svg);
    mask-image: url(images/common/arrow_mask.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: 0.3s;
}
.btn a:hover,
.wp-block-button a:hover {
    color: var(--base-font-color);
    background-color: #fff;
    text-decoration: none;
    opacity: 1;
}
.btn a:hover::after,
.wp-block-button a:hover::after {
    background: var(--base-font-color);
}

/*color-white*/
.btn a.white {
    color: var(--base-font-color);
    background-color: #fff;
}
.btn a.white:hover {
    color: #fff;
    background-color: var(--base-font-color);
    border-color: #fff;
}
.btn a.white::after {
    background: var(--base-font-color);
}
.btn a.white:hover:after {
    background: #fff;
}

/*size*/
.btn a.large {
    font-size: 1.65em;
    font-weight: var(--bold-font-weight);
    min-width: 600px;
}

/*more*/
.btn.more {
    width: 100%;
    justify-content: right !important;
}
.btn.more a {
    color: var(--base-font-color);
    background: transparent;
    min-width: auto;
    padding: 0 2.5em 0 0;
    border: none;
}
.btn.more a::before {
    content: "";
    width: 33px;
    height: 2px;
    background: var(--base-font-color);
    position: absolute;
    top: calc(50% + 4px);
    right: 3px;
    translate: 0 -50%;
    z-index: 1;
}
.btn.more a::after {
    content: "";
    background: var(--base-font-color);
    height: 10px;
    width: 15px;
    clip-path: polygon(100% 100%, 0% 100%, 0 0);
    aspect-ratio: auto;
    border-radius: 0;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    z-index: 1;
    -webkit-mask-image: none;
    mask-image: none;
}
.btn.more a::before,
.btn.more a::after {
    transition: 0.3s;
}
.btn.more a:hover {
    color: var(--main-color);
}
.btn.more a:hover::before,
.btn.more a:hover::after {
    background: var(--main-color);
    translate: 10px -50%;
}

/*wp-block-button*/
.wp-block-buttons + .wp-block-buttons {
    margin-top: 0.5em;
}

@media only screen and (max-width: 820px) {
    .btn a.large {
        min-width: 100%;
    }
}
@media only screen and (max-width: 468px) {
    .btn {
        justify-content: center !important;
    }
    .btn a {
        min-width: 80% !important;
    }
    .btn.more {
        justify-content: right !important;
    }
    .btn.more a {
        font-size: 0.9em;
        min-width: fit-content !important;
        padding: 0 2em 0 0;
    }
    .btn.more a::before {
        content: "";
        width: 20px;
    }
    .btn.more a::after {
        content: "";
        width: 12px;
        clip-path: polygon(100% 100%, 0% 100%, 0 0);
    }
    .btn.more a:hover::before,
    .btn.more a:hover::after {
        translate: 5px -50%;
    }
}

/* =========================================================================================
Breadcrumbs
=========================================================================================*/
.breadcrumbs {
    font-size: 12px;
    color: var(--base-font-color);
    text-align: left;
    line-height: 1.4;
    padding-block: 35px 10px;
}
.breadcrumbs br {
    display: none;
}
.breadcrumbs a {
    color: var(--base-font-color);
    padding-right: 1.5em;
    position: relative;
}
.breadcrumbs a.home {
    padding-left: 1.5em;
}
.breadcrumbs a.home::before {
    content: "";
    width: 1em;
    aspect-ratio: 1 / 1;
    background: url(images/common/icon_home.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -40%;
}
.breadcrumbs a::after {
    content: "";
    width: 0.75em;
    aspect-ratio: 1 /1;
    background: url(images/common/arrow.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0.2em;
    translate: 0 -40%;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Post list
=========================================================================================*/
/*common*/
.post-list {
    width: 100%;
    margin: 0;
    padding: 0;
}
.post-list ul {
    width: 100%;
    margin: 0;
    padding: 0;
}
.post-list ul a {
    color: var(--base-font-color);
    display: inline-block;
}
.post-list ul a:hover {
    text-decoration: none;
}
.post-list ul li {
    width: 100%;
}
.post-list .no-post {
    text-align: center;
    display: block;
    padding: 10vh 1em;
}

/*column*/
.post-list.column ul {
    border-top: 1px solid var(--base-font-color);
    margin-bottom: 2em;
}
.post-list.column ul li {
    border-bottom: 1px solid var(--base-font-color);
    padding: 1.5em 0 1.25em;
}
.post-list.column ul li article {
    display: grid;
    grid-template-columns: auto 90px 1fr;
    align-items: start;
    justify-content: left;
    gap: 0 1em;
}
.post-list.column .date {
    font-weight: var(--bold-font-weight);
    color: var(--base-font-color);
}
.post-list.column .cat {
    font-size: 0.9em;
    line-height: 1.4;
    height: auto;
}
.post-list.column .cat a {
    color: var(--main-color);
    text-align: center;
    display: block;
    background: #fff;
    padding: 0.25em 0.25em 0.3em;
    border: 1px solid var(--main-color);
}
.post-list.column .cat a:hover {
    color: #fff;
    background: var(--main-color);
}
.post-list.column .title {
    font-weight: var(--nomal-font-weight);
    line-height: 1.5;
}
.post-list.column .title a {
    display: block;
    padding-right: 3em;
    position: relative;
}
.post-list.column .title a:hover {
    color: var(--main-color);
}
.post-list.column .title a::before,
.post-list.column .title a::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 1.25em;
    width: 14px;
    height: 1px;
    border-radius: 9999px;
    background-color: var(--base-font-color);
    transform-origin: calc(100% - 0px) 50%;
    transition: 0.3s;
}
.post-list.column .title a::before {
    transform: rotate(45deg);
}
.post-list.column .title a::after {
    transform: rotate(-45deg);
}
.post-list.column .title a:hover::before,
.post-list.column .title a:hover::after {
    right: 0;
}
@media only screen and (max-width: 820px) {
    .post-list.column ul li article {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5em 1em;
    }
    .post-list.column .date {
        width: auto !important;
    }
    .post-list.column .title {
        width: 100% !important;
    }
}
@media only screen and (max-width: 468px) {
}

/* row */
.post-list.row ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.post-list.row li {
    padding: 1em;
    border: 2px solid;
}
.post-list.row li:only-child {
    max-width: 380px;
}
.post-list.row li article {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.post-list.row .thumbnail {
    width: 100%;
    margin-bottom: 0.5em;
    overflow: hidden;
    position: relative;
}
.post-list.row .thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.post-list.row .thumbnail a {
    display: block;
}
.post-list.row .thumbnail a:hover {
    scale: 1.2;
}
.post-list.row .thumbnail .new {
    color: #fff;
    font-size: small;
    background: var(--main-color);
    padding: 2px 10px 0;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}
.post-list.row .date {
    width: 100%;
}
.post-list.row .cat {
    font-size: 0.8rem;
    width: fit-content;
    height: auto;
}
.post-list.row .cat a {
    font-weight: var(--bold-font-weight);
    text-align: center;
    display: block;
    background: var(--gray-color);
    border-radius: 100px;
    padding: 0.25em 0.75em 0.25em;
}
.post-list.row .title {
    font-size: 1em;
    font-weight: var(--bold-font-weight);
    line-height: 1.5;
}
.post-list.row .title a {
    color: var(--main-color);
}
.post-list.row .title a:hover {
    color: var(--base-font-color) !important;
}
.post-list.row .product-name {
    font-size: 0.8em;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Archive-Page
=========================================================================================*/
.archive-content section {
    padding-top: 0;
}
.archive-content .post-list {
    border-top: none;
    border-bottom: none;
    padding: 0;
}
.archive-content .post-list.news {
    margin-top: 50px;
}
/*pagination*/
.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-block: 25px;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span,
.pagination .page-numbers li .current {
    color: #fff;
    line-height: 1;
    width: 50px;
    aspect-ratio: 1 / 1;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--main-color);
    padding: 0.25em 1em;
}
.pagination .page-numbers li .current {
    color: var(--base-font-color);
    background: #fff;
    border-color: var(--smoky-color);
}
.pagination .page-numbers li .prev,
.pagination .page-numbers li .next {
    color: rgba(255, 255, 255, 0);
    text-indent: -9999px;
    background: var(--main-color);
    padding: 0;
    position: relative;
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .prev::after,
.pagination .page-numbers li .next::before,
.pagination .page-numbers li .next::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 35%;
    width: 1em;
    height: 2px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: calc(100% - 1px) 50%;
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .next::before {
    transform: rotate(45deg);
}
.pagination .page-numbers li .prev::after,
.pagination .page-numbers li .next::after {
    transform: rotate(-45deg);
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .prev::after {
    right: 62.5%;
    scale: -1;
}
.pagination .page-numbers li a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 820px) {
    .pagination .page-numbers {
        gap: 10px;
    }
    .pagination .page-numbers li a,
    .pagination .page-numbers li span,
    .pagination .page-numbers li .current {
        width: 40px;
    }
    .pagination .page-numbers li .prev::before,
    .pagination .page-numbers li .prev::after,
    .pagination .page-numbers li .next::before,
    .pagination .page-numbers li .next::after {
        width: 0.75em;
    }
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Single-Page
=========================================================================================*/
body.single #main {
    padding-top: 20px;
}
body.single .entry-header {
    position: relative;
}
body.single .entry-header .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    align-items: center;
    padding-block: 1em;
    border-bottom: 1px solid;
}
body.single .entry-header .date {
    text-align: left;
    display: inline-block;
}
body.single .entry-header .icon {
    display: flex;
    align-items: start;
    justify-content: left;
    flex-wrap: wrap;
    gap: 5px;
    padding: 1em 0;
}
body.single .entry-header .icon a,
body.single .entry-header .icon span {
    color: var(--main-color);
    font-size: 0.8rem;
    text-align: center;
    height: auto;
    background: #fff;
    display: inline-block;
    padding: 0.25em 1em 0.2em;
    border: 1px solid var(--main-color);
}
body.single .entry-header .icon a:hover {
    color: #fff;
    text-decoration: none;
    background: var(--main-color);
}
body.single .entry-header .title {
    font-size: clamp(1.5rem, calc(0.973rem + 2.247vw), 2.125rem); /* min: 24px, max: 34px */
    text-align: left;
    line-height: 1.4;
    width: 100%;
    margin: 0;
}
body.single .entry-content section:nth-last-of-type(1) {
    padding-bottom: 100px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*single-navi*/
body.single .single-navi {
    display: flex;
    justify-content: center;
}
body.single .single-navi div:nth-child(2) {
    border-left: 1px solid;
}
body.single .single-navi .prev-navi,
body.single .single-navi .next-navi {
    width: auto;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: 1.25em;
    position: relative;
    padding-inline: 1em;
}
body.single .single-navi .prev-navi::before,
body.single .single-navi .prev-navi::after,
body.single .single-navi .next-navi::before,
body.single .single-navi .next-navi::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: -0.5em;
    width: 1em;
    height: 2px;
    background-color: var(--base-font-color);
    transform-origin: calc(100% - 1px) 50%;
}
body.single .single-navi .prev-navi::before,
body.single .single-navi .next-navi::before {
    transform: rotate(45deg);
}
body.single .single-navi .prev-navi::after,
body.single .single-navi .next-navi::after {
    transform: rotate(-45deg);
}
body.single .single-navi .prev-navi::before,
body.single .single-navi .prev-navi::after {
    left: -1.5em;
    scale: -1;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
  Editer
=========================================================================================*/
/*見出し全体*/
* + .mid-l,
* + .mid-m,
* + .mid-s {
    margin-top: 1.5em;
}
/*見出し大*/
.mid-l {
    font-size: clamp(2.5rem, calc(1.447rem + 4.494vw), 3.75rem); /* min: 40px, max: 60px */
    font-weight: var(--bold-font-weight);
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 0.15em 0.5em;
    margin-bottom: 1em;
    position: relative;
}
.mid-l .jp {
    font-size: 1.5rem;
    line-height: 1;
}
.mid-l .en {
    line-height: 1.2;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
    .mid-l {
        margin-bottom: 0.75em;
    }
}
/*見出し中*/
.mid-m {
    font-size: clamp(1.333rem, calc(0.678rem + 3.146vw), 2.111rem); /* min: 24px, max: 38px */
    font-weight: var(--bold-font-weight);
    line-height: 1.6;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    align-items: center;
    margin-bottom: 1.25em;
    position: relative;
}
.mid-m::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--base-font-color);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}
/*見出し小*/
.mid-s {
    font-size: 1em;
    font-weight: var(--bold-font-weight);
    margin-bottom: 0.75em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*heading*/
* + .wp-block-heading {
    margin-top: 1.5em;
}
.wp-block-heading {
    font-weight: var(--bold-font-weight);
    line-height: 1.4;
    margin-bottom: 1em;
}
h1.wp-block-heading {
    font-size: 2em;
}
h2.wp-block-heading {
    font-size: clamp(1.333rem, calc(0.678rem + 3.146vw), 2.111rem); /* min: 24px, max: 38px */
    font-weight: var(--bold-font-weight);
    line-height: 1.6;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    align-items: center;
    margin-bottom: 1.25em;
    position: relative;
}
h2.wp-block-heading::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--base-font-color);
}
h3.wp-block-heading {
    font-size: clamp(1.25rem, calc(0.829rem + 1.798vw), 1.75rem); /* min: 20px, max: 28px */
}
h4.wp-block-heading {
    font-size: 1.25em;
}
h5.wp-block-heading {
    font-size: 1em;
}
h6.wp-block-heading {
    font-size: 0.85em;
}

/*Hr*/
hr,
.wp-block-separator {
    width: 100%;
    max-width: 500px;
    height: 1px;
    border: none;
    background-color: var(--gray-color);
    margin: 10vh auto;
}
.wp-block-separator.is-style-dots:before {
    font-size: 3em;
    letter-spacing: 1em;
    padding-left: 1em;
}
@media only screen and (max-width: 820px) {
    hr,
    .wp-block-separator {
        width: 50%;
    }
}

/*p*/
body.single .entry-content > p + p,
body.page .entry-content > p + p {
    margin-top: 1em;
}

/*a*/
body.page .entry-content a,
body.single .entry-content a {
    text-decoration: underline;
}

/*ifream*/
.entry-content .map iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/*Table*/
.wp-block-table table,
.entry-content table {
    width: 100%;
    border-collapse: 0;
    border-spacing: 0;
}
.wp-element-caption,
.entry-content .caption,
.wp-block-flexible-table-block-table figcaption {
    color: var(--base-font-color);
    opacity: 0.7;
    padding: 0.5em 0;
}
.wp-block-table thead th {
    border-bottom: none;
}
.wp-block-table th,
.wp-block-table td,
.entry-content th,
.entry-content td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding-block: 1em;
    border-top: none;
    border-left: none;
    border-right: none;
}
.wp-block-table th,
.entry-content th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
    padding-inline: 0.75em;
    background: var(--gray-color);
    border-bottom: 1px solid #fff;
}
.wp-block-table td,
.entry-content td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding-inline: 1em;
    border-bottom: 1px solid var(--gray-color);
}
@media only screen and (max-width: 768px) {
    .wp-block-table table {
        min-width: 650px;
        overflow-x: auto;
    }
    .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr:first-child td {
        border-top: none;
    }
    .wp-block-table th,
    .entry-content th,
    .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
        padding-block: 0.75em;
    }
    .wp-block-table td,
    .entry-content td,
    .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
        padding-inline: 0.75em;
        padding-bottom: 1.5em;
    }
}

/*List*/
ul.wp-block-list,
ol.wp-block-list,
ul.list,
ol.list {
    margin: 0.5em 0 0.5em 1.5em;
}
ul.wp-block-list li,
ol.wp-block-list li,
ul.list li,
ol.list li {
    position: relative;
}
ul.wp-block-list li + li,
ol.wp-block-list li + li,
ul.list li + li,
ol.list li + li {
    margin-top: 0.25em;
}
ul.wp-block-list li::before,
ul.list li::before {
    position: absolute;
    content: "";
    background: var(--base-font-color);
    width: 0.375em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 0.8em;
    left: -0.9em;
}

/*List - note*/
ul.note {
    list-style: none;
}
ul.note.center {
    width: fit-content;
    margin: auto;
}
ul.note li {
    padding-left: 1.25em;
    position: relative;
}
ul.note li:before {
    content: "※";
    margin-right: 0.5em;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
}

/*wp-block-file*/
.wp-block-file {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5em;
    padding-block: 1em;
    border-top: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}
.wp-block-file:has(object) {
    display: block;
}
.wp-block-file + .wp-block-file {
    border-top: none;
}
.wp-block-file:not(.wp-element-button) {
    font-size: 1em;
}
.wp-block-file * + .wp-block-file__button {
    font-size: 0.9em;
    background: var(--base-font-color);
    padding: 0.25em 1em;
    text-decoration: none !important;
}
.wp-block-file * + .wp-block-file__button:hover {
    color: #fff;
    background: var(--main-color);
    text-decoration: none;
}

/*blockquote*/
blockquote {
    position: relative;
    padding: 3em 2em;
    background: #f5f5f5;
}
blockquote cite {
    display: block;
    font-size: 0.8rem;
    text-align: right;
    color: #808080;
    padding-right: 20px;
}

/*wp-block-media-text*/
@media only screen and (max-width: 600px) {
    .wp-block-media-text .wp-block-media-text__content {
        margin: 0;
        padding: 1em 0;
    }
}

/*image*/
.wp-block-image {
    margin-bottom: 1em;
}

/* =========================================================================================
FORM
=========================================================================================*/
.entry-content form {
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.entry-content form ::placeholder {
    color: #ccc;
}
.entry-content form input[type="text"],
.entry-content form input[type="tel"],
.entry-content form input[type="email"],
.entry-content form textarea,
.entry-content form select {
    width: 100%;
    background: #fff;
    border: 1px solid var(--gray-color);
    padding: 0.5em;
    transition: 0.3s;
}
.entry-content form input:focus,
.entry-content form textarea:focus {
    border: 1px solid var(--main-color);
}
.entry-content form select {
    width: fit-content;
    /*min-width: 300px;*/
    padding-right: 1.75em;
    background: #fff url(images/common/icon_dropdown.svg) no-repeat;
    background-position: right 0.5em center;
    background-size: 0.75em;
}
.entry-content form input[type="submit"],
.entry-content form input[type="button"] {
    color: #fff;
    font-weight: var(--bold-font-weight);
    background-color: var(--base-font-color);
    padding: 0.75em 1.5em;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    border-radius: 100px;
    min-width: 320px;
    border: none;
    transition: 0.3s;
}
.entry-content form input[type="submit"] {
    background-color: var(--main-color);
}
.entry-content form input[type="submit"].back {
    background-color: #555;
}
.entry-content form input[type="submit"]:hover,
.entry-content form input[type="button"]:hover {
    opacity: 0.8;
}
.entry-content form .form-button {
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    width: 100%;
}
@media only screen and (max-width: 820px) {
    .entry-content form select {
        padding-right: 1.5em;
        background-position: right 0.5em center;
        background-size: 0.5em;
    }
    .entry-content form .form-button {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 800px;
    }
}
@media only screen and (max-width: 468px) {
    .entry-content form .form-button {
        flex-direction: column-reverse;
    }
    .entry-content form input[type="submit"],
    .entry-content form input[type="button"] {
        width: 100%;
    }
}

/*問い合わせ画面*/
.entry-content .mw_wp_form {
    padding-top: 0;
}
.entry-content .form-block {
    padding-bottom: 75px;
    margin: 0;
}
.entry-content .form-block a {
    color: var(--main-color);
    text-decoration: underline;
}
.entry-content .form-block a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.entry-content .form-block .confirm-show {
    color: var(--red);
    background: rgb(255, 208, 215);
    padding-block: 30px;
    padding-inline: 1em;
}
.entry-content .form-block .form-block-title {
    font-size: 1.375em;
    line-height: 1.5;
    margin-bottom: 1em;
}
.entry-content .form-block h4 {
    font-size: 1.2em;
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 0.25em;
}
.entry-content .form-block .annotation {
    margin-bottom: 0.75em;
}
.entry-content .form-block .info-box {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(220px, 30%) 1fr;
    gap: 0 1em;
    border-top: 2px solid #fff;
}
.entry-content .form-block .info-box .th,
.entry-content .form-block .info-box .td {
    padding: 1.5em 1em;
}
.entry-content .form-block .info-box .th {
    line-height: 1.6;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 10px;
    background: var(--gray-color);
}
.entry-content .form-block .info-box .th span.required {
    font-size: 0.7em;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    display: inline-block;
    background: var(--red);
    border-radius: 2px;
    padding: 0.5em 0.25em 0.5em;
    margin-top: 0.25em;
}
.entry-content .form-block .info-box .td {
    text-align: left;
}
.entry-content .form-block .info-box .td > div {
    width: 100%;
    margin-bottom: 0.25em;
}
.entry-content .form-block .info-box .td p b {
    display: block;
    margin-top: 1em;
    margin-bottom: 0.25em;
}
.entry-content .form-block .info-box .td p:first-of-type b {
    margin-top: 0;
}
/*郵便番号*/
.entry-content .form-block .info-box.zipcode-area .td {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
.entry-content .form-block .info-box.zipcode-area .td input {
    max-width: 170px;
}
/*電話番号・FAX*/
.entry-content .form-block .info-box.telno-area .td span.mwform-tel-field,
.entry-content .form-block .info-box.faxno-area .td span.mwform-tel-field,
.entry-content .form-block .info-box.your-telno-area .td span.mwform-tel-field {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
.entry-content .form-block .info-box.telno-area .td span.mwform-tel-field input,
.entry-content .form-block .info-box.faxno-area .td span.mwform-tel-field input,
.entry-content .form-block .info-box.your-telno-area .td span.mwform-tel-field input {
    max-width: 90px;
}
/*会場到着時刻*/
.entry-content .form-block .info-box.arrival-time-area .td {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
}
.entry-content .form-block .info-box.arrival-time-area .td span {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
/*発着場所*/
.entry-content .form-block .info-box .td .arrival-info {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: left;
    gap: 1em;
    margin-top: 0.5em;
}
/*ご要望等*/
.entry-content .form-block .info-box.contact-message-area {
    margin-top: 0.5em;
}
@media only screen and (max-width: 820px) {
    .entry-content .contact-bg {
        padding: 20px 0;
    }
    .entry-content .form-block .info-box {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .entry-content .form-block .info-box .th {
        padding: 0.75em;
    }
    .entry-content .form-block .info-box .td {
        padding-inline: 0.5em;
        padding-bottom: 2em;
    }
}
@media only screen and (max-width: 468px) {
    /*会場到着時刻*/
    .entry-content .form-block .info-box.arrival-time-area .td {
        font-size: 0.9em;
    }
}

/*確認画面*/
.entry-content .mw_wp_form .confirm-show {
    display: none;
}
.entry-content .mw_wp_form_confirm .confirm-show {
    display: block;
}

/*Google recaptcha v3*/
.grecaptcha-badge {
    /*display: none;*/
    bottom: 80px !important;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Parts (TEL)
=========================================================================================*/
.parts-tel {
    background: #fafafa;
    padding: 2.5em 1.5em;
    margin: 50px 0;
}
.parts-tel .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
}
.parts-tel .tel-number {
    padding-left: 4.5em;
    background: url(images/common/icon_tel.svg) no-repeat left;
    background-size: 60px;
    min-height: 60px;
}
.parts-tel .tel-number {
    font-size: 0.9rem;
}
.parts-tel .tel-number strong {
    color: #000;
    font-size: 2em;
    padding-left: 0.2em;
    display: block;
    line-height: 1.2;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Parts (EVENT-LIST)
=========================================================================================*/
.parts-event-list .box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 75px 5%;
}
.parts-event-list .box .item {
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parts-event-list .box .item a,
.parts-event-list .box .item a img {
    transition: 0.3s;
}
.parts-event-list .box .item a:hover img {
    transform: scale(1.15);
}

/*準備中*/
.parts-event-list .box .item.no-link {
    padding: 20px;
    min-height: 200px;
    position: relative;
    z-index: 1;
}
.parts-event-list .box .item.no-link::after {
    content: "準備中";
    color: #000;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    font-weight: var(--bold-font-weight);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 220, 220, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff;
    z-index: 5;
}
@media only screen and (max-width: 820px) {
    .parts-event-list .box {
        grid-template-columns: repeat(auto-fit, minmax(40%, 1fr)) !important;
        gap: 30px 5% !important;
    }
    .parts-event-list .box .item,
    .parts-event-list .box .item.no-link {
        min-height: 120px !important;
    }
}
@media only screen and (max-width: 468px) {
    .parts-event-list .box {
        gap: 20px 5% !important;
    }
}

/* =========================================================================================
Parts (BANNER)
=========================================================================================*/
.parts-banner {
    padding-block: 50px 150px;
    margin: 0;
}
.parts-banner ul {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
    gap: 40px;
}
.parts-banner li {
    width: calc((100% - 40px - 40px) / 3);
}
.parts-banner li img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 378 / 175;
}
@media only screen and (max-width: 820px) {
    .parts-banner {
        padding-block: 75px 100px;
        margin: 0;
    }
    .parts-banner ul {
        gap: 30px;
    }
    .parts-banner li {
        width: calc((100% - 30px) / 2);
    }
}
@media only screen and (max-width: 468px) {
    .parts-banner {
        padding-block: 50px 75px;
        margin: 0;
    }
    .parts-banner ul {
        gap: 20px;
    }
    .parts-banner li {
        width: calc((100% - 20px) / 2);
    }
}
