@charset "UTF-8";
/* 基礎設定 */
html, body {
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif;
    position: relative;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    /* background: #fff; */
    scroll-behavior: auto !important;
    overflow-x: hidden;
    animation: fadeIn 1s;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
/* body.top-page::before {
    content: "";
    position: fixed;
    top: 50%;
    right: -5%;
    width: 60vw;
    height: 80%;
    background-image: url(../img/main-img.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: translateY(-50%);
} */
/* body#cpage {  overflow-x: hidden;} */
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.txt-ja, span[lang='ja']{ font-family: "Noto Sans JP", sans-serif;}
.txt-en, span[lang='en'] { font-family: "Noto Serif JP", serif;}
/* html{ height: -webkit-fill-available;} */
html.nosc,body.nosc{
	/* overflow: hidden;
    overflow-x: scroll;
    overflow-y: auto; */
}
#cpage main { margin-top: 70px;}
.color-red { color: #E00A16;} 
.color-blue { color: #1657E8;}
.color-lblue { color: #E7ECF7;}
.color-wh{ color: #fff;}
.color-gr { color: #D6F0A8;}
.color-dgr { color: #2C4F51;}
.color-vgr { color: #73AE2E;}
.color-yg { color: #ABE8B9;}
.color-lgr{ color: #F4F595;}
.color-ye{ color: #EBC700;}
.color-ly{ color: #FFF9F4;}
.color-or{ color: #FFEABA;}
.color-prp{ color: #721DC8;}
.color-gy{ color: #FAF9F4;}
.color-bw{ color: #4D0001;}
.color-bk{ color: #000;}

.bg-red { background: #E00A16;}
.bg-pn { background: #FCDBE4;}
.bg-blue { background: #1657E8;}
.bg-lblue { background: #E7ECF7;}
.bg-gr { background: #D6F0A8;}
.bg-dgr { background: #2C4F51;}
.bg-lgr { background: #F4F595;}
.bg-vgr { background: #73AE2E;}
.bg-yg { background: #ABE8B9;}
.bg-ye { background: #EBC700;}
.bg-lye { background: #FFF9F4;}
.bg-or { background: #FFEABA;}
.bg-lor { background: #ffecdc;}
.bg-bk { background: #000333;}
.bg-wh { background: #fff;}
.bg-gray { background: #F4F4F4;}
.bg-bw { background: #4D0001;}

/* a:hover{
    color: #000;
} */

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.025em;
    margin: 0 auto 1.5rem;
    padding: 0;
}
h1 { font-size: 36px;}
h2 { font-size: 32px; margin-bottom: 3rem;}
h3 { font-size: 29px; margin-bottom: 1rem;}
h4 { font-size: 25px; margin-bottom: 1rem;}
h5 { font-size: 21px; margin-bottom: 10px;}
h6 { font-size: 18px; margin-bottom: 6px;}

.tit-line { 
    position: relative;  
    padding: 0.2rem 0;
}
.tit-line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 1.1em;
    height: 3px;
    background: #1657E8;
    z-index: 1;
}
.tit-line::after {
    content: "";
    position: absolute;
    left: 1.1em;
    bottom: -0.2rem;
    width: calc(100% - 1.1em);
    height: 3px;
    background: #D3D3D3;
    z-index: 0;
}
.tit-bg {
    position: relative;
    display: block;
    color: #fff;
    padding: 0.25em 0.5em;
    border-radius: 5px;
    background: linear-gradient(90deg,rgba(3, 40, 100, 1) 60%, rgba(22, 87, 232, 1) 100%);
    z-index: 10;
}
.tit-bd-l {
    position: relative;
    padding: 0 0 0 18px;
}
.tit-bd-l::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    left: 0;
    width: 7px;
    height: 1.1em;
    background: #B7B7B7;
}
.tit-point {
    display: flex;
    align-items: center;
}
.tit-point::before {
    content: "■";
    font-size: 0.5em;
    font-weight: 700;
    padding-right: 0.5em;
    color: #083276;
}
.tit-color {
    color: #083276;
}
.box-wh{
    padding: 2.5em 3em;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
}

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

/* --- flex-box --- */
/* .flex-box {
    display: flex;
    justify-content: center;
}
.flex1 > div { width: 100%; }
.flex2 > div { width: 50%; }
.flex3 > div { width: calc(100% / 3); }
.flex4 > div { width: 25%; }
.flex5 > div { width: 20%; }
.flex-last {
    display: flex;
    justify-content: flex-end;
    flex-flow: column;
} */

/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.grig-wrap0 { grid-gap: 0; }
.grid1 { grid-template-columns: repeat(1, 1fr); grid-gap: 0;}
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid5 { grid-template-columns: repeat(5, 1fr); }

.flex-dl { display: flex; margin: 0 auto 10px; }
.flex-dl:last-of-type { margin-bottom: 1em; }
.flex-dl dt { width: 4em; margin-right: 1.5em; }
.flex-dl dd { flex: 1; margin-bottom: 0; }

hr { margin: 10px 0; border-top: 3px solid #466E6E; }

p {
    margin: 0 auto 1.5em;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
.txt-set { display: inline-block; }
.txt-cp { font-size: 12px; }
.txt-lh2 { line-height: 2; }
a {
    -webkit-transition: .2s;
    transition: .2s;
}
a:link,a:visited,a:hover,a:active{ text-decoration: none;}

section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}
.sec-inline img{
    max-width: 100%;
    height: auto;
}
.sec-inline-start {
    padding-inline-start: calc((100vw - 1000px) / 2);
}
.sec-inline-end {
    padding-inline-end: calc((100vw - 1000px) / 2);
}
.container-fluid{ padding: 0;}


ul {
    margin-bottom: 0;
}

/* リキャプチャ非表示用（別途フォームに注記必要） */
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

/* ナビゲーション */
#head { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
    transition: .3s;
    /* background: #fff; 
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16)); */
}
#head h1 { margin: 0}
#head.dnone, #cpage #head { 
    background: #fff; 
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
}
.h-logo .brand {
    max-width: 300px;
}
.h-logo { 
    position: relative;
    z-index: 10000;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
}
.h-logo {
    top: 50%;
    transform: translateY(-50%);
    left: 3rem;
}
.img-none, .menu-wrap.is-active .img-block {
    display: block;
    opacity: 1;
}
.img-block, .menu-wrap.is-active .img-none {
    display: none;
    opacity: 0;
}
.h-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


.h-logo { 
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
    left: 1.5rem;
}
.nosc .menu-list {
    display: none !important;
}
.menu-wrap { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}
.menu-list { 
    position: absolute;
    right: 0;
    height: 100%;
}
.menu-list > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    column-gap: 2rem;
    margin-right: 2rem;
}
.menu-list > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-list > ul > li > a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.dnone .menu-list > ul > li > a, #cpage .menu-list > ul > li > a { color: #2D3965;}
.menu-list > ul li img {
    max-width: 36px;
}
.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.click-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.menu-link {
    height: 100%;
}
.menu-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 1rem 2rem;
    height: 100%;
    background: #EBC700;
}

/* ハンバーガーメニュー */
.openbtn {
    position: absolute;
    top: 45%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 1001;
    cursor: pointer;
    width: 32px;
    height: 40px;
    transition: 0.3s;
}
.openbtn span {
    display: block;
    transition: 0.4s;
    position: relative;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 1px;
    background-color: #fff;
    width: 22px;
}
.dnone .openbtn span, #cpage .openbtn span { background-color: #000;}
.openbtn span:nth-of-type(1) {
    top: 35%; 
}
.openbtn span:nth-of-type(2) {
    top: 55%; 
}
.openbtn span:nth-of-type(3) {
    top: 75%; 
}
  
.openbtn.active span {
    width: 30px;
    background: #fff; 
}
.openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 0.5em;
    transform: translateY(0px) rotate(-32deg);
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    top: 62%;
    left: 0.5em;
    transform: translateY(-6px) rotate(32deg);
}
/* ×印が横幅を広くしても消えない設定 */
.openbtn.active { display: block !important;}
.nosc .nav-menu { opacity: 0;}
.nosc .sp-menu.d-md-none {
    display: flex !important;
}
.nosc #top-menu { display: none !important;}

/* ハンバーガーメニュー内部 */
#clickarea {
    position: fixed;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background: #001046;
    transition: .3s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    overflow-x: hidden;
}
#clickarea.panelactive {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}
#clickarea::after {
    content: "";
    position: absolute;
    left: -15%;
    bottom: -20%;
    width: 130%;
    height: 100%;
    background-image: url(../img/f-bg.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
#clickarea.panelactive .click-list {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    z-index: 0;
}

#clickarea .click-list {
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 100px;
}
.click-list > ul { 
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.click-list > ul > li {
    position: relative;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    transition: .5s;
}
.click-list > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
    font-size: 20px;
    line-height: 66px;
    padding-left: 32px;
    padding-right: 10px;
    opacity: 0;
    transition: .5s;
}
.click-list > ul.menu-main > li:not(:last-child) > a { border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
.click-list > ul > li::before, .click-list > ul > li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    width: 0.75em;
    aspect-ratio: 1;
    background: #1657E8;
    clip-path: polygon(0% 0%,0 100%,100% 50%);
    transition: .5s;
}
.click-list > ul > li::before {
    left: 10px;
    opacity: 1;
}
.click-list > ul > li::after {
    left: -1em;
    opacity: 0;
}
#clickarea.panelactive .click-list > ul > li, #clickarea.panelactive  .click-list > ul > li > a, #clickarea.panelactive  .click-list > ul > li::before { opacity: 1; }
#clickarea.panelactive .click-list > ul > li > a { transform: translateX(0em);}
#clickarea.panelactive .click-list > ul > li:nth-child(1), #clickarea.panelactive .click-list > ul > li:nth-child(1) > a { transition-delay: 0.1s; }
#clickarea.panelactive .click-list > ul > li:nth-child(2), #clickarea.panelactive .click-list > ul > li:nth-child(2) > a { transition-delay: 0.15s; }
#clickarea.panelactive .click-list > ul > li:nth-child(3), #clickarea.panelactive .click-list > ul > li:nth-child(3) > a { transition-delay: 0.2s; }
#clickarea.panelactive .click-list > ul > li:nth-child(4), #clickarea.panelactive .click-list > ul > li:nth-child(4) > a { transition-delay: 0.25s; }
#clickarea.panelactive .click-list > ul > li:nth-child(5), #clickarea.panelactive .click-list > ul > li:nth-child(5) > a { transition-delay: 0.3s; }
#clickarea.panelactive .click-list > ul > li:nth-child(6), #clickarea.panelactive .click-list > ul > li:nth-child(6) > a { transition-delay: 0.35s; }
#clickarea.panelactive .click-list > ul.menu-sub > li:nth-child(1), #clickarea.panelactive .click-list > ul.menu-sub > li:nth-child(1) > a { transition-delay: 0.4s; }
#clickarea.panelactive .click-list > ul.menu-sub > li:nth-child(2), #clickarea.panelactive .click-list > ul.menu-sub > li:nth-child(2) > a { transition-delay: 0.45s; }

.click-list > ul.menu-main { margin-bottom: 26px; }

.click-list > ul.menu-sub > li { display: block; }
.click-list > ul.menu-sub > li::before,
.click-list > ul.menu-sub > li::after { display: none!important; }
.click-list > ul.menu-sub > li > a {
    display: block;
    padding: 22px 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 16px;
    background-color: #EBC700;
}

/* アップボタン */
.reverse {
    position: fixed;
    right: 1%;
    bottom: 25px;
    width: 40px;
    height: 48px;
    z-index: 998;
    cursor: pointer;
    mix-blend-mode: difference;
}
.reverse a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    writing-mode: vertical-rl;
}
.reverse svg {
    position: absolute;
    top: -2rem;
    stroke: #fff;
    width: 1.5em;
    height: 1.5em;
    transform: translateX(-0.15em) translateY(0);
    transition: 0.2s;
}



/* ボタン類 */
.btn01 {
    position: relative;
    display: inline-block;
    background: #fff;
    transition: .2s ease-out;
    background: #083276;
    border-radius: 5px;
    width: 180px;
    height: 55px;
    overflow: hidden;
}
.btn01 a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    color: #fff;
    transition: .2s;
    border-radius: 5px;
}

.btn02 {
    position: relative;
    display: inline-block;
    background: #fff;
    transition: .2s ease-out;
    background: #083276;
    border-radius: 5px;
}
.btn02 a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    color: #fff;
    transition: .2s;
    border-radius: 5px;
    padding: 1rem;
}
.btn02 a > img {
    width: 1em;
    height: 1em;
    object-fit: contain;
    object-position: top center;
    margin-right: 0.5em;
}

.rotate-txt {
    width: 7em;
    height: 1.5em;
    font-weight: 500;
    line-height: 1.2;
    text-wrap: nowrap;
    overflow: hidden;
}
.btn01 .rotate-txt {
    position: relative;
    width: 100%;
    height: 100%;
}
.rotate-txt .rotate-block {
    transition: .2s ease-out;
}
.btn01 .rotate-txt .rotate-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.rotate-txt .rotate-none {
    position: absolute;
    transform: translateY(-1em);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
}
.btn01 .rotate-txt .rotate-none {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,calc(-50% - 2em));
}

.two-join-grid .grid-item a .rotate-txt {
    display: inline-block;
    position: relative;
}
.two-join-grid .grid-item a .rotate-txt .rotate-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.two-join-grid .grid-item .rotate-txt .rotate-none {
    top: 50%;
    left: 50%;
    transform: translate(-50%,calc(-50% - 1em));
}

.rotate-txt .rotate-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.rotate-txt .rotate-none {
    top: 50%;
    left: 50%;
    transform: translate(-50%,calc(-50% - 1em));
}

/* TOPのsection設定 */
.sec-wrap {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* section::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
} */

/* TOP */
#maintop {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
}
.main-wrap {
    position: absolute;
    display: block;
    width: 70%;
    height: 100%;
    z-index: 20;
    /* clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 0% 100%); */
}
.main-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background: rgba(0, 0, 0, 0.1);
}
/* .main-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    right: 0;
    z-index: 20;
    clip-path: polygon(50% 0,100% 0,100% 100%,33% 100%,70% 18%);
}
.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
.mask-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 100;
}
.mask-img img {
    position: absolute;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.main-slider {
    height: 100%;
}
.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.title {
    position: absolute;
    display: inline-flex;
    right: 2.5%;
    flex-direction: column;
    align-items: flex-end;
    bottom: 10%;
    color: #fff;
    z-index: 200;
}
.title > * {
    position: relative;
}
.title > *::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 16, 70, 0.8);
    clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
    z-index: -1;
}
.title h2 {
    font-size: clamp(36px,0.0893rem + 4.7619vw,70px);
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.1em 1.5em;
}
.title > span { 
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.1em 2.5em;
}
.title .large-txt { 
    font-size: clamp(24px,0.7411rem + 1.1905vw,29px);
    transform: translateX(-6rem);
}
.title .small-txt { 
    font-size: 18px;
    transform: translateX(-10rem);
    padding: 0.2em 2.5em;
}

/* sec01 */
#sec01 { padding-top: 0;}
#sec01 hgroup img {
    width: 400px;
    height: 570px;
    object-fit: contain;
    object-position: top;
}
hgroup.vert { writing-mode: vertical-rl;}
hgroup.vert h2 { 
    font-size: 40px;
    letter-spacing: 0.1em;
}
hgroup.vert span { 
    font-weight: 700;
    letter-spacing: 0.15em;
}
#sec01 hgroup, #sec01 hgroup h2 { color: #fff;}
#sec01 hgroup {
    position: relative;
    width: 400px;
}
.sec01-txt {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 2.5;
    margin: 0;
    padding: 1rem 0 4rem;
    width: fit-content;
    margin-inline: auto;
}
.sec01-txt .large-txt { font-size: 25px;}
.sec01-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.two-join-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-height: 600px;
    height: 100vh;
    margin-top: -4vw;
    margin-inline: auto;
    margin-bottom: 5rem;
}
.two-join-grid .grid-item02 { 
    grid-column-start: 1;
    grid-row-start: 2;
}
.two-join-grid .grid-item03 {  
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1; 
}

.two-join-grid .grid-item {
    position: relative;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}
.two-join-grid .grid-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    transition: opacity .3s ease-out;
    background: rgba(22, 87, 232, 0.4);
    z-index: -1;
}
.two-join-grid .grid-item a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 2rem;
    color: #fff;
}
.two-join-grid .grid-item .join-txt { 
    text-align: end;
    line-height: 1.8;
}
.two-join-grid .grid-item a h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    text-wrap: nowrap;
}
.two-join-grid .grid-item a .rotate-txt {
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.two-join-grid .grid-item01 { background-image: url(../img/sec01-img01.jpg);}
.two-join-grid .grid-item02 { background-image: url(../img/sec01-img02.jpg);}
.two-join-grid .grid-item03 { background-image: url(../img/sec01-img03.jpg);}

.sec-link {
    position: relative;
    z-index: 10;
    border-radius: 10px;
    background: #083276;
}
.sec-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 48%;
    height: 100%;
    background: #EBC700;
    border-radius: 10px 0 0 10px;
    z-index: -1;
    clip-path: circle(70% at 40% 50%);
}
.sec-link a { 
    color: #fff;
    display: block;
}
.sec-link-txt {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3em;
    height: auto;
    min-height: 250px;
    position: relative;
    z-index: 10;
}
.sec-link-img {
    position: absolute;
    left: 2%;
    width: 483px;
    height: 300px;
    bottom: 0;
    background-image: url(../img/sec01-img04.png);
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
.sec-link h3 { 
    font-size: clamp(1.3125rem, -0.2049rem + 2.4499vw, 2rem);
    letter-spacing: 0.15em;
    color: #fff;
    margin: 0;
}
.sec-btn {
    position: relative;
    aspect-ratio: 1;
    border-radius: 100vmax;
    margin-right: 6%;
    text-wrap: nowrap;
    z-index: 10;
    width: 165px;
}
.sec-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0D4296;
    border-radius: 100vmax;
    aspect-ratio: 1;
    transition: .3s ease-out;
    z-index: -1;
}
.sec-btn a {
    display: block;
    width: 100%;
    height: 100%;
}
.sec-btn-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 100vmax;
}
.sec-btn-txt .rotate-txt .rotate-block { left: 54%; }


/* sec02 */
#sec02 .sec-wrap > hgroup {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    padding: 1rem 0 1.5rem;
    margin-bottom: 2.5rem;
}
#sec02 .sec-wrap > hgroup h2 { 
    font-size: 40px;
    margin: 0;
    line-height: 1;
}
#sec02 .sec-wrap > hgroup h2 .large-txt { font-size: 60px;}
#sec02 .sec-wrap > hgroup > span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
}
#sec02 .sec-wrap {
    max-width: 1000px;
    margin-inline: auto;
}
#sec02 .flex3 {
    display: flex;
    align-items: flex-start;
    gap: 10rem;
}
#sec02 .flex3 .flex-item {
    position: relative;
    width: calc(100% / 3);
    padding: 1rem 0;
}
#sec02 .flex3 .flex-item p { font-size: 18px;}
#sec02 .flex3 .flex-item:not(:last-child)::before { 
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + 64px);
    width: 1px;
    height: 100%;
    background: #C3C7CE;
    transform: rotateZ(15deg);
}
#sec02 .flex3 .flex-item hgroup { line-height: 1.2;}
#sec02 .flex3 .flex-item hgroup .num-txt {
    display: block;
    font-size: 50px;
    font-weight: 700;
    color: #1657E8;
    margin-bottom: 6px;
}

/* sec03 */
#sec03 { padding-bottom: 0;}
.sec03-wrap {
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(45deg,#1657E8 0%,#032864 100%);
    padding: 1.5rem;
    margin-bottom: 5rem;
}
.sec03-txt { 
    position: relative;
    display: inline-block;
    font-size: clamp(1.125rem, 0.8342rem + 0.8092vw, 1.5625rem);
    color: #fff;
}
.sec03-txt::before, .sec03-txt::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.15em);
    transform: translateY(-50%);
    width: 1px;
    height: 1.2em;
    background: #fff;
}
.sec03-txt::before {
    right: 102%;
    rotate: 315deg;
}
.sec03-txt::after {
    left: 102%;
    rotate: -315deg;
}
.sec03-link { margin-bottom: 2rem;}
.sec03-link a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.75rem, 0.4621rem + 3.5838vw, 3.6875rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    border-bottom: 1px solid #fff;
    line-height: 1.4;
    text-wrap: nowrap;
}
.sec03-link a img { 
    margin-right: 0.5rem;
    width: 1em;
    height: 1em;
    object-fit: contain;
}
.sec03-box {
    color: #333;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
}
.sec03-box p { margin-bottom: 0;}
.hori {
    overflow: hidden;
    width: 100%;
    height: 200px;
    background-size: cover;
    position: relative;
    background-image: url(../img/scroll-txt.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    animation: LoopAnime 100s linear infinite;
    z-index: 99;
}
@keyframes LoopAnime {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: -6256px 0;
    }
}
.scroll-txt {
    height: 160px;
}


/* sec04 */
#sec04 { 
    padding: 0;
}
.flex-half {
    display: flex;
}
.flex-half .flex-item { 
    position: relative;
    width: 50%;
    padding: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}
