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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。

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

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

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

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


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

/*  header
------------------------------------------------------------------*/
header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding: 30px 340px 30px 50px;
    z-index: 1000;
}
header.home{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@media screen and (max-width:1399px){
    header{
        padding: 30px 305px 30px 15px;
    }
}
@media screen and (max-width:1199px){
    header{
        padding: 20px 75px 20px 15px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: block;
    width: 218px;
}
/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    flex-shrink: 0;
}
@media screen and (max-width:1199px){
    .header-gnav{
        display: none;
    }
}
/*  header-gnav-list
------------------------------------------------------------------*/
.header-gnav-list{
    display: flex;
    align-items: center;
    column-gap: 30px;
}
/*  header-gnav-list-item
------------------------------------------------------------------*/
.header-gnav-list-item{
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-list-item .en{
    font-family: var(--en-font);
    font-weight: 600;
}
.header-gnav-list-item .jp{
    font-size: 11px;
    font-weight: bold;
}
.home .header-gnav-list-item{
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-list-item:hover{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .header-gnav-list-item:active{
        color: var(--primary-color);
    }
}
/*  header-gnav-dropdown
------------------------------------------------------------------*/
.header-gnav-dropdown{
    position: relative;
    z-index: 1;
}
/*  header-gnav-dropdown-menu
------------------------------------------------------------------*/
.header-gnav-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 120px;
    padding: 12px 0;
    background: #DDF7F4;
}
/*  header-gnav-dropdown-item
------------------------------------------------------------------*/
.header-gnav-dropdown-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1em;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-dropdown-item::after{
    content: url(../images/common/icon-chevron-primary.svg);
    line-height: 1;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .header-gnav-dropdown-item:hover::after{
        transform: translateX(100%);
    }
}
@media (hover:none) {
    .header-gnav-dropdown-item:active::after{
        transform: translateX(100%);
    }
}
/*  header-entry
------------------------------------------------------------------*/
.header-entry{
    position: fixed;
    top: 35px;
    right: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 40px;
    color: #fff;
    line-height: 1;
    z-index: 1;
}
.header-entry::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-entry:hover::after{
        transform: scale(1.1);
    }
}
@media (hover:none) {
    .header-entry:active::after{
        transform: scale(1.1);
    }
}
@media screen and (max-width:1399px){
    .header-entry{
        right: 75px;
    }
}
@media screen and (max-width:1199px){
    .header-entry{
        top: 15px;
    }
}
@media screen and (max-width:575px){
    .header-entry{
        display: none;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: fixed;
    top: 35px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
}
.header-hamburger::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.header-hamburger .dotted {
    display: block;
    line-height: 1;
}
.header-hamburger .cross {
    display: none;
    line-height: 1;
}
.header-hamburger img{
    display: block;
}
/* オープン時動作 */
.header-hamburger.open .dotted {
    display: none;
}
.header-hamburger.open .cross {
    display: block;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-hamburger:hover::after{
        transform: scale(1.2);
    }
}
@media (none) {
    .header-hamburger:hover::after{
        transform: scale(1.2);
    }
}
@media screen and (max-width:1399px){
    .header-hamburger{
        right: 15px;
    }
}
@media screen and (max-width:1199px){
    .header-hamburger{
        top: 15px;
    }
}
/*  header-subnav
------------------------------------------------------------------*/
.header-subnav{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 1;
}
.header-subnav.is-show{
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width:991px){
    .header-subnav{
        justify-content: initial;
        overflow-y: auto;
    }
    .header-subnav::-webkit-scrollbar{
        display: none;
    }
}
/*  header-subnav-inner
------------------------------------------------------------------*/
.header-subnav-inner{
    width: 100%;
    max-width: 1270px;
    padding: 100px 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .header-subnav-inner{
        padding: 100px 40px;
    }
}
/*  header-subnav-row
------------------------------------------------------------------*/
.header-subnav-row{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 80px;
    margin-bottom: 30px;
}
@media screen and (max-width:1399px){
    .header-subnav-row{
        column-gap: 60px;
    }
}
@media screen and (max-width:1199px){
    .header-subnav-row{
        column-gap: 40px;
    }
}
@media screen and (max-width:991px){
    .header-subnav-row{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}
/*  header-subnav-item
------------------------------------------------------------------*/
.header-subnav-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.header-subnav-item::before{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-200%);
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    content: "";
    transition: .4s ease-out;
    z-index: 1;
}
.header-subnav-item::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    content: "";
    transition: .8s ease-out;
    z-index: 1;
}
.header-subnav-item .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: .4s ease-out;
    z-index: 1;
}
.header-subnav-item .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 12px;
    height: 12px;
    column-gap: 12px;
    overflow: hidden;
    z-index: 1;
}
.header-subnav-item .icon::before,
.header-subnav-item .icon::after{
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.header-subnav-item .icon::before{
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    opacity: 0;
}
.header-subnav-item .icon::after{
    background: url(../images/common/icon-arrow-primary.svg) no-repeat center / contain;
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-subnav-item:hover::before{
        transform: translateX(0%);
    }
    .header-subnav-item:hover::after{
        transform: translateX(200%);
    }
    .header-subnav-item:hover .arrow{
        background: var(--primary-color);
    }
    .header-subnav-item:hover .icon::before,
    .header-subnav-item:hover .icon::after{
        transform: translateX(0);
    }
    .header-subnav-item:hover .icon::before{
        opacity: 1;
    }
    .header-subnav-item:hover .icon::after{
        background: url(../images/common/icon-arrow-primary.svg) no-repeat center / contain;
        opacity: 0;
    }
}
@media (hover:none) {
    .header-subnav-item:active::before{
        transform: translateX(0%);
    }
    .header-subnav-item:active::after{
        transform: translateX(200%);
    }
    .header-subnav-item:active .arrow{
        background: var(--primary-color);
    }
    .header-subnav-item:active .icon::before,
    .header-subnav-item:active .icon::after{
        transform: translateX(0);
    }
    .header-subnav-item:active .icon::before{
        opacity: 1;
    }
    .header-subnav-item:active .icon::after{
        background: url(../images/common/icon-arrow-primary.svg) no-repeat center / contain;
        opacity: 0;
    }
}
@media screen and (max-width:1199px){
    .header-subnav-item{
        font-size: 30px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .header-subnav-item .arrow{
        width: 30px;
        height: 30px;
    }
    .header-subnav-item .icon{
        width: 9px;
        height: 9px;
        column-gap: 9px;
    }
    .header-subnav-item .icon::before,
    .header-subnav-item .icon::after{
        width: 9px;
        height: 9px;
    }
}
/*  header-subnav-list
------------------------------------------------------------------*/
.header-subnav-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}
/*  header-subnav-list-item
------------------------------------------------------------------*/
.header-subnav-list-item{
    position: relative;
    display: block;
    width: fit-content;
    padding-bottom: 10px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.header-subnav-list-item::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    content: "";
    transition: .3s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
.header-subnav-list-item:hover::after{
    width: 100%;
}
/*  header-subnav-forms
------------------------------------------------------------------*/
.header-subnav-forms{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}
@media screen and (max-width:991px){
    .header-subnav-forms{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .header-subnav-forms{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
/*  header-subnav-forms-btn
------------------------------------------------------------------*/
.header-subnav-forms-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 400px;
    height: 100px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
.header-subnav-forms-btn::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.header-subnav-forms-btn small{
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: -8%;
}
.header-subnav-forms-btn .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 20px;
    height: 20px;
    column-gap: 20px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 1;
}
.header-subnav-forms-btn .arrow::before,
.header-subnav-forms-btn .arrow::after{
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.header-subnav-forms-btn .arrow::before{
    opacity: 0;
}
.header-subnav-forms-btn .arrow::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-subnav-forms-btn:hover::after{
        transform: scale(1.05);
    }
    .header-subnav-forms-btn:hover .arrow::before,
    .header-subnav-forms-btn:hover .arrow::after{
        transform: translateX(0);
    }
    .header-subnav-forms-btn:hover .arrow::before{
        opacity: 1;
    }
    .header-subnav-forms-btn:hover .arrow::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .header-subnav-forms-btn:active::after{
        transform: scale(1.05);
    }
    .header-subnav-forms-btn:active .arrow::before,
    .header-subnav-forms-btn:active .arrow::after{
        transform: translateX(0);
    }
    .header-subnav-forms-btn:active .arrow::before{
        opacity: 1;
    }
    .header-subnav-forms-btn:active .arrow::after{
        opacity: 0;
    }
}
@media screen and (max-width:991px){
    .header-subnav-forms-btn{
        width: 100%;
    }
}
@media screen and (max-width:767px){
    .header-subnav-forms-btn{
        height: 80px;
    }
}

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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    overflow: hidden;
    padding: 160px 0;
    background: url(../images/common/common-contact-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 75px 0;
    }
}
/*  common-contact-list
------------------------------------------------------------------*/
.common-contact-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 50px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}
@media screen and (max-width:1199px){
    .common-contact-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .common-contact-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .common-contact-list{
        column-gap: 15px;
    }
}
@media screen and (max-width:575px){
    .common-contact-list{
        column-gap: 10px;
    }
}
/*  common-contact-list-btn
------------------------------------------------------------------*/
.common-contact-list-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    height: 100px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
.common-contact-list-btn::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.common-contact-list-btn small{
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: -8%;
}
.common-contact-list-btn .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 20px;
    height: 20px;
    column-gap: 20px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 1;
}
.common-contact-list-btn .arrow::before,
.common-contact-list-btn .arrow::after{
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.common-contact-list-btn .arrow::before{
    opacity: 0;
}
.common-contact-list-btn .arrow::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-list-btn:hover::after{
        transform: scale(1.05);
    }
    .common-contact-list-btn:hover .arrow::before,
    .common-contact-list-btn:hover .arrow::after{
        transform: translateX(0);
    }
    .common-contact-list-btn:hover .arrow::before{
        opacity: 1;
    }
    .common-contact-list-btn:hover .arrow::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .common-contact-list-btn:active::after{
        transform: scale(1.05);
    }
    .common-contact-list-btn:active .arrow::before,
    .common-contact-list-btn:active .arrow::after{
        transform: translateX(0);
    }
    .common-contact-list-btn:active .arrow::before{
        opacity: 1;
    }
    .common-contact-list-btn:active .arrow::after{
        opacity: 0;
    }
}
@media screen and (max-width:767px){
    .common-contact-list-btn{
        height: 80px;
    }
}
@media screen and (max-width:575px){
    .common-contact-list-btn{
        height: 50px;
        font-size: 14px;
    }
    .common-contact-list-btn small{
        margin-bottom: 4px;
        font-size: 10px;
    }
    .common-contact-list-btn .arrow{
        width: 12px;
        height: 12px;
        column-gap: 12px;
    }
    .common-contact-list-btn .arrow::before,
    .common-contact-list-btn .arrow::after{
        width: 12px;
        height: 12px;
    }
}


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

footer{
    position: relative;
    z-index: 1
}
/*  footer-top
------------------------------------------------------------------*/
.footer-top{
    display: flex;
    padding: 80px 0 100px;
    background: var(--primary-color);
}
@media screen and (max-width:991px){
    .footer-top{
        padding: 70px 0;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    width: 228px;
    line-height: 1;
}
/*  footer-top-inner
------------------------------------------------------------------*/
.footer-top-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .footer-top-inner{
        flex-direction: column;
        justify-content: initial;
        align-items: center;
        row-gap: 25px;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    flex-shrink: 0;
    column-gap: 70px;
}
@media screen and (max-width:1199px){
    .footer-nav{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .footer-nav{
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 25px;
        row-gap: 20px;
    }    
}
/*  footer-nav-title
------------------------------------------------------------------*/
.footer-nav-title{
    position: relative;
    display: block;
    width: fit-content;
    padding-bottom: 6px;
    font-family: var(--en-font);
    font-weight: 600;
    color: #fff;
    line-height: 1;
    z-index: 1;
}
.footer-nav-title::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    content: "";
    transition: .3s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-title:hover::after{
        width: 100%;
    }
}
@media (hover:none) {
    .footer-nav-title:hover::after{
        width: 100%;
    }
}
/*  footer-nav-list
------------------------------------------------------------------*/
.footer-nav-list{
    display: grid;
    grid-template-columns: 1fr;
}
@media screen and (max-width:767px){
    .footer-nav-list{
        display: none;
    }    
}
/*  footer-nav-list-item
------------------------------------------------------------------*/
.footer-nav-list-item{
    position: relative;
    display: block;
    width: fit-content;
    padding: 6px 0;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
.footer-nav-list-item::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    content: "";
    transition: .3s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-list-item:hover::after{
        width: 100%;
    }
}
@media (hover:none) {
    .footer-nav-list-item:hover::after{
        width: 100%;
    }
}
@media screen and (max-width:1199px){
    .footer-nav-list-item{
        font-size: .75rem;
    }
}
@media screen and (max-width:991px){
    .footer-nav-list-item::before{
        display: none;
    }
}
@media screen and (max-width:575px){
    .footer-nav-list-item{
        position: relative;
        padding: 1em 2em 1em 1em;
        border: 1px solid #6e7987;
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-list-item::after{
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
        transition: .2s ease-out;
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        .footer-nav-list-item:hover{
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--black-color);
        }
        .footer-nav-list-item:hover::after{
            right: 0;
        }
    }
    @media (hover:none) {
        .footer-nav-list-item:active{
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--black-color);
        }
        .footer-nav-list-item:active::after{
            right: 0;
        }
    }
}
/*  footer-bottom
------------------------------------------------------------------*/
.footer-bottom{
    padding: 15px 0;
}
@media screen and (max-width:991px){
    .footer-bottom{
        padding: 20px 0 30px;
    }
}
/*  footer-bottom-inner
------------------------------------------------------------------*/
.footer-bottom-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}
@media screen and (max-width:991px){
    .footer-bottom-inner{
        flex-direction: column-reverse;
        row-gap: 15px;
    }
}
/*  footer-bottom-left
------------------------------------------------------------------*/
.footer-bottom-left{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
/*  footer-bottom-right
------------------------------------------------------------------*/
.footer-bottom-right{
    display: flex;
    align-items: center;
    column-gap: 30px;
}
/*  footer-copyright
------------------------------------------------------------------*/
.footer-copyright{
    font-family: var(--en-font);
    font-size: 12px;
    line-height: 1;
}
/*  footer-privacy
------------------------------------------------------------------*/
.footer-privacy{
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 10px;
    line-height: 1;
}


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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .page-top{
        padding: 100px 0 60px;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 60px 0 40px;
    }
}
@media screen and (max-width:575px){
    .page-top{
        padding: 30px 0 20px;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    color: var(--primary-color);
    z-index: 2;
}
.page-top-title .en{
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 10%;
    line-height: 1;
}
.page-top-title .jp{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .page-top-title .en{
        font-size: 20px;
    }
    .page-top-title .jp{
        font-size: 30px;
    }
}
@media screen and (max-width:575px){
    .page-top-title .en{
        font-size: 14px;
    }
    .page-top-title .jp{
        font-size: 18px;
    }
}
/*  page-top-treat
------------------------------------------------------------------*/
.page-top-treat{
    position: absolute;
    display: flex;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top-treat{
        bottom: 20px;
    }
}
@media screen and (max-width:575px){
    .page-top-treat{
        bottom: 0;
    }
}
/*  page-top-treat-item
------------------------------------------------------------------*/
.page-top-treat-item{
    display: flex;
    font-family: var(--en-font);
    font-size: 150px;
    font-weight: 600;
    color: var(--primary-light-color);
    line-height: 1;
    white-space: nowrap;
    animation: pageTopTreat 30s infinite linear;
}
.page-top-treat-item > div{
    margin-right: 1em;
}
@keyframes pageTopTreat {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@media screen and (max-width:991px){
    .page-top-treat-item{
        font-size: 125px;
    }
}
@media screen and (max-width:575px){
    .page-top-treat-item{
        font-size: 100px;
    }
}

/*-----------------------------------------------------------------
  common-next
------------------------------------------------------------------*/

/*  common-next
------------------------------------------------------------------*/
.common-next{
    position: relative;
    padding: 70px 0 100px;
    border-top: 1px solid #B3B3B3;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .common-next{
        padding: 50px 0;
    }
}
/*  common-next-inner
------------------------------------------------------------------*/
.common-next-inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 20px;
}
@media screen and (max-width:767px){
    
}
/*  common-next-caption
------------------------------------------------------------------*/
.common-next-caption{
    margin-bottom: 18px;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 900;
    color: #727171;
    line-height: 1;
}
@media screen and (max-width:767px){
    .common-next-caption{
        margin-bottom: 10px;
        font-size: 20px;
    }
}
/*  common-next-title
------------------------------------------------------------------*/
.common-next-title{
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #727171;
    line-height: 1;
}
@media screen and (max-width:767px){
    .common-next-title{
        font-size: 30px;
    }
}
/*  common-next-text
------------------------------------------------------------------*/
.common-next-text{
    font-size: 14px;
    font-weight: bold;
    color: #727171;
}
/*  common-next-link
------------------------------------------------------------------*/
.common-next-link{
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 900;
    color: #727171;
    line-height: 1;
}
.common-next-link .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 1;
}
.common-next-link .arrow::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #727171;
    border-radius: 50%;
    content: "";
    transition: .4s ease-out;
    z-index: 1;
}
.common-next-link .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
    column-gap: 14px;
    overflow: hidden;
    z-index: 1;
}
.common-next-link .icon::before,
.common-next-link .icon::after{
    display: block;
    width: 14px;
    height: 14px;
    background: url(../images/common/icon-arrow-gray.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.common-next-link .icon::before{
    opacity: 0;
}
.common-next-link .icon::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-next-link:hover .arrow::after{
        transform: scale(1.1);
    }
    .common-next-link:hover .icon::before,
    .common-next-link:hover .icon::after{
        transform: translateX(0);
    }
    .common-next-link:hover .icon::before{
        opacity: 1;
    }
    .common-next-link:hover .icon::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .common-next-link:active .arrow::after{
        transform: scale(1.1);
    }
    .common-next-link:active .icon::before,
    .common-next-link:active .icon::after{
        transform: translateX(0);
    }
    .common-next-link:active .icon::before{
        opacity: 1;
    }
    .common-next-link:active .icon::after{
        opacity: 0;
    }
}
@media screen and (max-width:767px){
    .common-next-link{
        column-gap: 10px;
        font-size: 18px;
    }
    .common-next-link .arrow{
        width: 30px;
        height: 30px;
    }
    .common-next-link .icon{
        width: 8px;
        height: 8px;
        column-gap: 8px;
    }
    .common-next-link .icon::before,
    .common-next-link .icon::after{
        width: 8px;
        height: 8px;
    }
}

/*------------------------------------------------------------------
  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: 2;
}
.breadcrumb > li{
    color: #fff;
}
.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(--accent-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--red-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;
    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;
    }
}


/*  page-two-column
------------------------------------------------------------------*/
.page-two-column{
    display: flex;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .page-two-column{
        flex-direction: column;
        row-gap: 40px;
    }
}
@media print{
    .page-two-column{
        flex-direction: column;
        row-gap: 40px;
    }
}
/*  page-aside
------------------------------------------------------------------*/
.page-aside{
    position: relative;
    flex-shrink: 0;
    width: 250px;
}
@media screen and (max-width:1199px){
    .page-aside{ 
        width: 100%;
    }
}
@media print{
    .page-aside{ 
        width: 100%;
    }
}
/*  page-aside-wrapper
------------------------------------------------------------------*/
.page-aside-wrapper{
    position: sticky;
    top: 130px;
    left: 0;
}
/*  page-category-list
------------------------------------------------------------------*/
.page-category-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    line-height: 1;
}
@media screen and (max-width:1199px){
    .page-category-list{
        grid-template-columns: repeat(4,1fr);
        column-gap: 10px;
    }
}
@media screen and (max-width:767px){
    .page-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .page-category-list{
        row-gap: 5px;
        column-gap: 5px;
    }
}
@media print{
    .page-category-list{
        grid-template-columns: repeat(4,1fr);
        column-gap: 10px;
    }
}
/*  page-category-btn
------------------------------------------------------------------*/
.page-category-btn{
    position: relative;
    display: flex;
    align-items: center;
    height: 3em;
    padding-left: 1em;
    padding-right: 1em;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    transition: .2s ease-out;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.2;
}
.page-category-btn::after{
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    transition: .2s ease-out;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.85em;
    font-weight: bold;
}
/* アクティブ時動作 */
    .page-category-btn.active{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
        pointer-events: none;
    }
    .page-category-btn.active::after{
        right: 0.3em;
    }
/* ホバー時動作 */
@media (hover:hover) {
    .page-category-btn:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    .page-category-btn:hover::after{
        right: 0.3em;
    }
}
@media screen and (max-width:991px){
    .page-category-btn{ 
        font-size: 0.75rem;
    }
}
@media screen and (max-width:374px){
    .page-category-btn{ 
        font-size: 0.625rem;
    }
}
/*  page-article
------------------------------------------------------------------*/
.page-article{
    flex: 1;
}