@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/

.sp.tb,
.sp {
    display: none;
}

.tb {
    display: none;
}

.pc.tb,
.pc {
    display: block;
}

@media screen and (max-width:767px) {
    .sp {
        display: none;
    }
    .sp.tb,
    .pc.tb,
    .tb {
        display: block;
    }
    .pc {
        display: none;
    }
}

@media screen and (max-width:575px) {
    .sp.tb,
    .sp {
        display: block;
    }
    .pc.tb,
    .tb {
        display: none;
    }
    .pc {
        display: none;
    }
}

.f-point {
    font-family: var(--point-font);
}

.f-en {
    font-family: var(--en-font);
}

.bg-orange {
    background-color: var(--primary-light-color);
}

.bg-2 {
    background-color: #FBE3C1;
}

.text-c-orange {
    color: var(--primary-color);
    font-weight: bold;
}

.blur {
    position: absolute;
    background-image: url(../images/common/blur.png);
    aspect-ratio: 1;
    width: 1000px;
    z-index: -2;
}

.film {
    position: absolute;
    background-image: url(../images/common/film.png);
    aspect-ratio: 693 / 928;
    background-size: contain;
    width: 694px;
    z-index: -1;
}

.film-slim {
    position: absolute;
    background-image: url(../images/common/film_1.png);
    aspect-ratio: 365 / 1073;
    background-size: contain;
    width: 365px;
    z-index: -1;
}
@media (max-width: 992px) {
   .film,
   .film-slim {
        opacity: .4;
    }
}


.child-page {
    margin-top: 100px;
    overflow: hidden;
}

@media screen and (max-width:1399px) {
    .child-page {
        margin-top: 72px;
    }
}

@media screen and (max-width:1199px) {
    .child-page {
        margin-top: 68px;
    }
}


/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/


/*  header
------------------------------------------------------------------*/

header {
    --header-height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 40px;
    background: rgba(255, 255, 255, .8);
    transition: .2s ease-out;
    z-index: 1000;
    box-shadow: 0 0px 16px 0 rgba(67, 42, 9, .1);
}

@media screen and (max-width:1399px) {
    header {
        --header-height: 72px;
        padding: 0 0 0 20px;
    }
}

@media screen and (max-width:1199px) {
    header {
        --header-height: 52px;
        column-gap: 16px;
        padding: 8px 8px 8px 20px;
        border-radius: initial;
    }
}


/*  header-logo
------------------------------------------------------------------*/

.logo {
    display: block;
    margin: 0;
}

.logo a {
    color: var(--brown-color);
    font-size: .65rem;
    font-weight: 570;
    letter-spacing: .06em;
    display: block;
}

.logo .name {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.25;
}

.logo .name span {
    letter-spacing: -.1em;
}

.header-logo {
    line-height: 1;
    display: block;
    width: 188px;
    padding-top: 4px;
}

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

@media screen and (max-width:576px) {
    .logo a {
        font-size: .6rem;
    }
    .logo .name {
        font-size: 1.2rem;
    }
}
@media screen and (max-width:360px) {
    .logo .name {
        font-size: 1rem;
    }
}

/*  header-gnav
------------------------------------------------------------------*/

.header-gnav {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-shrink: 0;
}

.header-gnav div {
    opacity: 1;
    filter: brightness(1);
    transition: .2s ease-in-out;
}

.header-gnav .header-gnav-pdf:hover,
.header-gnav .header-gnav-contact:hover {
    filter: brightness(1.1);
}

@media screen and (max-width:1399px) {
    .header-gnav {
        column-gap: 24px;
    }
}

