@charset "utf-8";
:root {
    --color-bk: #000;
    --color-wh: #fff;
    --color-gray: #EAEAEA;
    --color-bl: #0082D5;
    --color-aq: #EBF5FC;
    --color-nav: #00296D;
    --color-ye: #EBCE43;
    --color-grad: linear-gradient(0deg,rgba(0, 41, 109, 0.9) 20%, rgba(0, 41, 109, 0) 100%);
    --txt-size: 18px;
    --txt-lh: 1.5;
    --inner-size: 1150;
    --hd-height: 86;
    --content-wrap: 120;
    --content-side : calc(60 / var(--inner-size) * 100cqi);
    --drop-shadow : drop-shadow(0px 3px 6px rgba(0, 41, 109, 0.16));
}
html, body {
    color: var(--color-bk);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--txt-size);
    font-weight: 400;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: transparent;
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal
}
#tpage::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../img/bg01.jpg);
    background-size: 100%;
    background-position: top center;
    background-repeat: repeat-y;
}
* { min-height: 0vw; }
.hidden { display: none; }
.grecaptcha-badge { visibility: hidden; }
.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;
}
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1, h2, h3, h4, h5, h6,
.sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 {
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.046em;
    margin-bottom: 0;
}
h1, .sizeh1 { font-size: 36px; }
h2, .sizeh2 { font-size: 32px; }
/*h3, .sizeh3 { font-size: 28px; }*/
h3, .sizeh3 { font-size: 26px; }
h4, .sizeh4 { font-size: 24px; }
h5, .sizeh5 { font-size: 22px; }
h6, .sizeh6 { font-size: 20px; }

.tit-anime { margin-bottom: 60px; }
.tit-anime.text-center img { margin-block: auto; }

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

