@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-btn-size: 80px;
    position: relative;
    z-index: 1000;
}
@media screen and (max-width:1399px){
    header{
        --header-btn-size: 70px;
    }
}
@media screen and (max-width:991px){
    header{
        --header-btn-size: 60px;
    }
}
@media screen and (max-width:575px){
    header{
        --header-btn-size: 50px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    position: fixed;
    top: 16px;
    left: 24px;
    display: block;
    width: 268px; 
    z-index: 2;
}
.header-logo .white{
    display: none;
}
.header-logo.open .white{
    display: inline;
}
.header-logo.open .normal{
    display: none;
}
@media screen and (max-width:1399px){
    .header-logo{
        top: 10px;
        left: 12px;
        width: 240px;      
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 210px;      
    }
}
@media screen and (max-width:575px){
    .header-logo{
        width: 160px;      
    }
}
@media print{
    .header-logo{
        position: absolute;
    }
}

/*  header-detail
------------------------------------------------------------------*/
.header-detail{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    z-index: 4;
}
@media print{
    .header-detail{
        position: absolute;
    }
}
/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: var(--header-btn-size);
    padding: 0 28px;
    background: #000;
    color: #fff;
    z-index: 1;
}
.header-tel .num{
    margin-bottom: 4px;
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.header-tel .time{
    font-size: .75rem;
    line-height: 1;
}
@media screen and (max-width:991px){
    .header-tel{
        display: none; 
    }
}

/*  header-contact
------------------------------------------------------------------*/
.header-contact{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--header-btn-size);
    height: var(--header-btn-size);
    background: #9a0000;
    font-size: calc(var(--header-btn-size) * .3);
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-contact:hover{
        background: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .header-contact{
        width: var(--header-btn-size);
    }
    .header-contact i{
        font-size: 1em;
    }
    .header-contact .text{
        display: none;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--header-btn-size);
    height: var(--header-btn-size);
    background: var(--primary-color);
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 4;
}
.header-hamburger .lines {
    position: relative;
    width: calc(var(--header-btn-size) * .4);
    height: calc(var(--header-btn-size) * .24);
}
.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: 70%;
}
.header-hamburger .lines .line#line3 {
    bottom: 0;
    width: 40%;
}
/* オープン時動作 */
.header-hamburger.open .lines .line#line1 {
    transform: rotate(-135deg);
    top: calc(var(--header-btn-size) * .1) !important;
}
.header-hamburger.open .lines .line#line2 {
    opacity: 0;
}
.header-hamburger.open .lines .line#line3 {
    transform: rotate(135deg);
    top: calc(var(--header-btn-size) * .1) !important;
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-hamburger:hover .lines .line#line2,
    .header-hamburger:hover .lines .line#line3{
        width: 100%;
    }
}
@media (hover:none) {
    .header-hamburger:active{
        background: var(--sub-color);
    }
}
/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 600px;
    padding: 60px;
    background: url(../images/common/header-nav-bg.jpg) no-repeat center / cover;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav.open{
    opacity: 1;
    visibility: visible;
}
.header-nav::-webkit-scrollbar{
    display: none;
}
@media screen and (max-width:991px){
    .header-nav{
        align-items: flex-start;
        padding: 90px 60px;
        overflow-y: auto;
    }
}
@media screen and (max-width:575px){
    .header-nav{
        padding: 90px 20px;
    }
}
/*  header-nav-wrapper
------------------------------------------------------------------*/
.header-nav-wrapper{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    column-gap: 150px;
    width: 100%;
    max-width: 1200px;
}
@media screen and (max-width:1399px){
    .header-nav-wrapper{
        column-gap: 60px;
    }
}
@media screen and (max-width:991px){
    .header-nav-wrapper{
        flex-direction: column-reverse;
        align-items: initial;
        justify-content: initial;
        row-gap: 60px;
    }
}
@media screen and (max-width:575px){
    .header-nav-wrapper{
        row-gap: 40px;
    }
}
/*  header-nav-detail
------------------------------------------------------------------*/
.header-nav-detail{
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .header-nav-detail{
        text-align: center;
    }
}
/*  
/*  header-nav-company
------------------------------------------------------------------*/
.header-nav-company{
    margin-bottom: 30px;
    font-size: 1.875rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
.header-nav-company .en{
    font-family: var(--en-font);
    font-size: 0.7em;
    letter-spacing: 0;
}
@media screen and (max-width:575px){
    .header-nav-company{
        font-size: 1.5rem;
    }
}
/*  header-nav-address
------------------------------------------------------------------*/
.header-nav-address{
    margin-bottom: 40px;
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.7;
}
@media screen and (max-width:575px){
    .header-nav-address{
        margin-bottom: 30px;
    }
}
/*  header-nav-tel
------------------------------------------------------------------*/
.header-nav-tel{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-end;
    row-gap: 10px;
    margin-bottom: 40px;
    font-family: var(--en-font);
    color: #fff;
    line-height: 0.8;
    --letter-spacing:0;
}
.header-nav-tel dt{
    font-size: 1.125rem;
    font-weight: normal;
}
.header-nav-tel dd{
    font-size: 1.875rem;
}
@media screen and (max-width:991px){
    .header-nav-tel{
        grid-template-columns: repeat(2,auto);
        justify-content: center;
    }
}
/*  header-nav-contact
------------------------------------------------------------------*/
.header-nav-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    padding: 1em 2em;
    margin-bottom: 50px;
    border: 1px solid #fff;
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-contact:hover{
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
}
@media screen and (max-width:575px){
    .header-nav-contact{
        font-size: 1.125rem;
    }
}
/*  header-nav-list
------------------------------------------------------------------*/
.header-nav-list{
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    column-gap: 30px;
    width: 100%;
    line-height: 1;
}
.header-nav-list > li{
    opacity: 0;
    transform: translateX(-40px);
    transition: .4s ease-out;
}
.open .header-nav-list > li{
    opacity: 1;
    transform: translateX(0);
}
.open .header-nav-list > li:nth-of-type(2){
    transition-delay: .1s;
}
.open .header-nav-list > li:nth-of-type(3){
    transition-delay: .2s;
}
.open .header-nav-list > li:nth-of-type(4){
    transition-delay: .3s;
}
.open .header-nav-list > li:nth-of-type(5){
    transition-delay: .4s;
}
.open .header-nav-list > li:nth-of-type(6){
    transition-delay: .5s;
}
.open .header-nav-list > li:nth-of-type(7){
    transition-delay: .6s;
}
.open .header-nav-list > li:nth-of-type(8){
    transition-delay: .7s;
}
@media screen and (max-width:575px){
    .header-nav-list{
        column-gap: 12px;
    }
}
/*  header-nav-list-item
------------------------------------------------------------------*/
.header-nav-list-item{
    --transition-size: 15px;
    position: relative;
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid #fff;
    font-weight: bold;
    color: #fff;
    z-index: 1;
}
.header-nav-list-item::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    content: "";
    transition: .3s ease-out;
}
.header-nav-list-item .en{
    position: relative;
    display: block;
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 2rem;
    letter-spacing: 0;
    transition: .3s ease-out;
    z-index: 1;
}
.header-nav-list-item .jp{
    position: relative;
    display: block;
    font-size: 0.875rem;
    transition: .3s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-list-item:hover::after{
        width: 100%;
    }
    .header-nav-list-item:hover .en,
    .header-nav-list-item:hover .jp{
        transform: translateX(var(--transition-size));
    }
}
@media screen and (max-width:575px){
    .header-nav-list-item{
        padding: 20px 0;
    }
    .header-nav-list-item .en{
        font-size: 1.5rem;
    }
    .header-nav-list-item .jp{
        font-size: 0.75rem;
    }
}
/*  header-nav-copyright
------------------------------------------------------------------*/
.header-nav-copyright{
    font-size: 0.75rem;
    color: #e6e7ec;
    line-height: 1;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 80px 0 60px;
    background: #000;
    z-index: 1
}
@media screen and (max-width:767px){
    footer{
        padding: 60px 0;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 100px;
}
@media screen and (max-width:767px){
    .footer-wrapper{
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 30px;
}
@media screen and (max-width:767px){
    .footer-logo{
        text-align: center;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 24px;
    font-size: .875rem;
    color: #ccc;
    line-height: 1.5;
}
@media screen and (max-width:767px){
    .footer-address{
        text-align: center;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    column-gap: 40px;
}
@media screen and (max-width:1199px){
    .footer-nav{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .footer-nav{
        flex-direction: column;
        row-gap: 30px;
        width: 100%;
    }
}
/*  footer-nav-title
------------------------------------------------------------------*/
.footer-nav-title{
    margin-bottom: 18px;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1.4;
}
/*  footer-nav-list
------------------------------------------------------------------*/
.footer-nav-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    line-height: 1;
}
@media screen and (max-width:767px){
    .footer-nav-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  footer-nav-list-item
------------------------------------------------------------------*/
.footer-nav-list-item{
    font-size: 0.875rem;
    color: #fff;
    transition: .2s ease-out;
}
.footer-nav-list-item::before{
    margin-right: 4px;
    content: "-";
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-list-item:hover{
        color: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .footer-nav-list-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        border: 1px solid #ccc;
        font-size: .75rem;
        line-height: 1.2;
        z-index: 1;
    }
    .footer-nav-list-item::before{
        display: none;
    }
    .footer-nav-list-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: .8em;
        font-weight: bold;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .copyright{
        text-align: center;
    }
}


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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0 150px;
    background: #1f1f1f;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 80px 0 100px;
    }
}
@media screen and (max-width:575px){
    .common-contact{
        padding: 60px 0 80px;
    }
}
/*  common-contact-wrapper
------------------------------------------------------------------*/
.common-contact-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 120px;
}
@media screen and (max-width:991px){
    .common-contact-wrapper{
        column-gap: 80px;
    }
}
@media screen and (max-width:767px){
    .common-contact-wrapper{
        flex-direction: column;
        row-gap: 40px;
    }
}
/*  common-contact-detail
------------------------------------------------------------------*/
.common-contact-detail{
    flex-shrink: 0;
    padding: 40px 0;
}
@media screen and (max-width:991px){
    .common-contact-detail{
        padding: 20px 0;
    }
}
@media screen and (max-width:767px){
    .common-contact-detail{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 20px 40px 20px 20px;
    margin-bottom: 20px;
    background: var(--primary-color);
    font-family: var(--en-font);
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    --letter-spacing: 0;
}
.common-contact-tel .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-color);
}
@media screen and (max-width:991px){
    .common-contact-tel{
        column-gap: 16px;
        padding: 16px 32px 16px 16px;
        font-size: 1.75rem;
    }
    .common-contact-tel .icon{
        width: 52px;
    }
}
@media screen and (max-width:767px){
    .common-contact-tel{
        width: 290px;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 20px 40px 20px 20px;
    background: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
    --letter-spacing: 0;
}
.common-contact-mail .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--accent-color);
    }
    .common-contact-mail:hover .icon{
        transform: scale(.9);
        color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .common-contact-mail{
        column-gap: 16px;
        padding: 16px 32px 16px 16px;
        font-size: 1.125rem;
    }
    .common-contact-mail .icon{
        width: 52px;
    }
}
@media screen and (max-width:767px){
    .common-contact-mail{
        width: 290px;
    }
}

