@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するための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;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding: 0 30px;
    background: #fff;
    transition: .2s box-shadow ease-out;
    z-index: 1000;
}
header.scroll{
    box-shadow: 0 2px 10px rgba(26, 20, 54, .1);
}
@media screen and (max-width:1399px){
    header{
        padding: 0 20px;
    }
}
@media screen and (max-width:991px){
    header{
        height: 60px;
        padding: 0 0 0 15px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: block;
    line-height: 1;
}
@media screen and (max-width:991px){
    .header-logo{
        width: 180px;
    }
}

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    column-gap: 40px;
}
@media screen and (max-width:1399px){
    .header-gnav{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .header-gnav{
        position: fixed;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        align-items: initial;
        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-list
------------------------------------------------------------------*/
.header-gnav-list{
    display: flex;
    align-items: center;
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .header-gnav-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:991px){
    .header-gnav-list{
        display: block;
        order: 1;
        margin-bottom: 24px;
    }
}

/*  header-gnav-list-item
------------------------------------------------------------------*/
.header-gnav-list-item{
    position: relative;
    display: block;
    padding: 36px 0;
    line-height: 1;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 1;
}
.header-gnav-list-item::before{
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: .2s ease-out;
    content: "";
    z-index: 1;
}
.header-gnav-list-item.active{
    color: var(--primary-color);
}
.header-gnav-list-item.active::before{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-list-item:hover{
        color: var(--primary-color);
    }
    .header-gnav-list-item:hover::before{
        width: 100%;
    }
}
@media (hover:none) {
    .header-gnav-list-item:active{
        color: var(--primary-color);
    }
    .header-gnav-list-item:active::before{
        width: 100%;
    }
}
@media screen and (max-width:1399px){
    .header-gnav-list-item{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .header-gnav-list-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 3.5em;
        padding: 0 1em;
        border-bottom: 1px solid #ccc;
        color: var(--black-color);
        transition: .2s ease-out;
        z-index: 1;
    }
    .header-gnav-list-item::before{
        display: none;
    }
    .header-gnav-list-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
        transition: .2s ease-out;
    }
    .header-gnav-list-item.active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        .header-gnav-list-item:hover{
            background: var(--primary-light-color);
            color: var(--primary-color);
        }
        .header-gnav-list-item:hover::after{
            right: 0;
        }
    }
    @media (hover:none) {
        .header-gnav-list-item:active{
            background: var(--primary-light-color);
            color: var(--primary-color);
        }
        .header-gnav-list-item:active::after{
            right: 0;
        }
    }
}

/*  header-gnav-dropdown
------------------------------------------------------------------*/
.header-gnav-dropdown{
    position: relative;
    z-index: 1;
}
.header-gnav-dropdown .drawer{
    display: none;
}
@media screen and (max-width:991px){
    .header-gnav-dropdown .header-gnav-list-item::after{
        display: none;
    }
    .header-gnav-dropdown .drawer{
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.5em;
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        color: #fff;
        cursor: pointer;
        z-index: 1;
    }
    .header-gnav-dropdown .drawer::after{
        content: "＋";
    }
    .header-gnav-dropdown.open .drawer::after{
        content: "－";
    }
}

/*  header-gnav-dropdown-menu
------------------------------------------------------------------*/
.header-gnav-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 240px;
    background: #fff;
    box-shadow: 0 8px 8px rgba(0, 0, 0, .1);
}
@media screen and (max-width:991px){
    .header-gnav-dropdown-menu{
        position: relative;
        top: initial;
        left: initial;
        transform: initial;
        width: 100%;
        background: var(--primary-light-color);
        box-shadow: initial;
    }
}

/*  header-gnav-dropdown-item
------------------------------------------------------------------*/
.header-gnav-dropdown-item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 3.25em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #ccc;
    font-size: .875rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-dropdown-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;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-dropdown-item:hover{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .header-gnav-dropdown-item:hover::after{
        right: 0;
    }
}
@media (hover:none) {
    .header-gnav-dropdown-item:active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .header-gnav-dropdown-item:active::after{
        right: 0;
    }
}
@media screen and (max-width:1399px){
    .header-gnav-dropdown-item{
        font-size: .8125rem;
    }
}
@media screen and (max-width:991px){
    .header-gnav-dropdown-item{
        font-size: .75rem;
    }
}