a.anchorpoint {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

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

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

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

/*--- 共通 ---*/
p {
    margin: 0 auto 1rem;
	padding: 0;
    line-height: 1.9;
    letter-spacing: 0.02em;
}
.txt-set { display: inline-block; }
.txt-cp { font-size: 16px; }
.txt-lh1 { line-height: 1; }
.txt-lh15 { line-height: 1.5; }
.txt-lh2 { line-height: 2; }
.txt-lh25 { line-height: 2.5; }
.color-bl { color: var(--color-bl); }
.color-nav { color: var(--color-nav); }
.color-ye { color: var(--color-ye); }
.color-bk { color: var(--color-bk); }
.color-wh { color: var(--color-wh); }
.bg-nav { background-color: var(--color-nav); }
.bg-bl { background-color: var(--color-bl); }
.bg-aq { background-color: var(--color-aq); }
.bg-wh { background-color: var(--color-wh); }
.bg-gray { background-color: #EAEAEA; }
.bg-none { background-color: transparent; }
/*
.bg-img-bl {
    background-color: transparent;
    background-image: url(../img/bg01.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: repeat-y;
}
*/

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

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

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

/*--- table ---*/
table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
/*table tr:first-child { border-top: 1px solid #D9D9D9; }*/
table tr { border-bottom: 2px solid #DADDDE; }
/*table tr > *:not(:last-child) { border-right: 1px solid #707070; }*/
table tr th, table tr td {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 14px 10px;
    vertical-align: middle;
}
table tr th[rowspan] {
    background-color: var(--color-aq);
}

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

/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn-wrap { margin-top: 3rem; }
.btn00 a,
.rela-btn > span {
    color: var(--color-wh);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: inline-block;
    width: auto;
    margin: 0 auto 20px;
    padding: 14px 46px 14px 36px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: var(--color-nav);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}
.btn00 a:hover,
.rela-box:hover .rela-btn > span { background-color: var(--color-bl); }
.btn-bl a { background-color: var(--color-bl); }
.btn-bl a:hover { background-color: var(--color-nav); }
.btn-h-wh a:hover { color: var(--color-nav); background-color: var(--color-wh); }

/* --------------------------------------------
    ナビゲーション
-------------------------------------------- */
#hd01 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: calc(var(--hd-height) * 1px);
    transition: all 0.4s ease;
    background-color: var(--color-wh);
}
.hd-logo {
    width: 246px;
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.hd-logo a { line-height: 1; }
.scroll #hd01 {
    filter: var(--drop-shadow);
    -webkit-filter: var(--drop-shadow);
    -ms-filter: var(--drop-shadow);
}

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

.g-nav-list .nav-btn {
    color: var(--color-wh);
    line-height: 1;
    text-align: center;
    width: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 1vw;
    padding: 10px 16px;
    background-color: var(--color-nav);
    font-feature-settings: "palt";
}
.g-nav-list .nav-btn .sub { font-size: 18px; margin-bottom: 10px; }
.g-nav-list .nav-btn .main {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    align-items: center;
    gap: 6px;
}
.g-nav-list .nav-btn .main::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background-image: url(../img/icon-tel-wh.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/*--- プルダウン ---*/
.pull-box { position: relative; }
.pull-box .pull-item {
    position: absolute;
    top: 100%;
    left: calc(50% - 100px);
    display: block;
    width: 200px;
    border-top: 4px solid var(--color-nav);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.pull-box .pull-item a {
    font-size: 15px;
    line-height: 40px;
    display: block;
    padding: 10px 20px;
    background-color: var(--color-wh);
}
.pull-box .pull-item a::after { display: none; }
.pull-box .pull-item a:hover {
    color: var(--color-wh);
    background-color: var(--color-nav);
}
.pull-box .pull-btn:hover + .pull-item,
.pull-box .pull-item:hover {
    opacity: 1;
    visibility: visible;
}


/*--- OPEN NAVI ---*/
#g-nav.panelactive {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}
/*--- MENU / CLOSE BTN ---*/
.openbtn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 68px;
}
.openbtn::before {
    content: "menu";
    color: var(--color-nav);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.07em;
    position: absolute;
    top: 36px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.openline {
    display: block;
    width: 40px;
    height: 26px;
    position: relative;
	cursor: pointer;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
}
.openbtn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    border-radius: 0;
	background-color: var(--color-nav);
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
  }
.openbtn span:nth-of-type(1) { top: 0; }
.openbtn span:nth-of-type(2) { top: 10px; }

/* OPEN Anime */
#g-nav.panelactive .openbtn::before {
    content: "close";
    color: var(--color-nav) !important;
    letter-spacing: 0.1em;
}
.openbtn.active span { width: 36px!important; }
.openbtn.active span:nth-of-type(1) { top: -3px !important; }
.openbtn.active span:nth-of-type(2) { top: 4px !important; }
.openbtn span:nth-of-type(1) { animation: menu07-bar01 .75s forwards; }
@keyframes menu07-bar01 {
    0% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(26deg); }
    50% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
}
.openbtn span:nth-of-type(3) { animation: menu07-bar02 .75s forwards; }
@keyframes menu07-bar02 {
    0% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(-26deg); }
    50% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
}
/* CLOSE Anime */
.openbtn.active span:nth-of-type(1) { animation: active-menu07-bar01 .75s forwards; }
@keyframes active-menu07-bar01 {
    0% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
    50% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(26deg); }
}
.openbtn.active span:nth-of-type(2) { animation: active-menu07-bar03 .75s forwards; }
@keyframes active-menu07-bar03 {
    0% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
    50% { -webkit-transform: translate(-50%, -2px); transform: translate(-50%, -2px) rotate(0); }
    100% { -webkit-transform: translate(-50%, -2px); transform: translate(-50%, -2px) rotate(-26deg); }
}
@media screen and (min-width: 1200px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 1199px) {
    :root { --hd-height: 68; }
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 100%;
        height: auto;
        max-width: 360px;
        padding: 25px 0 40px;
        position: absolute;
        top: 68px;
        right: 0;
        background-color: var(--color-wh);
    }
    #g-nav.panelactive .g-nav-list { opacity: 1; visibility: inherit; }
    .nav-list {
        display: block;
        height: auto;
        margin-bottom: 20px;
    }
    .nav-list > li { margin: 0; }
    .nav-list > li a,
    .nav-list > li .pull-btn {
        line-height: 62px;
        text-align: center;
        padding: 0 2.5em;
    }
    .nav-list > li a::after,
    .nav-list > li .pull-btn::after { display: none; }
    .g-nav-list .nav-btn { width: 280px; margin-inline: auto; }

    .pull-box .pull-item {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        border-top: none;
        margin-bottom: 20px;
    }
    .pull-box .pull-item a {
        color: var(--color-nav);
        font-size: 14px;
        line-height: 20px;
    }
    #g-nav.panelactive .pull-box .pull-item { opacity: 1; visibility: visible; }
}
@media screen and (max-width: 767px) {
    .nav-list { overflow-y: auto; }
}
@media screen and (max-width: 575px) {
    .g-nav-list { max-width: none; }
    #g-nav .g-nav-list { padding: 25px 6vw 40px; }
    #g-nav .g-nav-list { max-width: none; }
    .hd-logo { width: 218px; margin-left: 16px; }
    .g-nav-list .nav-btn { width: 100%; }
}


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