.flex-half .flex-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -10;
}
.flex-half .flex-item:nth-of-type(1) { background-image: url(../img/sec04-img01.jpg);}
.flex-half .flex-item:nth-of-type(2) { background-image: url(../img/sec04-img02.jpg);}
.flex-half .flex-item:nth-of-type(1)::after { background: #1657E8;}
.flex-half .flex-item:nth-of-type(2)::after { background: #004B83;}
.flex-half .flex-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 2rem;
}
.sec04-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    /* max-width: 350px; */
    max-width: 280px;
    width: 50%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 100vmax;
}
.sec04-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background: rgba(8, 50, 118, 0.8);
    border-radius: 100vmax;
    transition: .3s ease-out;
    z-index: -1;
}
.sec04-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 115%;
    height: 115%;
    border-radius: 100vmax;
    border: 1px solid #fff;
    z-index: -1;
}
.s04-txt {
    position: relative;
    font-size: clamp(1.125rem, 0.5434rem + 1.6185vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}
.s04-txt::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.5em;
    transform: translate(-50%,-50%);
    width: 1em;
    height: 1px;
    background: #fff;
}
.sec04-btn .rotate-txt {
    position: relative;
    transform: translateX(0.25em);
}


/* sec05 */
#sec05 { padding: 10rem 0 2.5rem;}
.sec-flex {
    display: flex;
    justify-content: space-between;
    gap: 7.5rem;
}
#sec05 .sec-flex {
    max-width: 950px;
    margin-inline: auto;
}