/*  header-entry
------------------------------------------------------------------*/
.header-entry{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2em;
    background: var(--primary-color);
    border-radius: 2em;
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-entry:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    .header-entry:active{
        background: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .header-entry{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .header-entry{
        padding: 1em;
        margin: 0 12px 30px;
        order: 2;
        font-size: 1rem;
    }
}

/*  header-gnav-detail
------------------------------------------------------------------*/
.header-gnav-detail{
    display: none;
}
@media screen and (max-width:991px){
    .header-gnav-detail{
        display: block;
        order: 3;
    }
}

/*  header-gnav-logo
------------------------------------------------------------------*/
.header-gnav-logo{
    display: block;
    width: 240px;
    margin: 0 auto 12px;
}

/*  header-gnav-address
------------------------------------------------------------------*/
.header-gnav-address{
    margin-bottom: 8px;
    font-size: .875rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
}

/*  header-gnav-map
------------------------------------------------------------------*/
.header-gnav-map{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: fit-content;
    margin: 0 auto;
    padding: 1em 2em;
    background: var(--primary-color);
    border-radius: 2em;
    transition: .2s ease-out;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-map:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    .header-gnav-map:active{
        background: var(--accent-color);
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        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(-135deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 6px !important;
    }
}

/*  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: 80px 0 30px;
    background: var(--black-color);
    z-index: 1;
}
@media screen and (max-width:767px){
    footer{
        padding: 60px 0 30px;
    }
}

/*  footer-inner
------------------------------------------------------------------*/
.footer-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .footer-inner{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        row-gap: 40px;
        margin-bottom: 60px;
    }
}

/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    width: fit-content;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1;
}
.footer-logo .en{
    display: block;
    margin-bottom: 6px;
    font-family: var(--en-font);
    font-size: 2rem;
    font-weight: bold;
}
.footer-logo .jp{
    display: block;
    font-size: .75rem;
    font-weight: bold;
    letter-spacing: .05em;
}
@media screen and (max-width:991px){
    .footer-logo .en{
        font-size: 1.75rem;
    }
}

/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    font-size: .875rem;
    color: #fff;
    line-height: 1.8;
}
.footer-address a{
    transition: .2s ease-out;
}
@media (hover:hover) {
    .footer-address a:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-address a:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:1199px){
    .footer-address{
        font-size: .8125rem;
    }
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .footer-nav{
        column-gap: 40px;
    }
}
@media screen and (max-width:991px){
    .footer-nav{
        flex-direction: column;
        row-gap: 30px;
    }
}

/*  footer-nav-list
------------------------------------------------------------------*/
.footer-nav-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:991px){
    .footer-nav-list{
        row-gap: 12px;
    }
}

/*  footer-nav-list-item
------------------------------------------------------------------*/
.footer-nav-list-item{
    display: block;
    width: fit-content;
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-list-item:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-list-item:active{
        color: var(--accent-color);
    }
}

/*  footer-nav-sublist
------------------------------------------------------------------*/
.footer-nav-sublist{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
    margin-top: 20px;
}
.footer-nav-sublist a{
    display: block;
    width: fit-content;
    font-size: .8125rem;
    color: #b3aec9;
    line-height: 1.2;
    transition: .2s ease-out;
}
.footer-nav-sublist a::before{
    display: inline-block;
    margin-right: .5em;
    content: "－";
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-sublist a:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-sublist a:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .footer-nav-sublist{
        row-gap: 12px;
        margin-top: 12px;
    }
}

/*  footer-bottom
------------------------------------------------------------------*/
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
@media screen and (max-width:767px){
    .footer-bottom{
        flex-direction: column;
        align-items: initial;
        row-gap: 20px;
    }
}