/*---------- sec00 ----------*/
.sec00 { padding-top: calc(var(--hd-height) * 1px); }
.hd-img img { width: 100%; }

/*---------- sec01 ----------*/
.sec01::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--color-nav);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.sec01::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(-10deg,rgba(0, 41, 109, 0.8) 12%, rgba(0, 41, 109, 0.2) 60%, rgba(0, 41, 109, 0) 100%);
    mix-blend-mode: multiply;
}
.sec01-box {
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
    height: auto;
    min-height: calc(100vh - var(--hd-height) * 1px - calc(var(--content-wrap) * 2px));
}
.sec01-box .item-img {
    width: 435px;
    filter: var(--drop-shadow);
    -webkit-filter: var(--drop-shadow);
    -ms-filter: var(--drop-shadow);
}
.sec01-box .item-txt { flex: 1; }
.item-txt .sec01-tit {
    margin-bottom: 36px;
}
.item-txt .sec01-txt p {
    margin-bottom: 2.5rem;
}

/*---------- sec02 ----------*/
.sec02 { overflow: hidden; }
.sec02-box .sec02-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: calc(100vw - 30em);
    height: 100%;
    text-align: right;
}
.sec02-box .sec02-img::before {
    content: '';
    display: block;
    width: 30vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.sec02-box .sec02-img img {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    object-fit: cover;
}

.sec02-box .sec02-txt {
    position: relative;
    z-index: 50;
}
.sec02-box .sec02-txt .txt-wrap {
    position: relative;
    z-index: 50;
}
.sec02-box .sec02-txt .txt-wrap > p { margin-bottom: 2.5rem; }


/*---------- sec03 ----------*/
.sec03 {
    height: auto;
    max-height: 660px;
    overflow: hidden;
}
.sec03 .tit-anime img { filter: brightness(0) invert(1); }
.sec03-slider {
    gap: 16px;
    margin-left: 16px;
    height: auto;
    max-height: 660px;
}
.vertical-slider {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.slider02 {
    margin-top: 3px;
    align-items: flex-end;
}
.vertical-slider .slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.slider01 .slider-wrap:first-child {
    animation: slideTop 50s -25s linear infinite;
}
.slider01 .slider-wrap:last-child {
    animation: slideTop2 50s linear infinite;
}
.slider02 .slider-wrap:first-child {
    animation: slideBottom 50s linear infinite;
}
.slider02 .slider-wrap:last-child {
    animation: slideBottom2 50s linear infinite;
}
.vertical-slider .slide-item { width: 300px; }
@keyframes slideTop {
    0% { transform: translateY(100%); }
    to { transform: translateY(-100%); }
}
@keyframes slideTop2 {
    0% { transform: translateY(0%); }
    to { transform: translateY(-200%); }
}
@keyframes slideBottom {
    0% { transform: translateY(-100%); }
    to { transform: translateY(0%); }
}
@keyframes slideBottom2 {
    0% { transform: translateY(-100%); }
    to { transform: translateY(0%); }
}

.sec03-box { flex-direction: row-reverse; align-items: center; gap: 50px; }
.sec03-box .sec03-txt .txt-wrap > p { margin-bottom: 2.5rem; }

/*---------- sec04 ----------*/
.sec04::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--color-wh);
    clip-path: polygon(0 0, 100% 0%, 37.2% 100%, 0% 100%);
}
.sec04::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(180deg,rgba(0, 41, 109, 0.8) 12%, rgba(0, 41, 109, 0.2) 90%);
    mix-blend-mode: multiply;
}
.sec04-box {
    position: relative;
    z-index: 10;
    align-items: center;
}
.sec04-box .sec04-txt { flex: 1; }
.sec04-box .sec04-txt .sec04-btnlist a {
    position: relative;
    color: var(--color-nav);
    font-weight: 500;
    display: block;
    width: 18rem;
    line-height: 48px;
    border-bottom: 2.5px solid;
}
.sec04-box .sec04-txt .sec04-btnlist a:not(:last-child) { margin-bottom: 40px; }
.sec04-box .sec04-txt .sec04-btnlist a::before,
.sec04-box .sec04-txt .sec04-btnlist a::after {
    content: '';
    width: 2.5px;
    height: 28px;
    position: absolute;
    right: -8px;
    background-color: currentColor;
}
.sec04-box .sec04-txt .sec04-btnlist a::before { transform: rotate(30deg); bottom: -4px; }
.sec04-box .sec04-txt .sec04-btnlist a::after { transform: rotate(-30deg); bottom: 19px; }
.sec04-box .sec04-txt .sec04-btnlist a:hover { color: var(--color-bl); width: 24rem; }

