* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Zen Maru Gothic", sans-serif, serif;
    color: #48575E;
}

body,
p,
ul,
li,
div,
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: unset;
}

.br_pc {
    display: inline;
}
.br_sp {
    display: none;
}
.view_pc {
    display: block!important;
}
.view_sp {
    display: none!important;
}

i {
    font-weight: bold;
}

html, body {
    overflow-x: hidden;
}



/* ////////////////////////////////// */
/* ヘッダー */
/* ////////////////////////////////// */
/* SP版、ハンバーガーは非表示 */
.menu-wrapper {
    display: none;
}

.pc_header_area {
    display: block;
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
}
.gb_nav {

}
.container {
    background: #fff;
    height: 70px;
    display: flex;
    justify-content: space-between;
}
.header_logo {
    padding: 5px;
    padding-left: 10px;
}
.header_logo img {
    height: 50px;
}
.container ul {
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
}
.li_header {
    display: block;
    text-align: center;
    height: 70px;
    padding-top: 25px;
    margin-right: 15px;
    font-size: 15px;
}
.li_header a {
    color: #48575E;
    transition: 0.4s;
}
.li_header .menu_a1:hover {
    color: #FF6644;
}
.li_header .menu_a2:hover {
    color: #FF8E25;
}
.li_header .menu_a3:hover {
    color: #FFE251;
}
.li_header .menu_a4:hover {
    color: #31C521;
}
.li_header .menu_a5:hover {
    color: #469CFF;
}
.li_header .menu_a6:hover {
    color: #D473DC;
}
.li_header .menu_a7:hover {
    color: #FA7EB5;
}
.li_header .menu_a8:hover {
    color: #f16666;
}
.li_header_contact {
    color: #fff;
    background: #FF6644;
    padding: 10px;
    width: 110px;
    height: 110px;
    display: flex;
    margin-right: 0px;
    font-size: 14px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: solid 2px #FF6644;
    transition: 0.4s;
    opacity: 1;
}
.li_header_contact img {
    width: 40px;
    margin-bottom: 5px;
}
/*
.li_header_contact:hover {
    background: #fff;
    color: #FF6644;
}
.li_header_contact:hover i {
    color: #FF6644;
}
*/
.li_header_contact:hover {
    background: #FF8E25;
    border: solid 2px #FF8E25;
}


/* ////////////////////////////////// */
/* ハンバーガーメニュー */
/* ////////////////////////////////// */
.menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    width: 100%;
    height: 60px;
    background: #fff;
}
.header_logo_sp {
    padding: 5px 0 5px 10px;
}
.header_logo_sp img {
    height: 50px;
}
.menu-icon {
    width: auto;
    height: auto;
    position: fixed;
    top: 0;
    right: 0;
    padding: 18px 15px;
    background: #FF6644;
    cursor: pointer;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 60px;
    height: 60px;
}
.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s;
}
/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
/* オーバーレイ背景 */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1;
}
#menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
}
/* メニュー本体（左から出す） */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 2;
    overflow-y: scroll;
}
#menu-toggle:checked ~ .menu {
    right: 0;
}
.menu ul {
    list-style: none;
    padding: 60px 20px 0;
    display: flex;
    flex-wrap: wrap;
    height: 460px;
}
.menu li {
    margin: 20px auto 0;
    width: calc(50% - 20px);
}
.menu .li_logo {
    width: 100%!important;
    margin-bottom: 10px!important;
    padding: 0 20px;
}
.menu .li_logo img {
    width: 100%;
}
.menu a {
    text-align: center;
    padding: 15px 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;

    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #ddd;
}
.menu a:hover {
    /*color: #007bff;*/
}
.menu a i {
    color: #FF8E25;
    padding-bottom: 2px;
}
.hamback {
    position: relative;
    width: 100%;
    height: calc(100vh - 460px);
}
.hambackimg1 {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    /*height: calc(100vh - 460px - 50px);*/
    height: 120px;
    /*
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    */
}
.hambackimg2 {
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 2;
    /*height: calc(100vh - 460px - 100px);*/
    height: 80px;
    /*
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    */
}