.news-wrap { width: 100%;}
.news-box { margin-bottom: 2.5rem;}
.news-box dt {
    font-size: 14px;
    color: #A0A0A0;
    font-weight: 400;
    letter-spacing: 0.015em;
    padding-right: 3rem;
    text-wrap: nowrap;
}
.news-box dd {
    width: 80%;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    padding-right: 3rem;
    margin-bottom: 0;
}
.news-box .news-item {
    position: relative;
    padding: 2rem 0.5rem 2rem 0;
    border-bottom: 1px solid #C3C7CE;
}
.top-page .news-box .news-item:first-child { padding-top: 0;}
.news-box .news-item a {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.news-box .news-item a::before, .news-box .news-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1em;
    aspect-ratio: 1;
    background-image: url(../svg/arrow-r02.svg);    
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: .2s;
}
.news-box .news-item a::before {
    right: 0.5em;
    opacity: 1;
}
.news-box .news-item a::after {
    right: 1.5em;
    opacity: 0;
}

/* sec06 */

/* フッター*/
footer {
    font-size: 15px;
    position: relative;
    background: #001046;
    color: #fff;
    z-index: 10;
    padding-top: 10rem;
    margin-top: 10rem;
}
footer .f-link-wrap {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
    transform: translate(-50%,-50%);
}
footer .f-link-wrap .flex2 {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
footer .f-link-wrap .flex2 .flex-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 50%;
    text-align: center;
}
footer .f-link-wrap .flex2 .flex-item a { 
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    font-size: clamp(1.5rem, 0.4286rem + 2.2321vw, 2.4375rem);
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
    padding: 2rem 0;
    gap: 2rem;
    border-radius: 10px;
}
footer .f-link-wrap .flex2 .flex-item a img {
    width: 1em;
    height: 1em;
    object-fit: contain;
    margin-right: 0.75rem;
}

