@charset "UTF-8";


/* all style
--------------------------------------------------------- */
/* body */
body {
    min-width: 320px;
    color: #111;
    font-size: 1.4rem;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    background: #fff;
}

/* a */
a {
    color: #111;
    text-decoration: none;
    /* padding: 0 0 1px; */
    /* border-bottom: 3px dashed #aaa; */
}

a:hover {
    color: #555;
    text-decoration: none;
    /* border-bottom:3px dashed #222; */
}

/* button, input, select, textarea */
button,
input,
select,
textarea {
    color: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    border: none;
    background: transparent;
}

/* .btn, input[type="button"], input[type="submit"], button */
.btn,
input[type="button"],
input[type="submit"],
button {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    background: #111;
    cursor: pointer;
    transition: 0.25s;
}

.btn:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
    color: #fff;
    opacity: 0.8;
}

/* img */
img {
    display: block;
}

a:hover img {
    opacity: 0.8;
    transition: 0.25s;
}

/* input, select, textarea */
input,
select,
textarea {
    width: 100%;
    font-size: 1.6rem;
    padding: 12px 15px;
    /* border-radius: 5px; */
    box-sizing: border-box;
    background: #fff;
}

select {
    max-width: 150px;
    padding: 8px 15px 12px;
}

/* edit */
.edit-btn {
    text-align: center;
    margin: 0;
}

.edit-btn a {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 50px auto;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    background: #888;
}

.edit-btn a:hover {
    background: #666;
}

/* clearfix */
.clearfix:before, .clearfix:after {
    display: table;
    content: " ";
}

.clearfix:after {
    clear: both;
}


/* header
--------------------------------------------------------- */
/* ----- header ----- */
header {
    background: url(../img/common/img_common_bg01.png) repeat 0 0;
}


/* ----- header-wrapper ----- */
.header-wrapper {
    width: 90%;
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 10px 0 10px;
}

