:root {
    --text-color: #000000;
    --main-color: #FFFFFF;
    --title-color: #111111;
    --font-jp: 'Shippori Mincho', sans-serif;
}


* {
    list-style: none;
    font-weight: 700;
}

body a {
    cursor: pointer;
    text-decoration: none;
}



/* /////////////////////////////////




コンテンツ幅




///////////////////////////////// */





.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.mid_container {
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
}





/* /////////////////////////////////




余白・改行




///////////////////////////////// */








.mt_24 {
    margin-top: 2.4rem;
}

.mt_30 {
    margin-top: 3rem;
}

.mt_40 {
    margin-top: 4rem;
}

.mt_50 {
    margin-top: 5rem;
}

.mt_60 {
    margin-top: 6rem;
}


.ptb_120 {
    padding: 12rem 0;
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline-block;
}

.center {
    text-align: center;
}




/* /////////////////////////////////




flex




///////////////////////////////// */


.fl {
    display: flex;
}

.al_center {
    align-items: center;
}


@media screen and (max-width:980px) {
    .fl {
        flex-direction: column;
    }
}





/* /////////////////////////////////




ヘッダー




///////////////////////////////// */



.cta_wrap {
    width: 95%;
    margin: auto;
    padding-top: 2rem;
}

.cta_wrap p {
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 700;
    text-align: right;
}

.cta_wrap br {
    display: none;
}

.cta_wrap > .cta {
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.cta li {
    color: var(--main-color);
    height: 54px;
    border: 1px solid var(--main-color);
    box-sizing: border-box;
    width: 250px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.7;
    background-color: rgba(255,255,255,0.12);
    transition: .5s;
}

.cta li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.cta li:hover {
    opacity: .7;
}

.cta li a::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: sub;
}

.cta li:first-child a::before {
    background-image: url(../image/pc.png);
}

.cta li:last-child a::before {
    background-image: url(../image/tel.png);
    width: 19px;
    height: 19px;
    opacity: .6;
}



/* /////////////////////////////////




追従ボタン




///////////////////////////////// */


.sticky_btn {
    position: fixed;
    bottom: 0;
    z-index: 999;
    background-color: rgba(34,34,34,0.9);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.sticky_btn .cta {
    gap: 2.5rem;
    justify-content: center;
}

.active{
    opacity: 1;
    visibility: visible;
}


/* /////////////////////////////////




ボタン・リンク




///////////////////////////////// */







/* /////////////////////////////////




コンテンツのタイトル




///////////////////////////////// */




.contents_title {
    font-size: 5rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1.2;
}

.contents_title span {
    font-size: 7rem;
}


/* /////////////////////////////////




コンタクト




///////////////////////////////// */


















/* /////////////////////////////////




フッター




///////////////////////////////// */



footer {
    color: var(--main-color);
    background-image: url(../image/bg05.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 6rem 0 12rem 0;
}

.footer_item img {
    width: 30%;
    height: auto;
    margin: auto;
    display: block;
    text-align: center;
}

.footer_item_wrap {
    justify-content: space-between;
    align-items: flex-end;
}

.footer_info {
    text-align: center;
}

.footer_info .site_name {
    font-size: 2.5rem;
}

.footer_item:first-of-type {
    flex: 1;
}
.footer_item:last-of-type {
    width: 60%;
}

.footer_menu {
    gap: 6rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer_menu li {
    font-size: clamp(1.8rem, 1.3vw, 2rem);
    position: relative;
}

.footer_menu li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: rgba(255,255,255,0.5);
    transform: rotate(30deg);
    position: absolute;
    right: -3rem;
    top: 20%;
}

.footer_subMenu ul {
    gap: 6rem;
}

.footer_subMenu ul li {
    font-size: 1.6rem;
    color: #AAAAAA;
    position: relative;
}

.footer_subMenu ul li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: rgba(255,255,255,0.5);
    transform: rotate(30deg);
    position: absolute;
    right: -3rem;
    top: 20%;
}

.footer_subMenu {
    gap: 8rem;
    justify-content: flex-end;
}

@media screen and (max-width:1200px) {

.footer_item_wrap {
    flex-direction: column;
    align-items: flex-start;
}

.footer_item:first-of-type {
    display: flex;
    align-items: flex-end;
}

.footer_item {
    width: 100%;
}

.footer_item img {
    width: 20%;
    margin: 0;
    max-width: 120px;
}

.footer_item:last-of-type {
    width: 100%;
    margin-top: 4rem;
}



}








@media screen and (max-width:980px) {






.pc_none {
    display: inline-block;
}




/* /////////////////////////////////




ヘッダー




///////////////////////////////// */





.cta_wrap > .cta {
    flex-direction: row;
}

.global_menu ul {
    flex-direction: row;
    justify-content: flex-end;
    left: auto;
    right: 5rem;
}




/* /////////////////////////////////




追従ボタン




///////////////////////////////// */



.sticky_btn .cta {
    flex-direction: row;
}





/* /////////////////////////////////




フッター




///////////////////////////////// */



.footer_menu,
.footer_subMenu,
.footer_subMenu ul {
    flex-direction: row;
    gap: 4rem;
}

.footer_menu li:not(:last-child)::after,
.footer_subMenu ul li:not(:last-child)::after {
    right: -2rem;
}



}













@media screen and (max-width:650px) {



.sp_br {
    display: block;
}



/* /////////////////////////////////




ヘッダー




///////////////////////////////// */




.cta_wrap p {
    font-size: 2.4rem;
}

.cta_wrap br {
    display: block;
}

.cta li {
    flex: 1;
    width: 100%;
    font-size: 3.2rem;
    height: 45px;
    line-height: 2.5;
}

.cta li::before {
    width: 20px;
    height: 20px;
}

.cta_wrap .cta {
    justify-content: center;
}

.cta_wrap .cta li {
    max-width: 200px;
}



/* /////////////////////////////////




追従ボタン




///////////////////////////////// */



.sticky_btn .cta li {
    max-width: 250px;
}



/* /////////////////////////////////




ボタン




///////////////////////////////// */




/* /////////////////////////////////




コンテンツのタイトル




///////////////////////////////// */








/* /////////////////////////////////




コンタクト




///////////////////////////////// */











/* /////////////////////////////////




フッター




///////////////////////////////// */



.footer_info .site_name {
    font-size: 3.6rem;
}

.footer_menu  {
    justify-content: flex-start;
    row-gap: 2rem;
}

.footer_menu li {
    font-size: 2.8rem;
}

.footer_subMenu ul li {
    font-size: 2.8rem;
}

.footer_subMenu {
    flex-direction: column;
}

.footer_item img {
    min-width: 90px;
}





}