footer .f-link-wrap .flex2 .flex-item .mail-btn {
    position: relative;
    display: block;
    width: 44px;
    aspect-ratio: 1;
    border-radius: 100vmax;
}
footer .f-link-wrap .flex2 .flex-item .mail-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    /* bottom: -2rem; */
    transform: translate(-50%,-50%);
    width: 44px;
    aspect-ratio: 1;
    border: 1px solid #fff;
    border-radius: 100vmax;
    transition: .2s;
}
footer .f-link-wrap .flex2 .flex-item .mail-btn::after {
    content: "→";
    position: absolute;
    left: 50%;
    bottom: 0.25rem;
    transform: translate(-50%,-50%);
    font-size: 18px;
    line-height: 1;
    transition: .2s;
}
footer .f-link-wrap .flex2 .tel a {
    background: #4476E6;
}
footer .f-link-wrap .flex2 .mail a {
    background: #EBC700;
}
.f-link-head {
    position: relative;
    font-size: 22px;
    /* margin-bottom: 2rem; */
}
.f-link-head::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.5rem;
    transform: translate(-50%,-50%);
    width: 1.5em;
    height: 1px;
    background: #fff;
    transition: .2s;
}
.f-link-txt {
    font-size: 16px;
    line-height: 1.4;
    padding: 0.75rem 2rem;
    border: 1px solid #fff;
    border-radius: 100vmax;
}

footer .f-wrap { 
    margin-top: 5rem;
}
footer .f-wrap::after {
    content: "";
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 100%;
    max-height: 650px;
    height: 100%;
    background-image: url(../img/f-bg.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.cmp-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.f-flex {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 3.5rem;
    position: relative;
    max-width: 1000px;
    width: 80%;
    margin-inline: auto;
}
.f-flex dl dd {
    font-weight: 300;
}
.f-flex dl a { 
    color: #fff;
    text-decoration: underline;
}
.f-flex dl > div {
    margin-bottom: 1.5rem;
}
.flex-info {
    width: 75%;
    padding-right: 1rem;
}
.flex-menu {
    position: relative;
    width: 25%;
}
.flex-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2rem;
    width: 1px;
    height: 100%;
    background: #fff;
}
.flex-menu ul {
    padding-left: 2em;
    list-style: none;
}
.flex-menu ul li {
    position: relative;
    margin-bottom: 1rem;
    z-index: 10;
}
.flex-menu ul li::before, .flex-menu ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    aspect-ratio: 1;
    background: #1657E8;
    clip-path: polygon(0% 0%,0 100%,100% 50%);
    transition: .2s;
    z-index: -1;
}
.flex-menu ul li::before {
    left: -0.75em;
    opacity: 1;
}
.flex-menu ul li::after {
    left: -2em;
    opacity: 0;
}
.flex-menu .flex-main { margin-bottom: 3rem;}
.flex-menu a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 700;
    color: #fff;
}
.copy { 
    text-align: center;
    margin-bottom: 0;
    padding: 10px 0;
    font-size: 0.9em;
    color: #000;
    font-weight: 300;
    background: #fff;
}


/* --------------------------------------------
    other page
-------------------------------------------- */
#titbar {
    position: relative;
    z-index: 5;
    padding: 0;
    left: 0;
    background-image: url(../img/titbar.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#titbar h1 {
    color: #fff;
    display: block;
    width: 100%;
    margin: 0;
    padding: 80px 25px 80px;
    text-align: center;
    text-wrap: wrap;
    font-size: 36px;
    font-weight: 700;
}

.sec-inline { padding-inline: calc((100vw - 1000px) / 2);}
.other-content .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.other-pages .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}

