@charset "utf-8";
:root {
    /*色：d=dark、l=light*/
    --color-bk: #000;
    --color-bk-l: #333;
    --color-wh: #fff;
    --color-gray-l: #F8F8F8;
    --color-gray: #D9D9D9;
    --color-gray-d: #ACACAC;
    --color-gray-dd: #707070;
    --color-red: #E81D28;
    --color-ye: #FFFB96;
    --color-gr: #0D6837;
    --color-gr-d: #18432D;
    --txt-size: 16px;
    --txt-lh: 1.5;
    --inner-size: 1000px;
    --hd-height: 70px;
    --content-wrap: 160px;
    --content-side : 50px;
}
html, body {
    color: var(--color-bk);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--txt-size);
    font-weight: 400;
    letter-spacing: 0;
    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
}
html { overflow-x: hidden; }
* { 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: 600;
    line-height: 1.6;
    margin-bottom: 0;
}
h1, .sizeh1 { font-size: 42px; }
h2, .sizeh2 { font-size: 36px; }
h3, .sizeh3 { font-size: 26px; }
h4, .sizeh4 { font-size: 22px; }
h5, .sizeh5 { font-size: 20px; }
h6, .sizeh6 { font-size: 18px; }

hgroup {
    margin-bottom: 50px;
}
hgroup h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
    /*text-transform: uppercase;*/
    margin-bottom: 6px!important;
}
hgroup p {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0!important;
}
hgroup p::before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: #BFBFBF;
}
hgroup.text-center h2 { margin-bottom: 36px!important; }
hgroup.text-center p { justify-content: center; }

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

