@charset "utf-8";

html {
    font-size: 62.5%;
    scroll-padding-top: 88px;
}

/* * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

.sp {
    display: none;
}

.readBtn a {
    font-size: 1.4rem;
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 220px;
    max-width: 220px;
    padding: 12px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    transform: skew(-10deg, 0deg);
    border: 1px solid #787878;
}

.readBtn a span {
    transform: skewX(10deg);
}

.readBtn a:before {
    content: "";
    width: 65px;
    height: 1px;
    position: absolute;
    right: -20px;
    background: #313131;
    top: 35%;
    transition: 0.2s ease-in-out;
}

.readBtn a:after {
    content: "";
    width: 40px;
    height: 1px;
    position: absolute;
    right: -5px;
    background: #313131;
    top: 55%;
    transition: 0.2s ease-in-out;
}

.readBtn a:hover {
    background: #313131;
    color: #fff;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
    transform: translateX(10px);
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeaderBg {
    position: relative;
    height: 400px;
    filter: grayscale(0.7);
}

.pageHeaderBg__wrapper {
    width: 1180px;
    height: 100%;
    margin: 0 auto;
}

.pageHeaderBg__titleWrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 85px;
    box-sizing: border-box;
}

.pageHeaderBg__title {
    font-size: 4rem;
    color: #fff;
    background: #272727;
    width: fit-content;
    padding: 0.2em 0.5em;
}

.pageHeaderBg__subTitle {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
}

#pageHeaderBg__mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
}

#pageHeaderBg__mask1 {
    position: absolute;
    left: 70%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: rgba(23, 24, 34, 0.5);
    transform: skew(40deg);
}

#pageHeaderBg__mask2 {
    position: absolute;
    left: 70%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    background: rgba(23, 24, 34, 0.5);
    transform: skew(-40deg);
}

/*
******************************
    header
*******************************
*/
header {
    position: fixed;
    width: 100%;
    z-index: 99;
    transition: .4s;
    background-color: #fff;
}