/*  common-contact-image
------------------------------------------------------------------*/
.common-contact-image{
    position: relative;
    width: 100%;
    max-width: 1072px;
    margin-right: calc(50% - 50vw);
    z-index: 1;
}
.common-contact-image::after{
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 180px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    content: "";
    z-index: 2;
}
.common-contact-image .image{
    position: relative;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.common-contact-image .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common-contact-image .treat{
    position: absolute;
    bottom: -40px;
    left: -30px;
    display: flex;
    width: 120%;
    overflow: hidden;
    z-index: 3;
}
.common-contact-image .treat .one,
.common-contact-image .treat .two{
    display: block;
    flex-shrink: 0;
    padding-right: 20px;
}
.common-contact-image .treat .one{
    animation: contact-treat1 60s -30s linear infinite;
}
.common-contact-image .treat .two{
    animation: contact-treat2 60s linear infinite;
}
@keyframes contact-treat1 {
    from{ transform: translateX(100%);}
    to{ transform: translateX(-100%);}
}
@keyframes contact-treat2 {
    from{ transform: translateX(0%);}
    to{ transform: translateX(-200%);}
}
@media screen and (max-width:991px){
    .common-contact-image::after{
        bottom: -40px;
        left: -40px;
        width: 120px;
    }
    .common-contact-image .treat{
        bottom: -20px;
        left: -10px;
    }
    .common-contact-image .treat .one,
    .common-contact-image .treat .two{
        width: 1000px;
    }
}
@media screen and (max-width:767px){
    .common-contact-image{
        margin-right: initial;
    }
}
@media screen and (max-width:575px){
    .common-contact-image::after{
        bottom: -30px;
        left: -30px;
        width: 70px;
    }
    .common-contact-image .treat .one,
    .common-contact-image .treat .two{
        width: 800px;
    }
}


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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
    margin-bottom: 10px;
    z-index: 1;
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: absolute;
    bottom: 0;
    left: 3vw;
    font-size: 7rem;
    font-weight: bold;
    --letter-spacing: 0;
    z-index: 2;
}
.page-top-title .en{
    display: block;
    font-family: var(--en-font);
    color: var(--primary-color);
    line-height: 1;
    overflow: hidden;
}
.page-top-title .en .wrap{
    display: block;
    transform: translateY(1em);
    opacity: 0;
    animation: pageTopTitleEn .6s forwards .2s ease-out;
}
.page-top-title .jp{
    display: block;
    margin-top: .5em;
    font-size: max(0.26666em, 1rem);
    line-height: 1.2;
    opacity: 0;
    animation: pageTopTitleJp .2s forwards .2s ease-out;
}
@keyframes pageTopTitleEn {
    0%{
        transform: translateY(1em);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes pageTopTitleJp {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@media screen and (max-width:1399px){
    .page-top-title{
        font-size: 6.5rem;
    }
}
@media screen and (max-width:991px){
    .page-top-title{
        font-size: 5.5rem;
    }
}
@media screen and (max-width:767px){
    .page-top-title{
        font-size: 4.5rem;
    }
}
@media screen and (max-width:575px){
    .page-top-title{
        font-size: 3.5rem;
    }
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    clip-path: url(#page-top-image-clip-path);
    width: 80%;
    max-width: 1500px;
    height: 600px;
    margin-left: auto;
}
.page-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
@media screen and (max-width:991px){
    .page-top-image{
        height: 400px;
    }
}
@media screen and (max-width:767px){
    .page-top-image{
        width: 90%;
        height: 300px;
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    column-gap: 10px;
    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;
    }
}



/*------------------------------------------------------------------
  page-2col
------------------------------------------------------------------*/

/*  page-2col
------------------------------------------------------------------*/
.page-2col{
    display: grid;
    grid-template-columns: 300px 1fr;
    margin-top: 100px;
}
@media screen and (max-width:1399px){
    .page-2col{
        grid-template-columns: 280px 1fr;
    }
}
@media screen and (max-width:1199px){
    .page-2col{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:991px){
    .page-2col{
        margin-top: 80px;
    }
}
@media screen and (max-width:767px){
    .page-2col{
        margin-top: 50px;
    }
}
@media print{
    .page-2col{
        grid-template-columns: 1fr;
    }
}
/*  page-2col-aside
------------------------------------------------------------------*/
.page-2col-aside{
    position: relative;
    padding: 0 60px 60px;
    border-right: 1px solid #ccc;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-2col-aside{
        padding: 0 40px 40px;
    }
}
@media screen and (max-width:1199px){
    .page-2col-aside{
        display: none;
    }
}
@media print{
    .page-2col-aside{
        display: none;
    }
}
/*  page-2col-aside-wrapper
------------------------------------------------------------------*/
.page-2col-aside-wrapper{
    position: sticky;
    top: 120px;
    left: 0;
    z-index: 1;
}
/*  page-2col-aside-list
------------------------------------------------------------------*/
.page-2col-aside-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:1399px){
    .page-2col-aside-list{
        row-gap: 16px;
    }
}
/*  page-2col-aside-list-item
------------------------------------------------------------------*/
.page-2col-aside-list-item{
    position: relative;
    display: block;
    padding-left: 1.25em;
    font-size: .875rem;
    line-height: 1.2;
    z-index: 1;
    transition: .2s ease-out;
}
.page-2col-aside-list-item::before{
    position: absolute;
    top: .3em;
    left: 0;
    transform: scale(0);
    width: .6em;
    height: .6em;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    content: "";
    transition: .2s ease-out;
}
/**/
.page-2col-aside-list-item.active{
    color: var(--primary-color);
}
.page-2col-aside-list-item.active::before{
    transform: scale(1);
    opacity: 1;
}
@media (hover:hover) {
    .page-2col-aside-list-item:hover{
        color: var(--primary-color);
    }
    .page-2col-aside-list-item:hover::before{
        transform: scale(1);
        opacity: 1;
    }
}
@media screen and (max-width:575px){
    .page-2col-aside-list-item{
        font-size: .75rem;
    }
}
/*  page-2col-container
------------------------------------------------------------------*/
.page-2col-container{
    padding: 0 120px;
}
@media screen and (max-width:1399px){
    .page-2col-container{
        padding: 0 80px;
    }
}
@media screen and (max-width:1199px){
    .page-2col-container{
        padding: 0 60px;
    }
}
@media screen and (max-width:991px){
    .page-2col-container{
        padding: 0 6vw;
    }
}
@media print{
    .page-2col-container{
        padding: 0 15px;
    }
}

/*------------------------------------------------------------------
  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;
    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;
    }
}