@media screen and (max-width:1199px) {
    .header-gnav {
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        padding: 60px 0 100px;
        background: #fff;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-out;
        z-index: 3;
    }
    .header-gnav.open {
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-gnav::-webkit-scrollbar {
        display: none;
    }
}


/*  header-gnav
------------------------------------------------------------------*/

.header-gnav-list {
    display: flex;
    align-items: center;
    column-gap: 34px;
}

@media screen and (max-width:1599px) {
    .header-gnav-list {
        column-gap: 30px;
    }
}

@media screen and (max-width:1399px) {
    .header-gnav-list {
        padding-inline: 30px;
        column-gap: 24px;
    }
}

@media screen and (max-width:1200px) {
    .header-gnav-list {
        padding-inline: 8px;
    }
}

@media screen and (max-width:1199px) {
    .header-gnav-list {
        display: block;
        margin-bottom: 20px;
    }
}


/*  header-gnav-list-item
------------------------------------------------------------------*/

.header-gnav-list-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height);
    font-weight: 500;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
    color: var(--black-color);
}

.header-gnav-list-item.active {
    color: var(--primary-color);
}

.header-gnav-list-item:hover {
    color: var(--primary-color);
}


/* ホバー時動作 */

@media (hover:hover) {
    .header-gnav-list-item:hover::before {
        opacity: 1;
    }
}

@media screen and (max-width:1399px) {
    .header-gnav-list-item {
        font-size: .875rem;
    }
}

@media screen and (max-width:1199px) {
    .header-gnav-list-item {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        column-gap: .5em;
        height: auto;
        padding: 1.25em 1em;
        border-bottom: 1px solid var(--brown-color);
        transition: .2s ease-out;
        z-index: 1;
        font-size: 1.25rem;
    }
    .header-gnav-list-item::before {
        display: none;
    }
    /* アクティブ時動作 */
    .header-gnav-list-item.active {
        color: var(--primary-color);
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        .header-gnav-list-item:hover {
            color: var(--primary-color);
        }
    }
}


/*  header-gnav-pdf
------------------------------------------------------------------*/

.header-gnav-pdf a {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    letter-spacing: 0;
}

.header-gnav-pdf a span {
    letter-spacing: 0;
}

.header-gnav-pdf a .icon {
    width: 23px;
}

.header-gnav-pdf a .icon img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:1599px) {
    .header-gnav-pdf a {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:1199px) {
    .header-gnav-pdf a {
        padding: .75em 1em;
        font-size: 1.25rem;
        margin: 0 20px;
        color: var(--black-color);
    }
}


/*  header-gnav-tel
------------------------------------------------------------------*/

.header-gnav-tel,
.nav-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    /* column-gap: 12px; */
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    letter-spacing: .03em;
}

.header-gnav-tel span,
.header-gnav-tel a span {
    letter-spacing: -.01em;
    color: var(--primary-color);
}

.header-gnav-tel .icon {
    width: 23px;
    height: 23px;
    margin: 0;
    flex: 0 0 23px;
}

.header-gnav-tel .icon img {
    height: 100%;
    object-fit: contain;
    display: block;
}

@media screen and (max-width:1599px) {
    .header-gnav-tel {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:1199px) {
    .header-gnav-tel {
        padding: .75em 1em;
        font-size: 1.25rem;
        margin: 0 20px 10px;
    }
}


/*  header-gnav-contact
------------------------------------------------------------------*/

.header-gnav-contact {
    height: var(--header-height);
    width: 230px;
    background: var(--gradient-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.header-gnav-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(10px, .7vw);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    letter-spacing: 0;
    width: 100%;
    height: 100%;
}

.header-gnav-contact a span:first-of-type {
    font-size: 1.5rem;
    align-items: center;
    font-weight: 700;
}

.header-gnav-contact a .icon {
    width: 30px;
    margin-right: 8px;
}

.header-gnav-contact a .icon img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:1199px) {
    .header-gnav-contact {
        width: 100%;
        height: auto;
        padding: 0 8px;
    }
    .header-gnav-contact a {
        gap: 10px;
        padding: 1rem 0;
    }
}


/*  header-gnav-detail
------------------------------------------------------------------*/

.header-gnav-detail {
    display: none;
}

@media screen and (max-width:1199px) {
    .header-gnav-detail {
        display: block;
        padding: 20px 12px;
    }
}


/*  header-gnav-logo
------------------------------------------------------------------*/

.header-gnav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    letter-spacing: .1em;
}


/*  header-gnav-address
------------------------------------------------------------------*/

.header-gnav-address {
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}