/* contact */
.contact-form dl > div.contact-short-item {
    margin: 0.125em 0;
    padding: 0.5em 0;
    display: flex;
    /* border-bottom: 1px dotted #aeaeae; */
}
.contact-form dl dt {
    font-weight: bold;
    width: 22em;
    margin-right: 2rem;
    background: #fff;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 6px;
}
.contact-form dl label {
    margin-bottom: 0;
}
.contact-form p {
    font-size: 1rem!important;
    width: 100%!important;
    margin-bottom: 0!important;
    list-style: 1.5!important;
    text-wrap: wrap;
}
.contact-form p.form-cp {
    font-size: 0.8em!important;
    line-height: 1.4;
    margin: 5px 0;
}
.contact-form dl dd {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-form .must {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin-left: 5px !important;
    padding: 5px 0.3rem 5px !important;
    background: #083276 !important;
    border-radius: 3px !important;
    vertical-align: baseline !important;
}
.contact-form dl dd textarea {
    width: 100% !important;
}
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.wpcf7-list-item { 
    display: block !important;
    margin: 0 !important;
}
/* .wpcf7-radio .wpcf7-list-item label {
    background: #226FC3;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
} */
.contact-form input:not([type="submit"]), .contact-form dl dd textarea {
    border-color: #083276 !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 5px;
    width: 50%;
    padding: 0.5rem;
}
.wpcf7-submit {
    color: #fff!important;
    font-size: 18px!important;
    width: 12em!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: block!important;
    margin: 30px auto!important;
    padding: 20px 5em!important;
    text-align: center;
    background: #083276 !important;
    border-color: #083276 !important;
    border-width: 1px !important;
    border-style: solid !important;
    background-size: 110%!important;
    background-position: center!important;
    border-radius: 10px!important;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
#aform_btn_submit {
    color: #fff;
    background: #EFF3F7;
    box-shadow: 0px 3px 3px #333;
    border-width: 1px;
    border-color: #fff;
    border-style: solid;
}
/* .btn-tel {
    display: inline-block;
    text-wrap: nowrap;
    transition: 0.4s all;
    background: #E7ECF7;
    border: 1px solid #E7ECF7;
    margin-bottom: 1.5rem;
}
.btn-tel a {
    position: relative;
    z-index: 10;
    width: 100%;
    white-space: nowrap;
    padding: 20px 30px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: baseline;
    cursor: pointer;
}
.btn-tel a:hover {
    background: #fff;
    color: #E7ECF7;
} */

.contact-box {
    text-align: center;
    border: 1px solid #b7b7b7;
    margin-inline: auto;
    max-width: 400px;
    width: 100%;
    margin-bottom: 1.5rem;
}
.contact-box th {
    font-weight: 700;
    padding: 0.5rem;
}
.contact-box td {
     padding: 0.5rem;
}
.contact-box tr {
    margin-bottom: 0;
    border-bottom: 1px solid #b7b7b7;
}
.contact-box tr:last-child td { border-bottom: 0;}

/* table-scroll */
.scroll-hint-icon { top: 50%!important; transform: translateY(-50%)!important; }
.scroll-hint-icon:before { width: 30px!important; height: 30px!important; }
.table-calc_list01 table {
    max-width: 100%;
}
.table-calc_list01 th,.table-calc_list01 td{
font-size: 0.65em !important;
padding: 3px !important;
}
.js-scrollable {
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: #fff;
    margin-bottom: 1.5rem;
}

/*--- table ---*/
.other-content table {
    width: calc(100% - 4em);
    margin: 1.5em 2em;
}
.other-content table th { 
    border-bottom-width: 1px;
    border-color: #E6E6DC;
    padding: 1rem;
}
.other-content table td { 
    border-bottom-width: 1px;
    border-color: #E6E6DC;
    background: #fff;
    padding: 1rem;
}

.other-content .scroll-tbl th { width: 13em; }
.other-content .about-tbl {
    width: calc(100% - 18em);
    margin: 1.5em 9em;
}
.other-content .about-tbl tbody tr > td:nth-of-type(2) { width: 8em; }

.width-tbl {
    width: 100%;
}
.width-tbl>*>* {
    padding: 0.5rem 0.5rem;
    border-width: 2px;
    border-color: #E6E6DC;
}
.width-tbl th {
    border-right: 2px solid #E6E6DC;
    border-bottom: 2px solid #E6E6DC;
    padding: 0.5rem 0.5rem;
    font-weight: normal;
    background: #fff;
}
.width-tbl td { 
    background: #fff;
    padding: 0.5rem 0.5rem;
    border: 2px solid #E6E6DC;
    text-wrap: nowrap;
    width: 25%;
}
.other-content table.prod-tbl tr:last-child th,
.other-content table.prod-tbl tr:last-child td,
.other-content table.about-tbl tr:last-child th,
.other-content table.about-tbl tr:last-child td,
.other-content table.recruit-tbl tr:last-child th,
.other-content table.recruit-tbl tr:last-child td,
.other-content table.recruit-tbl th:last-child  {
    border-bottom: none;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.about-list dt {
    width: 9em;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}
.about-list dt, .about-list dd {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #DDDDDE;
    margin-bottom: 0;
}
.about-list dt:last-of-type, .about-list dd:last-of-type {
    border-bottom: none;
}
.about-list dd {
    width: 80%;
    margin-bottom: 0;
}

.maker-filter {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.maker-filter button {
    border: 0;
    border-radius: 5px;
    flex-basis: calc(100% / 11 - 6px);
    text-wrap: nowrap;
    color: #fff;
    background: #083276;
    padding: 0.5rem;
    transition: .3s;
}
.maker-filter button.active {
    color: #fff;
    background: #EBC700;
}
.other-content .mk-tbl { 
    width: 100%;
    margin: 0;
    background: #fff;
}
.mk-tbl thead th {
    border-right-width: 1px;
    border-color: #eee;
    padding: 8px 12px;
    color: #fff;
    background: #083276;
}
.mk-tbl thead th:last-child { border-right-width: 0;}
.mk-tbl tbody .kana-header td {
    padding: 8px 12px;
    color: #000;
    background: #eee;
    border: none;
}
.mk-tbl th { width: 50%;}
.mk-tbl tbody td {
    font-size: 15px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #eee;
    padding: 8px 12px;
}
.mk-tbl td a i {
    font-size: 0.75em;
    padding-left: 0.5em;
}

.other-content .model-tbl {
    width: 100%;
    margin: 0;
    background: #fff;
}
.model-tbl > tbody {
    vertical-align: inherit;
}
.model-tbl > thead th {
    padding: 0.5rem 0.5rem;
    background: #2765c8;
    color: #fff;
}
.model-tbl > tbody th {
    width: 70%;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #E6E6DC;
    padding: 1rem;
    vertical-align: middle;
}
.model-tbl > tbody td {
    width: 30%;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #E6E6DC;
    padding: 1rem;
}
.model-tbl > tbody tr:nth-child(even) th, .model-tbl > tbody tr:nth-child(even) td {
    background: #eee;
}
.model-tbl td button {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 100vmax;
}
.model-tbl td button a { 
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 0.5rem 1rem;
    background: #083276;
    border-radius: 100vmax;
}
.model-tbl td button a i {
    padding-left: 0.5em;
    font-size: 1em;
}
@media (max-width: 767px) {
	.model-tbl th, .model-tbl td {
        display: block;
        width: 100%;
    }
    .model-tbl th {
        
    }
    .model-tbl td {
        border-top-width: 0;
    }
}

a.anchorpoint {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
/* .listanchor {
    margin: 0 auto 1rem!important;
	padding-left: 0!important;
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
    width: 100%;
}
.listanchor:after {
    content:"";
    display:table;
	height: 0;
	clear: both;
}
.listanchor li {
    list-style: none;
    padding: 5px!important;
    margin: 0!important;
    width: calc(100% / 4);
    display: flex;
}
.listanchor li::before { display: none!important; }
.listanchor li a {
    border-radius: 5px;
    width: 100%;
    height: auto;
    min-height: 3em;
    text-align: center;
    background-color: #0086C6;
    color: #fff;
    border: 1px solid #fff;
    font-size: 0.86em;
    font-weight: 600;
    padding: 2em 1em;
    line-height: 1.4;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listanchor li a::after {
    padding: 5px 0 0 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-weight: 900;
}
.listanchor li a[href^="http"]::after,
.listanchor li a[href^="//"]::after {
    font-family: "Font Awesome 5 Free";
    position: relative!important;
    right: 0!important;
    top: 0!important;
    transform: translateY(0)!important;
    padding: 5px 0 0 15px!important;
    content: "\f08e"!important;
}
.listanchor li a:hover {
    color: #0086C6;
    background-color: #fff;
    border: 1px solid #0086C6;
}
.listanchor-bl li a { opacity: 0.8; }
.listanchor-bl li a:hover { opacity: 0.8; }
@media screen and (max-width: 767px) {
	.listanchor li { width: calc(100% / 2); }
    .listanchor li a::after { padding: 0 0 0 0.5em; }
    .listanchor li a {
        padding: 0.5em 1em;
    }
} */

/* 内部ページ個別設定 */
.breadcrumb {
    display: block;
    background-color: #F0F4FA;
    margin: 0 auto!important;
    padding: 0!important;
}
.breadcrumb ul {
    list-style: none;
    display: block;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto!important;
    padding: 0.5rem 0;
}
.breadcrumb ul li {
    color: #333;
    position: relative;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.014em;
    margin: 0;
    padding: 0!important;
}
.breadcrumb ul li span > span {
    display: inline-block;
    letter-spacing: 0.02em;
}
.breadcrumb ul li span.arrow { padding: 0 6px; }
.breadcrumb ul li a {
    color: #333;
    text-decoration: underline;
}
.breadcrumb ul li a:hover { opacity: 0.5;}
.breadcrumb ul li span:last-child {
    max-width: 12em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}


.other-content .sec-inline > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.other-content .sec-inline > div::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    z-index: -1;
}
.other-content .sec-inline > div:nth-child(odd)::before { background: #FFFFFF;}
.other-content .sec-inline > div:nth-child(even)::before { background: #E7ECF7;}

#cpage footer { margin-top: 0; }
.other-content .sec-inline > div:last-of-type { padding-bottom: 10rem; }

.pnavi {
    text-align: center;
    margin-top: 2rem;
}
.pnavi span { color: #001046;}
.pnavi span, .pnavi a {
    font-size: 18px;
    padding: 10px 10px;
    border: 1px solid #001046;
    border-radius: 5px;
}
.pnavi a {
    color: #fff;
    background: #001046;
}

.flex-box.flex3 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.flex-box.flex3::before, .flex-box.flex3::after {
    content: "";
    display: block;
    width: calc((100% - 2rem) / 3);
}
.flex-box.flex3::before { order: 1; }
.flex-box.flex3 .flex-item {
    width: calc((100% - 2rem) / 3);
    margin-bottom: 2rem;
}

.prod-box {
    gap: 3rem 1rem!important;
}
.prod-box .prod-item .prod-img {
    font-weight: 700;
    text-align: center;
}

/* contact */
.contact-table { margin: auto;}
.contact-table tr { border-bottom: solid 1px #ccc;}
.contact-table th { text-align: center;}
.contact-table td { text-align: left; padding: 0.5em 2em 0.5em 1em;}
@media (max-width: 767px) {
    .contact-table tr { border-bottom: none; }
    .contact-table td { display: block; text-align: center;}
    .contact-table td.td1 { padding-bottom: 12px; border-bottom: 1px solid #ccc!important; }
    .contact-table td.td2 { border-bottom: 1px solid #333; }
}

/* information */
.map-box .row {
    margin-bottom: 4rem;
}
.full-map {
    line-height: 0;
    width: 100%;
    max-height: 365px;
    overflow: hidden;
}
.full-map iframe {
    width: 100%;
    height: 685px;
    margin-top: -150px;
}
.map-img{
    object-fit: contain;
}

@media (max-width: 991px){
    .title .large-txt {
        transform: translateX(-3.5rem);
    }
    .title .small-txt { 
        font-size: 16px;
        transform: translateX(-7rem);
    }

    #sec02 .flex3 {
        flex-direction: column;
        gap: 2.5rem;
    }
    #sec02 .flex3 .flex-item { 
        width: 100%;
        padding: 0;
    }
    #sec02 .flex3 .flex-item p { font-size: 16px;}
    #sec02 .flex3 .flex-item .btn01 { 
        margin: 1.5rem auto 0.5rem;
    }
    #sec02 .flex3 .flex-item p { margin-bottom: 0;}
    #sec02 .flex3 .flex-item:not(:last-child)::before {
        top: calc(100% + 1.5rem);
        left: 50%;
        width: 100%;
        height: 1px;
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    #sec02 .flex3 .flex-item hgroup .num-txt { font-size: 36px;}

    .sec-link-img {
        left: 0;
        width: 360px;
        height: 225px;
    }
    .sec-link-txt { gap: 2em; min-height: 200px; }
    .sec-btn {
        margin-right: 4.6%;
        width: 140px;
    }
    .sec-btn .rotate-txt { font-size: 14px; }

    .breadcrumb ul {
        /* padding-top: 2rem; */
        padding-inline: initial;
        padding-left: 7%;
        padding-right: 7%;
    }
    .sec-inline-start {
        padding-inline: initial;
        padding-left: 6%;
    }
    .sec-inline-end {
        padding-inline: initial;
        padding-right: 6%;
    }
    .sec-inline {
        padding-inline: initial;
        padding-left: 6%;
        padding-right: 6%;
    }
    .grid-box {
        grid-gap: 1.5vw;
    }
}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        /* overflow-x: hidden; */
    }

    /* #head {
        background: #fff;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    } */
    .openbtn { right: 1rem;}
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    .grid-box {
        grid-gap: 15px;
    }
    .grid2 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid3 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid4 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid5 { grid-template-columns: repeat(2, 1fr) !important; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .is-hidden{
        visibility: hidden;
        opacity: 0;
    }
    .breadcrumb ul li { font-size: 12px; }
    .breadcrumb ul li:not(:last-child)::after {
        font-size: 10px;
        padding: 0 6px;
    }
    .sec-inline {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }
    section { padding: calc(40px + 1rem) 0 calc(40px + 1rem);}
    .other-content table,
    .other-content .about-tbl { width: calc(100% - 24px); margin: 2px 12px; }
    .other-content .about-tbl td { line-height: 1.5; }
    .other-content .about-tbl tbody tr > td:nth-of-type(2) { width: auto; padding: 16px 12px 16px 0; }
    .other-content .recruit-tbl { width: 100%; margin: 0; }
    .other-content table th,
    .other-content table td { padding: 16px 12px; }
    .other-content table td { font-size: 15px; }
    .other-content .scroll-tbl th,
    .other-content .scroll-tbl td,
    .other-content .recruit-tbl th,
    .other-content .recruit-tbl td { display: block; width: 100%; }
    .other-content .scroll-tbl th,
    .other-content .recruit-tbl th { position: relative; border-bottom: none; padding-bottom: 0; }
    .other-content .scroll-tbl th br { display: none; }
    .other-content .scroll-tbl th::before,
    .other-content .recruit-tbl th::before {
        content: "";
        position: absolute;
        left: 12px;
        bottom: -4px;
        width: 1.5em;
        height: 2px;
        background: #1657E8;
        z-index: 1;
    }
    .other-content .mk-tbl { width: 100%; margin: 0 0 16px; }

    .about-list dt,
    .about-list dd { display: block; width: 100%; padding: 16px 12px; }
    .about-list dt { position: relative; border-bottom: none; padding-bottom: 0; }
    .about-list dt::before {
        content: "";
        position: absolute;
        left: 12px;
        bottom: -4px;
        width: 1.5em;
        height: 2px;
        background: #1657E8;
        z-index: 1;
    }
    .about-list dd { font-size: 15px; }

    /* .openbtn { 
        width: 70px;
        height: 70px;
    } */

    /* main { margin-top: 70px;} */

    .title h2 {
        font-size: clamp(24px,-0.7345rem + 6.2176vw,36px);
    }
    .title .large-txt { 
        font-size: clamp(16px,0.0078rem + 3.1088vw,24px);
    }
    .title .small-txt { 
        font-size: 14px;
    }

    #clickarea { width: 100%; }
    #clickarea .click-list {
        padding-top: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .click-list > ul > li > a { font-size: 18px; line-height: 60px; }
    .click-list > ul > li::before { left: 10px!important; opacity: 1!important; }
    .click-list > ul > li::after { display: none!important; }

    .nosc #head { background: #fff; }
    .nosc .menu-wrap .img-none {
        display: block;
        opacity: 1;
    }
    .nosc .menu-wrap .img-block {
        display: none;
        opacity: 0;
    }

    .main-txt { top: 30%;}
    body.top-page::before {
        top: 65%;
    }

    .sec-link {
        flex-direction: column;
        gap: 2rem;
        overflow: hidden;
    }
    .sec-link::after {
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        clip-path: ellipse(80% 60% at 50% 100%);
    }
    .sec-link a { 
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
    }
    .sec-link-txt {
        display: block;
        min-height: auto;
        padding: 30px 0 0;
    }
    .sec-link h3 { text-align: center; margin-bottom: 200px; }
    .sec-link-img {
        width: 300px;
        height: 190px;
        bottom: 53px;
        left: calc(50% - 150px);
    }
    .sec-btn { 
        width: 100%;
        margin-right: 0;
        aspect-ratio: auto;
        border-radius: 0;
        background-color: #0D4296;
    }
    .sec-btn::after { display: none; }
    .sec-btn-txt {
        display: block;
        padding: 16px;
        letter-spacing: 0.15em;
    }

    .flex-half { display: block;}
    .flex-half .flex-item {
        width: 100%;
    }
    
    .flex-info {
        width: 100%;
        padding-right: 0;
        margin-bottom: 6rem;
    }
    .flex-menu::before {
        width: 100%;
        height: 1px;
        top: -3rem;
        left: 0;
    }
    .flex-menu {
        width: 100%;
    }
    .contact-form dl > div.contact-short-item { display: block;}
    .contact-form dl dt {
        width: 100%;
        margin-right: 0;
        margin-bottom: auto;
        padding: 5px 0;
    }
    .contact-form dl dd { 
        width: 100%;
    }
    .contact-form dl dd input, .contact-form dl dd textarea { max-width: 100%;}

    .about-list {
        padding: 0;
    }

    #titbar { margin-top: 70px;}
    #titbar h1 { 
        padding: 50px 15px 50px;
        font-size: 26px;
    }

    .flex-box.flex3 {
       flex-direction: column;
    }
    .flex-box.flex3 .flex-item {
        width: 100%;
    }
    .contact-form input:not([type="submit"]), .contact-form dl dd textarea { width: 100%;}

    .maker-filter button {
        flex-basis: calc(100% / 6 + 0.5rem);
    }
    .maker-filter::before, .maker-filter::after {
        flex-basis: calc(100% / 6 + 0.5rem);
    }

    .model-tbl > tbody th, .model-tbl > tbody td { width: 100%;}
    .model-tbl > tbody td {
        border-right-width: 0;
        border-left-width: 0;
    }
    footer {
        padding-top: 16rem;
        margin-top: 7rem;
    }
    footer .f-wrap { margin-top: 3rem; }
    footer .f-link-wrap .flex2 {
        flex-direction: column;
    }
    footer .f-link-wrap .flex2 .flex-item { width: 100%;}
    .f-flex {
        display: block;
        width: 100%;
        font-size: 14px;
    }
    .f-wrap {
        width: 80%;
        margin: 0 auto;
    }
    footer .f-link-wrap { max-width: 500px;}
    .f-img {
        border-right: none;
        border-bottom: 0.5px solid #000;
        padding-right: 0;
        padding-bottom: 2rem;
    }
    .f-img a {
        width: 70%;
        margin: 0 auto;
    }
    .f-box {
        padding: 2rem 0 0;
    }
    
    .copy{ 
        font-size: 0.8em;
        text-align: center;
        text-wrap: nowrap;
    }
}

@media(max-width: 575px){
    .h-logo { left: 0.75rem;}
    .h-logo .brand { max-width: 240px; }
    .title {
        display: none;
        /* align-items: center;
        row-gap: 0.5rem;
        right: auto;
        left: 10%;
        bottom: 22%;
        writing-mode: vertical-rl; */
    }
    /* .title h2 { 
        font-size: 38px;
        padding: 2.5em 0.25em 2em 0.25em;
        line-height: 1;
        letter-spacing: 0.04em;
    }
    .title h2::before {
        clip-path: polygon(0% 20%, 0% 100%, 100% 85%, 100% 5%);
    }
    .title .large-txt { 
        font-size: 21px;
        padding: 2.25em 0.4em;
        transform: translateX(0rem);
        transform: translateX(0rem) translateY(2.75rem);
        line-height: 1;
    }
    .title .large-txt::before {
        clip-path: polygon(0% 15%, 0% 100%, 100% 85%, 100% 2.5%);
    }
    .title .small-txt::before {
        clip-path: polygon(0% 15%, 0% 100%, 100% 85%, 100% 5%);
    }
    .title .small-txt { 
        font-size: 14px;
        padding: 4.5em 0.3em 3.25em 0.3em;
        transform: translateX(0rem) translateY(5.25rem);
        line-height: 1;
    }
    .title .large-txt .hori-sp {
        writing-mode: horizontal-tb;
        line-height: 1;
    }
    .title .large-txt .hori-sp:nth-of-type(1) {
        transform: translate(8px, 0px) rotate(180deg);
    }
    .title .large-txt .hori-sp:nth-of-type(2) {
        transform: translate(-8px, -6px) rotate(180deg);
    }
    .title .large-txt .hori-sp:nth-of-type(3) {
        transform: translate(8px, 0px) rotate(180deg);
    }
    .title .large-txt .hori-sp:nth-of-type(4) {
        transform: translate(-8px, -6px) rotate(180deg);
    }
    .title .small-txt .hori-sp {
        transform: translateX(1px);
        writing-mode: horizontal-tb;
        line-height: 1;
    } */

    hgroup.vert h2 { font-size: 32px;}
    .sec-wrap {
        width: 85%;
    }
    .btn01, .btn02 { 
        display: block;
        width: 100%;
    }
    .btn01 a, .btn02 a { 
        text-align: center;
        /* padding: 0.75em 1.5em 0.75em 1.5em; */
    }
    body.top-page::before {
        top: auto;
        bottom: -55%;
        width: 95vw;
    }
   
    #maintop { 
        height: 150vw;
        overflow: hidden;
    }
    .main-wrap {
        position: relative;
        width: 100%;
        height: 104vw;
    }
    .main-wrap::before, .main-slider { height: 100%; }
    .mask-img {
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        bottom: 0vh;
        /* height: 60vh;
        bottom: 22vh; */
    }
    .mask-img img {
        position: relative;
        left: 0;
        height: 110%;
        width: 100%;
        object-fit: contain;
        /* object-fit: cover; */
        object-position: top center;
    }
    .main-img {
        display: none;
        /* clip-path: polygon(0% 0%, 70vw 23vw, 100% 38vw, 100% 100%, 0 100%);
        height: 57vh;
        bottom: 22vh; */
    }

    #sec01 hgroup {
        display: none;
    }
    #sec01::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 400px;
        height: 400px;
        background-image: url(../img/sec01-tit.png);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .sec01-txt {
        font-size: 16px;
        line-height: 2.4;
        letter-spacing: 0.05em;
        padding-top: 400px;
    }
    .sec01-txt .large-txt {
        display: block;
        font-size: 21px;
        letter-spacing: 0.02em;
        padding: 10px 0;
    }
    .sec01-flex {
        display: block;
        width: 85%;
        margin-inline: auto;
        padding-right: 0;
    }

    .two-join-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: auto;
        max-height: none;
    }
    .two-join-grid .grid-item {
        border-radius: 10px;
        overflow: hidden;
    }
    .two-join-grid .grid-item01 { order: 2; }
    .two-join-grid .grid-item02 { 
        order: 3;
        grid-column-start: auto;
        grid-row-start: auto;
    }
    .two-join-grid .grid-item03 {  
        order: 1;
        grid-row: span 1 / span 1;
        grid-column-start: auto;
        grid-row-start: auto;
    }
    .two-join-grid .grid-item::before {
        opacity: 1;
        background: linear-gradient(190deg, rgba(2, 0, 36, 0.5) 0%, rgba(2, 0, 36, 0) 60%);
    }
    .two-join-grid .grid-item a {
        position: relative;
        z-index: 10;
        height: 160px;
        padding: 16px 18px;
    }
    .two-join-grid .grid-item a h3 {
        font-size: 24px;
        letter-spacing: 0.05em;
        margin-bottom: 3px;
    }

    #sec02 .sec-wrap > hgroup h2 .large-txt { font-size: 40px;}
    #sec02 .sec-wrap > hgroup h2 { font-size: 32px;}

    .sec03-wrap { margin-bottom: 0;}
    .sec03-box p { font-size: 14px;}
    
    .flex-half .flex-item { padding: 30px 15px; }
    .flex-half .flex-item a { padding: 1rem; }
    #sec04 .sec04-btn { width: 190px; }
    .s04-txt { font-size: 20px; }
    .rotate-txt .rotate-block { font-size: 14px; }

    #sec05 {
        padding: 5rem 0;
    }
    .sec-flex {
        display: block;
    }
    #sec05 .sec-flex hgroup { 
        writing-mode: horizontal-tb;
        text-align: center;
    }

    .hori {
        height: 125px;
    }
    .scroll-txt {
        height: 100px;
        margin-top: 2rem;
    }

    .sec-tit {
        width: 80%;
        margin: 0 auto 1.5rem;
        padding-left: 1em;
    }
    .news-box {
        width: 100%;
        margin: 2rem auto;
    }
    .news-box a dd {
        width: 100%;
        -webkit-line-clamp: 2;
        padding-right: 2rem;
    }
    .news-box .news-item a { display: block;}
    .news-box .news-item a::before,.news-box .news-item a::after { top: 65%;}

    .table th, .table td {
        display: block;
        width: 100%;
    }
    .table th { border-bottom: none; padding-top: 20px; }
    .table td { padding-top: 0; padding-bottom: 25px; }
    .table td *:last-of-type { margin-bottom: 0; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .sec-inline { padding-inline: initial; padding-left: 20px; padding-right: 20px; }
    
    .js-scrollable {
        width: 100%;
        overflow: scroll;
        margin-bottom: 1rem;
        background-color: #fff;
    }
    .scroll-tbl, .about-tbl {
        width: 500px;
    }
    /* .js-scrollable table {
        width: 100%;
    }
    .js-scrollable table tr th, .js-scrollable table tr td {
        display: table-cell;
        width: auto;
        white-space: nowrap;
    }
    .js-scrollable table tr th { white-space: nowrap; }
    .js-scrollable table, table.no-responsive {
        width: 600px;
        overflow: scroll;
    }
    .js-scrollable table tr th, .js-scrollable table tr td,
    table.no-responsive tr th, table.no-responsive tr td {
        display: table-cell;
        width: auto;
    }
    .js-scrollable table tr td:last-child, table.no-responsive tr td:last-child { padding-top: 12px!important; } */

    footer .f-link-wrap { width: 85%; }
    .f-link-head { font-size: 16px; letter-spacing: 0.1em; margin-bottom: 20px; }
    footer .f-link-wrap .flex2 .flex-item a { padding: 24px 15px; gap: 0; }
    footer .f-link-wrap .flex2 .flex-item.tel a { font-size: 28px; }
    footer .f-link-wrap .flex2 .flex-item.mail a { font-size: 22px;}
    footer .f-link-wrap .flex2 .flex-item a img { height: auto; margin-right: 8px; }
    footer .f-link-wrap .flex2 .flex-item.tel a img { width: 30px; }
    footer .f-link-wrap .flex2 .flex-item.mail a img { width: 28px; }
    footer .f-link-wrap .flex2 .flex-item .d-flex { align-items: baseline; margin-bottom: 16px; }
    .f-link-txt {
        font-size: 15px;
        padding: 8px 24px;
        padding-bottom: 10px;
    }
    .f-wrap {
        width: calc(100% - 40px);
    }

    .breadcrumb ul { padding: 3px 20px 8px; }
    .maker-filter { justify-content: flex-start; gap: 8px; }
    .maker-filter button { flex-basis: calc((100% / 4) - 6px); }

}