.f-menu li a[target="_blank"],
.pull-box .pull-item a[target="_blank"] {
    position: relative;
    padding-right: 22px;
}
.f-menu li a[target="_blank"]::after,
.pull-box .pull-item a[target="_blank"]::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    top: calc(50% - 5.5px);
    right: 0;
    background-color: transparent;
    background-image: url(../img/icon-exlink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

a.anchorpoint {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
    position: relative;
    z-index: -1;
}

/*--- imgタグ ---*/
img {
    max-width: 100%;
    height: auto;
}

.amine-fadeup {
    opacity: 0;
    transform: translateY(50px);
}
.amine-fadeup.screen-in {
    animation-name: fadeup01;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
@keyframes fadeup01 {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#titbar h1 span { animation-delay: 1.6s; }

.amine-fadeleft {
    opacity: 0;
    transform: translateX(-50px);
}
.amine-fadeleft.screen-in {
    animation-name: fadeleft01;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
@keyframes fadeleft01 {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 0.4;
        transform: translateX(0px);
    }
}

.amine-faderight {
    opacity: 0;
    transform: translateX(50px);
}
.amine-faderight.screen-in {
    animation-name: faderight01;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
@keyframes faderight01 {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 0.4;
        transform: translateX(0px);
    }
}

.amine-curtain {
    overflow: hidden;
    position: relative;
    transform: translateX(0);
}
.amine-curtain::before {
    content: '';
    inset: 0;
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #fff;
    transform: translateX(0);
}
.amine-curtain.screen-in::before {
    animation: curtain00 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes curtain00 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.amine-circle {
    opacity: 0;
    transform: rotate(-90deg);
}
.amine-circle.screen-in {
    animation-name: circle01;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
@keyframes circle01 {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.amine-circle-reverse {
    opacity: 0;
    transform: rotate(90deg);
}
.amine-circle-reverse.screen-in {
    animation-name: circle02;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
@keyframes circle02 {
    0% {
        opacity: 0;
        transform: rotate(90deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.sec-bg-circle,
.sec-bg-circle.amine-circle-reverse {
    position: absolute;
    z-index: 0;
    width: 50vw;
    height: 50vw;
}
.sec-bg-circle {
    top: 50%;
    left: 70vw;
}
.sec-bg-circle.amine-circle-reverse {
    top: 0;
    right: 70vw;
    left: auto;
}


hr {
    margin: 20px 0;
    border-top: 1px solid var(--color-wh);
    opacity: 1;
}

/* google recaptcha */
.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;
    margin: 0 4px!important;
    padding-right: 12px!important;
    border-bottom: 1px solid currentColor!important;
}
.recaptcha_policy a::after {
    width: 9px!important;
    height: 9px!important;
    top: calc(50% - 3.5px)!important;
    filter: brightness(0)!important;
}
.grecaptcha-badge { visibility: hidden; }

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

/*--- 共通 ---*/
p {
    margin: 0 auto 1.5rem;
	padding: 0;
    line-height: 2;
}
.txt-set { display: inline-block; }
.txt-cp { font-size: 14px; }
.txt-lh1 { line-height: 1; }
.txt-lh15 { line-height: 1.5; }
.txt-lh2 { line-height: 2; }
.txt-lh25 { line-height: 2.5; }
.txt-ls05 { letter-spacing: 0.05rem; }
.color-bk { color: var(--color-bk); }
.color-bk-l { color: var(--color-bk-l); }
.color-wh { color: var(--color-wh); }
.color-gray-l { color: var(--color-gray-l); }
.color-gray { color: var(--color-gray); }
.color-gray-d { color: var(--color-gray-d); }
.color-gr { color: var(--color-gr); }
.color-gr-d { color: var(--color-gr-d); }
.color-red { color: var(--color-red); }
.color-ye { color: var(--color-ye); }

.bg-bk { background-color: var(--color-bk); }
.bg-bk-l { background-color: var(--color-bk-l); }
.bg-wh { background-color: var(--color-wh); }
.bg-gray-l { background-color: var(--color-gray-l); }
.bg-gray { background-color: var(--color-gray); }
.bg-gray-d { background-color: var(--color-gray-d); }
.bg-gr { background-color: var(--color-gr); }
.bg-gr-d { background-color: var(--color-gr-d); }
.bg-red { background-color: var(--color-red); }
.bg-ye { background-color: var(--color-ye); }
.bg-none { background-color: transparent; }

/* --- flex-box --- */
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex-reverse { flex-direction: row-reverse }

/*--- 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: -15px;
    margin-left: -15px;
}
.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

/*--- .sns-list ---*/
.sns-box {
    display: flex;
    gap: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.sns-box a {
    display: block;
    width: 39px;
    padding: 0 !important;
}

/*--- ul ---*/
ul.list-2col {
    list-style: none;
    margin: 0;
    padding: 0!important;
    display: grid;
    grid-gap: 5px 0;
    grid-template-columns: repeat(2, 1fr);
}
ul.list-2col li::before { display: none!important; }
/* 注釈 */
ul.notes {
    display: table;
    width: 100%;
    margin: 0;
    padding-left: 0!important;
}
ul.notes li {
    list-style: none;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
ul.notes li::before { display: none!important; }
ul.notes li .notes_head {
    display: table-cell;
    vertical-align: top;
    white-space: nowrap;
    padding-right: 16px;
}
ul.notes li .notes_body {
    display: table-cell;
    vertical-align: top;
}

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

/*--- .row-movie ---*/
.row-movie {
    width: 100%;
    aspect-ratio: 16 / 9;
    /*aspect-ratio: 4 / 3;*/
}
.row-movie iframe {
    width: 100%;
    height: 100%;
}

.row-video video {
    width: 100%;
}

/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn-wrap { margin-top: 3rem; }
.btn00 a {
    color: var(--color-gr);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.03em;
    display: block;
    width: fit-content;
    height: auto;
    margin: 0 auto 20px;
    padding: 16px 100px 16px 32px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: var(--color-wh);
    border: 1px solid var(--color-gr);
    border-radius: 26px;
}
.btn00 a::after,
.btn-list-box a::after {
    content: '';
    position: absolute;
    top: calc(50% - 15px);
    right: 12px;
    display: block;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btn00 a:hover {
    color: var(--color-wh);
    background-color: var(--color-gr);
}
.btn00 a:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.btn-full a { width: 100%; }
.btn-wh a {
    color: var(--color-wh);
    background-color: transparent;
    border: 1px solid var(--color-wh);
}
.btn-wh a::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.btn-wh a:hover {
    color: var(--color-gr);
    background-color: var(--color-wh);
}
.btn-wh a:hover::after {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.btn00 a[target="_blank"]::after {
    background-image: url(../img/icon-arrow-exlink.svg);
}


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

/*--- LIST STYLE ---*/
#g-nav { flex: 1; }
.hd-logo,
#hd01 .sns-box,
.nav-list > li a,
.nav-list > li .pull-btn {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.g-nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: var(--hd-height);
    max-width: none;
    margin-bottom: 0!important;
    padding-right: 26px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    height: var(--hd-height);
    margin: 0;
    padding: 0;
}
.nav-list > li {
    height: 100%;
    margin: 0 12px;
}
.nav-list > li:last-of-type { margin-right: 0; }
.nav-list > li:not(:last-child) { margin-bottom: 0; }
.nav-list > li a,
.nav-list > li .pull-btn {
    color: var(--color-bk);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    display: flex;
    align-items: center;
    height: var(--hd-height);
    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: 6px;
    margin-top: 3px;
    margin-left: 5px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-nav.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/*--- プルダウン ---*/
.pull-box { position: relative; }
.nav-list > li .pull-btn > .btn00-arrow { display: none; }
.pull-box .pull-item {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    display: block;
    width: fit-content;
    opacity: 0;
    visibility: hidden;
    padding: 12px 30px;
    background-color: var(--color-gr);
    border-radius: 8px;
    transform: translateX(-50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.pull-box .pull-item a {
    position: relative;
    color: var(--color-wh);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.05em;
    display: block;
    height: auto;
    padding: 0;
    padding-left: 16px;
    text-wrap-mode: nowrap;
}
.pull-box .pull-item a::after {
    content: "";
    display: block;
    width: 10px;
    height: 6px;
    position: absolute;
    left: -2px;
    top: calc(50% - 2px);
    z-index: 10;
    background-color: transparent;
    background-image: url(../img/icon-arrow-nav.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.pull-box .pull-btn:hover + .pull-item,
.pull-box .pull-item:hover {
    opacity: 1;
    visibility: visible;
}

.nav-btn-box a {
    color: var(--color-wh);
    font-size: 14px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0.05em;
    text-align: center;
    display: block;
    width: 150px;
    border: 1px solid var(--color-wh);
    border-radius: 36px;
}

/*--- scrolled ---*/
.scrolled #hd01 {
    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));
}
.scrolled .hd-logo,
.scrolled #hd01 .sns-box,
.scrolled .nav-list > li a,
.scrolled .nav-list > li .pull-btn {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}
.scrolled .nav-btn-box a {
    background-color: var(--color-gr);
    border-color: var(--color-gr);
}
.scrolled .openline span::before,
.scrolled .openline span::after {
    background-color: var(--color-gr);
}

/*--- 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: var(--hd-height);
}
.openline {
    display: block;
    width: 34px;
    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;
}
.openline span {
    display: inline-block;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
	background-color: transparent;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.openline span::before,
.openline span::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    z-index: 1;
    background-color: var(--color-wh);
    border-radius: 3px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.openline span::before {
    top: 12px;
    animation: menu-bar01 .4s cubic-bezier(.075,.82,.165,1) 0s forwards;
}
@keyframes menu-bar01 {
    0% { -webkit-transform: translate(0, 4px); transform: translate(0, 4px) rotate(26deg); }
    50% { -webkit-transform: translate(0, 4px); transform: translate(0, 4px) rotate(0); }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
}
.openline span::after {
    top: 20px;
    animation: menu-bar03 .4s cubic-bezier(.075,.82,.165,1) 0s forwards;
}
@keyframes menu-bar03 {
    0% { -webkit-transform: translate(0, -4px); transform: translate(0, -4px) rotate(-26deg); }
    50% { -webkit-transform: translate(0, -4px); transform: translate(0, -4px) rotate(0); }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
}

/* OPEN Anime */
.panelactive .openline span::before,
.panelactive .openline span::after { background-color: var(--color-wh); }
.panelactive .openline span::before { animation: menu-bar01-open .4s cubic-bezier(.785,.135,.15,.86) 0s forwards; }
@keyframes menu-bar01-open {
    0% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
    50% { -webkit-transform: translate(0, 4px); transform: translate(0, 4px) rotate(0); }
    100% { -webkit-transform: translate(0, 4px); transform: translate(0, 4px) rotate(26deg); }
}
.panelactive .openline span::after { animation: menu-bar03-open .4s cubic-bezier(.785,.135,.15,.86) 0s forwards; }
@keyframes menu-bar03-open {
    0% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
    50% { -webkit-transform: translate(0, -4px); transform: translate(0, -4px) rotate(0); }
    100% { -webkit-transform: translate(0, -4px); transform: translate(0, -4px) rotate(-26deg); }
}

@media screen and (min-width: 1220px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 1219px) {
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 100%;
        height: auto;
        max-width: 360px;
        padding: 70px 30px 80px;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(102%);
        background-color: var(--color-gr);
        -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; }
    .nav-list > li a,
    .nav-list > li .pull-btn {
        color: var(--color-wh);
        font-size: 16px;
    }
    .nav-list > li .pull-btn {
        width: calc(100% - 30px);
        justify-content: space-between;
    }
    .pull-box .pull-item {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        border-top: none;
        margin-bottom: 0;
        padding: 0;
        border-radius: 0;
        transform: translateX(0);
        background-color: var(--color-wh);
        -webkit-transition: all 0s;
        transition: all 0s;
        opacity: 1;
        visibility: visible;
    }
    .pull-box .pull-item a {
        color: var(--color-bk);
        font-size: 14px;
        line-height: 52px;
        padding: 0 18px;
        background-color: transparent;
        border-bottom: 2px solid var(--color-gr);
        -webkit-filter: none;
        filter: none;
    }
    .pull-box .pull-item a::after {
        width: 12px;
        height: 8px;
        left: auto;
        right: 16px;
        top: calc(50% - 4px);
        -webkit-filter: none;
        filter: none;
    }
    .nav-list > li a { position: relative; }
    .nav-list > li a::after {
        content: "";
        display: block;
        width: 12px;
        height: 8px;
        position: absolute;
        right: 16px;
        top: calc(50% - 4px);
        z-index: 10;
        background-color: transparent;
        background-image: url(../img/icon-arrow-nav.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(-90deg);
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
    }

    .nav-list > li a,
    .nav-list > li .pull-btn { height: auto; line-height: 36px; }
    .nav-list > li:not(:last-child) { margin-bottom: 16px; }
    .nav-list > li .pull-btn::after { display: none; }
    #hd01 .sns-box {
        justify-content: center;
        margin-bottom: 30px;
        -webkit-filter: brightness(0) invert(1)!important;
        filter: brightness(0) invert(1)!important;
    }
    .nav-btn-box { width: 100%; }
    .nav-btn-box a { width: 100%; border: 2px solid var(--color-wh) !important; }
}
@media screen and (max-width: 767px) {
    :root {
        --hd-height: 58px;
    }
    .hd-logo { width: 320px; margin-left: 20px; }
    .nav-list { overflow-y: auto; }
}
@media screen and (max-width: 575px) {
    :root {
        --hd-height: 56px;
    }
    .hd-logo {
        width: 246px;
        margin-left: 12px;
    }
    .g-nav-list { max-width: none; }
    #g-nav .g-nav-list { max-width: none; padding-inline: 6vw; }
    .openbtn { width: 60px; }
    .openline { width: 24px; height: 30px; }
}

/* --------------------------------------------
    Content
-------------------------------------------- */
section {
    position: relative;
    overflow: hidden;
}
.sec-inner,
.sec-inner-start,
.sec-inner-end {
    max-width: var(--inner-size);
    margin-inline: auto;
    box-sizing: content-box;
    container-type: inline-size;
}
.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: var(--content-wrap);
    padding-bottom: var(--content-wrap);
}

/*---------- sec00 ----------*/
.sec00 {
    height: 100svh;
}
.sec00-txt {
    /*opacity: 0;*/
    position: absolute;
    left: 96px;
    bottom: 100px;
    z-index: 10;
    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));
}
/*
.load-finish .sec00-txt {
    animation: fadeIn 1.5s ease 0s 1 forwards;
    -webkit-animation: fadeIn 1.5s ease 0s 1 forwards;
}
*/
.sec00-txt .main {
    font-size: 84px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.sec00-txt .sub {
    letter-spacing: 0.05em;
    padding-left: 0.4em;
}

.sec00-btn {
    display: block;
    width: 168px;
    height: 168px;
    position: absolute;
    right: 94px;
    bottom: 42px;
    z-index: 10;
    border: 1px solid var(--color-wh);
    border-radius: 100vmax;
    overflow: hidden;
}
.sec00-btn a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.sec00-btn a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--color-bk);
    mix-blend-mode: multiply;
    border-radius: 100vmax;
    opacity: 0.25;
}
.sec00-btn a:hover { transform: rotate(12deg); }
.sec00-btn a:hover::before { opacity: 0.6; }

/*--- 背景動画 ---*/
#video-area{
    position: fixed;
    z-index: -1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}
#video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/*---------- sec01 ----------*/
.sec01-box { gap: 60px; }
.sec01-box .item-start { width: fit-content; padding-top: 1rem; }
.sec01-box .item-end { flex: 1; }

.sec01-img-box .img01 {
    width: 28.3vw;
    margin-left: 17.2vw;
}
.sec01-img-box .img02 {
    width: 21.4vw;
    margin-top: -9.8vw;
}
.sec01-img-box .img03 {
    width: 23.8vw;
    margin-left: auto;
}

/*---------- sec02 ----------*/
.sec02-hd { gap: 60px; }
.sec02-box .img-item { text-align: center; margin-bottom: 30px; }

/*---------- sec03 ----------*/
.sec03-box { align-items: stretch; gap: 26px; }
.sec03-box .item-start { width: 427px; }
.sec03-box .btn-list-box { width: 372px }
.sec03-box .item-end {
    flex: 1;
    display: flex;
    align-items: end;
}
.sec03-box .sec03-img { height: 87%; }
.sec03-box .sec03-img .img-anime { height: 100%; }
.sec03-box .sec03-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--- btn-list-box ---*/
.btn-list-box a {
    position: relative;
    color: var(--color-bk);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: block;
    padding: 16px 3px;
    border-bottom: 1px solid var(--color-gray);
}
.btn-list-box a:first-child { border-top: 1px solid var(--color-gray); }
.btn-list-box a .sub {
    display: block;
    color: var(--color-gray-d);
    font-size: 14px;
    font-weight: 500;
}
.other-content .btn-list-box { gap: 0 3rem; }
.other-content .btn-list-box a { padding: 22px 5px; }
.other-content .btn-list-box a:nth-child(2) { border-top: 1px solid var(--color-gray); }

/*---------- sec04 ----------*/
.sec04-box { align-items: stretch; gap: 50px; }
.sec04-box .item-start {
    width: 476px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.sec04-box .item-end {
    flex: 1;
    display: flex;
    align-items: end;
}
.sec04-box .sec04-img { height: 100%; }
.sec04-box .sec04-img .img-anime { height: 100%; }
.sec04-box .sec04-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------- sec05 ----------*/
.sec05 { overflow-x: hidden; }
.sec05-wrap { position: relative; z-index: 100; }
.sec05-img-box .img-item {
    position: absolute;
    z-index: 10;
    display: block;
    width: 300px;
}
.sec05-img-box .img01 { top: -26px; left: 262px; }
.sec05-img-box .img02 { top: 0; left: 16px; }
.sec05-img-box .img03 { top: 170px; left: -100px; }
.sec05-img-box .img04 { top: 20px; right: 222px; }
.sec05-img-box .img05 { top: 52px; right: -77px; }

/*---------- sec06 ----------*/
.sec06 { backdrop-filter: blur(8px); }
.sec06::before {
    content: '';
    display: block;
    width: 100%;
    height: 40px;
    background-color: var(--color-bk-l);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.sec06-wrap {
    position: relative;
    z-index: 10;
    padding-top: 117px;
    padding-bottom: 1px;
}
.sec06-btn {
    display: block;
    margin: 0 auto;
    padding: 50px 60px;
    background: linear-gradient(100deg,rgba(13, 104, 55, 1) 10%, rgba(68, 98, 82, 1) 90%);
    border: 1px solid var(--color-wh);
    border-radius: 5px;
}
.sec06-btn:hover,
.sec06-btn:focus { color: var(--color-wh); }

.sec06-btn hgroup,
.sec06-btn p { margin-bottom: 0!important; }

.sec06-box {
    position: relative;
    gap: 70px;
    justify-content: flex-start;
}
.sec06-box::after {
    content: '';
    position: absolute;
    top: calc(50% - 27px);
    right: 0;
    z-index: 10;
    display: block;
    width: 54px;
    height: 54px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-recruit.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


/* --------------------------------------------
    お知らせ - topics-box
-------------------------------------------- */
.info-box {
    margin-bottom: 30px;
}
.info-box a {
    color: var(--color-bk);
    padding-right: 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 0;
    padding: 18px 0;
}
.info-box a:not(:last-of-type) .info-item { border-bottom: 0.5px solid #707070; }
.info-item dt {
    position: relative;
    font-weight: 500;
    display: flex;
    gap: 27px;
}
.info-item dt::after {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    right: -30px;
    display: block;
    width: 1px;
    height: 16px;
    background-color: var(--color-bk);
}
.info-item dd {
    flex: 1;
    position: relative;
    font-weight: 500;
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.info-box a[target="_blank"]::after { display: none; }
.info-item dd::after {
    content: '';
    position: absolute;
    top: calc(50% - 11px);
    right: 0;
    display: block;
    width: 22px;
    height: 22px;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0);
}
a[target="_blank"] > .info-item dd::after { background-image: url(../img/icon-arrow-exlink.svg); }
@media screen and (max-width: 991px) {
    .info-box { padding: 0; }
    .info-item dt { margin-bottom: 8px; }
}
@media screen and (max-width: 767px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .info-item dt::after {
        top: calc(100% + 12px);
        right: auto;
        left: 0;
        width: 18px;
        height: 1px;
    }
    .info-item dd {
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}
@media screen and (max-width: 575px) {
    .info-item dd { font-size: 15px; }
}

/* --------------------------------------------
    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 var(--color-gray);
    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; }



/* --------------------------------------------
    other page
-------------------------------------------- */
#titbar {
    position: relative;
    padding-top: calc(var(--hd-height) + 70px);
    padding-bottom: 80px;
    background-color: #F2F3F3;
    overflow: hidden;
}
#titbar::before {
    content: '';
    display: block;
    width: 499px;
    height: 316px;
    position: absolute;
    top: calc(50% - 120px);
    right: 0;
    background-color: transparent;
    background-image: url(../img/titbar-icon02v2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#titbar .sec-inner {
    position: relative;
    z-index: 10;
}
#titbar h1 {
    position: relative;
    z-index: 10;
    line-height: 1.4;
    display: block;
}
#titbar h1::before {
    content: '';
    display: block;
    width: 500px;
    height: 46px;
    position: absolute;
    top: calc(50% - 23px);
    right: calc(100% + 30px);
    background-color: var(--color-gr);
    border-radius: 25px;
}
#titbar p {
    line-height: 1.4;
    margin-bottom: 12px;
}

.other-content .content-wrap {
    padding-top: calc(var(--content-wrap) / 2);
}
.other-content .content-wrap h2,
.other-content .content-wrap .sizeh2 { margin-bottom: 36px; }
.other-content .content-wrap h3,
.other-content .content-wrap .sizeh3 { margin-bottom: 30px; }
.other-content .content-wrap h4,
.other-content .content-wrap .sizeh4 { margin-bottom: 24px; }
.other-content .content-wrap h5,
.other-content .content-wrap .sizeh5 { margin-bottom: 16px; }
.other-content .content-wrap h6,
.other-content .content-wrap .sizeh6 { margin-bottom: 12px; }

.other-content .content-wrap h2 {
    line-height: 1.4;
    position: relative;
    padding: 0 0 8px;
    border-bottom: 4px solid #C4C4C4;
}
.other-content .content-wrap h2::before {
    content: '';
    display: block;
    width: 3.2em;
    height: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 10;
    background-color: var(--color-gr);
}

.other-content .content-wrap h3 {
    position: relative;
    line-height: 1.3;
    padding-left: 16px;
    font-feature-settings: "palt";
}
.other-content .content-wrap h3::before {
    content: '';
    display: block;
    width: 5px;
    height: 25px;
    position: absolute;
    top: 0.24em;
    left: 0;
    background-color: transparent;
    background-image: url(../img/tit-icon-l.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.other-content .content-wrap h4 {
    position: relative;
    display: block;
    width: fit-content;
    padding-bottom: 4px;
    line-height: 1.3;
    border-bottom: 2px solid #C4C4C4;
}

.other-content .content-wrap h5 {
    line-height: 1.3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}
.other-content .content-wrap h5::before {
    content: '';
    display: block;
    width: 0.6em;
    height: 0.6em;
    margin-top: 0.08em;
    background-color: var(--color-gr);
}


/*--- hr ---*/
.other-content .content-wrap hr {
    border-top: 1px solid var(--color-gray-l);
}

/*--- ul / ol ---*/
.other-content .content-wrap ul {
    list-style: none;
    margin-bottom: 2em;
    padding: 0;
    padding-left: 1em;
}
.other-content .content-wrap ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 3px;
}
.other-content .content-wrap ul > li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--color-gr-d);
    border-radius: 100vmax;
    position: absolute;
    left: -1em;
    top: 0.6em;
}

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

/* --------------------------------------------
    記事ページ
-------------------------------------------- */
.single-content .content-wrap .aligncenter {
    display: block;
    margin-inline: auto;
}

.single-content .content-wrap h2,
.single-content .content-wrap h3,
.single-content .content-wrap h4,
.single-content .content-wrap h5,
.single-content .content-wrap h6 { clear: both; }


/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    font-size: 16px;
    color: var(--color-wh);
    letter-spacing: 0.03em;
}
#ft01 a { color: var(--color-wh); }
.ft-wrap {
    padding-top: 92px;
    padding-bottom: 60px;
}
.ft-hd { margin-bottom: 36px; }
.ft-hd .ft-logo {
    width: 380px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.ft-main {
    align-items: stretch;
    gap: 16px;
    margin-bottom: 46px;
}
.ft-main .item-txt p {
    color: var(--color-gray-dd);
    font-size: 14px;
}
.ft-main .item-line {
    width: 1px;
    background-color: #585858;
}

.f-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.f-menu:not(:last-of-type) {
    margin-bottom: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #D0D0D0;
}
.f-menu li.tit {
    color: var(--color-gray-dd);
    font-size: 14px;
    font-weight: 600;
    font-weight: 600;
    margin-bottom: 12px;
}
.f-menu li:not(.tit) {
    font-size: 16px;
    margin-bottom: 6px;
}
.f-menu li:last-of-type { margin-bottom: 0; }

.sns-box-wrap {
    width: fit-content;
    margin-top: 24px;
    padding: 6px 5px 2px;
    border-radius: 3px;
}
.sns-box-wrap .tit {
    color: var(--color-gray-dd);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    padding-left: 0.8em;
}

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


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 1219px) {
    .sec00-txt .main { font-size: 80px; }
    .sec00-txt { left: 70px; bottom: 90px; }
    .sec01-box { gap: 30px; }
/*
    .sec01-box .item-start { padding-right: var(--content-side); }
    .sec03-box .item-start { padding-left: var(--content-side); }
    .sec04-box .item-start { padding-right: var(--content-side); }
*/
}
@media screen and (max-width: 991px) {
    :root {
        --content-wrap: 100px;
        --content-side: 30px;
    }
    hgroup { margin-bottom: 42px; }
    hgroup h2 { font-size: 50px; }
    .sec00-txt { left: 50px; bottom: 80px; }
    .sec00-txt .main { font-size: 66px; }
    .sec00-btn {  width: 160px; height: 160px; right: 50px; bottom: 50px; }
    .sec02-hd { gap: 50px; }
    .btn-list-box a { font-size: 18px; padding: 12px 3px; }
    .btn-list-box a .sub { font-size: 12px; }
    .sec03-box { gap: 0px; }
    .sec03-box .btn-list-box { width: 340px; }
    .sec03-box .sec03-img { height: 80%; }
    .sec04-box .item-start { width: 400px; }
    .sec05-img-box .img-item { width: 250px; }
    .sec05-img-box .img01 { left: 220px; }
    .sec05-img-box .img02 { left: 0; }
    .sec05-img-box .img04 { right: 120px; }
    .sec06-btn { padding: 46px 40px; }
    .sec06-box { gap: 40px; }
    .sec06-btn p { padding-right: 30px; }
    .sec06-box::after { right: -10px; }
    .ft-main { flex-wrap: wrap; }
    #titbar .sec-inner { padding-left: calc(var(--content-side) * 2); }
    #titbar h1::before { right: calc(100% + 18px); }
}
@media screen and (max-width: 767px) {
    :root {
        --txt-size: 16px;
        --content-wrap: 90px;
        --content-side: 26px;
    }
    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: 13px; }
    .flex-box { flex-direction: column; }
    .grid2 { grid-template-columns: repeat(1, 1fr); }
    .grid3 { 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; }
    .sec-bg-circle, .sec-bg-circle.amine-circle-reverse {
        width: 70vw;
        height: 70vw;
    }
    .sec-bg-circle { left: 60vw; }
    .sec-bg-circle.amine-circle-reverse { right: 60vw; }
    section { overflow-x: hidden; }
    .sec00-txt { bottom: 200px; }
    .sec00-txt .main { font-size: 60px; }
    .sec00-btn { right: 30px; bottom: 50px; }
    .sec01-box .item-start { padding-left: var(--content-side); }
    .sec01-box .item-end { width: calc(100vw - var(--content-side)); }
    .sec01-img-box .img01 {
        width: 46vw;
        margin-left: 30vw;
    }
    .sec01-img-box .img02 {
        width: 38vw;
        margin-top: -14vw;
    }
    .sec01-img-box .img03 {
        width: 43vw;
    }
    .sec02-hd { gap: 0; }
    .sec03-box { gap: 60px; }
    .sec03-box .item-start { padding-right: var(--content-side); width: 100%; }
    .sec03-box .btn-list-box { width: 100%; }
    .sec04-box { gap: 60px; }
    .sec04-box .item-start { padding-left: var(--content-side); width: 100%; }
    .sec06-box { gap: 36px; }
    .ft-wrap { padding-top: 70px; padding-bottom: 36px; }
    .ft-hd .ft-logo { width: 320px; }
    .ft-main .item-menu:not(:last-of-type) { display: none; }
    .ft-main .item-line { display: none; }
    .f-menu li:not(.tit) { font-size: 14px; }
    #titbar {
        padding-top: calc(var(--hd-height) + 50px);
        padding-bottom: 50px;
    }
    #titbar::before { width: 370px; height: 290px; }
    .other-content .btn-list-box a:nth-child(2) { border-top: none; }
}
@media screen and (max-width: 575px) {
    :root {
        --txt-size: 15px;
        --content-wrap: 60px;
        --content-side: 6vw;
    }
    h1, .sizeh1 { font-size: 30px; }
    h2, .sizeh2 { font-size: 21px; }
    h3, .sizeh3 { font-size: 19px; }
    h4, .sizeh4 { font-size: 17px; }
    h5, .sizeh5 { font-size: 15px; }
    h6, .sizeh6 { font-size: 14px; }
    hgroup h2 { font-size: 36px; }
    hgroup p { font-size: 14px; }
    .row-map iframe { height: 260px; }
    .btn00 a { font-size: 14px; letter-spacing: 0.02em; padding: 16px 50px 16px 18px; }
    .btn00 a::after, .btn-list-box a::after {
        top: calc(50% - 14px);
        right: 11px;
        width: 28px;
        height: 28px;
    }

    .sec00-txt { left: 6vw; bottom: 160px; }
    .sec00-txt .main { font-size: 11.2vw; margin-bottom: 6px; }
    .sec00-txt .sub { padding-left: 0.3em; font-size: 4vw; }
    .sec00-btn {
        width: 110px;
        height: 110px;
        right: 5vw;
        bottom: 26px;
    }
    .btn-list-box a { font-size: 16px; }
    .btn-list-box a .sub { font-size: 11px; }
    .sec03-box .sec03-img img,
    .sec04-box .sec04-img img { aspect-ratio: 30 / 22; }
    .sec05-img-box .img-item { width: 62vw; }
    .sec05-img-box .img01 { left: 15%; }
    .sec05-img-box .img02 { top: 8%; left: -26%; }
    .sec05-img-box .img03 { top: auto; bottom: 0; left: -20%; }
    .sec05-img-box .img04 { top: 20%; right: -12%; }
    .sec05-img-box .img05 { top: auto; bottom: 3%; right: 3%; }
    .sec06-wrap { padding-top: 80px; }
    .sec06-btn { padding: 36px 28px; }
    .sec06-btn p { padding-right: 0; }
    .sec06-box::after {
        width: 40px;
        height: 40px;
        top: 3px;
    }
    .ft-hd { margin-bottom: 26px; }
    .ft-hd .ft-logo { width: 246px; }
    .ft-main .item-txt p { font-size: 13px; }

    #titbar {
        padding-top: calc(var(--hd-height) + 36px);
        padding-bottom: 36px;
    }
    #titbar::before {
        width: 260px;
        right: -5%;
    }
    #titbar h1 {
        font-size: 24px;
        letter-spacing: 0.04em;
        font-feature-settings: "palt";
    }
    #titbar h1::before {
        width: 300px;
        height: 32px;
        top: calc(50% - 16px);
        right: calc(100% + 12px);
    }

    .other-content .content-wrap h2,
    .other-content .content-wrap .sizeh2 { margin-bottom: 26px; }
    .other-content .content-wrap h3,
    .other-content .content-wrap .sizeh3 { margin-bottom: 22px; }
    .other-content .content-wrap h4,
    .other-content .content-wrap .sizeh4 { margin-bottom: 18px; }
    .other-content .content-wrap h5,
    .other-content .content-wrap .sizeh5 { margin-bottom: 14px; }
    .other-content .content-wrap h6,
    .other-content .content-wrap .sizeh6 { margin-bottom: 10px; }
    .other-content .content-wrap h3::before {
        width: 4px;
        height: 20px;
        top: 0.16em;
    }
}

/* --------------------------------------------
    point-list-box
-------------------------------------------- */
.point-list-box .point-item {
    background-color: var(--color-gray-l);
    border-radius: 10px;
    padding: 30px 40px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 92px;
}
.point-item .txt p:last-of-type { margin-bottom: 0!important; }
.point-item .num {
    width: 50px;
    height: 50px;
    color: var(--color-wh);
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gr);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.point-list-box.grid-box { grid-gap: 20px; }
.point-list-box.grid-box .point-item { margin-bottom: 0; padding: 30px 36px; }

.point-list-box.grid-box .point-item .tit {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 12px;
}
.point-list-box.grid-box .point-item .tit span { margin-bottom: 0!important; }

.arrow-b {
    display: block;
    vertical-align: middle;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 22px 24px;
    border-top-color: var(--color-bk);
    border-bottom: 0;
    margin: 20px auto 16px;
}
@media screen and (max-width: 767px) {
    .point-item .num {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: 0;
        transform: translateY(0);
        border-radius: 10px 0 10px 0;
    }
    .point-list-box .point-item {
        padding: 22px 26px;
        padding-left: 60px;
    }
}


/* --------------------------------------------
    sdgs-box
-------------------------------------------- */
.sdgs-box {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.6rem;
}
.sdgs-box .img-item { width: 72px; }

/* --------------------------------------------
    standards-box
-------------------------------------------- */
.standards-box {
    gap: 12px;
}
.standards-box .item a {
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0;
    padding: 16px;
    background-color: var(--color-gr-d);
    border-radius: 6px;
}
.standards-box .item a::after {
    content: '';
    position: absolute;
    top: calc(50% - 13px);
    right: 10px;
    display: block;
    width: 26px;
    height: 26px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-download.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.standards-box .item a:hover { opacity: 0.8; }

/* --------------------------------------------
    FAQ
-------------------------------------------- */
.faq-box {
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.faq-box .faq-q,
.faq-box .faq-a {
    position: relative;
    padding-left: 72px;
    height: auto;
    min-height: 40px;
}
.faq-box .faq-q {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: var(--color-gr-d);
    font-size: 1.3rem;
    font-weight: bold;
}
.faq-box .faq-a { margin-top: 10px; }
.faq-box .faq-q::before,
.faq-box .faq-a::before {
    content: '';
    display: block;
    width: 50px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 40px;
}
.faq-box .faq-q::before { background-image: url(../img/faq-iconq.svg); }
.faq-box .faq-a::before { background-image: url(../img/faq-icona.svg); left: 10px; }
.faq-box .a-txt p { margin-bottom: 1em; }
.faq-box .a-txt p:last-of-type { margin-bottom: 15px; }
@media screen and (max-width: 575px) {
    .faq-box .faq-q { font-size: 1.2rem; }
}


/* --------------------------------------------
    SIDE btn
-------------------------------------------- */
.sidebtn {
    position: fixed;
    top: calc(20% + 30px);
    right: 0;
    text-wrap: nowrap;
    writing-mode: vertical-rl;
    z-index: 99;
    display: flex;
    gap: 10px;
    width: auto;
    transition: all 0.3s;
}
.sidebtn .sidebtn-item { position: relative; }
.sidebtn .sidebtn-item::before {
    content: '';
    display: block;
    width: 100%;
    left: 100%;
    z-index: -1;
    position: absolute;
    inset: 0;
    background-color: var(--color-gr-d);
    border-radius: 3px 0 0 3px;
    mix-blend-mode: multiply;
    opacity: 0.7;
}
.sidebtn .sidebtn-item.item02::before { background-color: var(--color-bk); }
.sidebtn a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 42px;
    height: auto;
    color: var(--color-wh);
    margin: 0 auto;
    padding: 16px 8px 14px;
    border-radius: 3px 0 0 3px;
    border: 1px solid var(--color-wh);
    border-right: none;
}
.sidebtn a:hover { opacity: 0.7; }
@media(max-width: 767px){
    .sidebtn {
        writing-mode: horizontal-tb;
        width: 100%;
        justify-content: center;
        gap: 8px;
        top: auto;
        bottom: 0;
    }
    .sidebtn a {
        font-size: 14px;
        width: fit-content;
        align-items: flex-end;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 3px 3px 0 0;
        border: 1px solid var(--color-wh);
        border-bottom: none;
    }
    .sidebtn .sidebtn-item::before { border-radius: 3px 3px 0 0; }
    .sidebtn a .icon { width: 18px; }
}

/* --------------------------------------------
    Table
-------------------------------------------- */
table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    border-top: 1px solid #D0D0D0;
    margin-bottom: 36px;
}
table tr { border-bottom: 1px solid #D0D0D0; }
table tr:nth-child(2n) { background-color: #F7F7F7; }
table tr th, table tr td {
    font-size: 17px;
    line-height: 1.5;
    padding: 16px 18px;
}
table tr th { background-color: #EDF8F2; }
table tr td { line-height: 1.6; padding: 16px 24px; }
table tr td ul,
table tr td ol { margin-bottom: 0!important; }
table tr td ul li,
table tr td ol li { margin-bottom: 8px!important; }
table tr td ul li:last-child,
table tr td ol li:last-child { margin-bottom: 0!important; }
@media screen and (max-width: 767px) {
    table tr th,
    table tr td {
        font-size: 14px;
        display: block;
        width: 100%!important;
        padding: 12px 16px;
    }
    table tr td .d-block { display: inline-block!important; }
}

/* --------------------------------------------
    Breadcrumbs - パンクズリスト
-------------------------------------------- */
.breadcrumb > span {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    z-index: 10;
}
.breadcrumb > span > span {
    position: relative;
    padding: 3px 3px 4px;
}
.breadcrumb > span > span:not(:last-of-type)::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #ACACAC;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(100% + 4px);
    z-index: 1;
}
.breadcrumb > span > span,
.breadcrumb > span > span a {
    color: #ACACAC;
    font-size: 13px;
    line-height: 1.2;
    display: block;
}
.breadcrumb > span > span a,
.breadcrumb > span > span a:hover { color: var(--color-bk); text-decoration: underline!important; }
.breadcrumb > span > span:nth-child(2) a {
    pointer-events: none;
    color: #ACACAC;
    text-decoration: none!important;
}
@media screen and (max-width: 575px) {
    .breadcrumb > span { gap: 6px; }
    .breadcrumb > span > span,
    .breadcrumb > span > span a { font-size: 10px; }
    .breadcrumb > span > span:not(:last-of-type)::after {
        width: 4px;
        height: 8px;
        top: calc(50% - 4px);
        left: calc(100% + 2px);
    }
}

/* --------------------------------------------
    TEL box
-------------------------------------------- */
.tel-box {
    position: relative;
    display: block;
    color: var(--color-wh);;
    background-color: var(--color-gr);
    border-radius: 1rem;
}
.tel-box .box-wrap {
    display: flex;
    margin: 0 2rem;
    padding: 2rem 0;
}
.tel-box .tit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
    padding: 1rem 3rem 1rem 2rem;
}
.tel-box .tit-item .tit {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.tel-box .tit-item .tit .subtit {
    display: block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-top: 8px;
}
.tel-box .tit-item .cp {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}
.tel-box .txt-item {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
    padding-left: 3rem;
}
.tel-box .txt-item a { color: var(--color-wh); }
.tel-box .txt-item::before {
    content: "";
    display: block;
    width: 1.5px;
    height: 100%;
    background-color: var(--color-wh);
    position: absolute;
    left: 0;
    top: 0;
}
.tel-box .txt-item .cp {
    letter-spacing: 0.05em;
    margin-right: 5px;
}
.tel-box .txt-item .tel-num {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .tel-box .box-wrap { display: block; margin: 0 2.5em; padding: 0; }
    .tel-box .tit-item { width: 100%; text-align: center; padding: 2rem 0 1.5rem 0; }
    .tel-box .txt-item { align-items: center; padding: 1.5rem 0 2rem 0; }
    .tel-box .txt-item .cp { font-size: 16px; }
    .tel-box .txt-item .tel-num { font-size: 24px; }
    .tel-box .txt-item::before { width: 100%; height: 1px; }
}
@media screen and (max-width: 575px) {
    .tel-box .box-wrap { margin: 0 1em; }
    .tel-box .tit-item .tit { font-size: clamp(18px, 1vw + 0.75rem, 22px); }
    .tel-box .tit-item .tit .subtit { font-size: 11px; }
    .tel-box .tit-item .cp { font-size: 12px; }
    .tel-box .txt-item .tel { text-align: center; width: clamp(15rem, 60vw - 0.75rem, 100%); }
}

/* --------------------------------------------
    other page - カラーチェンジ！
-------------------------------------------- */
.about-us-content #titbar::before { background-image: url(../img/titbar-about-us.svg); }
.about-us-content .color-gr { color: #40B4DD!important; }
.about-us-content #titbar h1::before,
.about-us-content .content-wrap h2::before,
.about-us-content .content-wrap h5::before,
.about-us-content .point-item .num { background-color: #40B4DD!important; }
.about-us-content .content-wrap h3::before {
    background-image: url(../img/tit-icon-l-ch.svg);
    filter: invert(80%) sepia(35%) saturate(4374%) hue-rotate(163deg) brightness(91%) contrast(90%);
}
.about-us-content table tr th { background-color: #e3eff4; }

.for-farmers-content #titbar::before { background-image: url(../img/titbar-for-farmers.svg); }
.for-farmers-content .color-gr { color: #F27E9D!important; }
.for-farmers-content #titbar h1::before,
.for-farmers-content .content-wrap h2::before,
.for-farmers-content .content-wrap h5::before,
.for-farmers-content .point-item .num { background-color: #F27E9D!important; }
.for-farmers-content .content-wrap h3::before {
    background-image: url(../img/tit-icon-l-ch.svg);
    filter: invert(67%) sepia(98%) saturate(1693%) hue-rotate(300deg) brightness(103%) contrast(90%);
}
.for-farmers-content table tr th { background-color: #fff1f5; }

.our-partners-content #titbar::before { background-image: url(../img/titbar-our-partners.svg); }
.our-partners-content .color-gr { color: #FD9751!important; }
.our-partners-content #titbar h1::before,
.our-partners-content .content-wrap h2::before,
.our-partners-content .content-wrap h5::before,
.our-partners-content .point-item .num { background-color: #FD9751!important; }
.our-partners-content .content-wrap h3::before {
    background-image: url(../img/tit-icon-l-ch.svg);
    filter: invert(61%) sepia(64%) saturate(507%) hue-rotate(334deg) brightness(101%) contrast(98%);
}
.our-partners-content table tr th { background-color: #f9eae0; }



