@charset "utf-8";
@font-face {/* 400 */
    font-family: "UDReimin";
    src: url("../font/A-OTF-UDReiminPr6N-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
:root {
    /*色：d=dark、l=light*/
    --color-bk: #000;
    --color-bk-l: #626262;
    --color-wh: #fff;
    --color-gray-l: #F8F8F8;
    --color-gray: #F0F0F0;
    --color-gray-d: #626262;
    --color-red: #D80404;
    --color-bl-d: #00028A;
    --color-bl: #127BCA;
    --txt-size: 18px;
    --hd-height: 76px;
    --inner-size: 1100px;
    --inner-size-small: 1020px;
    --content-wrap: 130px;
    --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.02em;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: transparent;
}
body {
    animation-name: blur01;
    animation-duration: 2s;
    animation-timing-function: ease-out;
}
#tpage { overflow-x: hidden; }
* { min-height: 0vw; }
.hidden { display: none; }
.grecaptcha-badge { visibility: hidden; }

h1, h2, h3, h4, h5, h6,
.sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 {
    /*font-family: "UDReimin";*/
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}
h1, .sizeh1 { font-size: 38px; }
h2, .sizeh2 { font-size: 34px; }
h3, .sizeh3 { font-size: 24px; }
h4, .sizeh4 { font-size: 20px; }
h5, .sizeh5 { font-size: 18px; }

hgroup {
    margin-bottom: 60px;
}
hgroup h2 {
    font-size: 52px;
    line-height: 1.26;
    font-feature-settings: "palt";
}
hgroup h2::first-letter {
    font-size: 75px;
}
hgroup p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0!important;
}

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

a[target="_blank"] {
    position: relative;
    padding-right: 20px;
}
a[target="_blank"]::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    background-color: transparent;
    background-image: url(../img/icon-exlink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

a[href^="https://www.instagram.com"],
a[href^="https://www.facebook.com"] { padding-right: 0; }
a[href^="https://www.instagram.com"]::after,
a[href^="https://www.facebook.com"]::after { display: none; }

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

/*--- imgタグ ---*/
img {
    max-width: 100%;
    height: auto;
}
.img-anime {
    opacity: 0;
    filter: blur(5px);
}
.img-anime.screen-in {
    animation-name: blur01;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
@keyframes blur01 {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 100%;
        filter: blur(0);
    }
}


hr {
    margin: 20px 0;
    border-top: 1px solid #DCDCDC;
    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 60px;
	padding: 0;
    line-height: 2;
}
.txt-en { font-family: "UDReimin"; font-weight: 500; }
.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-red { color: var(--color-red); }
.color-bl-l { color: var(--color-bl-l); }
.color-bl { color: var(--color-bl); }
.color-bl-d { color: var(--color-bl-d); }
.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-red { background-color: var(--color-red); }
.bg-bl-l { background-color: var(--color-bl-l); }
.bg-bl { background-color: var(--color-bl); }
.bg-bl-d { background-color: var(--color-bl-d); }
.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: 10px;
}
.sns-box a {
    display: block;
    width: 22px;
}
#ft01 .sns-box a { width: 30px; }

/*--- 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-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    display: block;
    width: fit-content;
    height: auto;
    margin: 0 0 20px;
    padding: 16px 70px 16px 36px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: var(--color-bk);
    border: none;
    border-radius: 30px;
}
.btn00 a::after {
    content: '';
    position: absolute;
    top: calc(50% - 15px);
    right: 18px;
    display: block;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}
.btn00 a:hover { background-color: var(--color-bl); }

.btn00.btn-center a { margin-inline: auto; }
.btn-full a { width: 100%; }
.btn-wh a {
    color: var(--color-red);
    background-color: var(--color-wh);
}

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

/* --------------------------------------------
    ナビゲーション
-------------------------------------------- */
#hd01 {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--hd-height);
    background-color: var(--color-wh);
/*
    filter: drop-shadow(0px 3px 6px rgba(0, 41, 109, 0.16));
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 41, 109, 0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0, 41, 109, 0.16));
*/
}