@media(max-width: 440px){
    /* .main-img {
        clip-path: polygon(0% 0%, 70vw 25vw, 100% 38vw, 100% 100%, 0 100%);
    } */
}
    
@media (any-hover: hover) {
    .h-logo a:hover, .menu-list ul li a:hover, .menu-link a:hover, .sec03-link a:hover, .f-link-wrap .flex-item a:hover, .f-wrap .flex-info a:hover { opacity: 0.5;}
    .two-join-grid .grid-item:hover:before { opacity: 1;}
    .click-list > ul > li:hover::before {
        left: 30px;
        opacity: 0!important;
    }
    .click-list > ul > li:hover::after {
        left: 10px;
        opacity: 1;
        background: #EBC700;
    }
    #clickarea.panelactive .click-list > ul.menu-sub > li > a:hover { background-color: #1657E8; }
    .menu-link a:hover { opacity: 1; background: #eece00; }
    .btn01:hover, .btn02:hover, .model-tbl td button a:hover { background: #EBC700;}
    .btn01:hover .rotate-txt .rotate-block {
        transform: translate(-50%,calc(-50% + 2em));
        opacity: 0;
        visibility: hidden;
    }
    .btn01:hover .rotate-txt .rotate-none {
        transform: translate(-50%,calc(-50% + 0em));
        opacity: 1;
        visibility: visible;
    }
    .two-join-grid .grid-item a:hover .rotate-txt .rotate-block {
        opacity: 0;
        transform: translate(-50%,calc(-50% + 1em));
    }
    .two-join-grid .grid-item a:hover .rotate-txt .rotate-none {
        transform: translate(-50%,-50%);
        opacity: 1;
        visibility: visible;
    }
    .flex-menu ul li:hover::before {
        left: 2em;
        opacity: 0;
    }
    .flex-menu ul li:hover::after {
        left: -0.75em;
        opacity: 1;
        background: #EBC700;
    }
    .sec-link a:hover .sec-btn::after {
        transform: translate(-50%,-50%) scale(1.2);
    }
/*
    .sec-link a:hover .rotate-txt .rotate-block {
        opacity: 0;
        transform: translate(-50%,calc(-50% + 1em));
    }
    .sec-link a:hover .rotate-txt .rotate-none {
        transform: translate(-50%,-50%);
        opacity: 1;
        visibility: visible;
    }
*/
    #sec04 a:hover .sec04-btn .rotate-txt .rotate-block {
        opacity: 0;
        transform: translate(-50%,calc(-50% + 1em));
    }
    #sec04 a:hover .sec04-btn .rotate-txt .rotate-none {
        transform: translate(-50%,-50%);
        opacity: 1;
        visibility: visible;
    }
    .news-box .news-item a:hover::before {
        right: -1.5em;
        opacity: 0;
    }
    .news-box .news-item a:hover::after {
        right: 0.5em;
        opacity: 1;
    }
    .flex-half .flex-item a:hover .sec04-btn::before {
        width: 105%;
        height: 105%;
        background: rgba(235, 199, 0, 0.8);
    }
    .reverse a:hover svg { top: -2.25rem;}
    footer .f-link-wrap .flex2 .flex-item:last-child a:hover::before { 
        background: #fff;
        transform: translate(-50%, -50%) scale(1.4);
    }
    footer .f-link-wrap .flex2 .flex-item:last-child a:hover::after { color: #EBC700;}
    footer .f-link-wrap .flex2 .flex-item a:hover { opacity: 1; }
    footer .f-link-wrap .flex2 .tel a:hover { background: #3766ca; }
    footer .f-link-wrap .flex2 .mail a:hover { background: #eece00; }
    .wpcf7-submit:hover {
        background: #EBC700 !important;
        border-color: #EBC700 !important;
    }
}