/*  footer-corporate
------------------------------------------------------------------*/
.footer-corporate{
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 6px 20px 6px 6px;
    background: #fff;
    border-radius: 4px;
    font-size: .8125rem;
    font-weight: bold;
    color: var(--black-color);
    line-height: 1.2;
    transition: .2s ease-out;
}
.footer-corporate .image{
    width: 70px;
    aspect-ratio: 7 / 4;
    overflow: hidden;
    border-radius: 2px;
}
.footer-corporate .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-corporate .fa-arrow-up-right-from-square{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-corporate:hover{
        opacity: .8;
    }
}
@media (hover:none) {
    .footer-corporate:active{
        opacity: .8;
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #b3aec9;
    line-height: 1;
}


/*------------------------------------------------------------------
  common-entry
------------------------------------------------------------------*/

/*  common-entry
------------------------------------------------------------------*/
.common-entry{
    position: relative;
    padding: 100px 0;
    background: var(--primary-light-color);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .common-entry{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .common-entry{ padding: 60px 0; }
}
/*  common-entry-card-wrap
------------------------------------------------------------------*/
.common-entry-card-wrap{
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}
/*  common-entry-card
------------------------------------------------------------------*/
.common-entry-card{
    display: block;
    padding: 70px 40px;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    transition: .2s ease-out;
}
@media screen and (max-width:991px){
    .common-entry-card{
        padding: 50px 30px;
    }
}
@media screen and (max-width:767px){
    .common-entry-card{
        padding: 40px 20px;
        border-radius: 20px;
    }
}
.common-entry-card .en{
    margin-bottom: 15px;
    font-family: var(--en-font);
    font-size: 6rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:1399px){
    .common-entry-card .en{ font-size: 4.5rem; }
}
@media screen and (max-width:767px){
    .common-entry-card .en{ font-size: 3rem; }
}
.common-entry-card .jp{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:767px){
    .common-entry-card .jp{
        column-gap: 10px;
        font-size: 1rem;
    }
}
.common-entry-card .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: .2s ease-out;
    z-index: 1;
}
@media screen and (max-width:767px){
    .common-entry-card .arrow{
        width: 34px;
    }
}
.common-entry-card .arrow::after{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-entry-card:hover{
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(26, 20, 54, .15);
    }
    .common-entry-card:hover .arrow{
        background: var(--primary-color);
    }
    .common-entry-card:hover .arrow::after{
        color: #fff;
    }
}
@media (hover:none) {
    .common-entry-card:active{
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(26, 20, 54, .15);
    }
    .common-entry-card:active .arrow{
        background: var(--primary-color);
    }
    .common-entry-card:active .arrow::after{
        color: #fff;
    }
}

/*  common-entry-illust
------------------------------------------------------------------*/
.common-entry-illust01{
    position: absolute;
    left: 20px;
    bottom: -10px;
    z-index: 1;
}
.common-entry-illust02{
    position: absolute;
    right: 20px;
    bottom: -10px;
    z-index: 1;
}
.common-entry-illust01 img,
.common-entry-illust02 img{
    max-width: 100%;
    height: auto;
}
@media screen and (max-width:767px){
    .common-entry-illust01{
        left: 10px;
        width: 15%;
    }
    .common-entry-illust02{
        right: 10px;
        width: 20%;
    }
}


/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 120px 20px 100px;
    overflow: hidden;
    background: #000;
    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;
    margin-bottom: .1em;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 72px;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    line-height: 1.25;
    --letter-spacing: .05em;
    z-index: 3;
}
@media screen and (max-width:991px){
    .page-top-title-en{ font-size: 56px;}
}
@media screen and (max-width:767px){
    .page-top-title-en{ font-size: 48px;}
}
@media screen and (max-width:575px){
    .page-top-title-en{ font-size: 40px;}
}
@media screen and (max-width:374px){
    .page-top-title-en{ font-size: 32px;}
}
/*  page-top-title-jp
------------------------------------------------------------------*/
.page-top-title-jp{
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    z-index: 3;
}
@media screen and (max-width:1399px){
    .page-top-title-jp{ font-size: 1.375rem;}
}
@media screen and (max-width:991px){
    .page-top-title-jp{ font-size: 1.25rem;}
}
@media screen and (max-width:767px){
    .page-top-title-jp{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .page-top-title-jp{ font-size: .875rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.page-top-image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    opacity: .6;
    content: "";
    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: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 0 6vw;
    font-size: 12px;
    line-height: 1.5;
    z-index: 1;
}
.breadcrumb > li{
    color: #ccc;
}
.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: #fff;
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}


/*------------------------------------------------------------------
  sitelinks
------------------------------------------------------------------*/

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

/*  sitelinks-list
------------------------------------------------------------------*/
.sitelinks-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media screen and (max-width:1199px){
    .sitelinks-list{
        gap: 10px;
    }
}
@media screen and (max-width:767px){
    .sitelinks-list{
        grid-template-columns: 1fr;
    }
}
/*  sitelinks-list-item
------------------------------------------------------------------*/
.sitelinks-list-item{
    display: flex;
    align-items: center;
    column-gap: 1em;
    height: 100%;
    padding: .75em 1em;
    background: #fff;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    transition: .2s ease-out;
}
.sitelinks-list-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}
.sitelinks-list-item .icon img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sitelinks-list-item .text{
    flex: 1;
}
.sitelinks-list-item::after{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .sitelinks-list-item:hover{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .sitelinks-list-item:hover::after{
        transform: scale(.9);
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .sitelinks-list-item:active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .sitelinks-list-item:active::after{
        transform: scale(.9);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1199px){
    .sitelinks-list-item{
        font-size: 1.125rem;
    }
    .sitelinks-list-item .icon{
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width:991px){
    .sitelinks-list-item{
        font-size: 1rem;
    }
    .sitelinks-list-item .icon{
        width: 48px;
        height: 48px;
    }
    .sitelinks-list-item::after{
        width: 32px;
        font-size: 10px;
    }
}


/*------------------------------------------------------------------
  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;
    transition: .2s ease-out;
}
.paging-text.current{
    background:  var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  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: 100;
}
#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: 575px) {
    #pagetop-btn{
        width: 40px;
    }
}