/*  header-gnav-map
------------------------------------------------------------------*/

.header-gnav-map {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: fit-content;
    margin: 0 auto 4px;
    padding: 1em 2em;
    background: var(--primary-color);
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}


/*  header-hamburger
------------------------------------------------------------------*/

.header-hamburger {
    display: none;
}

@media screen and (max-width:1199px) {
    .header-hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: var(--header-height);
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: 24px;
        height: 16px;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-45deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(45deg);
        top: 6px !important;
    }
}


/*  header-overlay
------------------------------------------------------------------*/

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background: rgba(0, 0, 0, .8); */
    background: rgba(67, 42, 9, .9);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}

.header-overlay.open {
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/

footer {
    position: relative;
    padding: 7.5rem 0 1rem;
    z-index: 1;
    background-color: var(--primary-light-color);
    /* color: var(--white-color); */
    overflow: hidden;
}

@media screen and (max-width:1199px) {
    footer {
        padding: 4rem 0 1rem;
    }
}

footer .blur.top-left {
    top: -500px;
    left: -500px;
}

footer .blur.bottom-right {
    bottom: -500px;
    right: -500px;
}

footer a {
    opacity: 1;
}

footer a:hover {
    opacity: .8;
}
/*  footer-wrapper
------------------------------------------------------------------*/

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 7.5rem;
}

@media screen and (max-width:1599px) {
    .footer-wrapper {
        margin-bottom: 60px;
    }
}

@media screen and (max-width:1199px) {
    .footer-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: initial;
        row-gap: 1rem;
        margin-bottom: 1rem;
    }
}


/*  footer-logo
------------------------------------------------------------------*/

.footer-logo {
    margin-top: .3em;
    width: 188px;
}

@media screen and (max-width:1199px) {
    .footer-logo {
        margin-inline: auto;
    }
}

.footer-detail .logo {
    margin-bottom: 3rem;
}

@media screen and (max-width:1199px) {
    .footer-detail .logo {
        text-align: center;
    }
}

.footer-detail .logo a {
    color: var(--brown-color);
    font-size: .75rem;
    letter-spacing: .06em;
    display: block;
}

@media screen and (max-width:767px) {
    .footer-detail .logo a {
        font-size: .65rem;
        line-height: 1.25;
    }
}


/*  footer-address
------------------------------------------------------------------*/

footer .logo .name {
    font-size: 1.625rem;
}

@media screen and (max-width:767px) {
    footer .logo .name {
        font-size: 1.4rem;
    }
}

footer .nav-tel {
    justify-content: left;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
}

footer .nav-tel span,
footer .nav-tel span a {
    color: var(--primary-color);
}

footer .tel:nth-last-child {
    font-size: .75rem;
}

.footer-info,
.footer-address {
    font-size: .875rem;
}

@media screen and (max-width:1199px) {
    .footer-info,
    .footer-address,
    footer .tel p {
        text-align: center;
    }
    .footer-info {
        margin-bottom: 1rem;
    }
    footer .nav-tel {
        justify-content: center;
    }
}

.map-icon {
    aspect-ratio: 1 / 1;
    width: 1rem;
    display: inline-block;
    line-height: 1;
}

.footer-address .map-icon {
    width: 11px;
}

.map-icon svg {
    overflow: visible;
}

.cls-1,
.cls-2 {
    fill: var(--primary-color);
    object-fit: contain;
    object-position: bottom;
    transition: .5s ease-in-out;
}

.map-icon:hover .cls-1 {
    fill: var(--primary-deep-color);
}

.map-icon:hover .cls-2 {
    fill: var(--accent-color);
}


/*  footer-tel
------------------------------------------------------------------*/

.footer-tel {
    font-weight: bold;
}

@media screen and (max-width:1199px) {
    .footer-tel {
        font-size: 1rem;
        text-align: center;
    }
}


/*  footer-nav
------------------------------------------------------------------*/

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 5.5rem;
    font-size: 1.125rem;
    padding: 1.5rem 0 0;
}

