@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-l: #37B047;
    --color-gr: #287346;
    --color-gr-d: #185335;
    --color-ygr: #76D14E;
    --txt-size: 16px;
    --txt-lh: 1.5;
    --inner-size: 1120px;
    --hd-height: 70px;
    --content-wrap: 160px;
    --content-side : 36px;
}
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: 38px; }
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 {
    text-align: center;
    margin-bottom: 50px;
}
hgroup h2 {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
}
hgroup h3 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
hgroup p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0!important;
}
hgroup.tit-bg-fixed h2 {
    color: transparent;
    background-image: url(../img/tit-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-clip: text;
    -webkit-background-clip: text;
}
hgroup.text-center h2 { margin-bottom: 36px!important; }
hgroup.text-center p { justify-content: center; }

hgroup.tit-circle {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
}
hgroup.tit-circle::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url(../img/icon-circle-grad.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: rotateAnimation 10s linear infinite;
    aspect-ratio: 1 / 1;
}
hgroup.tit-circle p { font-size: 14px; letter-spacing: 0.05em; }
hgroup.tit-circle h3 { line-height: 1.2; }
/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*--- 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"] {
    position: relative;
    padding-right: 22px;
}
.f-menu li a[target="_blank"]::after {
    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;
}

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

/*--- imgタグ ---*/
img {
    max-width: 100%;
    height: auto;
}
.img-radius5 { border-radius: 5px; }

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

.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-en { font-family: "Roboto", sans-serif; }
.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-grad { background: linear-gradient(140deg, #38AA47 26%, #C0CE19 100%); }
.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;
    justify-content: center;
    gap: 12px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.sns-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    padding: 0 !important;
    aspect-ratio: 1 / 1;
    background-color: var(--color-wh);
    border-radius: 100vmax;
}

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

/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn-wrap { margin-top: 3rem; }
.btn00 a {
    color: var(--color-wh);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: center;
    display: block;
    width: fit-content;
    height: auto;
    margin: 0 auto 20px;
    padding: 16px 80px 16px 70px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: var(--color-gr-d);
    border-radius: 26px;
}
.btn00 a::after,
.btn-list-box a::after {
    content: '';
    position: absolute;
    top: calc(50% - 14px);
    right: 12px;
    display: block;
    width: 28px;
    height: 28px;
    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;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.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: 100px;
    transition: all 0.4s ease;
    background-color: transparent;
    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 {
    line-height: 1!important;
    margin-bottom: 0!important;
    margin-top: 24px;
    margin-left: 36px;
}
.hd-logo a {
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}
.hd-logo .icon { width: 120px; }
.hd-logo .txt {
    width: 0;
    line-height: 0;
    opacity: 0;
    visibility: hidden;
}

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

.g-nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: 100%;
    max-width: none;
    margin-bottom: 0!important;
    padding-right: 36px;
    -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 15px;
}
.nav-list > li:last-of-type { margin-right: 0; }
.nav-list > li:not(:last-child) { margin-bottom: 0; }
.nav-list > li a {
    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-btn-box a {
    color: var(--color-wh);
    font-size: 14px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0.05em;
    text-align: center;
    display: block;
    width: 200px;
    background-color: var(--color-gr-d);
    border-radius: 26px;
}

/*--- scrolled ---*/
.scrolled #hd01 {
    height: var(--hd-height);
    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 .nav-list > li a {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.scrolled .hd-logo { display: flex; margin-top: 0; }
.scrolled .hd-logo .icon { width: 50px; }
.scrolled .hd-logo .txt {
    width: 380px;
    opacity: 1;
    visibility: visible;
}
.scrolled .nav-btn-box a { line-height: 42px; }

/*--- 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: 20px;
    right: 22px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--color-gr-d);
    border-radius: 100vmax;
}
.openline {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
	cursor: pointer;
    display: flex;
    justify-content: center;
    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: 18px;
    height: 1px;
	background-color: var(--color-wh);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.openline span::before,
.openline span::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    z-index: 1;
    background-color: var(--color-wh);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.openline span::before {
    top: -6px;
    animation: menu-bar01 .4s cubic-bezier(.075,.82,.165,1) 0s forwards;
}
@keyframes menu-bar01 {
    0% { -webkit-transform: translate(0, 6px); transform: translate(0, 6px) rotate(30deg); }
    50% { -webkit-transform: translate(0, 6px); transform: translate(0, 6px) rotate(0); }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
}
.openline span::after {
    top: 6px;
    animation: menu-bar03 .4s cubic-bezier(.075,.82,.165,1) 0s forwards;
}
@keyframes menu-bar03 {
    0% { -webkit-transform: translate(0, -6px); transform: translate(0, -6px) rotate(-30deg); }
    50% { -webkit-transform: translate(0, -6px); transform: translate(0, -6px) rotate(0); }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
}

/* OPEN Anime */
.panelactive .openline span { background-color: transparent; }
.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, 6px); transform: translate(0, 6px) rotate(0); }
    100% { -webkit-transform: translate(0, 6px); transform: translate(0, 6px) rotate(30deg); }
}
.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, -6px); transform: translate(0, -6px) rotate(0); }
    100% { -webkit-transform: translate(0, -6px); transform: translate(0, -6px) rotate(-30deg); }
}