.hd-logo {
    font-size: 0!important;
    line-height: 1!important;
    width: 309px;
    margin-left: 18px;
    margin-bottom: 0!important;
}

/*--- LIST STYLE ---*/
#g-nav {
    margin-right: 18px;
}
.g-nav-wrap { gap: 50px; justify-content: space-around; align-items: initial; }
.g-nav-wrap .item-start { width: 310px; }
.g-nav-wrap .item-line {
    display: block;
    width: 1px;
    background-color: #666;
}
.g-nav-wrap .item-end { flex: 1; max-width: 600px; }
.g-nav-wrap .menu-list-box {
    gap: 0;
    justify-content: space-between;
}
.g-nav-wrap .menu-list-box .menu-list li:not(:last-child) { margin-bottom: 16px; }

.g-nav-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    height: var(--hd-height);
    max-width: none;
    margin-bottom: 0!important;
    padding-right: 38px;
    -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 0.8em;
}
.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: 15.6px;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    height: var(--hd-height);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

/*--- MENU / OPEN ---*/
.g-nav-btn {
    display: flex;
    gap: 20px;
}
.g-nav-btn .entrybtn {
    color: var(--color-wh);
    line-height: 40px;
    padding: 0 24px;
    background-color: var(--color-bk);
}
.g-nav-btn .entrybtn:hover { background-color: var(--color-bl); }

.openbtn {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--color-bk);
    cursor: pointer;
    position: relative;
    z-index: 100;
}
.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: block;
    width: 15px;
    height: 1px;
    position: relative;
	background-color: var(--color-wh);
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
}
.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);
}
.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, 10px); transform: translate(0, 10px) rotate(26deg); }
    50% { -webkit-transform: translate(0, 10px); transform: translate(0, 10px) 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, -10px); transform: translate(0, -10px) rotate(-26deg); }
    50% { -webkit-transform: translate(0, -10px); transform: translate(0, -10px) rotate(0); }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) rotate(0); }
}

.nav-logo {
    width: 309px;
    margin-bottom: 42px;
    filter: brightness(0) invert(1);
}
.nav-entry-box { margin-top: 32px; }
.nav-entry-box a {
    position: relative;
    display: block;
    color: var(--color-wh);
    font-weight: 500;
    padding: 10px 36px;
    background-color: #333;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: baseline;
}
.nav-entry-box .main { font-size: 30px; letter-spacing: 0.1em; }
.nav-entry-box .main::first-letter { font-size: 36px; }
.nav-entry-box .sub { font-size: 14px; }
.nav-entry-box a::after {
    content: '';
    position: absolute;
    top: calc(50% - 18px);
    right: 20px;
    display: block;
    width: 36px;
    height: 36px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

#g-nav .g-nav-list {
    opacity: 0;
    visibility: hidden;
    display: block;
    width: calc(100vw - 36px);
    height: auto;
    padding: 60px 60px 52px;
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: var(--color-bk);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.g-nav-list .menu-list a {
    color: var(--color-wh);
    font-size: 16px;
    filter: brightness(0) invert(1);
}

/* OPEN Anime */
.panelactive #g-nav .g-nav-list {
    opacity: 1;
    visibility: inherit;
}

.panelactive .openbtn { width: 46px; }
.panelactive .openline span { width: 24px; 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(32deg); }
}
.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(-32deg); }
}
@media screen and (max-width: 767px) {
    .g-nav-wrap .item-line { display: none; }
}
@media screen and (max-width: 575px) {
    .hd-logo { margin-left: 12px; }
    .g-nav-btn .entrybtn { display: none; }
    #g-nav { margin-right: 12px; }
    .nav-logo { display: none; }
    #g-nav .g-nav-list {
        width: calc(100vw - 20px);
        top: 10px;
        right: 10px;
        padding: 60px 26px 40px;
    }
    .g-nav-wrap { gap: 26px; flex-direction: column-reverse !important; }
    .g-nav-wrap .menu-list-box { gap: 16px; }
    .g-nav-wrap .menu-list-box .menu-list li:not(:last-child) { margin-bottom: 16px; }
    .nav-entry-box a { padding: 12px 20px; }
    .nav-entry-box .main { font-size: 26px; }
    .nav-entry-box .sub { font-size: 12px; }
    .nav-entry-box a::after { right: 16px; }
}

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