.sec04-box .sec04-img {
    flex: 1;
    position: relative;
    z-index: 10;
}
.sec04-box .sec04-img::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 24px;
    left: -24px;
    z-index: -1;
    background: linear-gradient(-45deg,var(--color-wh) 0%, #0092dc 100%);
}

/*---------- sec05 ----------*/
.sec05::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--color-aq);
    clip-path: polygon(0% 0%, 37.2% 0%, 0% 50%, 37.2% 100%, 0% 100%);
}
.sec05::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 41, 109, 0.2);
    mix-blend-mode: multiply;
}
.sec05 .tit-anime img { filter: brightness(0) invert(1); }
.sec05-box {
    position: relative;
    z-index: 10;
    height: auto;
    min-height: calc(100vh - var(--hd-height) * 1px - calc(var(--content-wrap) * 2px));
}
.sec05-box .info-box {
    width: 100%;
    max-width: 750px;
    margin-inline: auto;
}

/* --------------------------------------------
    other page
-------------------------------------------- */
#cpage {
    color: var(--color-bk);
    background-color: var(--color-wh);
}

#titbar h1 {
    position: relative;
    font-size: 72px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: uppercase !important;
    display: block;
    padding-top: calc(var(--hd-height) * 1px + 4rem);
    text-transform: capitalize;
}
#titbar h1 img:not(:last-of-type) { margin-right: 40px; }
#titbar h1 .txt-ja {
    display: block;
    font-size: 1rem;
    letter-spacing: 0;
    margin-top: 10px;
    margin-left: -0.12em;
}

.other-content .content-wrap h2 {
    position: relative;
    padding: 0 0 16px 0;
    border-bottom: 3px solid #DADDDE;
}
.other-content .content-wrap h2::before {
    content: '';
    display: block;
    width: 2em;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 10;
    background-color: var(--color-nav);
}
/*
.other-content .content-wrap h2 {
    position: relative;
    padding: 16px 0 0 0;
    border-top: 3px solid #DADDDE;
}
.other-content .content-wrap h2::before {
    content: '';
    display: block;
    width: 2em;
    height: 3px;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 10;
    background-color: var(--color-nav);
}
*/

.other-content .content-wrap h3 {
    line-height: 1.3;
    position: relative;
    z-index: 10;
    padding: 0.2em 2.4em 0.3em 0.4em;
    background-color: var(--color-aq);
    clip-path: polygon(0 0, calc(100% - 53px) 0, 100% 100%, 0% 100%);
}
.other-content .content-wrap h3::before {
    content: '';
    display: block;
    width: 80px;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(100% - 62px);
    z-index: 1;
    background-color: var(--color-nav);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 52px 100%);
}

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

.other-content .content-wrap h5 {
    color: var(--color-nav);
    line-height: 1.3;
}

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