@media screen and (min-width: 1200px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 1199px) {
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 100%;
        height: auto;
        max-width: 360px;
        padding: 70px 36px 70px;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(102%);
        background-color: var(--color-gr);
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        border-radius: 0 0 0 5px;
    }
    .panelactive #g-nav .g-nav-list { opacity: 1; visibility: inherit; transform: translateX(0); }

    .nav-list { display: block; height: auto; margin-bottom: 36px; }
    .nav-list > li { margin: 0; }
    .nav-list > li:not(:last-child) { margin-bottom: 0; }

    .nav-list > li a {
        color: var(--color-wh);
        font-size: 18px;
        display: block;
        height: auto;
        line-height: 50px;
    }
    .nav-list > li:not(:last-child) { margin-bottom: 16px; }
    .nav-list > li .pull-btn::after { display: none; }

    .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: 56px;
    }
    .hd-logo {
        position: relative;
        margin-top: 13px;
        margin-left: 12px;
    }
    .hd-logo a { gap: 4px; }
    .hd-logo .icon { width: 87px; }

    .openbtn { top: 16px; right: 14px; }

    .nav-list { overflow-y: auto; }

    .scrolled .hd-logo a { gap: 6px; }
    .scrolled .hd-logo .icon { width: 40px; }
    .scrolled .hd-logo .txt { width: 160px; }
    .scrolled .openbtn { top: 5px; right: 10px; }
}
@media screen and (max-width: 575px) {
    .g-nav-list { max-width: none; }
    #g-nav .g-nav-list { max-width: none; border-radius: 0 0 5px 5px; }
}

/* --------------------------------------------
    Content
-------------------------------------------- */
section {
    position: relative;
    overflow: hidden;
}
.bg-img-cover {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 50;
    mix-blend-mode: overlay;
    background-image: url(../img/hd-cover01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 1;
}
/*
section::before,
#ft01::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 50;
    mix-blend-mode: overlay;
    background-image: url(../img/hd-cover01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.6;
}
*/
.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);
}
.content-wrap hgroup,
.content-wrap p,
.content-wrap img,
.btn00,
.staff-slider {
    position: relative;
    z-index: 100;
}

.sec-video {
    background: #fff;
    z-index: 100;
}
.sec-video > div {
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding: 5rem 0;
}
.sec-video video {
    position: relative;
    width: 100%;
    z-index: 100;
}

