@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{
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
    z-index: 1000;
    --header-height: 100px;
}
@media screen and (max-width:1399px){
    header{
        --header-height: 80px;
    }
}
@media screen and (max-width:991px){
    header{
        --header-height: 52px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: block;
    margin-left: 30px;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-logo{
        width: 220px;
        margin-left: 15px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 150px;
        margin-left: 10px;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
@media screen and (max-width:991px){
    .header-nav{
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        padding-top: 50px;
        padding-bottom: 150px;
        background: #fff;
        overflow-y: scroll;
        transition: .2s ease-out;
        z-index: -1;
    }
    .header-nav.is-show{
        transform: translateX(-100%);
    }
    .header-nav::-webkit-scrollbar{
        display: none;
    }
}

/*  header-nav-list
------------------------------------------------------------------*/
.header-nav-list{
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-right: 40px;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-nav-list{
        column-gap: 30px;
        margin-right: 30px;
    }
}
@media screen and (max-width:991px){
    .header-nav-list{
        display: block;
        margin-right: initial;
    }
    .header-nav-list > li{
        border-bottom: 1px solid #ccc;
    }
    .header-nav-list > li:last-of-type{
        border-bottom: initial;
    }
}
/*  header-nav-list-item
------------------------------------------------------------------*/
.header-nav-list-item{
    position: relative;
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-nav-list-item.active{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-list-item:hover{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .header-nav-list-item{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .header-nav-list-item{
        display: block;
        padding: 20px;
    }
    .header-nav-list-item::after{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
    }
}

/*  header-contact
------------------------------------------------------------------*/
.header-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 6px;
    height: var(--header-height);
    padding: 0 20px;
    background: var(--primary-color);
    color: #fff;
    transition: .2s ease-out;
    line-height: 1;
}
.header-contact i{
    display: block;
    font-size: 1.5rem;
}
.header-contact span{
    display: block;
    font-size: .875rem;
}
/* ホバー時動作 */
.header-contact:hover{
    background: var(--accent-color);
}
@media screen and (max-width:1399px){
    .header-contact{
        padding: 0 12px;
    }
    .header-contact i{
        display: inline;
        font-size: 1.375rem;
    }
    .header-contact span{
        display: inline;
        font-size: .75rem;
    }
}
@media screen and (max-width:991px){
    .header-contact{
        position: relative;
        display: block;
        column-gap: 5px;
        height: auto;
        padding: 20px;
    }
    .header-contact::after{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
    }
    .header-contact i{
        display: inline;
        font-size: .875rem;
    }
    .header-contact span{
        display: inline;
        font-size: .875rem;
    }
}

/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: var(--header-height);
    padding: 0 20px;
    background: var(--sub-color);
    --letter-spacing: 0;
    line-height: 1;
}
.header-tel .num{
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
    font-family: var(--en-font);
}
.header-tel .num span{
    font-size: 1.5rem;
}
.header-tel .time{
    font-size: .75rem;
}
@media screen and (max-width:1399px){
    .header-tel{
        padding: 0 12px;
    }
}
@media screen and (max-width:991px){
    .header-tel{
        height: auto;
        padding: 20px;
    }
}
/* 20250616 */
@media screen and (max-width:991px){
    .header-tel{
        padding: 0;
        background-color: transparent;
    }
    .header-tel .num{
        width: calc(100% - 40px);
        margin: 10px auto;
        padding: 15px 20px;
        background-color: var(--sub-color);
        border-radius: 40px;
    }
    .header-tel .time{
        width: 100%;
        padding: 10px 20px;
        background-color: var(--sub-color);
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger {
        position: relative;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 4px;
        width: var(--header-height);
        height: var(--header-height);
        background-color: var(--primary-color);
        cursor: pointer;
        z-index: 2;
    }
    .header-hamburger .lines{
        position: relative;
        width: calc(var(--header-height) * .5);
        height: calc(var(--header-height) * .3);
        z-index: 1;
    }
    .header-hamburger .inner-line {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: .2s ease-out;
    }
    .header-hamburger #line1 {
        top: 0;
    }
    .header-hamburger #line2 {
        top: calc(var(--header-height) * .3 * .5 - 1px);
    }
    .header-hamburger #line3 {
        bottom: 0;
    }
    .header-hamburger.open .inner-line#line1 {
        transform: rotate(-135deg);
        top: calc(var(--header-height) * .3 * .5 - 1px) !important;
    }
    .header-hamburger.open .inner-line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .inner-line#line3 {
        transform: rotate(135deg);
        top: calc(var(--header-height) * .3 * .5 - 1px) !important;
    }
    .header-hamburger .text {
        font-size: var(--en-font);
        font-size: 10px;
        color: #Fff;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.5;
    }
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
    z-index: 999;
}
.header-overlay.is-show{
    opacity: 0.8;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0;
    }
}