.header__wrapper {
    width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header__navLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header__navLink::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.header__navLink:hover::after {
    transform: scale(1.5, 1);
}

.header__navLink-ja {
    font-weight: 800;
}

.header__navLink-en {
    font-size: 1.0rem;
}

.header__logo {
    width: 220px;
    margin: 24px 0;
    transition: .4s;
}

.header__logo:hover {
    opacity: 0.6;
}

.header__logo img {
    width: 100%;
}

.header__navMenu {
    display: flex;
    align-items: center;
}

.header__navLists {
    display: flex;
    align-items: center;
}

.header__navitem {
    margin-right: 40px;
    font-size: 1.6rem;
    color: #000;
    transition: .4s;
}

.header__navitem:hover {
    opacity: 0.8;
}


/*
******************************
    footer
*******************************
*/

footer {
    background: #1c1c1c;
    position: relative;
}

.footer__wrapper {
    width: 1180px;
    margin: 0 auto;
    padding: 40px 0;
}

.footer__firstContent,
.footer__secondContent {
    display: flex;
    justify-content: space-between;
}

.footer__logo {
    width: 180px;
    margin-bottom: 16px;
}

.footer__logo img {
    width: 100%;
}

.footer__navMenu {
    display: flex;
    align-items: center;
}

.footer__navLists {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.footer__navitem {
    font-size: 1.6rem;
    color: #ffff;
    text-decoration: underline;
}

.footer__address {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5em;
}

.footer__copyright,
.footer__secondContent .footer__navitem {
    font-size: 1.2rem;
    color: #8f8f8f;
}

i.fa-solid.fa-arrow-up-right-from-square {
    margin-left: 6px;
}

footer a {
    transition: .4s;
}

footer a:hover {
    opacity: 0.6;
}

/* 
トップへ戻るボタン 
*/
#page-top {
    position: absolute;
    right: 35px;
    bottom: 35px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 2.0rem;
    color: #fff;
    padding: 0 0 0 35px;
    border-top: solid 1px;
    animation: moveanime 2.0s ease-in-out infinite;
}

#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

/* 
背景が徐々に透明度が濃くなるアニメーション 
*/
@keyframes moveanime {
    0% {
        bottom: 35px;
    }

    50% {
        bottom: 60px;
    }

    100% {
        bottom: 35px;
    }
}


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

◆ ブレークポイント
 - 0      〜  479px：スマホ
 - 480px  〜  959px：タブレット
 - 960px  〜 1279px：タブレット(大) / モバイルPC
 - 1280px 〜       ：大型PC

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

/* ------------------------------------------
  〜479px：スマホ縦
--------------------------------------------*/
@media screen and (max-width:479px) {

    html {
        font-size: 50%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /*
    ******************************
        pageHeader
    *******************************
    */

    .pageHeaderBg {
        height: 300px;
    }

    .pageHeaderBg__wrapper {
        width: 90%;
    }

    /*
    ******************************
        header
    *******************************
    */
    header {
        background: #fff;
    }

    .header__wrapper {
        height: 80px;
        align-items: center;
    }

    .header__logo {
        width: 185px;
        margin-left: 20px;
    }

    .header__navLink-en {
        font-size: 3.5rem;
        font-weight: 800;
        margin-right: 24px;
    }

    .header__navLink-ja {
        font-weight: unset;
    }

    .header__navLink::after {
        display: none;
    }

    .header__navLink {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    /*　
    ハンバーガーメニュー
    */
    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 20px;
        top: 19px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #555;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* 
    ナビ開いてる時のボタン 
    */
    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    .globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        transition: all 0.6s;
        width: 100%;
        background: #fff;
        height: calc(100% - 85px);
        overflow-y: scroll;
        opacity: 0;
    }

    .globalMenuSp ul {
        background: #fff;
        margin: 0 auto;
        padding: 24px 0;
        width: 80%;
    }

    .globalMenuSp ul li {
        background: #fff;
    }

    .globalMenuSp ul li a {
        color: black;
        padding: 10px;
        font-size: 1.6rem;
    }

    .globalMenuSp.active {
        /* このクラスを、jQueryで付与・削除する */
        transform: translateY(80px);
        opacity: 1;
    }

    .hamburgerBtns {
        margin-top: 16px;
    }

    .globalMenuSp__item-head {
        font-weight: 800;
        border-top: 1px solid black;
    }

    .globalMenuSp__item-link a::before {
        content: "\f105";
        font-family: FontAwesome;
        padding-right: 5px;
        color: #fff;
        margin-top: -8px;
    }

    .globalMenuSp__item-link {
        padding-left: 6px;
    }

    /*
    ******************************
        footer
    *******************************
    */
    .footer__wrapper {
        width: 95%;
    }

    .footer__firstContent {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .footer__secondContent {
        flex-direction: column-reverse;
    }

    .footer__navLists {
        align-items: flex-start;
        gap: 1.5em;
        width: 100%;
    }

    .footer__logo {
        width: 160px;
    }

    .footer__navitem {
        font-size: 1.4rem;
        line-height: 4rem;
        text-decoration: underline;
    }

    .footer__copyright,
    .footer__secondContent .footer__navitem {
        font-size: 1.6rem;
    }

    .footer__secondContent .footer__navLists {
        margin-bottom: 16px;
    }

}

/* ------------------------------------------
  480px〜959px：タブレット
--------------------------------------------*/
@media screen and (min-width:480px) and (max-width:959px) {

    html {
        font-size: 50%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /*
    ******************************
        pageHeader
    *******************************
    */

    .pageHeaderBg {
        height: 300px;
    }

    .pageHeaderBg__wrapper {
        width: 90%;
    }

    /*
    ******************************
        header
    *******************************
    */
    header {
        background: #fff;
    }

    .header__wrapper {
        height: 80px;
        align-items: center;
    }

    .header__logo {
        width: 200px;
        margin-left: 20px;
    }

    .header__navLink-en {
        font-size: 3.5rem;
        font-weight: 800;
        margin-right: 24px;
    }

    .header__navLink-ja {
        font-weight: unset;
    }

    .header__navLink::after {
        display: none;
    }

    .header__navLink {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    /*　
    ハンバーガーメニュー
    */
    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 20px;
        top: 19px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #555;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* 
    ナビ開いてる時のボタン 
    */
    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    .globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        transition: all 0.6s;
        width: 100%;
        background: #fff;
        height: calc(100% - 85px);
        overflow-y: scroll;
        opacity: 0;
    }

    .globalMenuSp ul {
        background: #fff;
        margin: 0 auto;
        padding: 80px 0;
        width: 80%;
    }

    .globalMenuSp ul li {
        background: #fff;
    }

    .globalMenuSp ul li a {
        color: black;
        padding: 24px 10px;
        font-size: 1.6rem;
    }

    .globalMenuSp.active {
        /* このクラスを、jQueryで付与・削除する */
        transform: translateY(80px);
        opacity: 1;
    }

    .hamburgerBtns {
        margin-top: 16px;
    }

    .globalMenuSp__item-head {
        font-weight: 800;
        border-top: 1px solid black;
    }

    .globalMenuSp__item-link a::before {
        content: "\f105";
        font-family: FontAwesome;
        padding-right: 5px;
        color: #fff;
        margin-top: -8px;
    }

    .globalMenuSp__item-link {
        padding-left: 6px;
    }

    /*
    ******************************
        footer
    *******************************
    */
    .footer__wrapper {
        width: 95%;
    }

    .footer__firstContent {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .footer__secondContent {
        flex-direction: column-reverse;
    }

    .footer__navLists {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer__logo {
        width: 160px;
    }

    .footer__navitem {
        font-size: 1.6rem;
        line-height: 4rem;
    }

    .footer__copyright,
    .footer__secondContent .footer__navitem {
        font-size: 1.6rem;
    }

    .footer__secondContent .footer__navLists {
        margin-bottom: 16px;
    }
}


/* ------------------------------------------
  960px〜1279px：タブレット(大)/モバイルPC
--------------------------------------------*/
@media screen and (min-width:960px) and (max-width:1279px) {

    /*
    ******************************
        pageHeader
    *******************************
    */
    .pageHeaderBg__wrapper {
        width: 90%;
    }

    /*
    ******************************
        header
    *******************************
    */
    .header__wrapper {
        width: 90%;
    }

    nav.header__navMenu.pc {
        display: flex;
    }


    /*
    ******************************
        footer
    *******************************
    */
    .footer__wrapper {
        width: 90%;
    }
}


/* ------------------------------------------
  1280px〜：大型PC
--------------------------------------------*/
@media screen and (min-width:1280px) {}