/*---------- sec01 ----------*/
.sec01::after {
    content: '';
    display: block;
    width: 100vw;
    height: 36%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(0deg,#76d14e 0%, rgba(118, 209, 78, 0) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}
.sec01-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    inset: 0;
}
.sec01-bg::before,
.sec01-bg::after {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    display: block;
    width: 230px;
    height: 1329px;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.sec01-bg::before {
    left: 0;
    background-image: url(../img/sec01-left.svg);
    background-position: top left;
}
.sec01-bg::after {
    right: 0;
    background-image: url(../img/sec01-right.svg);
    background-position: top right;
}
.sec01-box {
    align-items: center;
    gap: 46px;
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
}
.sec01-box .item-start {
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 100vmax;
    z-index: 10;
}
.sec01-tit p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0!important;
    padding-left: 0.5em;
}

.sec01-box .item-end {
    flex: 1;
}
.sec01-txt p {
    width: 100%;
    max-width: 27em;
    letter-spacing: 0.03em;
    text-align: justify;
}

/*---------- sec02 ----------*/
.data-box {
    gap: 16px 14px;
    width: 100%;
    max-width: 866px;
    margin: 0 auto 50px;
}
.data-box .data-item {
    position: relative;
    z-index: 50;
    padding: 30px 32px 36px;
    background-color: var(--color-wh);
    border-radius: 5px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.data-box .data-item::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url(../img/icon-circle-grad41.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.data-box .data-item .txt-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.data-box .icon-item.icon-top {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
}


.data-box .data-item .tit-item {
    font-size: 23px;
    font-weight: 600;
    padding-left: 0.5em;
}

.data-box .num-item {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 12px;
}
.data-box .num-item .num-txt {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.data-box .num-item .num-txt { line-height: 0.7; }
.data-box .num-item .num-word { font-size: 40px; font-weight: bold; line-height: 1; }

.data-box .data01,
.data-box .data03 { padding-inline: 40px; }
.data-box .data01 .txt-wrap,
.data-box .data03 .txt-wrap { justify-content: space-between; }

.data-box .data03 .tit-item { margin-bottom: 10px; }
.data-box .data03 .txt-wrap:not(:last-of-type) { margin-bottom: 16px; }
.data-box .data03 .num-item { gap: 3px; }
.data-box .data03 .num-item .num-txt { font-size: 80px; }


.other-content .data-box .data-item {
    height: auto;
    min-height: 280px;
    border: 6px solid var(--color-gr-d);
    border-radius: 5px;
}
.data-box .num-item.sub-item .num-txt { font-size: 60px; }
.data-box .num-item.sub-item .num-word { font-size: 20px; }

.data-box .ft-item {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    line-height: 1.2;
    margin-top: 10px;
}
.data-box .ft-item .cp { font-size: 14px; }

.data-box .data06 .txt-wrap { flex-direction: column; }
.data-box .data06 .num-item .num-txt { font-size: 90px; }
.data-box .data06 .num-item .num-word { font-size: 32px; }

.data-box .data07 .txt-wrap { flex-direction: column; }
.data-box .data09 .txt-wrap { flex-direction: column; }
.data-box .data10 .txt-wrap { flex-direction: column; }
.data-box .data11 .txt-wrap { flex-direction: column; }


/*---------- sec03 ----------*/
.sec03-hd hgroup, .movie-hd hgroup {
    position: relative;
    width: fit-content;
    margin-inline: auto;
}
.sec03-hd hgroup h2, .movie-hd hgroup h2 { font-size: 130px; }
.sec03-hd hgroup::before,
.sec03-hd hgroup::after,
.movie-hd hgroup::before,
.movie-hd hgroup::after {
    content: '';
    position: absolute;
    z-index: 0;
    display: block;
    width: 240px;
    height: 180px;
    background-color: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.sec03-hd hgroup::before, .movie-hd hgroup::before {
    right: calc(100% + 36px);
    bottom: 6px;
    background-image: url(../img/icon-fruit01.svg);

    opacity: 0;
    transform: translateX(-50px);
}
.sec03-hd hgroup.amine-fadeleft.screen-in::before,
.movie-hd hgroup.amine-fadeleft.screen-in::before {
    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: 1;
        transform: translateX(0px);
    }
}

.sec03-hd hgroup::after, .movie-hd hgroup::after {
    left: calc(100% + 36px);
    bottom: 24px;
    background-image: url(../img/icon-fruit02.svg);

    opacity: 0;
    transform: translateX(50px);
}
.sec03-hd hgroup.amine-faderight.screen-in::after,
.movie-hd hgroup.amine-faderight.screen-in::after {
    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: 1;
        transform: translateX(0px);
    }
}

.staff-slider .swiper-slide {
    width: 327px;
    flex-shrink: 0;
}
.staff-item .staff-img {
    aspect-ratio: 327 / 420;
    overflow: hidden;
}
.staff-item .staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-item .staff-txt {
    color: var(--color-wh);
    font-weight: 600;
    position: relative;
    left: -14px;
    top: -60px;
    z-index: 100;
    width: 286px;
    max-width: 286px;
    padding: 18px 18px 22px;
    /*background: linear-gradient(125deg,#3b7243 25%, #6f9015 100%);*/
    background: linear-gradient(125deg, #38AA47 26%, #C0CE19 100%);
    border-radius: 30px 0 30px 30px;
    overflow: hidden;
}
.staff-item .staff-txt::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    mix-blend-mode: overlay;
    background-image: url(../img/staff-cover01.jpg);
    background-repeat: no-repeat;
    background-size: 400px auto;
}
.staff-item .staff-txt .post { font-size: 16px; }
.staff-item .staff-txt .name { font-size: 20px; padding-inline: 0.5em; }
.staff-item .staff-txt .name .cp { font-size: 16px; padding-left: 0.3em; }

/*---------- sec04 ----------*/
.card-box {
    display: flex;
    gap: 16px;
}
.card-box .card-item {
    flex: 1;
    position: relative;
    z-index: 50;
}
.card-box .card-item a {
    color: var(--color-bk);
    padding: 32px 36px 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-wh);
    border-radius: 5px;
    overflow: hidden;
}
.card-box .card-item a::before {
    content: '';
    display: block;
    width: 246px;
    height: 246px;
    position: absolute;
    top: -120px;
    right: -110px;
    z-index: 1;
    background-image: url(../img/icon-circle-grad.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    animation: rotateAnimation 10s linear infinite;
}
.card-box .card-item a::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 30px;
    display: block;
    width: 60px;
    height: 60px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-big.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.card-item .hd-txt {
    color: var(--color-gr);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: absolute;
    top: 36px;
    right: 28px;
    z-index: 150;
}
.card-item .img {
    display: block;
    width: 180px;
    margin-bottom: 20px;
}
.card-item .tit {
    font-size: 40px;
    font-weight: 600;
}


/*---------- sec05 ----------*/
.sec05-wrap {
    position: relative;
    z-index: 50;
}
.sec05-box {
    gap: 100px;
    align-items: center;
}
.sec05-box .item-start {
    position: relative;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec05-box .item-start .btn00 a { margin-bottom: 0; }
.sec05-box .item-end { width: calc(100% - 350px); }

.info-box a {
    color: var(--color-bk);
    padding-right: 0;
}
.info-box .info-item {
    margin: 0;
    padding: 20px 5px;
}
.info-box a:not(:last-of-type) .info-item { border-bottom: 0.5px solid #707070; }
.info-item dt {
    color: #A3A3A3;
    font-size: 15px;
    font-weight: 500;
}
.info-item dd {
    flex: 1;
    position: relative;
    font-weight: 500;
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 80px;
    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% - 12px);
    right: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
a[target="_blank"] > .info-item dd::after { background-image: url(../img/icon-arrow-exlink.svg); }


/*---------- entry01 ----------*/
.entry01-wrap {
    position: relative;
    z-index: 50;
    padding-top: calc(var(--content-wrap) / 2);
    padding-bottom: calc(var(--content-wrap) / 2);
}
.entry01-box { align-items: center; gap: 100px; }
.entry01-box .item-start { width: fit-content; }
.entry01-box .item-end { flex: 1; }
.entry01-box hgroup h2 { font-size: 130px; }

.bnr-box a { display: block; }
.bnr-box a:not(:last-of-type) { margin-bottom: 30px; }
.bnr-box .bnr-item {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    align-items: center;
    width: 100%;
    padding: 24px 20px 24px 28px;
    background-color: var(--color-wh);
}
.bnr-item .tit {
    width: 120px;
    color: var(--color-bk);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
}
.bnr-item .tit::before {
    content: '';
    display: block;
    width: 6px;
    height: 1.4em;
    background-color: var(--color-gr);
}
.bnr-item .img {
    width: 230px;
    border: 0.5px solid #707070;
    border-radius: 5px;
    overflow: hidden;
}
.bnr-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: transparent;
    background-image: url(../img/icon-arrow40.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --------------------------------------------
    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 {
    margin-top: var(--hd-height);
    padding-top: 70px;
    padding-bottom: 74px;
    background-color: transparent;
    background-image: url(../img/titbar.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#titbar .sec-inner {
    position: relative;
    z-index: 10;
}
#titbar h1 {
    color: var(--color-wh);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    display: block;
    margin-bottom: 0!important;
}

.other-content section {
    position: relative;
    z-index: 100;
}
.other-content .content-wrap {
    padding-top: calc(var(--content-wrap) / 2);
    padding-bottom: calc(var(--content-wrap) / 2);
}
.other-content .sec-inner,
.other-content .sec-inner-start,
.other-content .sec-inner-end {
    max-width: 1000px;
}
.other-content .content-wrap h2,
.other-content .content-wrap .sizeh2 { margin-bottom: 32px; }
.other-content .content-wrap h3,
.other-content .content-wrap .sizeh3 { margin-bottom: 29px; }
.other-content .content-wrap h4,
.other-content .content-wrap .sizeh4 { margin-bottom: 26px; }
.other-content .content-wrap h5,
.other-content .content-wrap .sizeh5 { margin-bottom: 22px; }
.other-content .content-wrap h6,
.other-content .content-wrap .sizeh6 { margin-bottom: 20px; }

.other-content h2 {
    line-height: 1.4;
    position: relative;
    margin-left: 65px;
    padding: 0 0 6px;
    border-bottom: 4px solid #D0D0D0;
}
.other-content h2::after {
    content: '';
    display: block;
    width: 2em;
    height: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 10;
    background-color: var(--color-gr-l);
}
.other-content h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0.2em;
    right: calc(100% + 15px);
    z-index: 10;
    background-image: url(../img/icon-circle-grad.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.other-content h3 {
    position: relative;
    line-height: 1.3;
    padding-left: 18px;
    font-feature-settings: "palt";
}
.other-content h3::before {
    content: '';
    display: block;
    width: 7px;
    height: 80%;
    position: absolute;
    top: 0.18em;
    left: 0;
    background-color: var(--color-gr-l);
}

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

.other-content h5 {
    line-height: 1.3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}
.other-content h5::before {
    content: '';
    display: block;
    width: 0.8em;
    height: 0.8em;
    margin-top: 0.1em;
    background-color: var(--color-gr-l);
    border-radius: 100vmax;
}


/*--- 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: 15px;
    overflow: hidden;
}
#ft01::after {
    content: '';
    display: block;
    width: 100vw;
    height: 310px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(0deg, #76d14e 0%, rgba(118, 209, 78, 0.1) 80%, rgba(118, 209, 78, 0) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

#ft01 a { color: var(--color-bk); }
#ft01 img { position: relative; z-index: 100; }
.ft-wrap {
    padding-top: 86px;
    padding-bottom: 46px;
}

.ft-main {
    position: relative;
    z-index: 100;
    align-items: center;
    gap: 16px;
    margin-bottom: 46px;
    padding: 36px 60px;
    background-color: var(--color-wh);
    border-radius: 5px;
}
.ft-main .item-start { width: fit-content; }
.ft-main .item-end { flex: 1; }
.ft-main .item-end .txt-wrap {
    width: fit-content;
    margin: 0 auto;
}
.ft-main .item-txt p {
    font-size: 14px;
    margin-bottom: 36px;
}
.ft-main .item-menu {
    display: flex;
    gap: 60px;
}
.f-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 24px;
}
.f-menu::before {
    content: '';
    display: block;
    width: 0.5px;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 10;
    background-color: #707070;
}
.f-menu li.tit {
    color: #B5B5B5;
    margin-bottom: 10px;
}
.f-menu li:not(.tit) { margin-bottom: 8px; }
.f-menu li:last-of-type { margin-bottom: 0; }

.sns-box-wrap {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
}
.sns-box-wrap .tit {
    color: var(--color-wh);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.ft-cp {
    color: var(--color-wh);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
}
.ft-ft {
    width: 1300px;
    position: relative;
    bottom: 0;
    left: calc(50% - 650px);
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 1199px) {
    :root {
        --content-wrap: 130px;
    }
    .sec05-box { gap: 60px; }
    .sec05-box .item-end { width: calc(100% - 310px); }
    .entry01-box {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .entry01-box .item-end {
        width: 100%;
        max-width: 520px;
    }
    .ft-logo { width: 200px; }
}
@media screen and (max-width: 991px) {
    :root {
        --content-wrap: 110px;
        --content-side: 42px;
    }
    h1, .sizeh1 { font-size: 34px; }
    h2, .sizeh2 { font-size: 32px; }
    h3, .sizeh3 { font-size: 24px; }
    h4, .sizeh4 { font-size: 22px; }
    h5, .sizeh5 { font-size: 20px; }
    h6, .sizeh6 { font-size: 18px; }
    hgroup h2 { font-size: 120px; }
    .sec01-bg::before, .sec01-bg::after { width: 23%; height: 1080px; }
    .sec01-box .item-start { width: 340px; }
    .sec01-tit p { font-size: 22px; }
    .data-box .data-item { padding: 28px 30px 36px; }
    .data-box .data-item .tit-item { font-size: 22px; }
    .data-box .num-item { gap: 8px; }
    .data-box .num-item .num-txt { font-size: 92px; }
    .data-box .num-item .num-word { font-size: 36px; }
    .data-box .icon-item.icon-left { width: 110px; }
    .data-box .icon-item.icon-top { width: 130px; }
    .data-box .data03 .num-item .num-txt { font-size: 58px; }
    .data-box .data03 .num-item .num-word { font-size: 26px; }
    .data-box .data03 .icon-item { width: 70px; }
    .data-box .data03 .txt-wrap:last-of-type .icon-item { width: 86px; }
    .movie-hd hgroup h2 { font-size: 110px; }
    .movie-hd hgroup::before,
    .movie-hd hgroup::after { width: 170px; height: 130px; }
    .movie-hd hgroup::before { right: 103%; }
    .movie-hd hgroup::after { left: 103%; }
    .sec03-hd hgroup h2 { font-size: 110px; }
    .sec03-hd hgroup::before,
    .sec03-hd hgroup::after { width: 170px; height: 130px; }
    .sec03-hd hgroup::before { right: 103%; }
    .sec03-hd hgroup::after { left: 103%; }
    .staff-slider .swiper-slide { width: 280px; }
    .card-box .card-item a { padding: 34px 30px 32px; }
    .card-item .img { width: 150px; }
    .card-item .tit { font-size: 36px; }
    .card-item .txt { padding-right: 60px; }
    .card-box .card-item a::after {
        bottom: 50px;
        right: 22px;
        width: 50px;
        height: 50px;
    }
    .sec05-box { gap: 40px; }
    .sec05-box .item-start { width: 230px; }
    .sec05-box .item-end { width: calc(100% - 270px); }
    .entry01-box hgroup h2 { font-size: 110px; }

    #ft01 { font-size: 14px; }
    .ft-main {
        flex-direction: column;
        gap: 36px;
    }
    .ft-logo { width: 100px; }
    .other-content .data-box .data-item { min-height: 230px; padding: 28px 30px 24px; }
    .data-box .data06 .num-item .num-txt { font-size: 68px; }
    .data-box .ft-item { font-size: 18px; }
    .data-box .ft-item .cp { font-size: 12px; }
}
@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; }

    hgroup { margin-bottom: 36px; }
    hgroup h2 { font-size: 50px; }
    hgroup p { font-size: 14px; }
    .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; }
    section { overflow-x: hidden; }

    .bg-img-cover {
        position: fixed;
        background-image: url(../img/hd-cover01_s.jpg);
        background-size: cover;
        background-attachment: initial;
    }

    .sec01-box { gap: 26px; }
    .sec01-box .item-start { width: 340px; }
    .sec01-tit p { font-size: 20px; }
    .sec01-txt p { width: 92%; }
    .data-box .flex-box { flex-direction: row!important; }
    .data-box .data-item { height: auto; min-height: 190px; padding: 26px 20px 30px; }
    .data-box .data-item .tit-item { font-size: 20px; }
    .data-box .num-item .num-txt { font-size: 82px; }
    .data-box .num-item .num-word { font-size: 30px; }
    .data-box .icon-item.icon-left { width: 90px; }
    .data-box .icon-item.icon-top { width: 120px; }
    .data-box .data03 .num-item .num-txt { line-height: 0.9; }
    .data-box .data03 .num-item .num-word { font-size: 24px; }
    .movie-hd hgroup h2 { font-size: 58px; }
    .sec03-hd hgroup h2 { font-size: 58px; }
    .staff-slider .swiper-slide { width: 220px; }
    .staff-item .staff-txt { width: 220px; }
    .staff-item .staff-txt .post { font-size: 14px; }
    .staff-item .staff-txt .name { font-size: 16px; }
    .card-box { flex-direction: column; }
    .card-item .img { width: 136px; }
    .card-item .tit { font-size: 32px; margin-bottom: 6px; }
    .sec05-box { gap: 0; }
    .sec05-box .item-end { width: 100%; }
    .info-item dd {
        padding-right: 36px;
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .entry01-box hgroup h2 { font-size: 58px; }
    .bnr-box .bnr-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bnr-item .tit { width: 100%; }
    .bnr-item::after {
        display: none;
        position: absolute;
        top: -10px;
        right: -10px;
        z-index: 10;
    }
    .ft-main { gap: 22px; padding: 30px 30px 36px; }
    .ft-main .item-txt p {
        font-size: 13px;
        margin-bottom: 26px;
    }
    .ft-main .item-menu { flex-direction: column; gap: 16px; }
}
@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; }
    .row-map iframe { height: 260px; }

    .movie-hd hgroup::before,
    .movie-hd hgroup::after { width: 150px; height: 110px; }
    .movie-hd hgroup::before {
        right: 42vw;
        bottom: auto;
        top: 92%;
    }
    .movie-hd hgroup::after {
        left: 50vw;
        bottom: 12%;
    }

    .sec01-bg::before ,
    .sec01-bg::after { width: 46%; }
    .sec01-bg::before { top: 200vw; }
    .sec03-hd hgroup::before,
    .sec03-hd hgroup::after { width: 150px; height: 110px; }
    .sec03-hd hgroup::before {
        right: 42vw;
        bottom: auto;
        top: 92%;
    }
    .sec03-hd hgroup::after {
        left: 50vw;
        bottom: 12%;
    }

    #titbar {
        padding-top: 42px;
        padding-bottom: 50px;
    }
    #titbar::before {
        width: 200px;
        height: 200px;
        top: calc(50% - 70px);
        right: -76px;
    }
    #titbar h1 {
        font-size: 24px;
        letter-spacing: 0.04em;
        font-feature-settings: "palt";
    }

    .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;
    }
    .other-content .content-wrap {
        padding-top: var(--content-wrap);
        padding-bottom: var(--content-wrap);
    }
}


/* --------------------------------------------
    福利厚生アイコン
-------------------------------------------- */
.welfare-box {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 36px 0;
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
}
.welfare-box .welfare-item { width: 180px; }
@media screen and (max-width: 991px) {
    .welfare-box .welfare-item { width: 170px; }
}
@media screen and (max-width: 767px) {
    .welfare-box { flex-direction: row; }
    .welfare-box .welfare-item { width: 146px; }
}
@media screen and (max-width: 575px) {
    .welfare-box .welfare-item { width: 136px; }
}

/* --------------------------------------------
    TO DOリスト
-------------------------------------------- */
.jobs-box { gap: 60px; }
.point-box {
    position: relative;
    margin-bottom: 50px;
    padding: 36px 46px;
    background-color: #EDF7F1;
    border-radius: 5px;
}
.point-box .point-txt {
    color: var(--color-gr);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: absolute;
    top: 36px;
    right: 28px;
    z-index: 10;
}
.point-box ul { margin-bottom: 0!important; }
@media screen and (max-width: 991px) {
    .point-box { padding: 36px 36px 26px; }
    .point-box .point-txt { font-size: 13px; top: 26px; right: 20px; }
}

/* --------------------------------------------
    1日の流れ
-------------------------------------------- */
.days-box .days-item {
    position: relative;
    padding-left: 116px;
}
.days-box .days-item:not(:last-of-type)::before {
    content: '';
    display: block;
    width: 0.5px;
    height: 100%;
    background-color: #707070;
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 0;
}
.days-box .days-item:not(:last-of-type) { padding-bottom: 20px; }
.days-item .days-time {
    position: relative;
    z-index: 10;
    color: var(--color-gr);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    aspect-ratio: 1 / 1;
    background-color: var(--color-wh);
    border: 0.5px solid #707070;
    border-radius: 100vmax;
}
.days-item .days-tit {
    padding-top: 28px;
    padding-bottom: 24px;
}
.days-item .days-img { width: 100%; max-width: 250px; }
@media screen and (max-width: 991px) {
    .jobs-box { gap: 50px; }
    .days-box .days-item { padding-left: 83px; }
    .days-box .days-item:not(:last-of-type) { padding-bottom: 12px; }
    .days-box .days-item:not(:last-of-type)::before { left: 32px; }
    .days-item .days-time { font-size: 17px; width: 64px; }
    .days-item .days-tit { padding-top: 20px; }
    .days-item .days-img { max-width: 220px; }
}

/* --------------------------------------------
    社員を知る - 一覧
-------------------------------------------- */
.other-content .staff-box { grid-gap: 0 30px; }
.other-content .staff-item .staff-txt { width: 100%; padding: 16px 16px 18px; }
.other-content .staff-item .staff-txt .post { font-size: 14px; }
.other-content .staff-item .staff-txt .name { font-size: 18px; }
.other-content .staff-item .staff-txt .name .cp { font-size: 14px; }


.sub-staff-box .sub-staff-item {
    color: var(--color-bk);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sub-staff-item .sub-staff-img { width: 86px; }
.sub-staff-item .sub-staff-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 100vmax;
    overflow: hidden;
    object-fit: cover;
}
.sub-staff-item .sub-staff-txt { flex: 1; }
.sub-staff-item .sub-staff-txt .post {
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    margin-bottom: 8px;
}
.sub-staff-item .sub-staff-txt .name {
    color: #707070;
    font-size: 12px;
}
.sub-staff-item .sub-staff-txt .name .cp {
    font-size: 10px;
    margin-left: 6px;
}
.sub-staff-item .sub-staff-txt .year {
    color: #707070;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
}
@media screen and (max-width: 991px) {
    .other-content .staff-box { grid-template-columns: repeat(3, 1fr); }
    .sub-staff-box { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 767px) {
    .other-content .staff-box { grid-template-columns: repeat(2, 1fr); }
    .sub-staff-box { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 575px) {
    .other-content .staff-box { gap: 0 16px; }
    .other-content .staff-item .staff-txt {
        left: -6px;
        top: -30px;
        padding: 14px 12px 16px;
        border-radius: 16px 0 16px 16px;
    }
    .other-content .staff-item .staff-txt .post { font-size: 12px; }
    .other-content .staff-item .staff-txt .name { font-size: 14px; }
    .other-content .staff-item .staff-txt .name .cp { font-size: 12px; }
    .sub-staff-box { grid-gap: 20px 12px; }
    .sub-staff-box .sub-staff-item { gap: 10px; }
    .sub-staff-item .sub-staff-img { width: 60px; }
    .sub-staff-item .sub-staff-txt .post { font-size: 13px; letter-spacing: 0; margin-bottom: 5px; }
    .sub-staff-item .sub-staff-txt .name { font-size: 10px; }
    .sub-staff-item .sub-staff-txt .name .cp { font-size: 8px; margin-left: 4px; }
    .sub-staff-item .sub-staff-txt .year { font-size: 10px; }
}


/* --------------------------------------------
    社員を知る - 詳細
-------------------------------------------- */
.staff-profile {
    position: relative;
    width: 100%;
    margin: 0 auto var(--content-wrap);
    padding: 0 3rem;
    height: auto;
    min-height: 42vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prof-wrap {
    position: relative;
    z-index: 1000;
    padding: 6em 0;
}
.staff-profile .staff-img {
    width: 56%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.staff-profile .staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.staff-profile .prof-cp {
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.staff-profile .prof-post {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    margin-bottom: 26px;
}
.staff-profile .prof-tit {
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    margin-bottom: 80px;
}

.staff-profile .prof-txt {
    color: #707070;
    letter-spacing: 0.05em;
}
.prof-txt .prof-name {
    color: var(--color-bk);
    font-size: 24px;
    margin-bottom: 12px;
}
.prof-txt .prof-name .cp { font-size: 1rem; margin-left: 6px; }
.prof-txt .prof-post-sub { margin-bottom: 24px; }
.prof-txt .prof-school { margin-bottom: 10px; }


.staff-content {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
}
.staff-content hr {
    border-top: 0.5px solid #707070!important;
    margin: calc(var(--content-wrap) / 2) 0;
}
@media screen and (max-width: 991px) {
    .prof-wrap { padding: 5em 0; }
    .staff-profile .prof-cp { font-size: 14px; }
    .staff-profile .prof-post { font-size: 36px; }
    .staff-profile .prof-tit { font-size: 30px; margin-bottom: 60px; }
    .prof-txt .prof-name { font-size: 23px; }
}
@media screen and (max-width: 767px) {
    .staff-profile { padding: 0; }
    .prof-wrap { padding: 2em 2em 3em; }
    .staff-profile .prof-cp { font-size: 12px; }
    .staff-profile .prof-tit { font-size: 26px; }
    .staff-profile .prof-post { font-size: 34px; margin-bottom: 22px; }
    .prof-txt .prof-name { font-size: 21px; }
    .staff-profile .staff-img { position: relative; width: 100%; height: auto; }
    .staff-profile .staff-img img { border-radius: 0; }
}
@media screen and (max-width: 575px) {
    .prof-wrap { padding: 0 0 3em; }
    .staff-profile .prof-tit { font-size: 22px; margin-bottom: 50px; }
    .staff-profile .prof-post { font-size: 28px; }
    .prof-txt .prof-name { font-size: 18px; margin-bottom: 10px; }
    .prof-txt .prof-post-sub { font-size: 14px; }
    .prof-txt .prof-school { font-size: 14px; margin-bottom: 6px; }
    .prof-txt .prof-year { font-size: 14px; }
}


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


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

.time-tbl {
    border-collapse: separate;
    border-spacing: 3px;
    border-top: none;
    margin-bottom: auto;
}
.js-scrollable {
    width: 100%;
    position: relative;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.time-tbl tr { border-bottom: none;}
table.time-tbl tr th, table.time-tbl tr td {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    background: #EDF7F1;
    text-wrap: nowrap;
}
.time-tbl .rest {
    background: #F2F3F3;
}

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

    table.time-tbl tr th, table.time-tbl tr td {
        display: table-cell;
        width: auto !important;
    }
    .js-scrollable {
        width: 100%;
        overflow: scroll;
    }
}

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