/*---------- sec00 ----------*/
.sec00 {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}
.main-slider,
.main-slider .swiper-wrapper,
.main-slider .swiper-slide,
.main-slider .swiper-slide img {
    width: 100%;
    height: 100%!important;
    object-fit: cover;
    line-height: 1;
}

.sec00 .hd-txt {
    color: var(--color-wh);
    font-size: 56px;
    letter-spacing: 0.04em;
    position: absolute;
    top: calc(49% - 0.5em);
    left: 5%;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/*---------- about00 ----------*/
.about00-wrap { padding-bottom: 20px; }
.about00-box {
    align-items: center;
    gap: 80px;
}
.about00-box .about00-img {
    flex: 1;
    min-width: 0;
}
.about00-box .about00-txt {
    width: 25rem;
    padding-left: var(--content-side);
}
.about00-box .about00-txt p { margin-bottom: 1.5rem; }

/*
.about00-wrap { padding-bottom: 1px; }
*/
.about00 hgroup { margin-bottom: 80px; }
.about00 hgroup p { margin-left: -0.16em; }
.other-content .about00-box { align-items: flex-start; gap: 0; margin-bottom: 80px; }
.other-content .about00-box .about00-txt {
    flex: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 10;
    font-size: 21px;
    line-height: 2.1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
}
.other-content .about00-box .about00-txt::before {
    content: '';
    display: block;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
    border: 1px solid currentColor;
    border-radius: 100vmax;
}

.other-content .about00-box .about00-txt-wrap { flex: 1; margin-inline: auto; }
.other-content .about00-box .about00-txt-cp {
    position: relative;
    z-index: 10;
    display: block;
    width: 92%;
    margin-inline: auto;
    padding: 20px 24px;
    margin-top: 36px;
    background-color: var(--color-gray-l);
}
.other-content .about00-box .about00-txt-cp p { margin-bottom: 0!important; }



/*---------- work00 ----------*/
.work00-wrap { padding-bottom: 20px; }
.work00 hgroup h2 { margin-left: -0.1em; }
.work00 hgroup h2::first-letter { letter-spacing: -0.16em; }
.work00-box {
    align-items: center;
}
.work00-box > div {
    flex: 1;
    flex-shrink: 0;
}
.work00-txt .txt-wrap {
    padding-left: 80px;
    padding-right: var(--content-side);
}

.work00-img-box {
    justify-content: center;
    align-items: flex-end;
    gap: 14vw;
    padding-top: 10vw;
}
.work00-img-box .item01 { width: 35vw; }
.work00-img-box .item02 { width: 28vw; position: relative; top: -10vw; }

/*---------- int00 ----------*/
.int00-box {
    gap: 100px;
    margin-bottom: 80px;
}
.int00-box .int00-item:nth-child(2n) {
    margin-top: -100px;
}
.int00-item a { color: var(--color-bk); }
.int00-item .int00-img { margin-bottom: 12px; }
.int00-item .int00-txt .tit {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
}
.int00-item .int00-txt .post {
    color: #A6A7A7;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 3px;
    display: flex;
    gap: 5px;
}
.int00-item .int00-txt .txt .subtxt {
    font-size: 15px;
    padding-left: 3px;
}

/*---------- full-img ----------*/
.full-img {
    height: 32vw;
    overflow: hidden;
}
.full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------- talk00 ----------*/
.talk00-wrap { padding-bottom: 20px; }
.talk00-box {
    align-items: center;
}
.talk00-box .talk00-img {
    flex: 1;
    min-width: 0;
}
.talk00-box .talk00-txt {
    width: 22rem;
    padding-left: var(--content-side);
}

/*---------- env00 ----------*/
.env00-wrap { padding-bottom: 20px; }
.env00-box {
    align-items: center;
}
.env00-box .env00-img {
    flex: 1;
}
.env00-box .env00-txt {
    width: 26rem;
}
.one-slider,
.one-slider .swiper-wrapper,
.one-slider .swiper-slide,
.one-slider .swiper-slide img {
    width: 100%;
}

/*---------- entry00 ----------*/
.entry00-box,
.entry00-box:hover,
.entry00-box:focus {
    color: var(--color-wh);
}
.entry00-box {
    align-items: stretch;
    gap: 80px;
    padding: 66px 80px 70px;
    background-color: transparent;
    background-image: url(../img/entry00-bg01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.entry00-box .line {
    display: block;
    width: 1px;
    background-color: var(--color-wh);
    opacity: 0.3;
}
.entry00-box .txt p { margin-bottom: 36px; }
.entry00-box .txt p:last-of-type { margin-bottom: 0!important; }
.entry00-box .txt p .sub { font-size: 16px; }
.entry00-box hgroup {
    margin-bottom: 0!important;
}
/*
.entry00-box::before {
    content: '';
    display: block;
    width: 130px;
    height: 130px;
    position: absolute;
    top: calc(50% - 65px);
    right: 90px;
    z-index: 10;
    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;
    filter: brightness(0) invert(1);
}
*/


/* --------------------------------------------
    other page
-------------------------------------------- */
#titbar {
    padding-top: 100px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
#titbar h1 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}
#titbar h1::first-letter { font-size: 42px; }
#titbar h1 .sub { font-size: 18px; padding-left: 16px; }
#titbar .line {
    display: block;
    height: 1px;
    width: 80px;
    background-color: currentColor;
    vertical-align: middle;
}
.page-header-main {
    width: fit-content;
    margin: 0 auto;
    padding: 0 0 260px;
    text-align: center;
}
.other-content .content-wrap:not(.entry00-wrap) p {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.other-content h3 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 50px;
}
.other-content h3::before {
    content: '';
    display: block;
    width: 55px;
    height: 1px;
    background-color: currentColor;
}

/*--- ul / ol ---*/
.other-content .content-wrap ul {
    list-style: none;
    margin-bottom: 1.2em;
    padding: 0;
    padding-left: 1em;
}
.other-content .content-wrap ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 3px;
    font-size: 15px;
    line-height: 1.8;
}
.other-content .content-wrap ul > li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #BABABA;
    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;
    font-size: 15px;
    line-height: 1.8;
}
.other-content .content-wrap ol > li:before {
    position: absolute;
    counter-increment: li;
    content: counter(li) ".";
    left: -1em;
    top: 0;
}


