@charset "utf-8";
:root {
    --color-bk: #333;
    --color-wh: #fff;
    --color-gray: #EBEBEB;
    --color-dbw: #7E7973;
    --color-bw: #DDD9D6;
    --color-gr: #168D4D;
    --color-ygr: #31B16B;
    --color-or: #D99A2B;
    --txt-size: 18px;
    --txt-lh: 1.5;
    --inner-size: 1000;
    --inner-size-narrow: 930;
    --hd-height: 80;
    --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: 500;
    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 {*/
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url(../img/bg-img01.png);
    background-size: 420px 420px;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.1;
}
* { min-height: 0vw; }
.hidden { display: none; }
.grecaptcha-badge { visibility: hidden; }
/*--- 画面全体をフェードイン(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: 42px; }
h2, .sizeh2 { font-size: 36px; }
h3, .sizeh3 { font-size: 26px; }
h4, .sizeh4 { font-size: 24px; }
h5, .sizeh5 { font-size: 22px; }
h6, .sizeh6 { font-size: 20px; }

hgroup {
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 36px;
}
hgroup h2,
hgroup p {
    font-weight: 600;
}
hgroup h2 {
    line-height: 1.5;
    letter-spacing: 0.03em;
}
hgroup p {
    position: relative;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 2px;
}
.tit-start { margin-left: 0.2em; }
hgroup p::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 100%;
    left: 0;
}

/*--- 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;
    position: relative;
    z-index: -10;
}

.btn-list {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px 3em;
}
.btn-list > a {
    position: relative;
    color: var(--color-bk);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.btn-list > a:hover { color: var(--color-gr); }
.btn-list > a:not(:last-of-type):after {
    content: "／";
    display: block;
    color: var(--color-bk);
    font-size: 1em;
    letter-spacing: 0;
    position: absolute;
    top: 0;
    left: calc(100% + 1em);
}


/*--- 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 1.5rem;
	padding: 0;
    line-height: 1.9;
    letter-spacing: 0.02em;
}
.txt-en { font-family: "Roboto", sans-serif; }
.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-dbw { color: var(--color-dbw); }
.color-bw { color: var(--color-bw); }
.color-gr { color: var(--color-gr); }
.color-ygr { color: var(--color-ygr); }
.color-or { color: var(--color-or); }
.color-bk { color: var(--color-bk); }
.color-wh { color: var(--color-wh); }
.bg-dbw { background-color: var(--color-dbw); }
.bg-bw { background-color: var(--color-bw); }
.bg-gr { background-color: var(--color-gr); }
.bg-ygr { background-color: var(--color-ygr); }
.bg-or { background-color: var(--color-or); }
.bg-wh { background-color: var(--color-wh); }
.bg-gray { background-color: var(--color-gray); }
.bg-none { background-color: transparent; }

/* --- 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;
    border: 1px solid #BABABA;
}
table tr:nth-child(2n) { background-color: #F7F7F7; }
table tr th, table tr td {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 16px 18px;
    border: 1px solid #BABABA;
}
table tr th { background-color: #DDD9D6; }

/*--- .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: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: inline-block;
    width: auto;
    height: 50px;
    margin: 0 auto 20px;
    padding: 14px 96px 14px 30px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background: linear-gradient(90deg, var(--color-ygr) 10%, var(--color-dbw) 90%);
    border-radius: 28px;
}
.btn00 a::before,
.rela-btn > span::before,
.btn00 a::after,
.rela-btn > span::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 10px;
    display: block;
    width: 52px;
    height: 32px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btn00 a::before,
.rela-btn > span::before {
    background-color: var(--color-wh);
    border-radius: 20px;
}
.btn00 a::after,
.rela-btn > span::after {
    background-color: transparent;
    background-image: url(../img/icon-arrow01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.btn00 a:hover::before,
.rela-box:hover .rela-btn > span::before { background-color: #1D2326; }
.btn00 a:hover::after,
.rela-box:hover .rela-btn > span::after { filter: brightness(0) invert(1); transform: translateX(9px); }


.btn00-arrow {
    position: relative;
    display: block;
    width: 52px;
    height: 32px;
    background-color: var(--color-wh);
    border: 1px solid #1D2326;
    border-radius: 20px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btn00-arrow::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url(../img/icon-arrow01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.swiper-navigation-icon { display: none; }
.btn-box a:hover .btn00-arrow,
.swiper-button-next:hover .btn00-arrow,
.swiper-button-prev:hover .btn00-arrow { background-color: #1D2326; }
.btn-box a:hover .btn00-arrow::before,
.swiper-button-next:hover .btn00-arrow::before,
.swiper-button-prev:hover .btn00-arrow::before { filter: brightness(0) invert(1); transform: translateX(9px); }


/* --------------------------------------------
    ナビゲーション
-------------------------------------------- */
#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);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.hd-logo {
    width: 245px;
    display: flex;
    align-items: center;
    margin-left: 60px;
}
.hd-logo a {
    line-height: 0;
    filter: brightness(1) invert(0);
}

