@charset "UTF-8";
/* sp */
body, p, li, a, h1, h2, h3, h4 {
    color: #555;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}
ul {
    padding: 0;
}
li {
    list-style: none;;
}
a {
    color: #555;
    text-decoration: none;
}
a :hover {
    opacity: 0.5;
}
img {
    width: 100%;
    height: auto;
}
.pc_only {
    display: none;
}
.sp_only {
    display: block;
}

#gl-nav .logo a,
#footer-nav .logo a,
.hamburger_menu .logo a {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: .2rem;
    padding: 55px 0;
    display: block;
}

.footerMenu {
    padding: 0 2vw;
}
.footerMenu_txt p {
    font-size: 18px;
    line-height: 60px;
    font-weight: bold;
}

/* 崩れ調整用 */
@media screen and (min-width:768px) and ( max-width:925px) {
    .gl-menuItem a,
    .footer-menuItem a {
        font-size: 14px;
    }
    #gl-nav .gl-menuArea .gl-menuItem:first-child {
        padding-left: 20px;
    }
    #gl-nav .gl-menuArea .gl-menuItem,
    #footer-nav .footer-menuArea .footer-menuItem {
        padding-left: 22px !important;
    }
}

/* spだけ */
@media screen and (max-width: 768px) {
    /* .sp_space {
        padding: 0 4vw;
    } */

    p {
        font-size: 15px;
        line-height: 30.14px;
        letter-spacing: .06rem;
    }
    .kvArea {
        display: flex;
        flex-direction: column-reverse;
    }

    /* hamburger */
    body {
        padding-top: 118px;
        margin: 0 auto;
        min-width: 320px;
    }
    header {
        width: 100%;
        height: 118px;
        background: #fff;
        padding: 0 4vw;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        z-index: 3;
    }
    .menu-btn {
        position: fixed;
        top: 0;
        right: 10px;
        display: flex;
        height: 118px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #555;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #fff;
        transition: all 0.5s;/*アニメーション設定*/
    }
    .menu-content ul {
        padding: 70px 10px 0;
    }
    .menu-content ul li {
        border-bottom: solid 1px #555;
        list-style: none;
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#555;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }
    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #555;
        border-right: solid 2px #555;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }

    .flexCnt {
        margin-bottom: 50px;
        padding-bottom: 50px;
        padding-right: 4vw;
        padding-left: 4vw;
        border-bottom: 1px solid #555;
    }
    .flexCnt:last-child {
        margin-bottom: 0;
        padding-bottom: 70px;
        border-bottom: none;
    }
    .flexCnt-img {
        display: flex;
        width: 100%;
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 20px;
    }
    .flexCnt-linktxt {
        display: block;
        width: 100%;
        max-width: 540px;
        position: relative;
        font-size: 18px;
        line-height: 18px;
        margin-right: auto;
        margin-left: auto;
    }
    .flexCnt-linktxt::after {
        content: ">";
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -12px;
        padding: 1px 6px 5px 8px;
    }

    footer {
        height: 437px;
    }
    .footerArea {
        background-position: right;
        background-image: url(../images/footer_bg_sp.png);
        background-repeat: no-repeat;
        background-position: right;
        height: 437px;
    }
    .footerMenu,
    .footer-nav {
        display: flex;
        flex-direction: column-reverse;
    }
    footer .footerCnt {
        flex-direction: column;
        display: flex;
        max-width: unset;
        height: 437px;
        padding: 0 2vw;
    }
    .footerMenu {
        padding: 0;
    }
    .footer-menuItem {
        padding: 15px 0;
        border-top: 1px solid #555;
    }
    .footer-menuItem a {
        font-size: 18px;
        line-height: 18px;
        padding-left: 40px;
    }
    footer .footer_txt {
        display: table-cell;
        vertical-align: middle;
    }
    footer .footer_txt p {
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 28.14px;
        margin: 77px 0 36px 0;
    }
    footer .btn {
        border: 1px #fff solid;
        width: 100%;
        max-width: 350px;
        min-width: 300px;
        height: 57px;
        border-radius: 28.5px;
        margin: 0 auto;
        text-align: center;
    }
    footer .btn-txt {
        margin: 0 auto;
    }
    .btn-txt .btn:last-child {
        margin-top: 23px;
    }
    footer .btn-txt a {
        position: relative;
        font-size: 15px;
        line-height: 53px;
        letter-spacing: .2rem;
        color: #fff;
        display: block;
        margin: 0 auto;
    }
    .btn-txt a::after {
        content: ">";
        position: absolute;
        top: 50px;
        margin-top: -35px;
        right: 40px;
        padding: 3px 5px 7px 8px;
        line-height: 15px;
    }
    #footer-nav .logo a {
        font-size: 40px;
    }
    .footer-menuCnt {
        border-bottom: 1px solid #555;
    }
    .footerMenu_list ul {
        border-top: 1px solid #555;
    }
    .footerMenu_list li {
        display: flex;
        flex-direction: column;
        padding: 34px 0;
        border-bottom: 1px solid #555;
    }
    .footerMenu_list li a {
        padding: 0 4vw;
    }
    .footerMenu_list li .subList {
        position: relative;
        padding: 6px 4vw;
    }
    .footerMenu_list li .subList::before {
        position: absolute;
        content: ">";
        display: contents;
        top: 50%;
        margin-top: -35px;
        right: 26px;
        padding: 3px 5px 7px 8px;
        line-height: 15px;
    }
    .footerMenu .logo {
        align-items: center;
        text-align: center;
    }
    .footerMenu .logo a {
        font-size: 40px;
        font-weight: bold;
        letter-spacing: .2rem;
    }
    .footerMenu_txt {
        min-width: 320px;
    }
    .footerMenu_txt p {
        display: flex;
        font-size: 23px;
        line-height: 30px;
        max-width: 540px;
        margin-top: 90px;
        margin-bottom: 70px;
        padding-left: 40px;
        text-align: center;
    }

    .copy {
        width: 100%;
        max-width: 269px;
        font-size: 14px;
        line-height: 14px;
        text-align: center;
        margin: 0 auto;
        padding-top: 15px;
        padding-bottom: 38px;
        border-top: 1px solid #555;
    }
}