.footer-nav li {
    font-size: 1rem;
    line-height: 1.2;
    padding-inline: 1.5rem;
    border-right: 1px solid var(--gray-color);
    padding-bottom: 1px;
}

.footer-nav li:last-of-type {
    padding-right: 0;
    border: none;
}

.footer-nav li a {
    opacity: 1;
    transition: .2s ease-out;
}

.footer-nav li a:hover {
    opacity: .6;
}

@media screen and (max-width:1599px) {
    .footer-nav {
        /* column-gap: 40px; */
        margin-bottom: 60px;
    }
}

@media screen and (max-width:1199px) {
    .footer-nav {
        justify-content: center;
    }
}

@media screen and (max-width:767px) {
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 40px;
    }
    .footer-nav li,
    .footer-nav li:last-of-type {
        border: 1px solid var(--brown-color);
        padding: 0;
    }
    .footer-nav-list-item {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        font-size: .75rem;
        z-index: 1;
    }
}


/*  footer-nav
------------------------------------------------------------------*/

.footer-nav-item {
    display: flex;
    align-items: center;
    column-gap: .5em;
    line-height: 1.2;
    transition: .2s ease-out;
    font-size: 1rem;
    letter-spacing: .2em;
}


/* ホバー時動作 */

@media (hover:hover) {
    .footer-nav-item:hover {
        color: var(--primary-color);
    }
}

@media screen and (max-width:767px) {
    .footer-nav-item {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        border: 1px solid #aaa;
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-item::before {
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        font-size: .8em;
    }
}

.footer-contact-area {
    display: flex;
    justify-content: end;
    gap: 2.5rem;
}

@media screen and (max-width:1199px) {
    .footer-contact-area {
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .footer-contact-area {
        flex-direction: column;
        justify-content: top;
        align-items: center;
        gap: 1rem;
    }
}

.footer-gnav-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    font-size: 1.3rem;
    padding: 1rem 1.25rem;
    font-weight: bold;
    background-color: rgba(255, 255, 255, .15);
    color: var(--white-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    letter-spacing: .1em;
}

.footer-gnav-tel a span {
    line-height: 1;
    font-size: 1.3rem;
}

.footer-gnav-tel .icon {
    aspect-ratio: 1 / 1;
    width: 1.125rem;
}

.footer-gnav-tel .icon img {
    width: 100%;
}


/*  footer-gnav-contact
------------------------------------------------------------------*/

.footer-gnav-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
    font-weight: bold;
    color: var(--white-color);
    background: var(--gradient-orange);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    letter-spacing: .1em;
    border-radius: 5rem;
    opacity: 1;
}

.footer-gnav-contact a:hover {
    filter: brightness(120%);
}

.footer-gnav-contact a span {
    letter-spacing: .1em;
}

.footer-gnav-contact a .icon {
    width: 23px;
}

.footer-gnav-contact a .icon img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:1599px) {
    .footer-gnav-contact a {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:1199px) {
    .footer-gnav-tel,
    .footer-gnav-contact {
        min-width: 30%;
    }
}

@media screen and (max-width:991px) {
    .footer-gnav-contact a {
        font-size: 1.25rem;
        color: #fff;
    }
}

@media screen and (max-width: 767px) {
    .footer-gnav-tel,
    .footer-gnav-contact a {
        min-width: 300px;
        min-height: 50px;
    }
}

.footer-right {}


/*  copyright
------------------------------------------------------------------*/

.copyright {
    font-size: .875rem;
    line-height: 1;
    text-align: end;
}

@media screen and (max-width:1199px) {
    .copyright {
        text-align: center;
    }
}


/*-----------------------------------------------------------------
  common page
------------------------------------------------------------------*/


/*  page-top
------------------------------------------------------------------*/

.page-top {
    position: relative;
    padding: 120px 20px 100px;
    overflow: hidden;
    z-index: 1;
}

@media screen and (max-width:991px) {
    .page-top {
        padding: 80px 20px;
    }
}

@media screen and (max-width:767px) {
    .page-top {
        padding: 60px 20px;
    }
}


/*  page-top-title-en
------------------------------------------------------------------*/

.page-top-title-en {
    position: relative;
    font-family: var(--en-font);
    font-size: 9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: start;
    line-height: 1;
    --letter-spacing: .04em;
    z-index: 3;
    filter: drop-shadow(0px 0px .15rem rgba(92, 62, 6, 0.8));
    white-space: nowrap;
}

@media screen and (max-width:1399px) {
    .page-top-title-en {
        font-size: 7rem;
    }
}

@media screen and (max-width:991px) {
    .page-top-title-en {
        font-size: 5.25rem;
    }
}

@media screen and (max-width:575px) {
    .page-top-title-en {
        font-size: 4.75rem;
    }
}


/*  page-top-title-jp
------------------------------------------------------------------*/

.page-top-title-jp {
    position: relative;
    font-size: 1.875rem;
    font-weight: bold;
    letter-spacing: .2em;
    text-align: start;
    line-height: 1.5;
    z-index: 3;
    color: var(--primary-color);
    filter: drop-shadow(0px 0px .1rem rgba(92, 62, 6, 0.8));
}

@media screen and (max-width:1399px) {
    .page-top-title-jp {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:991px) {
    .page-top-title-jp {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .page-top-title-jp {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .page-top-title-jp {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .page-top-title-jp {
        font-size: 1rem;
    }
}


/*  page-top-image
------------------------------------------------------------------*/

.page-top-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}

.page-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: pageTopImage .8s forwards ease-out;
}

@keyframes pageTopImage {
    from {
        opacity: 0;
        /* transform: scale(1.1); */
        /* filter: grayscale(1); */
    }
    to {
        opacity: 1;
        transform: scale(1);        
    }
}

@media screen and (max-width:575px) {
    .page-top-image {
        height: 100%;
    }
}

@media screen and (max-width:374px) {
    .page-top-image {
        width: 100%;
        height: 100%;
    }
}


/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/

.breadcrumb-wrapper {
    background-color: var(--primary-light-color);
    padding-block: .75rem;
}

.breadcrumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 0 .25rem;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.5;
    z-index: 3;
    color: var(--gray-color);
}

.breadcrumb>li+li::before {
    display: inline-block;
    margin-right: 10px;
    content: "＞";
    /* font-weight: bold; */
}

.breadcrumb>li>a {
    /* filter: drop-shadow(0px 0px .1rem rgba(255, 255, 255, 0.3)); */
    color: var(--primary-deep-color);
    transition: .2s;
}

.breadcrumb>li>a:hover {
    color: var(--accent-color);
}

@media screen and (max-width:767px) {
    .breadcrumb {
        /* font-size: 11px; */
    }
}


/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/

.paging {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.paging-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}

.paging-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    transition: .2s ease-out;
}

.paging-text.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
}