/*--- 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: 15px;
    font-weight: 600;
    line-height: calc(var(--hd-height) * 1px);
    letter-spacing: 0.04em;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.nav-list > li .pull-btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    margin-top: 3px;
    margin-left: 5px;
    background-color: currentColor;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.g-nav-list .nav-btn {
    color: var(--color-wh);
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    width: 164px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    margin-left: 20px;
    margin-right: 40px;
    padding: 8px 16px;
    background: linear-gradient(130deg, var(--color-ygr) 5%, var(--color-dbw) 95%);
    border-radius: 24px;
}


/*--- プルダウン ---*/
.pull-box { position: relative; }
.nav-list > li .pull-btn > .btn00-arrow { display: none; }
.pull-box .pull-item {
    position: absolute;
    top: 100%;
    left: calc(50% - 100px);
    display: block;
    width: 200px;
    border-top: 4px solid var(--color-gr);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.pull-box .pull-item a {
    color: var(--color-bk);
    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-gr);
}
.pull-box .pull-btn:hover + .pull-item,
.pull-box .pull-item:hover {
    opacity: 1;
    visibility: visible;
}


/*--- OPEN NAVI ---*/
.panelactive #g-nav {
    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: 90px;
    height: calc(var(--hd-height) * 1px);
}
.openline {
    display: block;
    width: 36px;
    height: 36px;
    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-bk);
    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: 12px; }
.openbtn span:nth-of-type(2) { top: 24px; }

/* OPEN Anime */
.panelactive .openbtn span { width: 36px!important; background-color: var(--color-bk); }
.panelactive .openbtn span:nth-of-type(1) { top: 14px !important; }
.panelactive .openbtn span:nth-of-type(2) { top: 21px !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(30deg); }
    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(-30deg); }
    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 */
.panelactive .openbtn 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(30deg); }
}
.panelactive .openbtn 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(-30deg); }
}