/* --------------------------------------------
    記事ページ
-------------------------------------------- */
.single-content .content-wrap p img { margin: 6px 20px 30px; }
.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;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.ft-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
#ft01 p {
    line-height: 1.8;
    margin-bottom: 30px;
}
#ft01 a { color: var(--color-bk); }

.ft-logo {
    width: 366px;
    margin-bottom: 36px;
}
.ft-txt { margin-bottom: 0!important; }

.ft-main .item-start,
.ft-main .item-end {
    flex: 1;
    position: relative;
}
.ft-main .item-start::before {
    content: '';
    position: absolute;
    right: -0.5px;
    top: -10%;
    z-index: 10;
    display: block;
    width: 1px;
    height: 120%;
    background-color: var(--color-bk);
    opacity: 0.3;
}
.menu-list-box {
    gap: 90px;
    justify-content: center;
}
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-list li {
    margin: 0 0 12px;
    padding: 0;
}
.menu-list li:last-of-type { margin-bottom: 0; }
.ft-cp {
    color: #A7A7A7;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: absolute;
    bottom: 13px;
    right: 26px;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 991px) {
    :root {
        --content-wrap: 80px;
        --content-side: 36px;
    }
    hgroup { margin-bottom: 50px; }
    hgroup p { font-size: 18px; }

    .g-nav-wrap {
        gap: 50px;
        flex-direction: column;
    }
    .g-nav-wrap .item-start,
    .g-nav-wrap .item-end { width: 100%; }

    .sec00 .hd-txt { font-size: 50px; }
    .about00 hgroup { margin-bottom: 60px; }
    .about00-box .about00-txt { font-size: 18px; width: 100%; padding-right: var(--content-side); }
    .work00-box { margin-bottom: 50px; }
    .work00-txt .txt-wrap { padding-left: 60px; }
    .int00-box { gap: 60px; }
    .int00-item .int00-txt .tit { font-size: 18px; }
    .int00-item .int00-txt .txt { font-size: 15px; }
    .int00-item .int00-txt .txt .subtxt { font-size: 13px; }
    .full-img { height: 36vw; }
    .env00-box .env00-txt { width: 24rem; padding-left: 50px; }
    .entry00-box { padding: 46px 52px 60px; }
    /*.entry00-box::before { width: 90px; height: 90px; top: calc(50% - 45px); right: 70px; }*/
    .ft-main { flex-direction: column; gap: 42px; }
    .ft-main .item-start,
    .ft-main .item-end { width: 100%; }
    .ft-main .item-start::before { display: none; }
    .ft-main .item-end .menu-list-box { justify-content: flex-start; }
}
@media screen and (max-width: 767px) {
    :root {
        --txt-size: 16px;
        --hd-height: 63px;
        --content-wrap: 60px;
        --content-side: 24px;
    }
    h1, .sizeh1 { font-size: 28px; }
    h2, .sizeh2 { font-size: 26px; }
    hgroup { margin-bottom: 50px; }
    hgroup h2 { font-size: 42px; }
    hgroup h2::first-letter { font-size: 60px; }
    hgroup p { font-size: 15px; }
    p { margin-bottom: 32px; }
    .txt-cp { font-size: 14px; }
    .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; }
    table:not(.minute-table) tr th,
    table:not(.minute-table) tr td {
        display: block;
        font-size: 14px;
        padding: 8px 12px;
    }
    table:not(.minute-table) tr th { padding: 10px 12px; }
    table:not(.minute-table) tr:nth-child(2n) { background-color: var(--color-wh); }
    .btn00 a, .rela-btn > span { font-size: 16px; }

    .hd-logo,
    .nav-logo,
    .ft-logo { width: 244px; }
    .sec00 { max-height: 600px; }
    .sec00 .hd-txt {
        font-size: 38px;
        flex-direction: column;
        gap: 0;
    }
    .other-content .about00-box { flex-direction: column; margin-bottom: 50px; }
    .other-content .about00-box .about00-txt-wrap { width: 100%; }
    .other-content .about00-box .about00-txt {
        font-size: 18px;
        width: 100%;
        max-width: 300px;
        margin-inline: auto;
    }
    .other-content .about00-box .about00-txt:not(:first-child) { margin-top: -60px; }
    .other-content .about00-box .about00-txt::before { width: 100%; height: 100%; inset: 0; }
    .work00-box { margin-bottom: 0; }
    .work00-box > div { width: 100%; }
    .work00-txt .txt-wrap {
        padding-left: var(--content-side);
        padding-right: var(--content-side);
        padding-top: var(--content-wrap);
        padding-bottom: var(--content-wrap);
    }

    .work00-img-box {
        justify-content: space-between;
        gap: 0;
        padding-top: 10vw;
    }
    .work00-img-box .item01 { width: 54vw; margin-right: auto; }
    .work00-img-box .item02 { width: 32vw; position: relative; top: -10vw; }
    .int00-box { flex-direction: column; gap: 36px; }
    .int00-box .int00-item:nth-child(2n) { margin-top: 0; }
    .int00-item .int00-txt .tit { font-size: 17px; }
    .full-img { height: 60vw; max-height: 360px; }
    .talk00-box { flex-direction: column; }
    .talk00-box .talk00-txt {
        width: 100%;
        padding-left: var(--content-side);
        padding-right: var(--content-side);
        padding-bottom: var(--content-wrap);
    }
    .env00-box { flex-direction: column; }
    .env00-box .env00-txt {
        width: 100%;
        padding-left: var(--content-side);
        padding-right: var(--content-side);
        padding-bottom: var(--content-wrap);
    }
    .one-slider,
    .one-slider .swiper-wrapper,
    .one-slider .swiper-slide,
    .one-slider .swiper-slide img {
        width: 100vw;
    }
    .entry00-box { padding: 26px 26px 46px; gap: 16px; }