.other-content .content-wrap h2 { margin-bottom: 56px; }
/*.other-content .content-wrap h3 { margin-bottom: 32px; }*/
.other-content .content-wrap h3 { margin-bottom: 30px; }
.other-content .content-wrap h4 { margin-bottom: 26px; }
.other-content .content-wrap h5 { margin-bottom: 20px; }
.other-content .content-wrap h6 { margin-bottom: 14px; }
.other-content .content-wrap p { margin-bottom: 1.5em; }
.other-content .content-wrap .grid2 { grid-gap: 20px; }
.other-content .content-wrap .grid3 { grid-gap: 10px; }

/*--- ul / ol ---*/
.other-content .content-wrap ul {
    list-style: none;
    margin-bottom: 1em;
    padding: 0;
    padding-left: 1em;
}
.other-content .content-wrap ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 10px;
}
.other-content .content-wrap ul > li:before {
    position: absolute;
    content: "●";
    left: -1em;
    top: 0;
}

.other-content .content-wrap ol {
    list-style: none;
    counter-reset: li;
    margin-bottom: 1em;
    padding-left: 1em;
}
.other-content .content-wrap ol li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 10px;
    line-height: 1.6;
}
.other-content .content-wrap ol > li:before {
    position: absolute;
    counter-increment: li;
    content: counter(li) ".";
    left: -1em;
    top: 0;
}


/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    color: var(--color-wh);
    font-size: 17px;
    position: relative;
    z-index: 5;
}
#ft01 a,
#ft01 p {
    line-height: 1.8;
    letter-spacing: 0.05em;
}
#ft01 a { color: var(--color-wh); }
.ft-wrap {
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 80px;
}
.ft-hd .ft-logo {
    font-size: 20px;
    margin-bottom: 16px;
}
.ft-hd .ft-txt p { margin-bottom: 0; }
.ft-hd .ft-txt p:first-child { margin-bottom: 16px; }

.f-flex {
    position: relative;
    justify-content: flex-end;
    gap: 30px;
}
.f-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.f-menu:nth-child(1) { width: 11em; }
.f-menu:nth-child(2) { width: 10em; }
.f-menu:nth-child(3) { width: 12em; }
.f-menu li { margin-bottom: 26px; }
.f-menu li:not(.ft-tit), .f-menu li.tit-fst { margin-bottom: 14px; }
.f-menu li.ft-tit a {
    position: relative;
    padding-left: 22px;
}
.f-menu li.ft-tit a::before {
    content: "";
    display: block;
    width: 12px;
    height: 16px;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
    background-color: var(--color-bl);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}