@media screen and (min-width: 1170px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 1169px) {
    :root { --hd-height: 60; }
    .hd-logo { width: 210px; }
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 100%;
        height: auto;
        max-width: 360px;
        padding: 70px 0 50px 30px;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(102%);
        background-color: var(--color-wh);
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }
    .panelactive #g-nav .g-nav-list { opacity: 1; visibility: inherit; transform: translateX(0); }
    .nav-list {
        display: block;
        height: auto;
        margin-bottom: 20px;
    }
    .nav-list > li { margin: 0; border-bottom: 2px solid var(--color-gray); }
    .nav-list > li a,
    .nav-list > li .pull-btn {
        color: var(--color-bk);
        font-size: 18px;
        line-height: 64px;
        text-align: left;
        padding: 0 20px;
    }
    .nav-list > li .pull-btn { cursor: default; }

    .nav-list > li a::before,
    .nav-list > li a::after {
        content: '';
        position: absolute;
        top: 18px;
        right: 30px;
        display: block;
        width: 42px;
        height: 28px;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }
    .nav-list > li a::before {
        background-color: var(--color-wh);
        border-radius: 20px;
        border: 1px solid #1D2326;
    }
    .nav-list > li a::after {
        background-color: transparent;
        background-image: url(../img/icon-arrow01.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .nav-list > li a:hover::before { background-color: #1D2326; }
    .nav-list > li a:hover::after { filter: brightness(0) invert(1); transform: translateX(9px); }

    .g-nav-list .nav-btn { width: calc(100% - 30px); height: 54px; margin-top: 30px; margin-left: 0; border-radius: 30px; }

    .nav-list > li .pull-btn::after { display: none; }
    .nav-list > li .pull-btn > .btn00-arrow { display: block; }

    .pull-box .pull-item {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        border-top: none;
        margin-bottom: 0;
        background-color: var(--color-gray);
    }
    .pull-box .pull-item a {
        display: block;
        color: var(--color-bk);
        font-size: 16px;
        line-height: 36px;
        background-color: transparent;
        position: relative;
        z-index: 100;
    }
    .pull-box .pull-item a:not(:last-of-type) { border-bottom: 2px solid var(--color-wh); }
    .pull-box .pull-item a::after { display: block; }
    .pull-box .pull-item a::before,
    .pull-box .pull-item a::after { top: 15px; }
    .panelactive #g-nav .pull-box .pull-item { opacity: 1; visibility: visible; z-index: 100; }
}
@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 { max-width: none; padding: 60px 6vw 160px; }
    .hd-logo { width: 218px; margin-left: 16px; }
    .g-nav-list .nav-btn { width: 100%; }
}

/* --------------------------------------------
    Content
-------------------------------------------- */
section {
    position: relative;
    overflow: hidden;
}
.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 {
    height: 100vh;
    min-height: 700px;
    max-height: 860px;
}
.hd-img { height: 100%; }
.hd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-txt {
    color: var(--color-wh);
    position: absolute;
    bottom: 80px;
    left: 96px;
    z-index: 10;
}
.hd-txt .main {
    font-size: min(6.4vw, 89px);
    font-weight: bold;
    line-height: 1.45;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.hd-txt .sub {
    font-size: 15.2px;
    font-weight: 500;
    letter-spacing: 0.18em; 
    padding-left: 0.36em;
}

.txt-line {
    position: relative;
}
.txt-line::after{
    content: "";
    display: block;
    width: calc(100% - 14px);
    height: 8px;
    background-color: currentColor;
    position: absolute;
    top: calc(100% - 8px);
    left: 7px;
}

/*---------- sec01 ----------*/
.sec01::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #EFEFEF;
    mix-blend-mode: multiply;
}
.sec01-box {
    gap: 80px;
}
.sec01-box .item-start {
    flex: 1;
}
.sec01-box .item-end {
    width: fit-content;
    padding-top: 120px;
}
.sec01-box .sec01-txt p { margin-bottom: 2em; }

.sec01-box .sec01-tit {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-feature-settings: "palt";
    margin: auto;
}
.sec01-box .sec01-tit .tit-item {
    letter-spacing: 0.14em;
    display: block;
    height: fit-content;
    padding: 8px 3px;
    background-color: var(--color-wh);
}
.sec01-box .sec01-tit .tit-item:not(:last-of-type) { margin-left: 10px; }
.sec01-box .sec01-tit::after {
    content: "";
    position: absolute;
    top: calc(100% - 20px);
    left: calc(100% - 130px);
    display: block;
    width: 230px;
    height: 230px;
    background-color: transparent;
    background-image: url(../img/sec01-icon01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/*---------- sec02 ----------*/
.sec02-box {
    gap: 80px;
    width: 930px;
    max-width: 100%;
    margin-inline: auto;
    align-items: stretch;
}
.sec02-box .info-box {
    width: 100%;
    max-width: 600px;
}
.sec02-box .item-start {
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sec02-box .item-start .btn00 a { margin-bottom: 0; }
.sec02-box .item-end { width: calc(100% - 330px); }

/*---------- sec03 ----------*/
.survey-slider { margin-bottom: 50px; }
.survey-slider .swiper { overflow: visible; }
/*.survey-slider .swiper-wrapper { margin-left: -350px; }*/
.survey-slider .swiper-slide {
    width: 310px;
    flex-shrink: 0;
}

.survey-slider .survey-icon {
    position: relative;
    z-index: 10;
    display: block;
    width: 114px;
    margin-inline: auto;
    background-color: var(--color-gray);
    border-radius: 100vmax;
}
.survey-slider .survey-img {
    margin-top: -46px;
}
.survey-slider .survey-img img {
    aspect-ratio: 310 / 353;
    object-fit: cover;
}
.survey-slider .survey-btn > span {
    color: var(--color-bk);
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    height: auto;
    clip-path: none;
    margin-bottom: 0;
    padding: 18px 46px 18px 22px;
    background: none;
    background-color: var(--color-gray);
    border-radius: 0;
}
.survey-slider .survey-btn > span::before,
.survey-slider .survey-btn > span::after {
    top: auto;
    bottom: 15px;
    right: 20px;
}
.survey-slider .survey-btn > span::before { border: 1px solid #1D2326; }

.survey-ft {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 46px;
}
/*スクロールバー*/
.swiper-scrollbar {
    flex: 1;
    position: relative !important;
    inset: 0 !important;
    width: 100% !important;
    height: 6px !important;
    background-color: #F0F0F0;
    border-radius: 6px;
    overflow: hidden;
}
.swiper-scrollbar-drag {
    background-color: #168D4D;
}
/*矢印*/
.swiper-button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: fit-content;
}
.swiper-button-next,
.swiper-button-prev {
    position: relative;
    inset: 0;
    width: auto;
    height: auto;
    background-image: none;
    margin-top: 0;
    cursor: pointer;
}
.swiper-button-prev { transform: scaleX(-1); }

/*---------- sec04 ----------*/
.sec04-wrap { padding-bottom: 1px!important; }
.flow-bnr {
    align-items: stretch;
}
.flow-bnr .flow-txt {
    width: 425px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flow-bnr .flow-txt .txt-wrap { width: 17em; padding: 40px 10px; }
.flow-bnr .flow-txt hgroup { margin-bottom: 20px; }
.flow-bnr .flow-txt .txt-wrap > p { margin-bottom: 30px; }
.flow-bnr .flow-img {
    flex: 1;
}
.flow-bnr .flow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------- sec05 ----------*/
.sec05::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(70deg,var(--color-dbw) 12%, var(--color-ygr) 92%);
    mix-blend-mode: multiply;
}
.sec05-wrap {
    padding-top: 90px;
    position: relative;
    z-index: 10;
}
.sec05-box {
    gap: 80px;
    width: 965px;
    max-width: 100%;
    margin-left: auto;
}
.sec05-box .item-start {
    width: 250px;
}
.sec05-box .item-end {
    flex: 1;
}


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

#titbar {
    position: relative;
    margin-top: calc(var(--hd-height) * 1px);
    padding-top: 60px;
    padding-bottom: 70px;
    background-color: var(--color-ygr);
    background: linear-gradient(130deg, var(--color-ygr) 5%, var(--color-dbw) 80%);
}
#titbar h1 {
    position: relative;
    z-index: 100;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    display: block;
}
#titbar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    display: block;
    width: 32vw;
    max-width: 600px;
    height: 100%;
    background-color: transparent;
    background-image: url(../img/titbar-survey.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%);
}
#titbar.titbar-news::after { background-image: url(../img/titbar-news.jpg); }
#titbar.titbar-about::after { background-image: url(../img/titbar-about.jpg); }
#titbar.titbar-flow::after { background-image: url(../img/titbar-flow.jpg); }
#titbar.titbar-survey::after { background-image: url(../img/titbar-survey.jpg); }
#titbar.titbar-member::after { background-image: url(../img/titbar-member.jpg); }
#titbar.titbar-contact::after { background-image: url(../img/titbar-contact.jpg); }
#titbar.titbar-privacy-policy::after { background-image: url(../img/titbar-privacy-policy.jpg); }

.other-content section h1 { font-size: 38px; }
.other-content section h2 { font-size: 32px; margin-bottom: 36px; }
.other-content section h3 { font-size: 27px; margin-bottom: 30px; }
.other-content section h4 { font-size: 24px; margin-bottom: 20px; }
.other-content section h5 { font-size: 22px; margin-bottom: 16px; }
.other-content section h6 { font-size: 19px; margin-bottom: 12px; }
.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; }

