@charset "utf-8";
/*　ヘッダー　*/
.header {
    position: sticky;
    top: 0;
    background-color: #FFF;
    z-index: 1000;
}

.header-container {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow-y: visible;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-logo {
    margin: 5px 10px;
    line-height: 1;
}

.header-logo a {
    line-height: 1;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.header-logo img {
    max-height: 70px;
    width: auto;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.skip-link {
    position: absolute;
    top: -100px;
    font-size: 10px;
    width: 10em;
}

.skip-link:focus {
    top: 0px;
}

.header-contact {
    line-height: 1.1;
}

.header-contact a {
    text-decoration: none;
    border: none;
    color: inherit;
}

.header-contact-upper {
    font-size: 1.5rem;
}
.header-contact-upper > .header-contact-term {
    width: 4em;
    display: inline-block;
}

.header-contact-lower {
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-contact-lower-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.header-contact-term {
    font-size: 0.7rem;
    margin-right: 0.5em;
}

.header-contact-close {
    font-size: 0.7rem;
    margin-left: 0.5em;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-button {
    margin: 10px;
}

.header-button a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75em 1em;
    border-radius: 6px;
    line-height: 1.2;
    background-color: var(--header-button);
    color: #FFF;
    font-weight: bold;
}

.header-tel-sp {
    display: none;
}

/* ハンバーガーボタン */
.hamburger {
    width: var(--burg-btn-size);
    height: var(--burg-btn-size);
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.burg-line-tc {
    display: block;
}

.burg-line-tc::before {
    content: "";
    display: block;
    background-color: #000;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 5px;
    left: 1px;
}

.burg-line-tc::after {
    content: "";
    display: block;
    background-color: #000;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 15px;
    left: 1px;
}

.burg-line-b {
    display: block;
    background-color: #000;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 25px;
    left: 1px;
}

.burg-text {
    display: block;
}

.burg-text::before {
    content: "menu";
    position: absolute;
    top: 27px;
    left: 4px;
    font-size: 12px;
}

/* ハンバーガーボタン クリック後 */
.js-open .burg-line-tc::before {
    transform: rotate(45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-tc::after {
    transform: rotate(-45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-b {
    width: 0px;
}

.js-open .burg-text::before {
    content: "close";
}

/* グローバルナビゲーション */
.toggle-menu {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: visible;
}

.toggle-menu a {
    display: block;
    padding: 5px;
    color: var(--color-text);
}

.toggle-menu a:hover {
}

.hamburger {
    display: none;
}

.header-logo {
    
}

.toggle-menu {
    display: flex;
    position: relative;
}

.toggle-menu .sub-menu {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFF;
}

.toggle-menu :where(.menu-item:hover)>.sub-menu {
    height: auto;
}


.page_item {
    display: inline-block;
}

.page_item a {
    display: block;
    width: 100%;
    padding: 0.5em;
    color: var(--color-text);
}

.current-menu-item {
    position: relative;
}

.current-menu-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: var(--header-button);
}

.page_item_has_children {}

.gnav {}

/* フッター */
.footer {
    padding-top: 20px;
    background-color: #FFF;
    position: relative;
}

.footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--grad-separator);
}

.footer h3 {
    margin: 0;
    font-size: var(--fs-20);
    text-align: center;
}

.footer-container {
    width: var(--container);
    max-width: 100%;
    margin: auto;
    padding: 50px 10px;
    display: flex;   
    flex-direction: row-reverse;
}

.footer-logo img {
    width: 150px;
}

.fnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.fnav li {
    width: max(33.3% , 7em);
    margin-bottom: 5px;
}

.fnav a {
    padding: 0.4em;
    display: block;
    text-align: center;
    color: inherit;
}

.fnav .current-menu-item::after {
    display: none;
}

.footer-tel a {
    color: inherit;
}

.footer-map {
    width: 50%;
}

.footer-map h3 {
    text-align: right;
}

.footer-map h3 img {
    height: 80px;
    width: auto;
}

.footer-map .gmap {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0;
    padding-bottom: 50%;
}

.footer-text {
    padding: 80px 10% 0 0;
    width: 50%;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    background-color: var(--color-gray);
    padding: 20px 10px;
    margin: 0;
}

/* breadcrumb パンくずリスト */
.breadcrumb {
    padding: 10px 0;
    width: 100%;
    max-width: var(--container);
    margin: auto;
}

:where(.breadcrumb) ul {
    list-style: none;
    padding: 0;
}

:where(.breadcrumb) li {
    display: inline-block;
    margin-right: 1em;
}

:where(.breadcrumb) li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5em;
}

:where(.breadcrumb) a:link,
:where(.breadcrumb) a:visited {
    color: var(--color-text);
}

:where(.breadcrumb) a:hover,
:where(.breadcrumb) a:active {
    color: var(--color-link-text);
}

/* 共通 */
.bg-green {
    background-color: var(--color-bg);
}

.wbr,
.ib,
.inline-block {
    display: inline-block;
}

h1 img {
    max-height: 100px;
    max-width: 90%;
}

.sign {
    text-align: right;
    font-size: 0.85em;
}

.marker {
    padding: 0em 0.5em;
    line-height: 1.2;
    background: linear-gradient(to top, var(--color-yellow) 40%, transparent 40%);
    display: inline-block;
}

.lead {
    width: fit-content;
    margin-inline: auto;
}

.white-box {
    background-color: #FFF;
    padding: clamp(1rem, 6vw ,4.5rem);
    border-radius: 12px;
    margin: 3rem auto;
}

.white-box h2 {
    font-size: 1.3rem;
    margin: 2.3em 0 1rem 0;
}

.white-box h2:first-child {
    margin-top: 0;
}

.gray-box {
    background-color: var(--color-gray);
    padding: 1.5rem clamp(1rem, 6vw ,4.5rem);
    border-radius: 12px;
    margin: 1.5rem auto;
}

.flex-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.flex-list li {
    padding: 0.3em;
    width: 50%;
}

.table-dl {
    width: auto;
}

.table-dl th {
    text-align: left;
    border: none;
}

.table-dl td {
    border: none;
}

.number-list {
    border: 1px solid var(--color-theme);
    padding: 0.5rem 1.5rem 0.5rem 3rem;
    width: fit-content;
    margin: 2rem auto;
    border-radius: 1rem;
    list-style: none;
}

.number-list li {
    margin: 1em 0;
    line-height: 1.4;
    font-weight: 600;
}

.number-list .num {
    display: inline-block;
    text-align: center;
    padding: 0.1em;
    width: 1.4em;
    height: 1.4em;
    vertical-align: text-bottom;
    line-height: 1;
    color: #FFF;
    background-color: var(--color-theme);
    border-radius: 0.7em;
    margin-right: 0.6em;
    margin-left: -2em;
}



/* ボタン */
.button {
    text-align: right;
    margin: 3em 0 3em 0;
}

.button a {
    background-color: var(--color-button);
    color: #FFF;
    position: relative;
    padding: 0.7em 2em 0.5em 1.8em;
    border-radius: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    box-shadow: 4px 3px 0px var(--color-button-shadow);
}

.button a::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    top: calc(50% - 0.4em);
    right: 0.8em;
    border-left: 0.4em solid #FFF;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
}

.button a:hover {
    background-color: var(--color-button-shadow);
    box-shadow: 4px 3px 0px var(--color-button);
    opacity: 1;
}

.button-center {
    text-align: center;
    margin: 3em auto;
    padding: 10px;
}

.button-center a {
    background-color: var(--color-button);
    color: #FFF;
    position: relative;
    padding: 0.4em 2em 0.5em 1.8em;
    border-radius: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    box-shadow: 4px 3px 0px var(--color-button-shadow);
}

.button-center a::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    top: calc(50% - 0.4em);
    right: 0.8em;
    border-left: 0.4em solid #FFF;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
}

.button-center a:hover {
    background-color: var(--color-button-shadow);
    box-shadow: 4px 3px 0px var(--color-button);
    opacity: 1;
}

.button-link {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    text-align: center;
}

.button-link a {
    background-color: var(--color-button);
    color: #FFF;
    position: relative;
    padding: 0.4em 2em 0.5em 1.8em;
    border-radius: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    box-shadow: 4px 3px 0px var(--color-button-shadow);
}

.button-link a::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    top: calc(50% - 0.4em);
    right: 0.8em;
    border-left: 0.4em solid #FFF;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
}

.button-link a:hover {
    background-color: var(--color-button-shadow);
    box-shadow: 4px 3px 0px var(--color-button);
    opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border: 1px solid #333;
    border-radius: 5px;
    padding: 5px;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    border: none;
    background-color: var(--color-button);
    color: #FFF;
    position: relative;
    padding: 0.7em 1.8em 0.7em 2em;
    margin: 3rem auto 0;
    border-radius: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    box-shadow: 4px 3px 0px var(--color-button-shadow);
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: var(--color-button-shadow);
    box-shadow: 4px 3px 0px var(--color-button);
    opacity: 1;
}

select {
    background-color: #FFF;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #333;
}

option {
    background-color: #FFF;
    padding: 5px 10px;
}

.contact-send {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-contents {
    background-color: #FFF;
    border-radius: 1rem;
    padding: 2rem;
}

/* ページ送り　pagenation ページネーション */

.pagenation {
    width: 100%;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    min-height: 40px;
    min-width: 40px;
    line-height: 1;
    border-radius: 2em;
    background: linear-gradient(-45deg, #EEE 0%, #F5F5F5 100%);
    box-shadow: 2px 2px 10px #CCC;
    margin: 0 4px;
    border-top: #FFF 1px solid;
    border-left: #FFF 1px solid;
}

.page-numbers:hover {
    border-bottom: none;
}

.current {
    background-color: #EEE;
    box-shadow: none;
}

/* カードレイアウト */
.card {
    position: relative;
    padding: 0 0 60px 0;
    box-shadow: var(--box-shadow);
}

.card-post-title {
    font-size: 1rem;
    margin: 10px;
}

.card-post-excerpt {
    font-size: var(--fs-14);
    margin: 10px;
}

.no-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    justify-content: center;
    align-items: center;
    background-color: #DDD;
}

.small-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    text-align: center;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.small-img img {
    width: 100%;
    height: auto;
}

.card-more {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    text-align: center;
}

.card-more-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding: 0.5em 0.75em;
    min-width: 8em;
    border-radius: 2px;
    background-color: var(--color-theme);
    color: var(--color-theme-text);
    box-shadow: var(--box-shadow);

}

/* セクションレイアウト */
article {
    margin: 0 auto 40px;
}

.bg-leaf {
    background-image: url("../img/leaf-img-left.png"), url("../img/leaf-img-right.png");
    background-size: 200px auto, 200px auto;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
}

/* --2カラム構成の設定 ここまで-- */

/* トップページ */
.top-kv {
    width: 100%;
}

.top-kv img {
    width: 100%;
    vertical-align: top;
}

:where(.top-main) h3 {
    text-align: center;
	font-size: 2.1rem;
}

:where(.top-main) p {
    line-height: 1.75;
    font-size: 1.2rem;
    margin: 0;
}

.top-news {
    position: relative;
}

.top-news::before {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    background: var(--grad-separator);
    position: absolute;
    top: 0;
    left: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    border-top: 3px solid #FFF;
    max-width: 800px;
    margin: 1rem auto 5rem;
}

.info-list-item {
    padding: 1em 1% 1em 5%;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 3px solid #FFF;
    line-height: 1.3;
}

.info-list-item > a {
    color: #000;
    font-size: 1.4em;
    font-weight: normal;
    margin: 0 1em;
    width: calc(100% - 12rem);
}

.info-list-category a {
    width: 6rem;
    display: inline-block;
    text-align: center;
    color: #FFF;
    padding: 3px 5px 2px;
    font-weight: bold;
    font-size: 0.85em;
    border-radius: 5px;
    letter-spacing: 1px;
    background-color: var(--color-green);
}

.info-list-category .cat-news {
    background-color: var(--color-red);
}

.info-list-category .cat-works {
    background-color: var(--color-blue);
}

.new-label {
    display: inline-block;
    width: 4rem;
    color: var(--color-red);
}

.info-list-date {
    margin-right: 1em;
}

.info-list-button {
    font-size: 18px;
    max-width: 800px;
    text-align: right;
    margin: auto;
}

.top-reqruit {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 5px;
}

/* 固定ページ */
.page-kv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.page-kv img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.main-about th {
    width: 6em;
    vertical-align: top;
}

.main-about h1 {
    margin: 0 auto;
}

.main-about .white-box {
    margin-bottom: 7rem;
}

.flow-day-timeline {
    padding: 1rem 5px;
}

.flow-day-img {
    padding: 0 5px;
}

.reqruit-voice {
    background-color: var(--color-bg);
    padding: 0 0 6rem 0;
    border-radius: 1rem;
    position: relative;
}

.reqruit-voice h3 {
    margin: 0;
    padding: 10px;
}

.reqruit-voice-text {
    background-color: var(--color-gray);
    margin: 10px;
    padding: 10px 1rem;
    border-radius: 12px;
}
.reqruit-voice p {
    padding: 0;
    margin: 0;
}

.reqruit-voice .button-center {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
}

p.img {
    margin: 0;
    line-height: 1;
    vertical-align: top;
    padding: 0;
}

.img img {
    margin: 0;
    vertical-align: top;
}

.qa {
    background-color: var(--color-bg);
    margin: 20px auto;
    border-radius: 16px;
    padding: 10px;
}

.qa img {
    vertical-align: middle;
    margin-right: 10px;
    height: 2.4rem;
}

.q {
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0 24px 0 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.2rem;
}

.a {
    background-color: #FFF;
    margin: 0;
    padding: 6px 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
}

.main-faq h2 {
    margin-block: 3.5em 1em;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 80px auto;
}

.button-container .button {
    margin: 0;
}

.page-template-default .main {
    background-color: var(--color-bg);
    padding: 0 10px;
}

.box-leaf {
    background-color: #FFF;
    border-radius: 1rem;
    position: relative;
    padding: 0px 0 4rem;
    background-image: url("../img/bg-leaf.webp");
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: bottom right;
}

.box-text {
    padding: 1rem;
}

.container.white-box {
    padding: 2rem;
}

.staff-img img {
    max-width: 480px;
    width: 100%;
}

.page-title {
    font-size: 2rem;
    width: fit-content;
    margin: 0.6em auto 1em;
}

/* archiveページ */

/* 投稿ページ */
.post-nav {
    width: 100%;
    max-width: var(--container);
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-bg-gray);
}

.post-nav a {
    padding: 10px 0;
    display: inline-block;
}

/* パララックス設定 */
.imgcontainer {
    min-height: 100vh;
}

.paracontent {
    min-height: 100vh;
}