@media screen and (max-width: 1100px) {
    .header-wrapper {
        width: 96%;
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper {
        width: 90%;
        justify-content: inherit;
        padding: 10px 0 10px;
    }
}


/* ----- header-wrapper-top ----- */
/* header-wrapper-top */
.header-wrapper-top {
    width: 27%;
}

@media screen and (max-width: 1100px) {
    .header-wrapper-top {
        width: 22%;
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper-top {
        width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .header-wrapper-top {
        width: 120px;
    }
}

/* header-wrapper-top-box-description */
.header-wrapper-top-box-description {
    margin: 0 0 5px;
}

@media screen and (max-width: 768px) {
    .header-wrapper-top-box-description {
        display: none;
    }
}

.header-wrapper-top-box-description p {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.header-wrapper-top-box-description p span {
    display: inline-block;
}

/* header-wrapper-top-box-logo */
.header-wrapper-top-box-logo {
    margin: 0 auto;
}

.header-wrapper-top-box-logo h1 img {
    width: 100%;
    max-width: 230px;
    height: auto;
    display: block;
}


/* ----- header-wrapper-mid ----- */
/* header-wrapper-mid */
.header-wrapper-mid {
    width: 63%;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 0 0;
}

@media screen and (max-width: 1100px) {
    .header-wrapper-mid {
        width: 67%;
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper-mid {
        width: auto;
    }
}

/* header-wrapper-mid-gnavi-top */
.header-wrapper-mid-gnavi-top {
    margin: 0 0 10px;
}

@media screen and (max-width: 768px) {
    .header-wrapper-mid-gnavi-top {
        display: none;
    }
}

.header-wrapper-mid-gnavi-top ul {
    display: flex;
    justify-content: flex-end;
}

.header-wrapper-mid-gnavi-top ul li a {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 10px;
}

@media screen and (max-width: 1100px) {
    .header-wrapper-mid-gnavi-top ul li a {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 868px) {
    .header-wrapper-mid-gnavi-top ul li a {
        margin: 0 5px;
    }
}

/* header-wrapper-mid-gnavi-bot */
@media screen and (max-width: 768px) {
    .header-wrapper-mid-gnavi-bot {
        display: none;
    }
}

.header-wrapper-mid-gnavi-bot > nav {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.header-wrapper-mid-gnavi-bot > nav > ul {
    display: flex;
    justify-content: flex-end;
}

.header-wrapper-mid-gnavi-bot > nav > ul:first-child {
    border-right: 1px solid #111;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li {
    line-height: 1;
    padding: 1px 0;
    border-right: 1px solid #111;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:last-child {
    border-right: none;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li a,
.header-wrapper-mid-gnavi-bot > nav > ul > li span {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 10px;
}

@media screen and (max-width: 1100px) {
    .header-wrapper-mid-gnavi-bot > nav > ul > li a,
    .header-wrapper-mid-gnavi-bot > nav > ul > li span {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 868px) {
    .header-wrapper-mid-gnavi-bot > nav > ul > li a,
    .header-wrapper-mid-gnavi-bot > nav > ul > li span {
        font-size: 1.3rem;
        padding: 0 8px;
    }
}


/* header-wrapper-mid-gnavi-sp-action */
.header-wrapper-mid-gnavi-sp-action {
    display: none;
}

@media screen and (max-width: 768px) {
    .header-wrapper-mid-gnavi-sp-action {
        display: block;
    }
}

/* header-wrapper-mid-gnavi-sp-action-content */
.header-wrapper-mid-gnavi-sp-action-content {
    width: 100%;
    color: #111;
    display: none;
    background: #fff;
    position: absolute;
    z-index: 9990;
    top: 0;
    left: 0;
    transform: translateY(-100%);
}

@media screen and (max-width: 768px) {
    .header-wrapper-mid-gnavi-sp-action-content {
        display: block;
    }
}

.header-wrapper-mid-gnavi-sp-action-content > ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li {
    width: 100%;
    border-bottom: 1px solid #ff5a5a;
    position: relative;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(2) {
    background: url(../img/common/img_common_icn01.png) no-repeat 12px 9px;
    background-size: 14px auto;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(3) {
    background: #fffafa url(../img/common/img_common_icn02.png) no-repeat 12px 12px;
    background-size: 18px auto;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(4) {
    background: #fffafa url(../img/common/img_common_icn03.png) no-repeat 12px 12px;
    background-size: 14px auto;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(5) {
    background: url(../img/common/img_common_icn04.png) no-repeat 12px 12px;
    background-size: 18px auto;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(6) {
    background: #fffafa url(../img/common/img_common_icn05.png) no-repeat 12px 12px;
    background-size: 14px auto;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-last-child(-n+4) {
    width: 50%;
    border-bottom: 1px solid #949494;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-last-child(-2n+4) {
    border-right: 1px solid #949494;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-last-child(-n+4) a {
    padding: 10px 30px 10px 15px;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:after {
    color: #ff5a5a;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 13px;
    right: 10px;
    content: "\f077";
    transform: rotate(90deg);
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(3):after,
    /* .header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(4):after, */
.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(6):after {
    color: #ff5a5a;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 13px;
    right: 10px;
    content: "\f077";
    transform: rotate(180deg);
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li.ac:nth-child(3):after,
    /* .header-wrapper-mid-gnavi-sp-action-content > ul > li.ac:nth-child(4):after, */
.header-wrapper-mid-gnavi-sp-action-content > ul > li.ac:nth-child(6):after {
    transform: rotate(0deg);
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(3) > a,
    /* .header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(4) > a, */
.header-wrapper-mid-gnavi-sp-action-content > ul > li:nth-child(6) > a {
    pointer-events: none;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li > a {
    color: #111;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    padding: 10px 10px 10px 40px;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li > ul.sub-menu {
    width: 100%;
    visibility: hidden;
    transition: max-height 0.3s;
    max-height: 0;
    opacity: 0;
    /*display: none;*/
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li.ac > ul.sub-menu {
    /*display: block;*/
    visibility: visible;
    transition: all 0.3s;
    max-height: 1000px;
    opacity: 1;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li > ul.sub-menu > li {
    width: 100%;
    border-top: 1px solid #949494;
    position: relative;
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li > ul.sub-menu > li:after {
    color: #ff5a5a;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 14px;
    right: 10px;
    content: "\f077";
    transform: rotate(90deg);
}

.header-wrapper-mid-gnavi-sp-action-content > ul > li > ul.sub-menu > li > a {
    color: #111;
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    padding: 10px 35px 10px 40px;
}

.header-wrapper-mid-gnavi-sp-action-content.active {
    top: 58px;
    transform: translateY(0%);
}

@media screen and (max-width: 480px) {
    .header-wrapper-mid-gnavi-sp-action-content.active {
        top: 43px;
    }
}

/* header-wrapper-mid-gnavi-sp-action-btn */
.header-wrapper-mid-gnavi-sp-action-btn {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 8px;
    right: 18px;
    z-index: 9999;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .header-wrapper-mid-gnavi-sp-action-btn {
        top: 2px;
        right: 8px;
    }
}

.header-wrapper-mid-gnavi-sp-action-btn span {
    width: 26px;
    display: block;
    border-top: solid 3px #333;
    position: absolute;
    left: 6px;
    transition: .3s;
}

.header-wrapper-mid-gnavi-sp-action-btn span:nth-child(1) {
    top: 9px;
}

.header-wrapper-mid-gnavi-sp-action-btn span:nth-child(2) {
    top: 18px;
}

.header-wrapper-mid-gnavi-sp-action-btn span:nth-child(3) {
    top: 27px;
}

.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(2),
.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(2),
.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(2),
.header-wrapper-mid-gnavi-sp-action-btn.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* header-wrapper-mid-gnavi-bot-menu */
.header-wrapper-mid-gnavi-bot > nav > ul > li div {
    height: 220px;
    display: none;
    position: absolute;
    top: 18px;
    right: -52px;
    z-index: 100;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li div > ul {
    display: flex;
    margin: 12px 0 0;
    padding: 10px 0;
    border-radius: 10px;
    border: 2px solid #ff5a5a;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    background: #fff url(../img/common/img_common_bg01.png) repeat 1% 1%;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li div > ul:before,
.header-wrapper-mid-gnavi-bot > nav > ul > li div > ul:after {
    width: 0;
    height: 0;
    margin: auto;
    position: absolute;
    content: "";
}

.header-wrapper-mid-gnavi-bot > nav > ul > li div > ul:before {
    border-style: solid;
    border-color: transparent transparent #ff5a5a transparent;
    border-width: 0 7px 7px 7px;
    top: 6px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul:before {
    right: 268px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(2) div > ul:before {
    right: 178px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul:before {
    right: 85px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li div > ul:after {
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 5px 5px 5px;
    top: 9px;
    z-index: 10;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul:after {
    right: 270px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(2) div > ul:after {
    right: 180px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul:after {
    right: 87px;
}

/* header-wrapper-mid-gnavi-bot-menu */
.header-wrapper-mid-gnavi-bot > nav > ul > li div > ul > li {
    height: 170px;
    border-right: 1px dotted #ff5a5a;
    position: relative;
}

/* header-wrapper-mid-gnavi-bot-menu-make */
.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(1) {
    width: 272px;
    background: url(../img/common/img_common_menu0101.png) no-repeat center 15px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(2) {
    width: 273px;
    background: url(../img/common/img_common_menu0111.png) no-repeat center 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(3) {
    width: 287px;
    border-right: none;
    background: url(../img/common/img_common_menu0121.png) no-repeat center 15px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(1) a {
    width: 218px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(2) a {
    width: 215px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(2) a:nth-child(1) {
    bottom: 40px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(2) a:nth-child(2) {
    bottom: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(1) div > ul > li:nth-child(3) a {
    width: 218px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
}

/* header-wrapper-mid-gnavi-bot-menu-usescene */
.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(2) div > ul > li:nth-child(1) {
    width: 420px;
    background: url(../img/common/img_common_menu0201.png) no-repeat center 5px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(2) div > ul > li:nth-child(2) {
    width: 420px;
    background: url(../img/common/img_common_menu0211.png) no-repeat center 5px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(2) div > ul > li:nth-child(1) a {
    width: 218px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(2) div > ul > li:nth-child(2) a {
    width: 218px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
}

/* header-wrapper-mid-gnavi-bot-menu-howto */
.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(1) {
    width: 272px;
    background: url(../img/common/img_common_menu0301.png) no-repeat center 15px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(2) {
    width: 273px;
    background: url(../img/common/img_common_menu0311.png) no-repeat center 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(3) {
    width: 287px;
    border-right: none;
    background: url(../img/common/img_common_menu0321.png) no-repeat center 15px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(1) a {
    width: 218px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(2) a {
    width: 215px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(2) a:nth-child(1) {
    bottom: 40px;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(2) a:nth-child(2) {
    bottom: 0;
}

.header-wrapper-mid-gnavi-bot > nav > ul > li:nth-child(3) div > ul > li:nth-child(3) a {
    width: 218px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
}


/* ----- header-wrapper-bot ----- */
/* header-wrapper-bot */
.header-wrapper-bot {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media screen and (max-width: 1100px) {
    .header-wrapper-bot {
        width: 11%;
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper-bot {
        width: auto;
        position: absolute;
        top: 16px;
        right: 80px;
    }
}

@media screen and (max-width: 480px) {
    .header-wrapper-bot {
        top: 9px;
        right: 60px;
    }
}

.header-wrapper-bot-btn a.btn {
    font-size: 1.4rem;
    display: block;
    margin: 0 0 0 auto;
    padding: 10px 10px;
    background: #ff5a5a;
}

@media screen and (max-width: 1100px) {
    .header-wrapper-bot-btn a.btn {
        font-size: 1.3rem;
        padding: 8px 8px;
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper-bot-btn a.btn {
        font-size: 1.1rem;
        padding: 4px 10px;
    }
}


/* wrapper
--------------------------------------------------------- */
.wrapper {
    overflow: hidden;
}


/* content-wrapper
--------------------------------------------------------- */
/* ----- content-wrapper ----- */
.content-wrapper {
    padding: 0 0 60px;
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        padding: 0 0 40px;
    }
}

/* table */
.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.content-wrapper table thead th {
    padding: 8px 10px;
    background: #eee;
}

.content-wrapper table tbody th,
.content-wrapper table tbody td {
    padding: 8px 10px;
}

.content-wrapper table tbody th {
    border: 1px solid #ccc;
    background: #f1f1f1;
}

.content-wrapper table tbody td {
    border: 1px solid #ccc;
}

/* content-wrapper .btn */
.content-wrapper .btn {
    width: 100%;
    max-width: 400px; /*    max-width: 300px;*/
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 12px 10px;
    margin: 20px auto;
}

@media screen and (max-width: 768px) {
    .content-wrapper .btn {
        width: 100%;
        max-width: 280px;
        font-size: 1.6rem;
        padding: 10px 8px;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper .btn {
        width: 100%;
        max-width: 260px;
        font-size: 1.4rem;
        padding: 8px 8px;
    }
}

.content-wrapper .btn:hover {
}


/* main
--------------------------------------------------------- */
/* ----- main ----- */
main {
    width: 100%;
}


/* footer
--------------------------------------------------------- */
/* ----- footer ----- */
footer {
    background: #fffbcd;
}


/* ----- footer-wrapper ----- */
.footer-wrapper {
    padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
.footer-wrapper {
        padding: 20px 0 20px;
    }
}




/* footer-wrapper-box */
.footer-wrapper-box {
    max-width: 960px;
    margin: auto;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .footer-wrapper-box {
        width: 94%;
    }
}

@media screen and (max-width: 768px) {
    .footer-wrapper-box {
        width: 90%;
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .footer-wrapper-box {
        width: 88%;
    }
}

/* ----- footer-wrapper-box-top ----- */
/* footer-wrapper-box-top */
.footer-wrapper-box-top {
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
}

/* footer-wrapper-box-top-logo */
.footer-wrapper-box-top-logo img {
    max-width: 160px;
}


/* ----- footer-wrapper-box-mid ----- */
/* footer-wrapper-box-mid */
.footer-wrapper-box-mid {
    display: flex;
    justify-content: center;
    margin: 0 auto 5px;
}

/* footer-wrapper-box-mid-sitemap */
.footer-wrapper-box-mid-sitemap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-wrapper-box-mid-sitemap ul li {
    line-height: 1;
    margin: 0 -1px 10px 0;
    border-left: 1px solid #111;
    border-right: 1px solid #111;
}

.footer-wrapper-box-mid-sitemap ul li a {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 15px;
}

@media screen and (max-width: 768px) {
    .footer-wrapper-box-mid-sitemap ul li a {
        font-size: 1.2rem;
    }
}


/* ----- footer-wrapper-box-bot ----- */
.footer-wrapper-box-bot-copyright p {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer-wrapper-box-bot-copyright p {
        font-size: 1rem;
    }
}


/* ----- footer-wrapper-pagetop ----- */
/* footer-wrapper-pagetop */
/* .footer-wrapper-pagetop {
	width: 50px;
	height: 50px;
	margin: auto;
	position: absolute;
	right: 0;
	top: -150px;
	left: 0;
	overflow: hidden;
	z-index: 9999;
}
@media screen and (max-width: 480px) {
	.footer-wrapper-pagetop {
		width: 40px;
		height: 40px;
		top: -110px;
	}
}
.footer-wrapper-pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width: 480px) {
	.footer-wrapper-pagetop a {
		width: 40px;
		height: 40px;
	}
}
.footer-wrapper-pagetop a:hover {
	opacity: 0.6;
	transition: 0.25s;
}

.footer-wrapper-pagetop a span {
	color: #fff;
	display: block;
}

.footer-wrapper-pagetop a span:nth-child(1) i {
	color: #fff;
	font-size: 5rem;
}
@media screen and (max-width: 480px) {
	.footer-wrapper-pagetop a span:nth-child(1) i {
		font-size: 3.6rem;
	}
} */