.other-content .content-wrap h2 {
    position: relative;
    padding: 0 0 5px 20px;
    border-bottom: 1px solid #BABABA;
}
.other-content .content-wrap h2::before {
    content: '';
    display: block;
    width: 8px;
    height: 0.96em;
    position: absolute;
    top: calc(50% - 0.5em);
    left: 0;
    z-index: 10;
    background-color: var(--color-gr);
}

.other-content .content-wrap h3 {
    color: var(--color-wh);
    line-height: 1.3;
    position: relative;
    z-index: 10;
    padding: 0.2em 0.3em 0.3em 0.7em;
    background-color: var(--color-dbw);
}
.other-content .content-wrap h3::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--color-bk);
    clip-path: polygon(0 0, 100% 0%, 0 100%);
}

.other-content .content-wrap h4 {
    position: relative;
    line-height: 1.3;
    padding-left: 28px;
    font-feature-settings: "palt";
}
.other-content .content-wrap h4::before {
    content: '';
    display: block;
    width: 18px;
    height: 6px;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    background-color: var(--color-gr);
}

.other-content .content-wrap h5 {
    position: relative;
    display: block;
    width: fit-content;
    padding-bottom: 4px;
    line-height: 1.3;
}
.other-content .content-wrap h5::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--color-dbw);
}

