@charset "utf-8";
/* ===================================================================
CSS information
 file name  :  common.css
 style info :  サブスタイル指定
=================================================================== */


/* body
----------------------------------------------------------------------------- */
body {
    width: 100%;
    margin: 0 auto;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
    text-align: center;
    background: #fff;
}

/* font
----------------------------------------------------------------------------- */
.rich_font {
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 500;
}

.robot_font {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* anchor
----------------------------------------------------------------------------- */
a {
    transition: all 200ms ease;
}

a:link {
    color: #6F7579;
    text-decoration: none;
}

a:visited {
    color: #6F7579;
    text-decoration: none;
}

a:hover {
    color: #6F7579;
    text-decoration: none;
    opacity: 0.7;
}

a:active {
    color: #6F7579;
    text-decoration: none;
}

/* layout
----------------------------------------------------------------------------- */

.dis_none {
    display: none;
}

.sp_mode {
    display: none !important;
}

.table_mode {
    display: none !important;
}

.table_mode2 {
    display: none !important;
}

.pc_mode {
    display: block !important;
}

.pc_mode_inline {
    display: inline !important;
}

/* table layout default
----------------------------------------------------------------------------- */
table {
    margin-bottom: 40px;
    width: 100%;
}

tr {
    border-bottom: 1px dotted #888;
}

tr:first-child {
    border-top: 1px dotted #888;
}

th {
    background-color: #edecf0;
    vertical-align: top;
    font-weight: normal;
}

td {
    width: 100px;
    vertical-align: top;
}

/* ol layout default
----------------------------------------------------------------------------- */
ol {
    line-height: normal;
}

/* Chrome form parts select
----------------------------------------------------------------------------- */
select {
    outline: 0;
}

input:focus {
    outline: none;
}

/* lines
----------------------------------------------------------------------------- */
.underline {
    text-decoration: underline wavy rgba(246, 89, 115, 1);
}

/* scroll_prevent
----------------------------------------------------------------------------- */
.scroll_prevent {
    position: fixed;
}


/* header
----------------------------------------------------------------------------- */
header {
    width: 100%;
    height: 64px;
    background: #fff;
    border: solid #17ABE8;
    border-width: 0 0 1px;
    transition: all 500ms;
    position: fixed;
    z-index: 1000;
    top: 0;
}

header>ul {
    width: 1000px;
    height: 64px;
    margin: 0 auto;
    padding: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: right;
}

header>ul li.logo {
    margin: 0 auto 0 0;
}

header>ul li.logo h1 {
    width: 270px;
}

header>ul li.logo h1 img {
    max-width: 100%;
}

header>ul li.search .search_area {
    position: relative;
    width: 300px;
    height: 32px;
    border: 1px solid #E1E1E1;
    border-radius: 7px;
}

header>ul li.search .search_area {
    display: none;
}

header>ul li.search .search_area .search_input input {
    position: absolute;
    width: 234px;
    padding: 0 25px 0 24px;
    border: none;
    line-height: 25px;
    top: 3px;
    left: 3px;
    font-size: 14px;
}

header>ul li.search .search_area .search_input input::placeholder {
    color: #E1E1E1;
    font-size: 14px;
}

header>ul li.search .search_area .search_btn {
    position: relative;
}

header>ul li.search .search_area .search_btn label {
    overflow: hidden;
    width: 25px;
    height: 25px;
    text-indent: -300px;
    cursor: pointer;
    display: block;
    text-align: left;
    position: absolute;
    right: 13px;
    top: 3px;
}

header>ul li.search .search_area .search_btn label:before {
    content: "";
    text-indent: 0;
    display: block;
    width: 25px;
    height: 25px;
    line-height: 100%;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    background: url(../images/common/search.png) no-repeat;
    background-size: cover;
}

header>ul li.search .search_area .search_btn input {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0px;
    top: 0px;
    overflow: hidden;
    text-indent: -300px;
    cursor: pointer;
    text-align: left;
}

header>ul li.bookmark,
header>ul li.history,
header>ul li.about,
header>ul li.menu {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1px 0 0 33px;
}

header>ul li.menu {
    position: relative;
}

header>ul li.bookmark .btn_area,
header>ul li.history .btn_area,
header>ul li.about .btn_area,
header>ul li.menu .btn_area {
    height: 50px;
}

header>ul li.bookmark .icon,
header>ul li.history .icon,
header>ul li.about .icon,
header>ul li.menu .icon {
    position: relative;
    width: 100%;
    height: 26px;
}

header>ul li.about .icon img {
    transform: rotate(90deg);
}

header>ul li.about.company .icon img {
    transform: rotate(0);
}

header>ul li.bookmark .icon .new,
header>ul li.history .icon .new {
    position: absolute;
    font-size: 12px;
    right: 0;
    bottom: 0;
    background-color: #ED3833;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

header>ul li.bookmark .icon .new.none,
header>ul li.history .icon .new.none {
    display: none;
}

header>ul li.bookmark p,
header>ul li.history p,
header>ul li.about p,
header>ul li.menu p {
    font-size: 10px;
    color: #333333 !important;
}

/*
header  > ul li.menu.active{
    background: #17ABE8;
}

header  > ul li.menu.active{
  fill: #fff;
}
header > ul li.menu.active p{
  color: #fff !important;
}
*/
header>ul li.menu {
    fill: #17abe8;
}

header.hide {
    transform: translateY(-100%);
}

header>ul li.menu .icon svg {
    margin: 0;
}

/* giga_menu
----------------------------------------------------------------------------- */
.menu .giga_menu {
    opacity: 0;
    position: absolute;
    top: 54px;
    right: 100vw;
    z-index: 100;
    width: 800px;
    padding: 8px;
    background: #fff;
    transition: all 1000ms;
    box-shadow: 3px 3px 3px 0px rgba(114, 114, 114, 0.3);
    height: 90vh;
    overflow: auto;
}

.menu.active .giga_menu {
    opacity: 1;
    right: 0;
}
.menu .gigamenu_bg {
    display: none;
    opacity: 0;
}
.menu.active .gigamenu_bg {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    background: #fff;
    z-index: 5;
    transition: all 1000ms;
}
.giga_menu h2 {
    color: #fff;
    background: #FFAA26;
    width: 100%;
    font-size: 24px;
    padding: 5px 0 8px;
    text-align: center;
    border-radius: 3px;
}

.giga_menu h3 {
    color: #424244;
    width: 100%;
    font-size: 24px;
    border: 1px solid #ADADAD;
    border-radius: 3px;
    margin-top: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.giga_menu h3 img {
    margin: 0 8px 0 0;
}

.giga_menu .giga_menu-main {
    margin: -20px 0 0 0;
    display: flex;
    text-align: left;
    padding: 0 0 25px;
    border-bottom: 1px solid #ADADAD;
}

.giga_menu .giga_menu-main .search_menu {
    margin: 0 10px 0 0;
    width: 260px;
}

.giga_menu .giga_menu-main .service_menu {
    margin: 0;
    width: 260px;
}

.giga_menu .giga_menu-main>div h4 {
    font-size: 14px;
    color: #333;
    padding: 35px 0 7px 2px;
    border-bottom: 1px solid #333333;
    width: 100%;
    margin-bottom: 2px;
    line-height: 1;
}

.giga_menu .giga_menu-main>div li {
    margin-top: 7px;
    font-size: 14px;
}

.giga_menu .giga_menu-main>div li a {
    display: flex;
    align-items: center;
    border: 1px solid #17ABE8;
    height: 50px;
    width: 100%;
    border-radius: 3px;
}

.giga_menu .giga_menu-main>div li a .img_box {
    display: flex;
    align-items: center;
    border-right: 1px solid #17ABE8;
    height: 48px;
    width: 48px;
    border-radius: 0 0 3px 3px;
    background: #F3FBFE;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.giga_menu .giga_menu-sub {
    margin: 20px 0 0 0;
    display: flex;
    text-align: left;
    padding: 0 0 40px;
}

.giga_menu .giga_menu-sub .company_menu {
    margin: 0 6px 0 0;
    width: 385px;
}

.giga_menu .giga_menu-sub .media_menu {
    margin: 0;
    width: 385px;
}

.giga_menu .giga_menu-sub>div h4 {
    font-size: 14px;
    color: #333;
    padding: 0 0 7px 2px;
    border-bottom: 1px solid #333333;
    width: 100%;
    margin-bottom: 3px;
    line-height: 1;
}

.giga_menu .giga_menu-sub>div ul li a {
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    padding: 0 7px;
    position: relative;
    border: solid #ADADAD;
    border-width: 0 0 1px;
}

.giga_menu .giga_menu-sub>div ul li a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 24px;
    top: calc(50% - 1px);
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
    color: #17ABE8;
}

.giga_menu h2 a {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.giga_menu h2 a img {
	width: 40px!important;
	max-width: unset;
	vertical-align: middle;
}

.close_p {
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    margin: -10px 0 0;
    width: 28px;
    height: 28px;
    z-index: 100;
}

.close_p::before,
.close_p::after {
    content: "";
    display: block;
    width: 100%;
    /*バツ線の長さ*/
    height: 2px;
    /*バツ線の太さ*/
    background: #fff;
    transform: rotate(45deg);
    transform-origin: 0% 50%;
    position: absolute;
    top: calc(14% - 5px);
    left: 14%;
}

.close_p::after {
    transform: rotate(-45deg);
    transform-origin: 100% 50%;
    left: auto;
    right: 14%;
}

/* bg_w
----------------------------------------------------------------------------- */
.bg_w {
    width: 100%;
    background: #fff;
}

/* pankuzu
----------------------------------------------------------------------------- */
.pankuzu {
    background: #F6F6F6;
    width: 100%;
    height: 42px;
}

.pankuzu ul {
    width: 1000px;
    margin: 0 auto;
    height: 42px;
    display: flex;
    align-items: center;
}

.pankuzu ul {
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
}

.pankuzu ul li::after {
    content: ">";
    margin: 0 5px;
}

.pankuzu ul li:last-of-type:after {
    content: "";
    margin: 0;
}

.pankuzu ul li a,
.pankuzu ul li span {
    font-size: 12px;
    color: #333;
}

/* main
----------------------------------------------------------------------------- */
main {
    width: 100%;
    padding: 64px 0 0;
}

#app {
    width: 100%;
}

/* wrapper
----------------------------------------------------------------------------- */
.wrapper {
    width: 1000px;
    margin: 0 auto;
}

/* anchor_btn
----------------------------------------------------------------------------- */
.anchor_btn,
.anchor_btn2 {
    display: block;
    position: relative;
}

.anchor_btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 24px;
    top: calc(50% - 1px);
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
    color: #fff;
}

.anchor_btn.orange_btn {
    display: block;
    width: 300px;
    padding: 22px 0 20px;
    line-height: 1;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    background: #FFAA26;
    box-shadow: 0px 3px 0px 0px #FF6F26;
    border-radius: 5px;
}

.anchor_btn.blue_btn {
    display: block;
    margin: auto;
    width: 300px;
    padding: 22px 0 20px;
    line-height: 1;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    background: #17ABE8;
    box-shadow: 0px 3px 0px 0px #0097E6;
    border-radius: 5px;
}

.anchor_btn2.white_btn2 {
    display: block;
    margin: 50px auto 0;
    width: 300px;
    padding: 22px 0 20px;
    line-height: 1;
    font-size: 17px;
    font-weight: bold;
    color: #17ABE8;
    background: #fff;
    box-shadow: 0px 3px 0px 0px #17ABE8;
    border: 1px solid #17ABE8;
    border-radius: 5px;
}

.anchor_btn2::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 24px;
    top: 50%;
    border-top: solid 1px;
    border-left: solid 1px;
    transform: rotate(-45deg) translateY(-50%);
    color: #17ABE8;
}