/* pc */
@media screen and (min-width: 769px) {
    *, ::before, ::after {
        box-sizing: border-box;
        border-style: solid;
        border-width: 0;
    }
    main,
    header {
        margin: 0 auto;
    }
    body {
        margin: 0;
        padding-top: 140px;
    }
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }

    p {
    font-size: 15px;
    line-height: 30.14px;
    letter-spacing: .17rem;
    }
    h1,h4 {
        font-size: 18px;
        margin: 0;
    }
    h1 {
        line-height: 20px;
        letter-spacing: .14rem;
    }
    h2 {
        font-size: 23px;
        font-weight: normal;
        line-height: 39.14px;
        letter-spacing: .2rem;
    }
    h3 {
        font-size: 20px;
        line-height: 20px;
        margin: 0;
    }
    h4 {
        line-height: 38px;
        letter-spacing: .17rem;
    }
    header {
        margin: 0 auto;
    }
    .gl-nav {
        width: 100%;
        position: fixed;
        top: 0;
        left: auto;
        align-items: center;
        z-index: 90;
        background-color: #fff;
        padding: 0 4vw;
    }
    #gl-nav {
        display: flex;
        justify-content: space-between;
    }
    #gl-nav .gl-menuArea {
        display: block;
    }
    #gl-nav .gl-menuArea .gl-menuCnt {
        display: flex;
        width: 100%;
        max-width: 746px;
        margin: 0;
        padding: 55px 0;
    }
    #gl-nav .gl-menuArea .gl-menuItem {
        padding-left: 42px;
    }
    #gl-nav .gl-menuArea .gl-menuItem:first-child {
        padding-left: 0;
    }

    .-box {
        display: flex;
        max-width: 1100px;
        margin: 0 auto;
    }

    .txtImg {
        max-width: 1100px;
        margin: 0 auto;
    }

    .cmn-linkbox {
        padding: 0 2vw;
    }
    /* footer */
    footer {
        max-width: 1200px;
        margin: 0 auto;
        background-image: url(../images/footer_bg.png);
        background-repeat: no-repeat;
        background-position: top;
        height: 363px;
    }
    #footer-nav {
        width: 100%;
        max-width: 1100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }
    #footer-nav .footer-menuArea {
        display: block;
    }
    #footer-nav .footer-menuArea .footer-menuCnt {
        display: flex;
        width: 100%;
        max-width: 746px;
        margin: 0;
        padding: 100px 0;
    }
    #footer-nav .footer-menuArea .footer-menuItem {
        padding-left: 42px;
    }
    #footer-nav .footer-menuArea .footer-menuItem:first-child {
        padding-left: 0;
    }
    footer .footerArea {
        display: flex;
        margin-top: 120px;
        padding-left: 100px;
        height: 363px;
    }
    footer .footerCnt {
        display: flex;
        flex-direction: column;
        max-width: 550px;
    }
    footer .footer_txt {
        display: table-cell;
        vertical-align: middle;
        margin-top: 70px;
        margin-bottom: 67px;
    }
    footer .footer_txt p {
        color: #fff;
        text-align: left;
        font-size: 18px;
        line-height: 28.14px;
        margin: 0;
    }
    footer .btn {
        border: 1px #fff solid;
        width: 255px;
        height: 47px;
        border-radius: 28.5px;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 14px;
    }
    footer .btn:last-child{
        margin-right: 0;
    }
    footer .btn a {
        position: relative;
        font-size: 15px;
        line-height: 43px;
        letter-spacing: .2rem;
        color: #fff;
        width: 111px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    footer .footerMenu_tpb {
        width: 100%;
        max-width: 1100px;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding-bottom: 83px;
    }
    .footerMenu_txt p {
        font-size: 18px;
        line-height: 39px;
        padding-top: 18px;
        padding-right: 2vw;
    }
    .btn-txt {
        display: flex;
    }
    .footer-linkbtn {
        display: flex;
    }
    .footer-linkbtn .btn {
        border: 1px #555 solid;
        width: 255px;
        height: 47px;
        border-radius: 28.5px;
        margin: 0 auto;
        margin-top: 40px;
        margin-bottom: 10px;
        margin-right: 14px;
    }
    .footer-linkbtn .btn a {
        position: relative;
        font-size: 15px;
        line-height: 43px;
        letter-spacing: .2rem;
        color: #555;
        width: 111px;
        margin: 0 auto;
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    /* .btn-txt .btn:last-child {
        margin-top: 23px;
        background-color: #fff;
    }
    .btn-txt .sec a {
        color: #555;
    } */
    .linkboxArea {
        padding-top: 78px;
    }
    .linkboxArea .flexCnt {
        position: relative;
        padding-right: calc((64 / 1100) * 100%);
    }
    .linkboxArea .flexCnt:last-child {
        padding-right: 0;
    }
    .linkboxArea .flexCnt a {
        max-width: 324px;
        letter-spacing: .17rem;
    }
    /* .flexCnt:last-child {
        padding-right: 0;
    } */
    .flexCnt-linktxt {
        display: block;
        margin-top: 10px;
        position: relative;
    }
    .flexCnt-linktxt::after {
        content: ">";
        position: absolute;
        top: -2px;
        margin-left: 40px;
    }
    .footer-linktxt::after {
        content: ">";
        position: absolute;
        top: -2px;
        margin-left: 30px;
    }
    .btn-linktxt::after {
        content: ">";
        position: absolute;
        top: -2px;
        margin-left: 30px;
    }

    .copy {
        width: 100%;
        max-width: 269px;
        font-size: 14px;
        line-height: 14px;
        text-align: center;
        margin: 0 auto;
        padding-top: 15px;
        padding-bottom: 38px;
        border-top: 1px solid #555;
    }
}