.other-content .content-wrap h6 {
    line-height: 1.3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.38rem;
}
.other-content .content-wrap h6::before {
    content: '';
    display: block;
    width: 0.86em;
    height: 0.86em;
    margin-top: 0.16em;
    background-color: var(--color-gr);
    border-radius: 100vmax;
}


/*--- 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;
}

.anchor-nav {
    display: block;
    text-align: center;
    padding-bottom: 120px;
    max-width: 800px;
    line-height: 2;
    margin: auto;
}
.anchor-nav a {
    color: var(--color-bk);
    padding: 1em;
    white-space: nowrap;
}

.list-gr-dot {
    list-style: none;
    margin: 0;
    padding: 1em 3em !important;
}
.list-gr-dot li::before {
    color: var(--color-ygr) ;
}

.flow-step {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.flow-step .fs-item {
    width: calc(12.5% - 20px);
    text-align: center;
    margin-right:20px;
    margin-bottom: 20px;
    position: relative;
}
.flow-step .fs-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: calc(50% - 2.5px + 23.75px);
    right: -20px;
    background-color:#BABABA;
    width: 20px;
    height: 5px;
}
.flow-step .fs-item a {
    color: var(--color-bk);
}
.flow-step .fs-item .fs-tit {
    font-size: 18px;
    margin-bottom: 10px;
}
.flow-step .fs-item .fs-tit span {
    color: var(--color-ygr);
    font-size: 25px;
}

.flow-list {

}
.flow-list .flow-ex {
    display: flex;
    margin-bottom: 50px;
    padding: 30px;
    background-image: url(../img/bg-img02.png);
    background-position: center;
    background-repeat: repeat;
    position: relative;
    min-height: 200px;
}
.flow-list .flow-ex:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    background-image: url(../img/icon_tri1.svg);
    width: 50px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.flow-list .flow-ex .ex-ico {
    width: 180px;
    margin: 0;
    text-align: center;
    align-self: center;
}
.flow-list .flow-ex .ex-ico img {
}
.flow-list .flow-ex .ex-txt {
    align-self: center;
    padding-left: 30px;
    width: fit-content;
}
.flow-list .flow-ex .ex-txt .ex-tit {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0.3em;
    line-height: 1.3;
}
.flow-list .flow-ex .ex-txt .ex-tit span {
    color: var(--color-ygr);
    padding-right: 0.2em;
}

/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    font-size: 16px;
    position: relative;
    z-index: 5;
}
#cpage #ft01 { border-top: 1px solid #BABABA; }
#ft01 p {
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
#ft01 a { color: var(--color-bk); }
.ft-wrap {
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 80px;
}
.ft-logo {
    width: 310px;
    margin-bottom: 36px;
}

/*.ft-main { align-items: flex-end; }*/
.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: 12em; }
.f-menu:nth-child(2) { width: 12em; }
.f-menu:nth-child(3) { width: 12em; }
.f-menu li { margin-bottom: 10px; }
.f-menu li:not(.ft-tit) { font-size: 14px; margin-bottom: 8px; }
.f-menu li.ft-tit a {
    position: relative;
    padding-left: 18px;
}
.f-menu li.ft-tit a::before {
    content: "";
    display: block;
    width: 10px;
    height: 12px;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
    background-color: var(--color-bk);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}