/* ////////////////////////////////// */
/* フッター */
/* ////////////////////////////////// */
footer {
}

.footer_menu {

}
.footer_logo_flex {
    display: flex;
    margin: 0 auto;
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.footer_logo {
    width: 300px;
}
.footer_tel {
    padding-left: 50px;
    width: 350px;
}
.footer_tel img {
    width: 100%;
}
.footer_tel p {
    display: block;
    text-align: center;
}

.footer_logo2 {
    width: 130px;
}
.footer_centers_list {
    width: 450px;
}
.footer_centers_list table {
    width: 100%;
}
.footer_centers_list table td {
    padding-bottom: 3px;
}
.footer_centers_list table td:nth-child(1) {
    width: 120px;
}
.footer_centers_list table td:nth-child(2) {
    width: 80px;
    text-align: right;
}
.footer_logo_flex a {
    display: flex;
    background: #FF6644;
    color: #fff;
    width: 280px;
    height: 50px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    border: solid 2px #FF6644;
    transition: 0.4s;
    opacity: 1;
}
.footer_logo_flex a img {
    width: 24px;
    margin-right: 5px;
}
/*
.footer_logo_flex a:hover {
    color: #FF6644;
    background: #fff;
}
.footer_logo_flex a:hover i {
    color: #FF6644;
}
*/
.footer_logo_flex a:hover {
    background: #FF8E25;
    border: solid 2px #FF8E25;
}
.footer_nav_area {
    display: flex;
    margin: 0 auto;
    padding-top: 30px;
    max-width: 1000px;
    justify-content: space-between;
    border-top: dotted 1px #4C4C4C;
}
.footer_nav_area ul {

}
.footer_nav_area ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer_li_top {
    font-size: 16px!important;
    font-weight: bold;
    margin-bottom: 15px!important;
}
.footer_menu .copy {
    text-align: center;
    font-size: 12px;
    color: #B5B5B5;
    margin-top: 30px;
    margin-bottom: 20px;
}



/* ////////////////////////////////// */
/* 下層ページトップ */
/* ////////////////////////////////// */
.lower_top {
    position: relative;
    width: 100%;
    /*height: calc(50vh - 70px);*/
    height: calc(70vh - 70px);
    /*margin-top: 78px;*/
    border-top-left-radius: 20px;
    -webkit-border-top-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    border-bottom-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-bottomright: 20px;
}
.lower_top_txtblock {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 450px;
    background: #fff;
    padding: 0 0 15px 20px;
    border-top-right-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topright: 20px;
}
.lower_top_txtblock h2 {
    font-size: 46px;
}
.lower_top_txtblock h2 span {
    display: block;
    font-size: 18px;
}

/* 各画面共通のタイトル部分 */
.common_title_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;

    margin-top: -70px;
    padding-top: 70px;
}
.common_title_flex img {
    height: 50px;
}
.common_title_flex h3 {
    margin: 0 50px;
    text-align: center;
    font-size: 28px;
}
.common_title_flex h3 span {
    display: block;
    color: #B5B5B5;
    font-size: 14px;
}




/* /////////////////////// */
/* サイズの大きいPC */
/* /////////////////////// */
@media screen and (min-width:1250px){
}