.ft-cp {
    color: var(--color-nav);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 10px 10px 12px;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 1500px) {
    .sec05-box { min-height: auto; }
}
@media screen and (max-width: 1199px) {
    .tit-anime img { height: 60px; }
    .sec01-box .item-txt { flex: 1.2; }
    .sec01-box .item-img { flex: 1; width: 100%; }
    .vertical-slider .slide-item { width: 22vw; }
    .sec04-box .sec04-txt .sec04-btnlist a:hover { width: 21rem; }
    #ft01 { font-size: 15px; }
    .ft-hd .ft-logo { font-size: 18px; }
}
@media screen and (max-width: 991px) {
    :root {
        --txt-size: 18px;
    }
    .txt-cp { font-size: 15px; }
    .content-wrap { height: 100%; padding-top: 80px; padding-bottom: 80px; }
    .btn00 a, .rela-btn > span { font-size: 16px; }

    .sec01::before {
        height: calc(100% - 250px);
        top: auto;
        bottom: 0;
        clip-path: polygon(0 0, 100% 32vw, 100% 100%, 0% 100%);
    }
    .sec01-box { flex-wrap: wrap; flex-direction: row; }
    .sec01-box .item-img { flex: auto; }
    .sec01-box .item-img .sec01-img {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .sec01-box .item-img .sec01-img .img01 { width: 405px; }
    .sec01-box .item-img .sec01-img .img02 { width: 157px; }
    .sec02 .content-wrap { padding-bottom: 0!important; }
    .sec02-box .sec02-img {
        position: relative;
        width: 100vw;
        margin-left: calc(-1.05 * var(--content-side));
    }
    .sec02-box .sec02-img::before { display: none; }
    .sec02-box .sec02-img img { aspect-ratio: 2 / 1; }
    .sec02-box .sec02-txt { padding-bottom: 80px; padding-right: var(--content-side); }
    .sec03 { max-height: none; padding-bottom: 60px; }
    .sec03 .sec-inner-end { padding-left: var(--content-side); }
    .sec03-box {
        display: block;
    }
    .sec03-slider {
        flex-direction: column;
        max-height: none;
        margin-left: 0;
    }
    .slider02 { margin-top: 0; }
    .vertical-slider { flex-direction: row; }
    .vertical-slider .slider-wrap { flex-direction: row; }
    .vertical-slider .slide-item { width: 210px; }
    @keyframes slideTop {
        0% { transform: translateX(100%); }
        to { transform: translateX(-100%); }
    }
    @keyframes slideTop2 {
        0% { transform: translateX(0%); }
        to { transform: translateX(-200%); }
    }
    @keyframes slideBottom {
        0% { transform: translateX(-100%); }
        to { transform: translateX(0%); }
    }
    @keyframes slideBottom2 {
        0% { transform: translateX(-100%); }
        to { transform: translateX(0%); }
    }
    .sec04-box { display: block; }
    .sec04-box .sec04-img { width: 100%; max-width: 500px; margin-inline: auto; }
    .sec04-btnlist { margin-bottom: 50px; }
    .sec04::before { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80vw), 20vw 100%, 0 100%); }
    .sec05::before { clip-path: polygon(0 0, 20vw 0, 0 20vw, 0 calc(100% - 20vw), 20vw 100%, 0% 100%); }
    .ft-wrap { display: block; padding-top: 60px; padding-bottom: 32px; }
    .ft-txt { margin-bottom: 36px; }
    .f-flex { justify-content: flex-start; }
    .f-menu li.ft-tit { margin-bottom: 16px; }
    .f-menu li.tit-fst { margin-bottom: 10px; }
    .f-menu li:not(.ft-tit) { font-size: 14px; margin-bottom: 7px; }
    #titbar h1 img { height: 60px; }
    #titbar h1 img:not(:last-of-type) { margin-right: 30px; }
}
@media screen and (max-width: 767px) {
    :root {
        --txt-size: 16px;
        --content-wrap: 80;
        --content-side : 7.5%;
    }
    h1, .sizeh1 { font-size: 28px; }
    h2, .sizeh2 { font-size: 26px; }
/*    h3, .sizeh3 { font-size: 23px; }*/
    h3, .sizeh3 { font-size: 21px; }
    h4, .sizeh4 { font-size: 21px; }
    h5, .sizeh5 { font-size: 19px; }
    h6, .sizeh6 { font-size: 17px; }
    .txt-cp { font-size: 14px; }
    .txt-marker { padding: 0; }
    .grid2 { grid-template-columns: repeat(1, 1fr); }
    .grid4 { grid-template-columns: repeat(2, 1fr); }
    .row-map { margin-bottom: 20px; margin-top: 20px; }
    .row-map iframe { height: 212px!important; }
    table tr th, table tr td { font-size: 14px; padding: 10px 12px; }
    section { overflow-x: hidden; }
    .sec-inner {
        padding-right: var(--content-side);
        padding-left: var(--content-side);
    }
    .sec-inner-start { padding-left: var(--content-side); }
    .sec-inner-end { padding-right: var(--content-side); }
    .sec01::before {
        height: calc(100% - 360px);
        clip-path: polygon(0 0, 100% 60vw, 100% 100%, 0% 100%);
    }
    .sec02-box .sec02-txt { padding-right: var(--content-side); }
    .sec02-box .sec02-txt .txt-wrap > p { margin-bottom: 1.5rem; }
    .sec02-box .sec02-img { margin-left: calc(-1 * var(--content-side)); }
    .sec03-box .sec03-txt { padding-bottom: 60px; }
    .sec03-box .sec03-txt .txt-wrap > p { margin-bottom: 1.5rem; }
    .sec03-slider { gap: 12px; }
    .vertical-slider .slider-wrap { gap: 12px; }
    .vertical-slider .slide-item { width: 180px; }
    .sec04-box .sec04-txt .sec04-btnlist a { width: 16rem; }
    .sec04-box .sec04-txt .sec04-btnlist a:not(:last-child) { margin-bottom: 20px; }
    .sec04-box .sec04-img::before { top: 13px; left: -13px; }
    .f-flex { flex-wrap: wrap; gap: 10px 30px; }
    .f-menu:nth-child(1) { width: 10em; }

    #titbar { padding: 68px 6% 1px; }
    #titbar h1 { font-size: 42px; padding-top: 30px; }
    #titbar h1 .txt-ja { font-size: 13px; }
    #titbar h1 img { height: 46px; }
    #titbar h1 img:not(:last-of-type) { margin-right: 24px; }
    .other-content .content-wrap h3 { clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0% 100%); }
    .other-content .content-wrap h3::before { width: 40px; left: calc(100% - 32px);  clip-path: polygon(0 0, 100% 0%, 100% 100%, 24px 100%); }
}
@media screen and (max-width: 575px) {
    :root {
        --content-side : 6%;
    }
    h1, h2, h3, h4, h5, h6, .sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 { letter-spacing: 0.02em; }
/*
    h1, .sizeh1 { font-size: 24px; }
    h2, .sizeh2 { font-size: 21px; }
    h3, .sizeh3 { font-size: 20px; }
    h4, .sizeh4 { font-size: 19px; }
    h5, .sizeh5 { font-size: 18px; }
    h6, .sizeh6 { font-size: 17px; }
*/
    h1, .sizeh1 { font-size: 24px; }
    h2, .sizeh2 { font-size: 21px; }
    h3, .sizeh3 { font-size: 18px; }
    h4, .sizeh4 { font-size: 18px; }
    h5, .sizeh5 { font-size: 17px; }
    h6, .sizeh6 { font-size: 16px; }
    .tit-anime { margin-bottom: 36px; }
    .tit-anime img { height: 46px; }
    ul.list-2col { grid-template-columns: repeat(1, auto); }
    .grid-box { grid-gap: 20px; }
    .row-map iframe { height: 260px; }
    .btn00 a, .rela-btn > span { font-size: 15px; }
    .sec02-box .sec02-txt { padding-bottom: 60px; }
    .sec02-box .sec02-img img { aspect-ratio: 3 / 2; }

    .f-flex { flex-wrap: wrap; gap: 6px 30px; }
    #titbar h1 { line-height: 1.2; }
    #titbar h1 img { height: 42px; }
    .other-content .content-wrap h2 { margin-bottom: 42px; }
    .other-content .content-wrap h3 { margin-bottom: 24px; }
    table tr th, table tr td { padding: 12px 3px; }
    table tr td:not(:first-child) { padding-left: 15px; }
    .table-scroll { width: 100%; overflow-x: auto; }
    .table-scroll table { min-width: 470px; }
    .table-scroll table tr th,
    .table-scroll table tr td { font-size: 14px; font-feature-settings: "palt"; }
    .table-scroll table tr th:last-of-type,
    .table-scroll table tr td:not(:first-child) { padding-left: 12px; }
}
@media screen and (max-width: 340px) {
    :root {
        --txt-size : 15px;
    }
    .tit-anime img { height: 42px; }
    .sec02-box .sec02-txt .txt-wrap > p { letter-spacing: 0.06em; font-feature-settings: "palt"; }
    .sec04-box .sec04-txt .sec04-btnlist a {
        font-size: 17px;
        width: 13rem;
        line-height: 46px;
    }
    .sec04-box .sec04-txt .sec04-btnlist a:not(:last-child) { margin-bottom: 16px; }
    #ft01 { font-size: 14px; }
    .f-flex { display: block; }
    .f-menu:nth-child(1),
    .f-menu:nth-child(2),
    .f-menu:nth-child(3) { width: 100%; }
    .f-menu li.ft-tit { margin-bottom: 12px; }
    .ft-cp { font-size: 11px; padding: 8px 10px 10px; }
}