/*
    .entry00-box::before {
        width: 56px;
        height: 56px;
        top: 46px;
        right: 26px;
    }
*/
    .flex-box { flex-direction: column; }
    .menu-list-box { gap: 12px; }
}
@media screen and (max-width: 575px) {
    :root {
        --txt-size: 15px;
        --content-side: 18px;
    }
    h1, .sizeh1 { font-size: 26px; }
    h2, .sizeh2 { font-size: 22px; }
    h3, .sizeh3 { font-size: 20px; }
    h4, .sizeh4 { font-size: 18px; }
    h5, .sizeh5 { font-size: 16px; }
    .row-map iframe { height: 260px; }

    #ft01 { font-size: 14px; }
    .ft-main { gap: 30px; }
    .ft-main .item-end .menu-list-box { gap: 8px; }
    .ft-main .item-end .menu-list-box .menu-list li { margin-bottom: 8px; }
    .ft-main .item-end .menu-list-box .menu-list li a { font-size: 13px; }
    .ft-cp { font-size: 10px; }
}


/* --------------------------------------------
    数字で知る - about
-------------------------------------------- */
.data-box-wrap {
    width: 100%;
    max-width: 830px;
    margin-inline: auto;
}
.data-grid-box {
    grid-gap: 100px;
}
.data-item {
    padding: 0 0 60px;
}
.data-item.shot-item {
    width: 100%;
    max-width: 580px;
}