.ft-cp {
    color: var(--color-wh);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 10px 10px 12px;
    background-color: #1D2326;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 1100px) {
    .sec02-box,
    .sec05-box { gap: 60px; }
}
@media screen and (max-width: 991px) {
    :root {
        --txt-size: 18px;
    }
    .txt-cp { font-size: 15px; }
    .btn00 a, .rela-btn > span { font-size: 16px; }
    .hd-logo {  margin-left: 4vw; }

    .sec00 { height: 92vh; }
    .hd-txt { bottom: 60px; left: 6vw; }
    .hd-txt .main { font-size: 60px; }
    .hd-txt .sub { font-size: 14px; }
    .txt-line::after {
        width: calc(100% - 9px);
        height: 6px;
        top: calc(100% - 5px);
        left: 4px;
    }
    .sec01-box { flex-direction: column; }
    .sec01-box .item-start { margin-inline: auto; }
    .sec01-box .sec01-tit::after { top: calc(100% - 150px); left: calc(100% - 20px); }
    .sec01-box .item-end { padding-top: 30px; margin-inline: auto; }
    .sec02-box { flex-direction: column; gap: 0; }
    .sec02-box .item-start,
    .sec02-box .item-end { width: 100%; }
    .sec02-box .info-box { max-width: none; margin-bottom: 50px; }
    .survey-slider .swiper-slide { width: 280px; }
    .survey-slider .survey-icon { width: 110px; }
    .survey-slider .survey-btn > span { font-size: 18px; padding: 18px 46px 18px 18px; }
    .survey-slider .survey-btn > span::before, .survey-slider .survey-btn > span::after { bottom: 14px; right: 16px; }
    .flow-bnr .flow-txt { width: 380px; }
    .sec05-wrap { padding-bottom: 30px!important; }
    .sec05-box { flex-direction: column; gap: 0; }
    .sec05-box .item-start,
    .sec05-box .item-end { width: 100%; }
    .sec05-box hgroup p { margin-left: auto; }

    .ft-logo { width: 260px; margin-bottom: 20px; }
    .ft-main { flex-direction: column; gap: 36px; }

    .flow-step .fs-item {
        width: calc(25% - 20px);
    }
    .flow-step .fs-item:not(:last-child)::before {
        bottom: 35%;
    }
    #titbar::after {
        width: 40vw;
        clip-path: polygon(90px 0, 100% 0, 100% 100%, 0% 100%);
    }
    .other-content section h1 { font-size: 32px; }
}
@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: 32px; }
    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; }
    .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; }
    .btn00 a, .rela-btn > span { font-size: 15px; }
    .btn00 a::before,
    .rela-btn > span::before,
    .btn00 a::after,
    .rela-btn > span::after { width: 42px; height: 28px; top: 11px; }
    .btn00-arrow { width: 42px; height: 28px; }
    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); }
    .hd-txt .main { font-size: 52px; margin-bottom: 10px; }
    .hd-txt .sub { font-size: 12px; }
    .txt-line::after { width: calc(100% - 8px); height: 5px; top: calc(100% - 5px); }
    .sec01-box .sec01-tit { font-size: 24px; }
    .sec01-box .sec01-tit::after {
        top: calc(100% - 110px);
        left: calc(100% - 20px);
        width: 210px;
        height: 210px;
    }
    .sec01-box .item-end { padding-top: 50px; }
    .survey-slider .swiper-slide { width: 210px; }
    .survey-slider .survey-icon { width: 92px; }
    .survey-slider .survey-img { margin-top: -36px; }
    .survey-slider .survey-btn > span { font-size: 14px; letter-spacing: 0.03em; padding: 15px 40px 15px 14px; }
    .survey-slider .survey-btn > span::before,
    .survey-slider .survey-btn > span::after { bottom: 10px; right: 10px; }
    .flow-bnr { flex-direction: column; }
    .flow-bnr .flow-txt { width: 100%; }
    .flow-bnr .flow-txt .txt-wrap { padding: 32px 10px 24px; }
    #ft01 { font-size: 15px; }
    .ft-wrap { padding-top: 60px; padding-bottom: 50px; }
    .f-flex { gap: 6vw; }
    .f-menu:nth-child(1) { width: fit-content; }
    .f-menu:nth-child(2) { width: fit-content; }
    .f-menu:nth-child(3) { width: fit-content; }
    .ft-cp { font-size: 11px; }
    #titbar { padding-top: 36px; padding-bottom: 42px; }
    #titbar::after {
        width: 46vw;
        clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
    }
    .other-content section h1 {
        font-size: 26px;
        filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
        -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
        -ms-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
    }
}
@media screen and (max-width: 575px) {
    :root {
        --content-side : 6%;
        --hd-height: 54;
    }
    h1, h2, h3, h4, h5, h6, .sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 { letter-spacing: 0.02em; }
    h1, .sizeh1 { font-size: 32px; }
    h2, .sizeh2 { font-size: 26px !important; }
    h3, .sizeh3 { font-size: 22px; }
    h4, .sizeh4 { font-size: 20px; }
    h5, .sizeh5 { font-size: 18px; }
    h6, .sizeh6 { font-size: 16px; }
    hgroup p { font-size: 13px; line-height: 1.8; margin-bottom: 6px; }
    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; }

    .hd-logo { width: 168px; }
    .sec00 { min-height: auto; max-height: none; }
    .hd-txt { bottom: 36px; }
    .hd-txt .main { font-size: 28px; }
    .hd-txt .main .txt-line { font-size: 34px; }
    .txt-line::after {
        width: calc(100% - 4px);
        height: 3.5px;
        top: calc(100% - 1px);
        left: 3px;
    }
    .hd-txt .sub { font-size: 11px; letter-spacing: 0.15em; }
    .sec01-box { gap: 200px; }
    .sec01-box .sec01-tit::after {
        top: calc(100% - 16px);
        left: calc(100% - 122px);
        width: 200px;
        height: 200px;
    }
    .sec01-box .item-end { padding-top: 0; }
    .survey-slider .swiper-slide { width: 200px; }
    .survey-slider .survey-btn > span { padding-left: 12px; }
    .survey-ft { gap: 20px; }
    .swiper-button-box { gap: 10px; }
    #ft01 { font-size: 14px; }
    .ft-wrap { padding-top: 50px; padding-bottom: 40px; }
    .ft-logo { width: 200px; }
    .f-flex {
        gap: 18px 30px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .ft-cp { font-size: 10px; letter-spacing: 0.02em; }

    .anchor-nav {
        padding-bottom: 60px;
    }
    .anchor-nav a {
        padding: 1em 0.2em;
    }

    .flow-step .fs-item {
        width: calc(100%/3 - 10px);
        margin-right: 10px;
    }
    .flow-step .fs-item:not(:last-child)::before {
        bottom: 29%;
        right: -10px;
        width: 10px;
    }
    .flow-step .fs-item .fs-tit {
        margin-bottom: 0px;
    }

    .flow-list .flow-ex {
        display: block;
        padding: 25px 25px 10px;
    }
    .flow-list .flow-ex .ex-txt {
        padding-left: 0px;
    }
    .flow-list .flow-ex .ex-ico {
        width: auto;
        padding-bottom: 30px;
    }
    .flow-list .flow-ex .ex-ico img {
        width: 160px;;
    }
    
    .flow-list .flow-ex .ex-txt .ex-tit {
        font-size: 20px;
        padding-bottom: 0.5em;
    }
    .flow-list .flow-ex:not(:last-child)::before {
        left: 43%;
    }


}
@media screen and (max-width: 340px) {
    :root {
        --txt-size : 15px;
    }
}