/* ホバー時動作 */

@media (hover:hover) {
    .paging-text:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    .paging-text:hover a {
        color: #fff !important;
    }
}

@media screen and (max-width:767px) {
    .paging {
        column-gap: 5px;
    }
    .paging-text {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/

#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    width: 4.375rem;
}

#pagetop-btn img {
    transition: .5s ease;
    transform: translateY(0);
}

#pagetop-btn img:hover {
    filter: brightness(1.1);
    transform: translateY(-.5rem);
}

@keyframes rotates {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width:767px) {
    #pagetop-btn img {
        transform: scale(0.7);
    }
}


/*------------------------------------------------------------------
  float-contact
------------------------------------------------------------------*/


/*  float-contact
------------------------------------------------------------------*/

.float-contact {
    display: none;
}

@media screen and (max-width:767px) {
    .float-contact {
        position: fixed;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        z-index: 999;
    }
}


/*  float-contact-item
------------------------------------------------------------------*/

.float-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    height: 50px;
    font-size: 1.125rem;
    font-weight: bold;
    font-family: var(--en-font);
    color: #fff;
    --letter-spacing: 0;
    line-height: 1;
}

.float-contact-item.phone {
    background: var(--sub-color);
}

.float-contact-item.phone i {
    font-size: .8em;
}

.float-contact-item.mail {
    background: var(--primary-color);
}