.data-item .head01 {
    margin-bottom: 12px;
    padding: 0 0 5px;
    border-bottom: 1px solid #DCDCDC;
}
.data-item .head01 img { vertical-align: bottom; }
.data-item .head01 img.icon01 { margin-right: 10px; }
.data-item .head01 img.icon02 { margin-right: 16px; }

.data-item .content01 {
    width: fit-content;
    text-align: right;
    margin-left: auto;
    padding: 0 6px;
}
.data-item .content02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 42px;
    padding: 0 6px;
}
.data-item .content03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.data-item .content03 .img,
.data-item .content03 .list-box-wrap {
    flex: 1;
}
.data-item .content03 .img { flex: 1; text-align: center; }
.data-item .content03 .list-box-wrap {
    display: flex;
    justify-content: center;
}


.data-item .main {
    font-size: 22px;
    line-height: 1.2;
}
.data-item .main .num {
    font-size: 60px;
    padding: 0 5px 0 16px;
}
.data-item .sub { font-size: 16px; }

.data-item .list-box .list {
    font-size: 18px;
    margin-bottom: 16px;
}
.data-item .list-box .list .num {
    font-size: 26px;
    padding: 0 4px;
}
.data-item .list-box .list .dots {
    letter-spacing: -0.2em;
    padding: 0 4px;
}


/* --------------------------------------------
    職種紹介 - work
-------------------------------------------- */
.sticky-content { margin-bottom: 160px; }
.sticky-content .main-content { padding-left: 210px; }
.sticky-content .side-content {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    width: 130px;
    height: 0;
    box-sizing: content-box;
}
.sticky-content .side-content .work-tit {
    font-size: 20px;
    color: var(--color-wh);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bk);
    aspect-ratio: 1 / 1;
}