.anchor_btn.service_btn.blue_btn {
    display: block;
    margin: auto;
    width: 245px;
    padding: 15px 0 15px;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #17ABE8;
    box-shadow: 0px 3px 0px 0px #0097E6;
    border-radius: 5px;
    margin-top: 20px;
}

.anchor_btn.white_btn {
    display: block;
    margin: 48px auto 0;
    width: 245px;
    padding: 15px 0 15px;
    line-height: 1;
    font-size: 17px;
    font-weight: bold;
    color: #072E6A;
    background: #fff;
    box-shadow: 0px 3px 0px 0px #2E5498;
    border-radius: 5px;
}

.anchor_btn.white_btn::after {
    color: #072E6A;
}

/* page_top
----------------------------------------------------------------------------- */
.page_top {
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 999;
}

/* footer
----------------------------------------------------------------------------- */
footer {
    padding: 0 0 90px;
    background: #fff;
}

footer .wrapper {
    width: 100%;
    padding: 25px 0;
    background-color: #fafafa;
}

footer .wrapper .inner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

footer .wrapper .inner .contents {
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

footer .wrapper .inner .contents>li {
    width: 100%;
}

footer .wrapper .inner .contents>li.f_logo a {
    width: 100%;
    display: block;
}
footer .wrapper .inner .contents>li.license_number {
    text-align: center;
}

footer .wrapper .inner .contents>li.license_number span {
    font-weight: bold;
}

footer .wrapper .inner .contents>li ul li a {
    line-height: 1;
    display: block;
    padding: 10px 5px;
}

footer .wrapper .inner .contents>li h4 {
    margin-top: 10px;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #000;
}

footer .wrapper .inner .contents>li.f_ico h4::before {
    content: '';
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding-left: 5px;
    background-repeat: no-repeat;
    background-position-y: -1px;
}

footer .wrapper .inner .contents>li.f_search h4::before {
    background-image: url(/images/common/ico_search.png);
}

footer .wrapper .inner .contents>li.f_service h4::before {
    background-image: url(/images/common/ico_service.png);
}

footer .wrapper .inner .contents>li.f_company h4::before {
    background-image: url(/images/common/ico_company.png);
}

footer .wrapper .inner .contents>li.f_media h4::before {
    background-image: url(/images/common/ico_media.png);
}

footer .wrapper .inner .contents>li.f_mail h4::before {
    background-image: url(/images/common/ico_mail.png);
}

footer .wrapper .inner .footer_officelist {
    width: 700px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: -20px auto 0;
}

footer .wrapper .inner .footer_officelist li {
    width: 50%;
    padding: 20px 3%;
}

footer .wrapper .inner .footer_officelist p {
    text-align: left;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8;
}

footer .wrapper .inner .footer_officelist p.officename {
    color: #000000;
    font-size: 20px;
    font-weight: bold;

}

footer .wrapper .inner .footer_officelist p.officename::before {
    content: "■";
    font-size: 16px;
    margin-right: 4px;
}

footer .wrapper .inner .footer_officelist li iframe {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200px;
}

footer .copy {
    padding: 40px 0 35px;
}

footer .copy h4 {
    font-size: 19px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

footer .copy p {
    font-size: 11px;
    color: #333;
}

footer .wrapper .inner .contents>li ul.footFlex {
    display: flex;
    margin: 5px 0;
    flex-wrap: wrap;
}
footer .wrapper .inner .contents>li ul.footFlex li a {
    background: #ddd;
    border-radius: 7px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px 4px;
    font-size: 14px;
}


/* bot_banner
----------------------------------------------------------------------------- */
.bot_banner {
    opacity: 0;
    position: fixed;
    left: 0;
    bottom: -50px;
    z-index: 999;
    width: 100%;
    height: 50px;
    background: #072E6A;
    transition: all 1000ms;
}

.bot_banner.fixed {
    opacity: 1;
    bottom: 0;
}

.bot_banner.none {
    opacity: 0 !important;
    display: none !important;
}

.bot_banner .wrapper {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.bot_banner .wrapper .close {
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    transform: translateY(-50%);
}

.bot_banner .wrapper a .box {
    display: flex;
    align-items: center;
    margin-left: 215px;
    height: 50px;
}

.bot_banner .wrapper a .box .border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 18px;
    color: #fff;
    margin: 0 45px 0 0;
}

.bot_banner .wrapper a .box .text {
    font-size: 20px;
    color: #fff;
}

/* top_banner
----------------------------------------------------------------------------- */
.top_banner {
    width: 100%;
    height: 50px;
    background: #072E6A;
    transition: all 1000ms;
}

.top_banner .wrapper {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.top_banner .wrapper .close {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16px;
}

.top_banner .wrapper a .box {
    display: flex;
    align-items: center;
    margin-left: 215px;
    height: 50px;
}

.top_banner .wrapper a .box .border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 18px;
    color: #fff;
    margin: 0 45px 0 0;
}

.top_banner .wrapper a .box .text {
    font-size: 20px;
    color: #fff;
}

/* fadein
----------------------------------------------------------------------------- */
.fadeinT {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1000ms;
}

.fadeinT.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeinR {
    opacity: 0;
    transform: translate(100px, 0);
    transition: all 1000ms;
}

.fadeinR.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeinL {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: all 1000ms;
}

.fadeinL.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/* common_banner
----------------------------------------------------------------------------- */
.common_banner {
    margin: 110px auto 0;
}

.common_banner .wrapper {
    width: 1000px;
    margin: 0 auto;
}

.common_banner .wrapper a img {
    width: 100%;
}
.accel-japan-footer {
    width: 660px;
    max-width: initial;
    margin-top: 30px;
}

/* news
----------------------------------------------------------------------------- */
.news {
    padding: 20px 0 0;
}

.news .wrapper {
    width: 1000px;
    margin: 0 auto;
}

.news .wrapper h2 {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #17ABE8;
    text-align: left;
    line-height: 1;
    padding: 0 0 20px;
    border-bottom: 2px solid #17ABE8;
}

.news .wrapper h2 img {
    padding-right: 10px;
}

.news .wrapper .inner ul li {
    padding: 10px 40px 10px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}
.news .wrapper .inner ul li:last-child {
    border-bottom: none;
}

.news .wrapper .inner ul li p.date {
    font-size: 14px;
    color: #333333;
}

.news .wrapper .inner ul li div {
    display: flex;
}

.news .wrapper .inner ul li div span {
    display: block;
    padding: 4px 0;
    width: 90px;
    text-align: center;
    font-size: 11px;
    color: #fff;
    margin: 0 12px 0 0;
    line-height: 1;
}

.news .wrapper .inner ul li div span.media {
    background-color: #DFA02F;
}

.news .wrapper .inner ul li div span.news {
    background-color: #17ABE8;
}

.news .wrapper .inner ul li div span.category {
    background-color: #A8C749;
}

.news .wrapper .inner ul li div p {
    font-size: 16px;
    color: #070707;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 500px;
}

.news .wrapper .inner ul li:last-child {
    text-align: right;
}

.news .wrapper .inner ul li:last-child a {
    font-size: 17px;
    font-weight: bold;
    color: #17ABE8;
    display: inline-block;
}

.news .wrapper .inner ul li a {
    position: relative;
    display: block;
}

.news .wrapper .inner ul li a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -15px;
    top: calc(50% - 1px);
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
    color: #17ABE8;
}

/* mae
----------------------------------------------------------------------------- */
.mae {
    padding: 35px 0 0;
    height: 300px;
}

.mae .wrapper {
    width: 1026px;
    margin: 0 auto;
}

.mae .wrapper h2 {
    margin: auto;
    width: 1000px;
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #17ABE8;
    text-align: left;
    line-height: 1;
    padding: 0 0 20px;
    border-bottom: 2px solid #17ABE8;
}

.mae .wrapper h2 img {
    padding-right: 10px;
}

.mae .wrapper ul {
    margin: 20px 0 0;
    padding: 0 30px;
    hri
}

.mae .wrapper ul li {
    width: 700px;
    padding: 10px;
}

.mae .wrapper ul li div {}

.mae .wrapper ul li img {
    width: 100%;
}
.mae_slider{
  display: none;
}
.mae_slider.slick-initialized{
  display: block;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    height: auto!important;
}
.prev-arrow {
    position: absolute;
    left: 0.5%;
    top: 50%;
    z-index: 10;
    width: 19px;
    transform: translate(0, -50%);
}

.next-arrow {
    position: absolute;
    right: 0.5%;
    top: 50%;
    z-index: 10;
    width: 19px;
    transform: rotateZ(180deg) translate(0, 50%);
}

/* media
----------------------------------------------------------------------------- */
.media {
    padding: 35px 0 0;
    /*background: #E2EFDA;*/
    background: #fff;
}

.media .wrapper {
    width: 1000px;
    margin: 0 auto;
}

.media .wrapper h3 {
    font-size: 28px;
    font-weight: bold;
    padding: 10px 30px;
    display: inline-block;
    color: #000;
}

.media .wrapper ul {
    width: 100%;
    padding: 0 30px 30px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.media .wrapper ul li {
    width: 30%;
    margin: 0 0 30px;
    text-align: center;
}

.media .wrapper ul li:nth-last-child(-n+3) {
    margin: 0;
}

/* sales
----------------------------------------------------------------------------- */
.sales {
    padding: 35px 0 35px;
    background: url(../images/staff/officestaff_bg_01.webp);
    background-size: cover;
}

.sales .wrapper {
    width: 1000px;
    margin: 0 auto;
}

.sales .wrapper h2 {
    font-size: 32px;
    padding: 0 0 30px;
    position: relative;
    letter-spacing: .2em;
    line-height: 1;
    color: #17ABE8;
}

.sales .wrapper h2::after {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 35px;
    background: #17ABE8;
}

.sales .wrapper .sales_contact {
    width: 100%;
    background: #fff;
    margin: 30px auto 0;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.sales .wrapper .sales_contact_left {
    width: 30%;
    margin: 48px 0 0;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.sales .wrapper .sales_contact_left .sales_contact_tel {
    width: 100%;
    border: 1px solid #17ABE8;
}

.sales .wrapper .sales_contact_left .sales_contact_tel .mobile span {
    font-weight: bold;
    color: #f00;
}

.sales .wrapper .sales_contact_left .sales_contact_tel .tel_number {
    font-size: 22px;
    font-weight: bold;
    color: #f00;
}

.sales .wrapper .sales_contact_left .sales_contact_mail {
    width: 100%;
    margin: 10px auto 0;
}

.sales .wrapper .sales_contact_left .sales_contact_mail .subject {
    font-size: 22px;
    font-weight: bold;
}

.sales .wrapper .sales_contact_left .sales_contact_mail li:last-child {
    margin: 10px auto 0;
}

.sales .wrapper .sales_contact_left .sales_contact_mail li .anchor_btn {
    width: 100%;
}

.sales .wrapper .sales_contact_right {
    width: 70%;
    background: #fff;
    padding: 0 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.sales .wrapper .sales_contact_right h3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 25px;
    line-height: 1;
}
.sales .wrapper .sales_contact_right h3:first-child {
    margin-top: 0;
}

.sales .wrapper .sales_contact_right h3 span {
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
}
.sales .wrapper ul li {
    width: 100%;
    margin: 10px 2% 0 0;
}

.sales .wrapper ul li:last-of-type {
    margin: 10px 0 0;
}

.sales .wrapper ul li em {
    padding: 0px 2px;
    width: 8.5em;
    display: inline-block;
    font-style: normal;
    background-color: #17abe8;
    color: #fff;
    text-align: center;
}

.sales .wrapper .company_image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.sales .wrapper .company_image li {
    display: flex;
    flex-wrap: wrap;
    justify-items: flex-start;
    width: 32%;
    padding: 5px;
    border: 1px solid #cccccc;
}

.sales .wrapper .company_image li img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
}

/* salesBanner
----------------------------------------------------------------------------- */
.sales .wrapper .salesBanner {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto 0;
}
.sales .wrapper .salesBanner .staff_link {
    width: 49%;
    margin-right: 1%;
    height: auto !important;
    height: auto !important;
}

.sales .wrapper .salesBanner .staff_link img {
    width: auto;
    max-width: 100%;
    height: auto !important;
}

.sales .wrapper .salesBanner .staff_link .staff .bnr {
    width: 100%;
    max-width: 1000px;
}

.sales .wrapper .salesBanner .staff_link .staff .bnr a {
    position: relative;
    display: block;
    width: 100%;
    height: 225px;
    background: url(../images/company/data/bg_lnk_staff.webp) top center no-repeat;
    background-size: cover;
}

.sales .wrapper .salesBanner .staff_link .staff .bnr .lnk_txt {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 24px;
}

.sales .wrapper .salesBanner .staff_link .staff .bnr .lnk_txt::after {
    content: "";
    position: absolute;
    display: inline-block;
    right: 20px;
    top: 50%;
    margin-top: -7px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.sales .wrapper .salesBanner .column {
    width: 50%;
    height: auto !important;
}

.sales .wrapper .salesBanner .column .wrapper {
    width: 100%;
    margin: 0 auto;
}

.sales .wrapper .salesBanner .column .wrapper a {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.sales .wrapper .salesBanner .column .wrapper a img {
    max-width: 100%;
}

/* BreakPoint 1100px tablet
=============================================================*/
@media only screen and (max-width: 1100px) {
    .sp_mode {
        display: none !important;
    }

    .table_mode {
        display: block !important;
    }

    .table_mode2 {
        display: block !important;
    }

    .pc_mode {
        display: none !important;
    }

    .pc_mode_inline {
        display: none !important;
    }


    header {}

    header>ul {
        width: 100%;
        padding: 0 0 0 3%;
    }

    header>ul li.search {
        display: none;
    }

    header>ul li.menu {
        position: initial;
    }

    main {
        padding: 20px 0 0;
    }

    .menu .giga_menu {
        top: 0;
        left: -100vw;
        right: 0;
    }

    .menu.active .giga_menu {
        opacity: 1;
        right: 0;
        left: 0;
        z-index: 10;
        padding-bottom: 200px;
    }

    .menu .bg {
        display: none;
    }

    .menu.active .bg {
        display: block;
    }

    .menu.active .bg::after {
        content: "";
        display: block;
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100%;
        background: #000;
        opacity: .8;
        z-index: 5;
    }

    .menu.active .bg>.close_g {
        display: block;
        position: fixed;
        right: 10px;
        top: 11px;
        width: 30px;
        height: 30px;
        z-index: 100;
    }

    .menu.active .bg>.close_g::before,
    .menu.active .bg>.close_g::after {
        content: "";
        display: block;
        width: 100%;
        /*バツ線の長さ*/
        height: 2px;
        /*バツ線の太さ*/
        background: #fff;
        transform: rotate(45deg);
        transform-origin: 0% 50%;
        position: absolute;
        top: calc(14% - 5px);
        left: 14%;
    }

    .menu.active .bg>.close_g::after {
        transform: rotate(-45deg);
        transform-origin: 100% 50%;
        left: auto;
        right: 14%;
    }

    .bot_banner .wrapper {
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    /* footer
----------------------------------------------------------------------------- */
    footer .wrapper {}

    footer .wrapper .inner {
        width: 100%;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    footer .wrapper .inner .contents {
        width: 30%;
        display: flex;
        flex-wrap: wrap;
        text-align: left;
    }

    footer .wrapper .inner .contents>li {
        width: 100%;
    }

    footer .wrapper .inner .contents>li h4 {
        margin-top: 10px;
        color: #000000;
        font-size: 16px;
        font-weight: bold;
        border-bottom: 1px solid #000;
    }

    footer .wrapper .inner .footer_officelist {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    footer .wrapper .inner .footer_officelist li {
        width: 50%;
        padding: 20px 3%;
    }

    footer .wrapper .inner .footer_officelist p {
        text-align: left;
        margin-bottom: 5px;
    }

    footer .wrapper .inner .footer_officelist p.officename {
        color: #000000;
        font-size: 16px;
        font-weight: bold;

    }

    footer .wrapper .inner .footer_officelist p.officename::before {
        content: "■";
        font-size: 16px;
        margin-right: 4px;
    }

    footer .wrapper .inner .footer_officelist li iframe {
        border: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 200px;
    }

    footer .copy {
        padding: 40px 0 35px;
    }

    footer .copy h4 {
        font-size: 19px;
        font-weight: 500;
        color: #333;
        margin-bottom: 15px;
    }

    footer .copy p {
        font-size: 11px;
        color: #333;
    }

    /* news
----------------------------------------------------------------------------- */
    .news .wrapper {
        width: 100%;
        padding: 0 3%;
        margin: 0 auto;
    }

    /* mae
----------------------------------------------------------------------------- */
    .mae .wrapper {
        width: 100%;
    }

    .mae .wrapper h2 {
        width: 100%;
    }

    /* media
----------------------------------------------------------------------------- */
    .media .wrapper {
        width: 100%;
        padding: 0 3%;
        margin: 0 auto;
    }

    /* sales
----------------------------------------------------------------------------- */
    .sales .wrapper {
        width: 100%;
        margin: 0 auto;
        font-size: 15px;
    }

    .pankuzu {
        padding: 0 10px;
    }

    .pankuzu ul {
        width: 100%;
    }

    .pankuzu ul li a,
    .pankuzu ul li span {
        font-size: 10px;
    }

    .column .wrapper {
        width: 100%;
    }

}

/* BreakPoint 639px sp
=============================================================*/
@media only screen and (max-width: 639px) {

    /*
    html,
    body,
    div,
    span,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    abbr,
    address,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    samp,
    small,
    strong,
    sub,
    sup,
    var,
    b,
    i,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section,
    summary,
    time,
    mark,
    audio,
    video {
        font-size: 62.5%;
    }
*/
    .sp_mode {
        display: block !important;
    }

    .table_mode {
        display: block !important;
    }

    .table_mode2 {
        display: none !important;
    }

    .pc_mode {
        display: none !important;
    }

    /* body
----------------------------------------------------------------------------- */
    body {}

    /* header
    ----------------------------------------------------------------------------- */
    header {
        height: 55px;
        padding: 10px 0 5px;
    }

    header>ul {
        height: 40px;
    }

    header>ul li.logo {
        width: 45%;
    }

    header>ul li.logo h1 {
        width: 100%;
    }

    header>ul li.bookmark,
    header>ul li.history,
    header>ul li.about,
    header>ul li.menu {
        margin: 0;
        height: 40px;
    }

    header>ul li.bookmark .btn_area,
    header>ul li.history .btn_area,
    header>ul li.about .btn_area,
    header>ul li.menu .btn_area {
        height: 40px;
    }

    header>ul li.bookmark .icon,
    header>ul li.history .icon,
    header>ul li.about .icon,
    header>ul li.menu .icon {
        position: relative;
        width: auto;
        height: 25px;
    }

    header>ul li .icon img,
    header>ul li .icon svg {
        height: 25px;
    }
    header>ul li .icon svg {
        width: 25px;
    }

    .close_p {
        display: none;
    }

    /* footer
----------------------------------------------------------------------------- */
    footer {
        padding: 0 0 50px;
        background: #17ABE8;
    }

    footer * {
        font-size: 14px;
    }

    footer .wrapper {
        padding: 25px 0 0 !important;
    }

    footer .wrapper .inner {
        width: 100%;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    footer .wrapper .inner .contents {
        width: 100%;
    }

    footer .wrapper .inner .contents>li {
        width: 100%;
    }

    footer .wrapper .inner .contents>li.f_logo a {
        width: 70%;
        margin: 0 auto;
        display: block;
    }

    footer .wrapper .inner .contents>li.f_logo a img {
        width: 100%;
    }

    footer .wrapper .inner .contents>li h4 {
        margin-top: 10px;
        color: #000000;
        font-size: 16px;
        font-weight: bold;
        border-bottom: 1px solid #000;
    }

    footer .wrapper .inner .footer_officelist {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin: auto;
    }

    footer .wrapper .inner .footer_officelist li {
        width: 100%;
        padding: 20px 0;
    }

    footer .wrapper .inner .contents>li ul li a {
        padding: 5px 5px;
    }

    footer .wrapper .inner .footer_officelist p {
        text-align: left;
        margin-bottom: 5px;
    }

    footer .wrapper .inner .footer_officelist p.officename {
        color: #000000;
        font-size: 16px;
        font-weight: bold;

    }

    footer .wrapper .inner .footer_officelist p.officename::before {
        content: "■";
        font-size: 16px;
        margin-right: 4px;
    }

    footer .wrapper .inner .footer_officelist li iframe {
        border: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 150px;
    }

    footer .copy {
        padding: 20px 0 30px;
        background: #17ABE8;
    }

    footer .copy h4 {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 15px;
    }

    footer .sp_page_top a {
        padding: 10px 0;
        width: 100%;
        display: block;
    }

    footer .sp_page_top a img {
        height: 50px;
        width: 100px;
        object-fit: cover;
    }

    footer .copy p {
        font-size: 10px;
        color: #fff;
    }

    .bot_banner .wrapper .close {
        width: 12px;
        left: 2%;
        margin: -11px 0 0;
    }

    .bot_banner .wrapper .close img {
        width: 100%;
    }

    .bot_banner {
        height: 50px;
    }

    .bot_banner .wrapper a .box {
        margin-left: 8%;
        height: 50px;
    }

    .bot_banner .wrapper a .box .border {
        width: 95px;
        height: 30px;
        font-size: 14px;
        margin: 0 1% 0 0;
    }

    .bot_banner .wrapper a .box .text {
        font-size: 13px;
        margin: 0 0 0 1em;
    }

    .accel-japan-footer {
        width: 100%;
        margin: -40px 0px 30px 0px;
    }

    .menu .giga_menu {
        width: 80%;
        height: 100vh;
        padding: 3% 0;
    }

    .giga_menu .giga_menu-main {
        display: block;
        border: 0;
    }

    .giga_menu .giga_menu-main .search_menu {
        width: 100%;
    }

    .giga_menu .giga_menu-main>div h4 {
        margin: 33px 0 3px;
        padding: 0 3% 3px;
    }

    .giga_menu h2 {
        position: absolute;
        width: 94%;
        margin: 0 8px;
    }

    .giga_menu h3 {
        width: 94%;
        margin: 65px auto 0;
        font-size: 18px;
    }
    .giga_menu h3 a span{
        font-size: 12px;
    }

    .giga_menu .giga_menu-main>div li {
        padding: 0 3%;
    }

    .giga_menu .giga_menu-main .service_menu {
        width: 100%;
    }

    .giga_menu .giga_menu-sub {
        display: block;
        margin: 20px 0 0 0;
        padding: 0;
    }

    .giga_menu .giga_menu-sub .company_menu {
        margin: 0;
        width: 100%;
    }

    .giga_menu .giga_menu-sub .media_menu {
        margin: 40px 0 0;
        width: 100%;
    }

    .giga_menu .giga_menu-sub>div h4 {
        padding: 0 3% 3px;
    }


    /* news
----------------------------------------------------------------------------- */
    .news {
        padding: 15px 0 0;
        font-size: 25px;
    }

    .news .wrapper {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .news .wrapper h2 {
        padding: 0 0 15px 2%;
        font-size: 20px;
    }

    .news .wrapper .inner ul li {
        padding: 15px 3% 15px;
        text-align: left;
        border-bottom: 1px solid #E1E1E1;
    }

    .news .wrapper .inner ul li:last-child {
        padding: 0 3% 0;
    }

    .news .wrapper .inner ul li p.date {
        font-size: 14px;
    }

    .news .wrapper .inner ul li div span {
        width: 80px;
        font-size: 10px;
    }

    .news .wrapper .inner ul li div p {
        font-size: 14px;
        width: 62%;
    }

    .news .wrapper .inner ul li a::after {
        right: 15px;
    }

    .news .wrapper .inner ul li:last-child a {
        padding: 0 10% 0 0;
        font-size: 14px;
    }

    /* mae
----------------------------------------------------------------------------- */
    .mae .wrapper {
        padding: 0 3%;
    }

    .mae .wrapper ul {
        padding: 0 10px;
    }

    .next-arrow {
        right: 9.5%;
    }

    .prev-arrow {
        left: 9.5%;
    }

    .mae .wrapper h2 {
        font-size: 20px;
        padding: 0 2% 20px;
    }

    .mae .wrapper ul .slick-slide {
        transform: scale(.8);
    }

    .mae .wrapper ul .slick-current {
        transform: scale(1);
    }

    /* media
----------------------------------------------------------------------------- */
    .media {
        padding: 25px 0 10px;
    }

    .media .wrapper ul {
        padding: 0;
        margin: 0 auto;
    }

    .media .wrapper ul li {
        width: 30%;
        margin: 0 0 30px;
    }

    .media .wrapper ul li:nth-of-type(2n) {
        margin: 0 0 30px;
    }

    .media .wrapper ul li img {
        max-width: 300px;
        width: 100%;
    }

    .media .wrapper ul li:nth-last-child(-n+3) {
        margin: 0 0 30px;
    }

    /* sales
----------------------------------------------------------------------------- */
    .sales {
        padding: 20px 0 0;
    }

    .sales .wrapper {
        width: 100%;
    }

    .sales .wrapper * {
        width: 100%;
        font-size: 14px;
    }

    .sales .wrapper h2 {
        font-size: 20px;
        line-height: 1.5;
    }

    .sales .wrapper .sales_contact {
        width: 100%;
        padding: 30px;
    }

    .sales .wrapper .sales_contact_left {
        width: 100%;
        margin: 0 auto;
    }

    .sales .wrapper .sales_contact_right {
        width: 100%;
        margin-top: 30px;
        padding: 0;
        text-align: center;
    }

    .sales .wrapper .sales_contact_right h3 span {
        margin: 10px 0 0 0;
        display: block;
    }

    .sales .wrapper .sales_contact_left .sales_contact_tel {
        width: 100%;
    }

    .sales .wrapper ul li em {
        width: 100%;
        display: block;
    }

    .sales .wrapper .company_image {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .sales .wrapper .company_image li {
        display: flex;
        flex-wrap: wrap;
        width: 49%;
        padding: 5px;
        border: 1px solid #cccccc;
        margin: 10px 0 10px 0;
    }

    .sales .wrapper .company_image li:first-of-type {
        margin: 10px 2% 10px 0;
    }

    .sales .wrapper .company_image li img {
        width: 100%;
        max-width: 100%;
    }

    .sales .wrapper .salesBanner {
        display: block;
        padding: 0 5%;
    }

    .sales .wrapper .staff_link {
        width: 100%!important;
        margin: 20px auto 0;
    }

    .sales .wrapper .staff_link .staff .bnr a {
        padding-top: 44.4%;
        height: auto!important;
    }

    .sales .wrapper .staff_link .staff .bnr .lnk_txt {
        font-size: 20px;
        height: auto;
        padding: 10px 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    /* column
----------------------------------------------------------------------------- */
    .column {
        width: 100%!important;
        padding: 20px 0;
    }

    .column .wrapper {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .column .wrapper img {
        width: 100%;
    }

    /* page_top
----------------------------------------------------------------------------- */
    .page_top {
        width: 80px;
    }

    /* slick
----------------------------------------------------------------------------- */
    .slick-list {
        height: auto;
    }

    .sales .wrapper ul li.none_li {
        display: none;
    }

    main {
        padding: 100px 0 0;
    }

    .pankuzu ul {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        overflow: auto;
        white-space: nowrap;
    }



}

.listpnumber {
    margin-bottom: 50px;
}

.listpnumber ul {
    text-align: center;
}

.listpnumber ul li {
    display: inline-block;
    margin-right: 1px;
}

.listpnumber ul li a {
    display: inline-block;
    background-color: #17abe8;
    padding: 6px 10px;
    text-align: center;
    color: #ffffff;
}

.listpnumber ul li.current a {
    background-color: transparent;
    color: #070707;
}

a.next_btn {
    display: block;
    margin: 0 auto 10px;
    width: 80%;
    padding: 10px 0;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    background: #FFAA26;
    box-shadow: 0px 3px 0px 0px #ff6f26;
    border-radius: 5px;
    color: #fff;
}

/* header buttons */
.header-buttons-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
.header-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  min-width: 130px;
  background: #666;
  color: white !important;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.header-buttons.__buy {
  background: #0f7cb2;
}
.header-buttons.__fee {
  background: #f39c12;
}
.header-buttons.__sell {
  background: #8b0000;
}

@media only screen and (max-width: 1100px) {
  .header-buttons-area {
    position: fixed;
    inset: 64px 0 auto 0;
    background: #fff;
  }
  .header-buttons-wrap {
    gap: 0;
  }
  .header-buttons {
    height: 45px;
    min-width: unset;
    font-size: 14px;
  }
}
@media only screen and (max-width: 639px) {
  .header-buttons-area {
    inset: 55px 0 auto 0;
  }
}

/* footer overlay */
@media only screen and (max-width: 639px) {
  .footer-overlay-menu {
    position: fixed;
    z-index: 9999;
    inset: auto 0 0 0;
    background: #cbf0ff;
    padding: 10px 13px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .footer-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    gap: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #fff !important;
  }
  .footer-overlay.mobile {
    background: #800000;
  }
  .footer-overlay.mail {
    background: #008000;
  }
}

/* old popup hide */
.bot_banner2 {
  display: none !important;
}

.map_wrap2 {
    position: relative;
    padding-top: 56.25%;
}
.map_wrap2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