/* /////////////////////// */
/* サイズの小さいPC */
/* /////////////////////// */
@media screen and (max-width:1100px){
    .li_header {
        font-size: 13px;
    }
}
@media screen and (max-width:1050px){
    /* ヘッダー */
    .header_logo img {
        height: 40px;
        margin-top: 10px;
    }
    .li_header {
        font-size: 13px;
    }
    .li_header_contact {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    /* フッター */
    .footer_logo_flex {
        max-width: 750px;
    }
    .footer_logo {
        width: 220px;
    }
    .footer_tel {
        padding-left: 30px;
        width: 270px;
    }
    .footer_tel p {
        font-size: 14px;
    }
    .footer_logo2 {
        width: 110px;
    }
    .footer_centers_list {
        width: 350px;
    }
    .footer_centers_list table td {
        font-size: 14px;
    }
    .footer_logo_flex a {
        width: 240px;
        height: 45px;
    }
    .footer_nav_area {
        max-width: 750px;
    }
    .footer_li_top {
        font-size: 14px!important;
        margin-bottom: 10px!important;
    }
    .footer_nav_area ul li {
        font-size: 12px;
    }

    /* 下層ページトップ */
    .lower_top {
        /*margin-top: 68px;*/
    }
    .lower_top_txtblock {
        width: 380px;
    }
    .lower_top_txtblock h2 {
        font-size: 36px;
    }
    .lower_top_txtblock h2 span {
        font-size: 16px;
    }

    .common_title_flex h3 {
        margin: 0 30px;
    }
    .common_title_flex img {
        height: 40px;
    }
}
@media screen and (max-width:950px){
    .li_header {
        font-size: 11px;
        margin-right: 10px;
    }
    .header_logo img {
        height: 35px;
        margin-top: 10px;
    }
}
@media screen and (max-width:850px){
    .lower_top {
        /*margin-top: 38px;*/
    }
    .li_header_contact {
        width: 80px;
        padding: 10px 5px;
        height: 70px;
        font-size: 10px;
    }
    .header_logo img {
        height: 35px;
        margin-top: 13px;
    }
    .li_header_contact img {
        width: 32px;
        margin-bottom: 0;
    }
}
@media screen and (max-width:782px){
    .lower_top {
        /*margin-top: 24px;*/
    }
}

/* 高さが低いPC */
@media screen and (min-width:768px) and (max-height:700px){
    .lower_top {
        height: calc(85vh - 70px);
    }
}


/* /////////////////////// */
/* レスポンシブ対応 */
/* /////////////////////// */
@media screen and (max-width:767px){
    .br_pc {
        display: none;
    }
    .br_sp {
        display: inline;
    }
    .view_pc {
        display: none!important;
    }
    .view_sp {
        display: block!important;
    }

    /* PC版は非表示 */
    .pc_header_area {
        display: none;
    }

    .menu-wrapper {
        display: block;
    }
    .li_header_contact_sp {

    }

    .footer_logo_flex {
        width: calc(100% - 40px);
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer_logo {
        width: 85%;
        margin-bottom: 30px;
    }
    .footer_tel {
        padding-left: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer_logo2 {
        width: 150px;
    }
    .footer_centers_list {
        width: 100%;
        margin: 10px 0 30px;
    }
    .footer_centers_list table td {
        font-size: 13px;
    }
    .footer_logo_flex a {
        height: 55px;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer_nav_area {
        width: calc(100% - 40px);
        flex-wrap: wrap;
    }
    .footer_nav_area ul {
        width: calc(100% / 2 - 20px);
        margin-bottom: 30px;
    }



    .lower_top {
        height: calc(60vh - 70px);
        /*margin-top: 60px;*/
        margin-top: 0px;
    }
    .lower_top_txtblock {
        width: 85%;
        padding: 0px 0 10px 15px;
    }
    .lower_top_txtblock h2 {
        font-size: 32px;
    }
    .lower_top_txtblock h2 span {
        font-size: 14px;
    }

    .common_title_flex {
        margin-bottom: 20px;

        /*margin-top: -50px;
        padding-top: 50px;*/
    }
    .common_title_flex h3 {
        margin: 0 10px;
        font-size: 24px;
    }
    .common_title_flex img {
        height: 27px;
    }
}





/* ////////////////////////////////// */
/* ふわっとした動き */
/* ////////////////////////////////// */
/* 通常フェードイン */
.fadeIn {
    opacity: 0;
    transition: 2s;
}
.fadeIn.is-show {
    opacity: 1;
}
/* 下からフェードイン */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* 左からフェードイン */
.fadeIn_left {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
}
.fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
/* 右からフェードイン */
.fadeIn_right {
    opacity: 0;
    transform: translate(50%, 0);
    transition: 2s;
}
.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}