.sticky-content .main-content .work-item:not(:last-of-type) { padding-bottom: 60px; }
.sticky-content .main-content .work-item h3 { padding-bottom: 20px!important; }
.sticky-content .main-content .work-item p { margin-bottom: 0!important; padding-left: 130px; }
@media screen and (max-width: 991px) {
    .sticky-content .main-content .work-item p { padding-left: 60px; }
}
@media screen and (max-width: 575px) {
    .sticky-content .main-content .work-item h3 .icon { width: 46px; }
    .sticky-content .main-content .work-item p { padding-left: 0; }
}


/* --------------------------------------------
    int-list-content - スタッフインタビュー（一覧）
-------------------------------------------- */


/* --------------------------------------------
    staff-content - スタッフインタビュー（詳細）
-------------------------------------------- */
#cpage .staff-content h2 {
    font-size: 30px;
    padding-bottom: 50px;
}
#cpage .staff-content p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: .04em;
}

.staff-hd {
    position: relative;
    padding-top: 80px;
}
.staff-hd .img-item img {
    aspect-ratio: 1280 / 588;
    object-fit: cover;
}
.staff-hd .prof-item {
    font-size: 17px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 50px 46px;
    background-color: var(--color-wh);
}
.prof-item .name-sub { margin-bottom: 12px; }
.prof-item .name-sub .post { margin-bottom: 3px; }
.prof-item .name { font-size: 26px; }
.prof-item .name .txt-cp { font-size: 18px; padding-left: 0.3em; }

.staff-box:not(.center-box) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* flex img : txt*/
/* flex 38 : 52 */
.flex38-52 .img-item { flex: 38; }
.flex38-52 .txt-item { flex: 52; }
/* flex 60 : 43 */
.flex60-43 .img-item { flex: 60; }
.flex60-43 .txt-item { flex: 43; }

.pt-60 { padding-top: 60px; }
.pt-100 { padding-top: 100px; }

.staff-box.center-box .txt-item {
    width: 740px;
    max-width: 100%;
    margin-inline: auto;
}
.staff-full-img { padding-left: 12vw; }
.sec-inner-end .staff-full-img { padding-left: 0; padding-right: 12vw; }

.holiday-box {
    margin-bottom: 50px;
    padding: 42px 46px;
    background-color: var(--color-gray);
}
.holiday-box h3 { padding-bottom: 26px; }
.holiday-box p { margin-bottom: 0!important; }

@media screen and (max-width: 991px) {
    .staff-hd { gap: 46px; }
    .staff-hd .img-item { width: 100%; flex: 1; }
    .staff-box:not(.center-box) { gap: 46px; }
}
@media screen and (max-width: 767px) {
    .staff-hd,
    .staff-box:not(.center-box) { flex-direction: column; }
    .staff-hd .txt-item .prof p { font-size: 14px; }
    .staff-hd .img-item img { aspect-ratio: 3 / 2; }
}

/* --------------------------------------------
    talk-list-content - クロストーク（一覧）
-------------------------------------------- */
.talk-list-content .page-header-main {
    padding-bottom: var(--content-wrap);
}
.talk-list-content .talk00-box { gap: 60px; }
.talk-list-content .talk00-txt {
    position: relative;
    z-index: 10;
}
.talk-list-content .talk00-txt p { font-size: 15px; margin-bottom: 1.5rem; }
.talk-list-content .sec-inner-end .talk00-txt {
    padding-left: 0;
    padding-right: var(--content-side);
}
.talk-list-content .talk00-txt h4 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 46px;
    text-wrap-mode: nowrap;
}
.talk-list-content .sec-inner-end .talk00-txt h4 {
    display: flex;
    justify-content: flex-end;
}

/* --------------------------------------------
    talk-content - クロストーク（詳細）
-------------------------------------------- */
#cpage .talk-content .talk-box p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: .04em;
    position: relative;
    padding-left: 5em;
}
#cpage .talk-content .talk-box p .name {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


