@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

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



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

/*  header
------------------------------------------------------------------*/
header{
    --header-bg: var(--primary-light-color);
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 40px;
    background: var(--header-bg);
    z-index: 1000;
}
header.scroll{
    --header-bg: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    transition: .2s ease-out;
}
header.scroll.show{
    transform: translateY(0);
}
@media screen and (max-width:991px){
    header{
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        column-gap: 30px;
    }
    header.scroll{
        display: none;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: block;
    margin-left: 20px;
    margin-right: auto;
    z-index: 1;
}
@media screen and (max-width:1699px){
    .header-logo{
        width: 460px;
        margin-left: 10px;
    }
}
@media screen and (max-width:1199px){
    .header-logo{
        width: 360px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 280px;
        margin-left: 4px;
    }
}
@media screen and (max-width:374px){
    .header-logo{
        width: 240px;
    }
}
/*  header-detail
------------------------------------------------------------------*/
.header-detail{
    flex-shrink: 0;
    margin-top: 30px;
    margin-right: 40px;
}
@media screen and (max-width:1699px){
    .header-detail{
        margin-top: 24px;
        margin-right: 30px;
    }
}
@media screen and (max-width:1399px){
    .header-detail{
        margin-top: 20px;
        margin-right: 20px;
    }
}
@media screen and (max-width:1199px){
    .header-detail{
        margin-top: 16px;
        margin-right: 16px;
    }
}
@media screen and (max-width:991px){
    .header-detail{
        position: fixed;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        padding: 80px 0 100px;
        margin-top: 0;
        margin-right: 0;
        background: #fff;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-out;
        z-index: 3;
    }
    .header-detail.open{
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-detail::-webkit-scrollbar{
        display: none;
    }
}
/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    --base-ls: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: .25em;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}
.header-tel .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.125em;
    aspect-ratio: 1 / 1;
    background: var(--accent-color);
    border-radius: 3px;
}
.header-tel .icon i{
    font-size: .5em;
    color: #fff;
}
@media screen and (max-width:1699px){
    .header-tel{
        font-size: 2rem;
    }
}
@media screen and (max-width:1399px){
    .header-tel{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:1199px){
    .header-tel{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:991px){
    .header-tel{
        justify-content: center;
        order: 3;
        font-size: 2rem;
    }
}
/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    column-gap: 40px;
    margin-top: 8px;
}
@media screen and (max-width:1699px){
    .header-nav{
        column-gap: 30px;
        margin-top: 4px;
    }
}
@media screen and (max-width:1399px){
    .header-nav{
        column-gap: 20px;
        margin-top: 0;
    }
}
@media screen and (max-width:1199px){
    .header-nav{
        column-gap: 12px;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        display: block;
        order: 1;
    }
}
/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 4.3em;
    letter-spacing: 0;
    line-height: 1.4;
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav-item::before{
    position: absolute;
    top: .75em;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    content: "";
    transition: .2s ease-out;
}
.header-dropdown .header-nav-item::after{
    margin-left: .5em;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* アクティブ時動作 */
.header-nav-item.active{
    color: var(--primary-color);
}
.header-nav-item.active::before{
    opacity: 1;
    visibility: visible;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-item:hover{
        color: var(--primary-color);
    }
    .header-nav-item:hover::before{
        opacity: 1;
        visibility: visible;
    }
}
@media (hover:none) {
    .header-nav-item:active{
        color: var(--primary-color);
    }
    .header-nav-item:active::before{
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width:1699px){
    .header-nav-item{
        font-size: 1rem;
    }
}
@media screen and (max-width:1399px){
    .header-nav-item{
        font-size: .875rem;
    }
}
@media screen and (max-width:1199px){
    .header-nav-item{
        font-size: .8125rem;
    }
}
@media screen and (max-width:991px){
    .header-nav-item{
        height: 3.5em;
        padding: 0 1em;
        border-bottom: 1px solid #ccc;
        font-size: 1rem;
    }
    .header-nav-item::before{
        display: none;
    }
    .header-nav-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
    }
}
/*  header-dropdown
------------------------------------------------------------------*/
.header-dropdown{
    position: relative;
    cursor: pointer;
    z-index: 1;
}
@media screen and (max-width:991px){
    .header-dropdown{
        font-size: 1rem;
    }
    .header-dropdown::after{
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(3.5em - 1px);
        height: calc(3.5em - 1px);
        background: var(--primary-color);
        content: "＋";
        color: #fff;
        z-index: 2;
    }
}
/*  header-dropdown-menu
------------------------------------------------------------------*/
.header-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 380px;
    background: var(--header-bg);
    z-index: 1;
}
@media screen and (max-width:1699px){
    .header-dropdown-menu{
        width: 340px;
    }
}
@media screen and (max-width:1199px){
    .header-dropdown-menu{
        width: 300px;
    }
}
@media screen and (max-width:991px){
    .header-dropdown-menu{
        position: relative;
        top: initial;
        left: initial;
        transform: initial;
        width: auto;
    }
}
/*  header-dropdown-menu-item
------------------------------------------------------------------*/
.header-dropdown-menu-item{
    position: relative;
    display: block;
    padding: 1em;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.header-dropdown-menu-item.active{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-dropdown-menu-item:hover{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .header-dropdown-menu-item:active{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1699px){
    .header-dropdown-menu-item{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .header-dropdown-menu-item{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .header-dropdown-menu-item{
        border-bottom: 1px solid #ccc;
        text-align: left;
    }
    .header-dropdown-menu-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: 10px;
        font-weight: bold;
    }
}
/*  header-ofiice
------------------------------------------------------------------*/
.header-ofiice{
    display: none;
}
@media screen and (max-width:991px){
    .header-ofiice{
        display: block;
        padding: 20px;
        order: 2;
    }
}
/*  header-ofiice-logo
------------------------------------------------------------------*/
.header-ofiice-logo{
    display: block;
    padding: 0 16px;
    margin-bottom: 20px;
    text-align: center;
}
/*  header-ofiice-address
------------------------------------------------------------------*/
.header-ofiice-address{
    margin-bottom: 10px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
}
/*  header-ofiice-map
------------------------------------------------------------------*/
.header-ofiice-map{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 1em 2em;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-access:hover{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media (hover:none) {
    .header-nav-access:active{
        background: var(--accent-color);
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60px;
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .text {
        font-size: .75rem;
        color: #fff;
        text-align: center;
        letter-spacing: 0;
        line-height: 1;
    }
    .header-hamburger .lines {
        position: relative;
        width: calc(100% * .416);
        height: calc(100% * .28);
        margin: 8px 0;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
        width: 100%;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
        width: 100%;
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
        width: 100%;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 50% !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 50% !important;
    }
}
@media print {
    .header-hamburger{
        position: absolute;
    }
}
/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}
.header-overlay.open{
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 150px 0 60px;
    background: url(../images/common/footer-bg.jpg) no-repeat bottom center / contain,
                var(--primary-light-color);
    z-index: 1
}
@media screen and (max-width:1399px){
    footer{
        padding: 120px 0 60px;
    }
}
@media screen and (max-width:1199px){
    footer{
        padding: 100px 0 60px;
    }
}
@media screen and (max-width:991px){
    footer{
        padding: 80px 0 40px;
    }
}
@media screen and (max-width:767px){
    footer{
        padding: 60px 0 40px;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    width: 420px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .footer-logo{
        width: 240px;
        margin: 0 auto 30px;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        row-gap: 40px;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    display: block;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0;
    transition: .2s ease-out;
}
.footer-address i{
    color: var(--accent-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-address:hover{
        text-decoration: underline;
        color: var(--primary-color);
    }
    .footer-address:hover i{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .footer-address:active{
        text-decoration: underline;
        color: var(--primary-color);
    }
    .footer-address:active i{
        color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
@media screen and (max-width:374px){
    .footer-address{
        font-size: .875rem;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    font-size: 1.125rem;
    line-height: 1.5;
    --base-ls: 0;
}
@media screen and (max-width:991px){
    .footer-tel{
        text-align: center;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-template-rows: 1fr;
    row-gap: 24px;
    line-height: 1;
}
@media screen and (max-width:991px){
    .footer-nav{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
@media screen and (max-width:575px){
    .footer-nav{
        grid-template-columns: 1fr;
    }
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    --base-ls: 0;
    transition: .2s ease-out;
    z-index: 1;
}
.footer-nav-item::before{
    margin-right: .5em;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--accent-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--primary-color);
    }
    .footer-nav-item:hover::before{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .footer-nav-item:active{
        color: var(--primary-color);
    }
    .footer-nav-item:active::before{
        color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .footer-nav-item{
        display: flex;
        align-items: center;
        height: 3.5em;
        padding: 0 1.5em 0 1em;
        background: #fff;
        border-radius: 4px;
        font-size: .875rem;
    }
    .footer-nav-item::before{
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        margin-right: initial;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 14px;
    line-height: 1;
}
@media screen and (max-width:991px){
    .copyright{
        font-size: 12px;
        text-align: center;
    }
}


/*-----------------------------------------------------------------
  common contact
------------------------------------------------------------------*/

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0;
    background: url(../images/common/common-contact-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    margin-top: -25px;
    z-index: 2;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 80px 0;
        border-radius: 12px 12px 0 0;
        margin-top: -12px;
    }
}
@media screen and (max-width:767px){
    .common-contact{
        padding: 60px 0;
    }
}


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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 120px 0;
    background: #000;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .page-top{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 60px 0;
    }
}
/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}
.page-top-title .jp{
    display: block;
    margin-bottom: 0.3em;
    font-weight: bold;
}
.page-top-title .en{
    display: block;
    font-size: max(0.6em,0.875rem);
    font-weight: bold;
    color: var(--primary-color);
}
@media screen and (max-width:1199px){
    .page-top-title{ font-size: 2rem;}
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 1.75rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.5rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 1.375rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: brightness(.4);
    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);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    position: absolute;
    bottom: 12px;
    left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    z-index: 2;
}
.breadcrumb > li{
    color: #fff;
    --letter-spacing: 0;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--primary-color);
    transition: .2s;
    text-decoration: underline;
}
.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;
    background: #ccc;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #73574d !important;
    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(--accent-color);
    }
}
@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;
}
#pagetop-btn img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 991px) {
    #pagetop-btn img{
        width: 40px;
        height: auto;
    }
}