/* --------------------------------------------
    ft-before-content
-------------------------------------------- */
.ft-before-content {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: flex-end;
}
.ft-before-content .img-item { width: 250px; }
.ft-before-content::before,
.ft-before-content::after {
    content: '';
    display: block;
    height: 40px;
    background-color: var(--color-wh);
}
.ft-before-content::before { width: calc(25vw - 125px); }
.ft-before-content::after { width: calc(75vw - 125px); }
@media screen and (max-width: 1199px) {
    .ft-before-content::before { width: calc(18vw - 125px); }
    .ft-before-content::after { width: calc(82vw - 125px); }
}
@media screen and (max-width: 991px) {
    .ft-before-content { position: relative; inset: auto; }
    .ft-before-content::before { width: calc(25vw - 125px); }
    .ft-before-content::after { width: calc(75vw - 125px); }
}
@media screen and (max-width: 767px) {
    .ft-before-content .img-item { width: 190px; }
    .ft-before-content::before,
    .ft-before-content::after { height: 30px; }
    .ft-before-content::before { width: calc(25vw - 95px); }
    .ft-before-content::after { width: calc(75vw - 95px); }
}
@media screen and (max-width: 575px) {
    .ft-before-content .img-item { width: 160px; }
    .ft-before-content::before,
    .ft-before-content::after { height: 25px; }
    .ft-before-content::before { width: calc(30vw - 80px); }
    .ft-before-content::after { width: calc(70vw - 80px); }
}


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