/* --------------------------------------------
    env-list-box - 福利厚生
-------------------------------------------- */
.env-list-box {
    gap: 50px 10px;
}
.env-list-box .tit { margin-bottom: 20px; }
.env-list-box .txt { width: 90%; margin-inline: auto; }






/* --------------------------------------------
    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 th, table tr td {
    font-size: 15px;
    line-height: 1.8;
    padding: 16px 18px;
}
table tr th { text-wrap-mode: nowrap; }
table tr td { line-height: 1.8; padding-left: 36px; }




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

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

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

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

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





@media screen and (max-width: 767px) {
    #titbar .line { width: 20px; }
    #titbar h1 { font-size: 18px; }
    #titbar h1::first-letter { font-size: 26px; }
    #titbar h1 .sub { font-size: 12px; padding-left: 13px; letter-spacing: 0.02em; }
    .page-header-main { padding-bottom: 130px; }
    .other-content h3 { gap: 12px; }
    .other-content h3::before { width: 30px; }
    .other-content .content-wrap:not(.entry00-wrap) p { font-size: 14px; }

    .other-content .about00-box { gap: 42px; }
    .other-content .about00-box .about00-txt-cp { margin-top: 16px; }

    .data-grid-box { gap: 0; }
    .data-item .content03 { flex-direction: column; gap: 36px; }

    .sticky-content .side-content {
        position: -webkit-relative;
        position: relative;
        inset: 0;
        width: 100%;
        height: auto;
        margin-bottom: 36px;
    }
    .sticky-content .side-content .work-tit {
        font-size: 18px;
        padding: 10px;
        aspect-ratio: auto;
    }
    .sticky-content .main-content { padding-left: 0; }

    .talk-list-content .talk00-txt {
        padding-right: var(--content-side)!important;
        padding-left: var(--content-side)!important;
    }
    .talk-list-content .talk00-txt h4 {
        font-size: 20px;
        margin-bottom: 36px;
        text-wrap-mode: inherit;
    }
    .talk-list-content .sec-inner-end .talk00-txt h4 { display: block; }
}

@media screen and (max-width: 575px) {
    .page-header-main { padding-bottom: 120px; }
    .other-content h3 { gap: 8px; padding-bottom: 36px; }
    .other-content h3::before { width: 20px; }

    .about00-box .about00-txt-cp { width: 92%; padding: 18px 24px; }
    .data-item .head01 h4 { font-size: 16px; }
    .data-item .head01 img { width: 50px; margin-left: -7px; }
    .data-item .head01 img.icon01 { margin-right: 3px; }
    .data-item .main { font-size: 20px; }
    .data-item .main .num { font-size: 46px; }
    .data-item .sub { font-size: 14px; }
    .data-item .content02 { gap: 12px; }
    .data-item .list-box .list { font-size: 16px; }
    .data-item .list-box .list .num { font-size: 22px; }

    .talk-list-content .talk00-txt h4 { font-size: 18px; }

    .env-list-box .img { width: 142px; }
    .env-list-box .txt { width: 100%; }

    .staff-hd .prof-item {
        font-size: 12px;
        position: relative;
        inset: 0;
        transform: translateY(0);
        width: fit-content;
        min-width: 260px;
        margin-inline: auto;
        padding: 42px 36px;
    }
    .prof-item .name { font-size: 22px; }
    .prof-item .name .txt-cp { font-size: 16px; }

    #cpage .staff-content h2 { font-size: 24px; padding-bottom: 36px; }
    #cpage .staff-content p { font-size: 15px; }
    #cpage .staff-content .sec-inner-end,
    #cpage .staff-content .sec-inner-start {
        padding-right: var(--content-side)!important;
        padding-left: var(--content-side)!important;
    }
    .pt-60,
    .pt-100 { padding-top: 0; }

    .holiday-box { padding: 30px 26px; }

    #cpage .talk-content .talk-box p { font-size: 14px; padding-left: 4em; }
    #cpage .talk-content .talk-box p .name { top: 1px; font-size: 13px; }
}