/* --------------------------------------------
    見出しSVGアニメーション - .tit-anime
-------------------------------------------- */
.tit-anime {
    overflow: hidden;
}
.tit-anime img {
    opacity: 0;
    transform: translateY(60%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.tit-anime.is-active img { transform: translateY(0%); opacity: 1; }

/* --------------------------------------------
    お知らせリスト - info-box
-------------------------------------------- */
.info-box {
    padding: 40px 20px;
}
.info-item {
    position: relative;
    color: var(--color-wh);
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 0;
    padding: 24px 5px;
    border-bottom: 2.5px solid var(--color-wh);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.list-news .info-item {
    color: var(--color-bk);
    border-bottom: 2.5px solid var(--color-gray);
}

.info-box > a:last-child .info-item { border-bottom: none; }

.info-item::before,
.info-item::after {
    content: '';
    width: 2.5px;
    height: 10px;
    position: absolute;
    left: 0;
    background-color: var(--color-wh);
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.list-news .info-item::before,
.list-news .info-item::after {
    background-color: var(--color-bk);
}

.info-item::before {
    transform: rotate(42deg);
    bottom: 32px;
}
.info-item::after {
    transform: rotate(-42deg);
    bottom: 38px;
}

.info-item dt {
    font-size: 16px;
    display: block;
    width: 6em;
    margin-bottom: 6px;
}
.info-item dd {
    flex: 1;
    font-size: 18px;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.info-box > a:hover .info-item, .info-box > a:focus .info-item {
    color: var(--color-wh);
    text-decoration: none;
    outline: none;
}
.list-news > a:hover .info-item, .list-news > a:focus .info-item {
    color: var(--color-nav);
}

.info-box > a:hover .info-item { padding-left: 30px; }
.info-box > a:hover .info-item::before,
.info-box > a:hover .info-item::after { opacity: 1; left: 10px; }

@media screen and (max-width: 767px) {
    .info-box { padding: 0 0 20px; }
    .info-item { flex-direction: column; gap: 6px; }
    .info-item dd {
        font-size: 15px;
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .info-item::before, .info-item::after { display: none; }
    .info-box > a:hover .info-item { padding-left: 5px; }
}

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

/* --------------------------------------------
    数字で知る - .counter-box
-------------------------------------------- */
.counter-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px!important;
}
.box-data {
    color: var(--color-nav);
    position: relative;
    padding: 36px 26px;
    background-color: var(--color-aq);
    /*aspect-ratio: 1 / 1;*/
}
.box-data.box07,
.box-data.box08,
.box-data.box09 { padding: 0!important; }
.box-data .data-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-data .box-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.box-data .data-tit {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.box-data .data-icon { text-align: center; }
.box-data .flex-box {
    justify-content: center;
    align-items: center;
    gap: 0;
}
.box-data .flex-data {
    align-items: baseline;
    gap: 6px;
}
.box-data .flex-data .num-txt {
    color: #0092DC;
    font-size: 136px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -0.02em;
}
.box-data .flex-data .num-txt span { display: block; line-height: 0.9; }
.box-data .flex-data .num-word {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
}

.box-data .flex-cp { margin-top: 20px; }
.box-data .flex-cp .txt-item {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 0 !important;
}
.box-data.box01 .flex-cp .icon-item { width: 63px; }
.box-data.box02 .flex-cp .icon-item { width: 100px; }

@media screen and (max-width: 1279px) {
    .box-data .flex-data .num-txt { font-size: 100px; }
    .box-data .flex-data .num-word { font-size: 32px; }
    .box-data .data-icon img { width: 160px; }
}
@media screen and (max-width: 1099px) {
    .counter-box { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 767px) {
    .counter-box { gap: 10px !important; }
    .box-data { padding: 30px 16px; }
    .box-data .data-tit { font-size: 20px; margin-bottom: 12px; }
    .box-data.box01 .data-tit,
    .box-data.box02 .data-tit { margin-bottom: 6px; }
    .box-data .flex-data .num-txt { font-size: 86px; }
    .box-data .flex-data .num-word { font-size: 28px; }
    .box-data .data-icon img { width: 140px; }

    .box-data.box01 .flex-cp .icon-item { width: 42px; }
    .box-data.box02 .flex-cp .icon-item { width: 82px; }
    .box-data .flex-cp .txt-item { font-size: 13px; }
}
@media screen and (max-width: 575px) {
    .counter-box { grid-template-columns: 1fr; width: 260px; margin-inline: auto; }
    .box-data .data-tit { font-size: 18px; }
}

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

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

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

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

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

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