.info-item::before,
.info-item::after {
    content: '';
    width: 2.5px;
    height: 10px;
    position: absolute;
    left: 0;
    background-color: var(--color-bk);
    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 {
    color: #6E7777;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    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-bk);
    text-decoration: none;
    outline: none;
}
.list-news > a:hover .info-item, .list-news > a:focus .info-item {
    color: var(--color-gr);
}

.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-gr);
    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-gr);
    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; }
}

/* --------------------------------------------
    .btn-box
-------------------------------------------- */
.btn-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%;
    border: 1px solid var(--color-bk);
}
.btn-box:not(:last-of-type) { margin-bottom: 27px; }
.btn-box a { 
    color: var(--color-bk);
    font-weight: 500;
    height: auto;
    min-height: 125px;
    align-items: stretch;
}
.btn-box .txt-item {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--color-bk);
}
.btn-box .num-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.btn-box .num-item img {
    width: 44px;
    height: 44px;
    background-color: var(--color-bk);
    border-radius: 100vmax;
}
.tel-box .num-item {
    font-size: 42px;
    font-weight: 600;
}
.mail-box .num-item {
    font-size: 20px;
    font-weight: 600;
}

#tpage .btn-box { border-color: var(--color-wh); }
#tpage .btn-box a { color: var(--color-wh); }
#tpage .btn-box .txt-item { border-right-color: var(--color-wh); }
@media screen and (max-width: 1100px) {
    .btn-box .txt-item { width: 170px; }
}
@media screen and (max-width: 991px) {
    .btn-box { width: 100%; max-width: 600px; margin-inline: auto; }
}
@media screen and (max-width: 767px) {
    .btn-box a { min-height: 110px; }
    .btn-box .txt-item { width: 150px; }
    .btn-box .num-item { gap: 10px; }
    .tel-box .num-item { font-size: 36px; }
    .mail-box .num-item { font-size: 19px; }
    .btn-box .num-item img { width: 40px; height: 40px; }
}
@media screen and (max-width: 575px) {
    .btn-box a { flex-direction: column; }
    .btn-box .txt-item { width: 100%; padding: 12px; border-right: none; border-bottom: 1px solid var(--color-bk); }
    #tpage .btn-box .txt-item { border-bottom-color: var(--color-wh); }
    .btn-box .num-item { gap: 8px; min-height: 80px; margin-inline: auto; }
    .tel-box .num-item { font-size: 30px; }
    .mail-box .num-item { font-size: 17px; }
    .btn-box .num-item img { width: 36px; height: 36px; }
}


/* --------------------------------------------
    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; }
.contact-form input[type="checkbox"] { display: none; }

/* 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-gr);
}
.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-gray);
}
.wpcf7-checkbox label:has(:checked)::before {
    background-color: var(--color-gr);
}
.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-gr)!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-bk)!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%; }
}