/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width:767px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 40px;
        margin-bottom: 30px;
    }
}
/*  footer-about
------------------------------------------------------------------*/
.footer-about{
    flex-shrink: 0;
}
@media screen and (max-width:767px){
    .footer-about{
        text-align: center;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 24px;
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: .875rem;
    line-height: 1.5;
}
.footer-address .map{
    position: relative;
    display: inline-block;
    padding: 0.4em 1em;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-family: var(--en-font);
    font-size: 0.75rem;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s;
}
.footer-address .map i{
    margin-right: 5px;
}
/* ホバー時動作 */
@media (hover: hover) {
    .footer-address .map:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .footer-address{
        flex-direction: column;
        row-gap: 8px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width:374px){
    .footer-address{
        font-size: .75rem;
    }
}

/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    font-family: var(--en-font);
    font-size: .875rem;
    line-height: 1.5;
    --letter-spacing: 0;
}
@media screen and (max-width:767px){
    .footer-tel{
        font-size: 1.25rem;
    }
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3,auto);
    column-gap: 56px;
    row-gap: 24px;
    line-height: 1;
}
@media screen and (max-width:767px){
    .footer-nav{
        grid-auto-flow: row;
        grid-template-rows: initial;
        grid-template-columns: repeat(2,1fr);
        column-gap: 10px;
        row-gap: 10px;
        width: 100%;
    }
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    font-size: 0.875rem;
    transition: .2s;
}
/* ホバー時動作 */
@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 0.8em;
        border: 1px solid #aaa;
        border-radius: 2px;
        color: initial;
    }
    .footer-nav-item::before{
        position: absolute;
        top: 50%;
        right: 0.5em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: .75rem;
        font-weight: bold;
    }
    @media (hover:hover) {
        .footer-nav-item:hover{
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }
    }
    @media (hover:none) {
        .footer-nav-item:active{
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }
    }
}
@media screen and (max-width:575px){
    .footer-nav-item{
        font-size: 0.75rem;
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #999;
    line-height: 1;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}

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

/*  common-contact-item
------------------------------------------------------------------*/
.common-contact-item{
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 300px;
    height: 80px;
    padding: 0 20px;
    background: #fff;
    border-radius: 40px;
    transition: .3s ease-out;
    line-height: 1;
}
.common-contact-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    font-size: 12px;
    color: var(--primary-color);
}
.common-contact-item .tel-title{
    margin-bottom: 4px;
    font-size: 0.75rem;
}
.common-contact-item .tel{
    font-family: var(--en-font);
    --letter-spacing: 0;
}
.common-contact-item .tel span{
    font-size: 1.5em;
}
.common-contact-item .mail-title{
    font-size: 1rem;
    transition: .1s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.common-contact-item:hover{
        background: var(--primary-color);
    }
    a.common-contact-item:hover .mail-title{
        color: #fff;
    }
}
@media (hover:none) {
    a.common-contact-item:hover{
        background: var(--primary-color);
    }
    a.common-contact-item:hover .mail-title{
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .common-contact-tel{
        height: auto;
        padding: 30px;
    }
}
@media screen and (max-width:575px){
    .common-contact-tel .title{
        margin-bottom: 8px;
        font-size: 1.125rem;
    }
    .common-contact-tel .tel{
        font-size: 2.5rem;
    }
    .common-contact-tel .time{
        font-size: 0.75rem;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    height: var(--contact-box-height);
    padding: 0 30px;
    background: #fff;
    border: 1px solid #aaa;
    transition: .2s ease-out;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .common-contact-mail{
        height: auto;
        padding: 30px;
    }
}
@media screen and (max-width:575px){
    .common-contact-mail{
        font-size: 1.125rem;
    }
}

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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 70px 0 40px;
    text-align: center;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 60px 0 30px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 50px 0 20px;
    }
}
/*  page-top-entitle
------------------------------------------------------------------*/
.page-top-entitle{
    margin-bottom: 10px;
    font-family: var(--en-font);
    font-size: 1.25rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
}
@media screen and (max-width:1399px){
    .page-top-entitle{ font-size: 1.125rem;}
}
@media screen and (max-width:991px){
    .page-top-entitle{
        margin-bottom: 5px;
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .page-top-entitle{ font-size: .875rem;}
}
/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .page-top-title{ font-size: 1.875rem;}
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 1.5rem;}
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 1.375rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.25rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 1.125rem;}
}
@media print {
    .page-top-title{ font-size: 1.5rem;}
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    width: fit-content;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
    --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-two-column
------------------------------------------------------------------*/

/*  page-two-column
------------------------------------------------------------------*/
.page-two-column{
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    max-width: 1520px;
    padding: 60px;
    margin: 0 auto;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-two-column{
        flex-direction: column;
        padding: 30px 6vw 60px;
        row-gap: 30px;
    }
}
@media print{
    .page-two-column{
        flex-direction: column;
        padding: 30px 15px 60px;
        row-gap: 30px;
    }
}
/*  page-nav
------------------------------------------------------------------*/
.page-nav{
    flex-shrink: 0;
    width: 250px;
}
@media print, screen and (max-width:991px){
    .page-nav{
        width: 100%;
    }
}
/*  page-nav-wrapper
------------------------------------------------------------------*/
.page-nav-wrapper{
    position: sticky;
    top: 150px;
    left: 0;
}
@media screen and (max-width:1399px){
    .page-nav-wrapper{
        top: 130px;
    }
}

/*  page-nav-list
------------------------------------------------------------------*/
.page-nav-list{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
@media print, screen and (max-width:991px){
    .page-nav-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 10px;
    }
}

/*  page-nav-list-item
------------------------------------------------------------------*/
.page-nav-list-item{
    position: relative;
    display: block;
    padding: 1em 1.5em 1em 1em;
    border: 1px solid #ccc;
    font-size: 0.875rem;
    line-height: 1;
    transition: .2s ease-out;
}
.page-nav-list-item::after{
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* アクティブ時動作 */
.page-nav-list-item.active{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .page-nav-list-item:hover{
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .page-nav-list-item:active{
        background-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .page-nav-list-item{
        font-size: 0.75rem;
    }
}

/*  page-contents
------------------------------------------------------------------*/
.page-contents{
    width: 100%;
}

/*------------------------------------------------------------------
  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 #ccc;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #888 !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(--primary-light-color);
        border-color:  var(--primary-color);
    }
    .paging-text:hover a{
        color:  var(--primary-color) !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;
}
#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;
    }
}