/* common */
@font-face {
    font-family: 'DaimlerCAC-Regular';
    /* お好きな名前にしましょう */
    src: url('font/DaimlerCAC-Regular.ttf');
    /* IE9以上用 */
    src: url('font/DaimlerCAC-Regular.ttf') format('embedded-opentype'),
        /* IE8以前用 */
        url('font/DaimlerCAC-Regular.ttf') format('truetype'),
        /* モダンブラウザ用 */
        url('font/DaimlerCAC-Regular.ttf') format('truetype');
    /* iOS, Android用 */
    font-weight: normal;
    /* 念の為指定しておきます */
    font-style: normal;
}

html {
    font-family: 'Noto Sans JP', 'Noto Serif JP', 'sans-serif';
    font-size: 62.5%;
    color: #fff;
    background-color: #000;
}

/* ロード */
#loader-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: linear-gradient(#DABE86, #4d4d4d);
    z-index: 1;
}

#loader {
    display: none;
    position: fixed;
    top: 40%;
    width: 100%;
    height: 100%;
    margin-top: -100px;
    margin-left: -100px;
    text-align: center;
    color: #fff;
    z-index: 2;
    margin: 0 auto;
}

#loader p {
    font-family: 'DaimlerCAC-Regular',
        sans-serif;
    font-size: 12rem;
    font-size: 12vw;
}

.wrap {
    width: 100%;
    margin: 0 auto;
}

.text {
    text-align: center;
}

.text-move {
    opacity: 0;
    display: inline-block;
    transform: scale(1.25) translate(8px, 4px);
    letter-spacing: 0.02em;
}

.text-move:nth-child(1) {
    transition: opacity 1.2s ease 0.1s, transform 1.2s ease 0.2s;
}

.text-move:nth-child(2) {
    transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.25s;
}

.text-move:nth-child(3) {
    transition: opacity 1.2s ease 0.25s, transform 1.2s ease 0.3s;
}

.text-move:nth-child(4) {
    transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.35s;
}

.text-move:nth-child(5) {
    transition: opacity 1.2s ease 0.35s, transform 1.2s ease 0.4s;
}

.text-move:nth-child(6) {
    transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.45s;
}

.text-move:nth-child(7) {
    transition: opacity 1.2s ease 0.45s, transform 1.2s ease 0.5s;
}

.text-move:nth-child(8) {
    transition: opacity 1.2s ease 0.5s, transform 1.2s ease 0.55s;
}

.text-move:nth-child(9) {
    transition: opacity 1.2s ease 0.55s, transform 1.2s ease 0.6s;
}

.text-move:nth-child(10) {
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.65s;
}

.text-move:nth-child(11) {
    transition: opacity 1.2s ease 0.65s, transform 1.2s ease 0.7s;
}

.text-move:nth-child(12) {
    transition: opacity 1.2s ease 0.7s, transform 1.2s ease 0.75s;
}

.text.active {
    opacity: 1;
}

.text.active .text-move {
    opacity: 1;
    transform: scale(1) translate(0);
}

@media screen and (max-width:768px) {
    .wrap {
        width: 100%;
    }


    #loader p {
        font-family: 'DaimlerCAC-Regular',
            sans-serif;
        font-size: 12rem;
        font-size: 16vw;
    }
}

/* ロード ここまで */
/* 'DaimlerCAC-Regular' */

/* common　ここまで */

/* header_layout */

header {
    height: 109px;
    width: 100%;
    background-color: black;
    color: #FFF;
    display: flex;
    position: fixed;
    z-index: 99999;
}

header .header_inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

header .header_logo {
    margin-right: auto;
    right: 5px;
}

header .header_contact {
    position: absolute;
    justify-content: right;
    right: 0px;
    margin-right: 0px;
}

/* header_layout　ここまで */

/* header_parts */

header div .header_logo img {
    width: 357px;
}

header div .contact_jp {
    font-family: 'Noto Sans JP';
    font-size: 1.2rem;
}

header div .contact_en {
    font-family: 'Noto Serif JP';
    font-size: 3.2rem;
    color: #00ADEF;
}

header div .contact_en:before {
    content: "";
    display: inline-block;
    background-image: url("img/2x/tell_btn@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    vertical-align: bottom;
}

header div .contact_en p {
    display: inline-block;
    vertical-align: top;
}


/* header_parts　ここまで */


/* visual_video */

main .main_visual {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

main .main_visual div video {
    width: 100%;
    height: auto;
}

.main_visual__title {
    z-index: 10;
    position: absolute;
    top: 52%;
    right: 20%;
    left: 20%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
}

.main_visual__title img {
    width: 100%;
}

/* visual_video ここまで */

/* main */

main {
    background-color: #000;
}

.themp_sec {
    border-bottom: 1px solid rgba(100, 100, 100, 1);
    margin-bottom: 80px;
}

.themp_block {
    width: 90%;
    margin: 0 auto;
    max-width: 1100px;
}

.aside_note {
    text-align: right;
    font-family: 'Noto Sans JP';
    font-size: 1.4rem;
    margin-bottom: 70px;
    opacity: 0.8;
}

.car_img {
    background: url(img/2x/EQC_img_pc_1@2x.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 69.909%;
    width: 100%;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: relative;
}

.txt_visual__title {
    z-index: 10;
    position: absolute;
    top: 33%;
    right: 20%;
    left: 20%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

.txt_visual__title img {
    width: 100%;
}

.car_img div {
    width: 60%;
    /* color: #000;
    position: absolute;
    top: 8%; */
}

.car_img div h2 {
    font-family: 'DaimlerCAC-Regular', 'sans-serif';
    font-size: 12rem;
    font-size: 9.41vw;
    line-height: 0.9;
    letter-spacing: 0.001em;
}

.car_img div aside {
    font-family: 'Noto Serif JP', 'sans-serif';
    font-size: 4.2rem;
    font-size: 3.39vw;
    line-height: 1.5;
    margin-top: -10px;
    text-align: left;
}

div aside .little_font {
    font-family: 'Noto Serif JP', 'sans-serif';
    font-weight: 600;
    font-size: 2.8rem;
    font-size: 2.1vw;
    line-height: 1;
}



.txt_center_container {
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.375;
    margin-bottom: 35px;
}

.tell_btn {
    background-color: #00ADEF;
    border-radius: 50px;
    margin: 0 auto 80px auto;
    text-align: center;
    width: 370px;
    position: relative;
}

.tell_btn a {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 15px;
    border-radius: 50px;
}

.tell_btn p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.3;
}

.tell_before {
    display: block;
}

.tell_before:before {
    content: "";
    display: inline-block;
    background-image: url("img/4x/tell_btn_white@4x.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.tell_number {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 3.8rem;
    line-height: 1.2;
}

.flex_top {
    margin-bottom: 45px;
    width: 100%;
}

.flex_top img {
    width: 100%;
}

.flex_inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.flex_box {
    width: 48%;
}

.flex_box div {
    margin-bottom: 30px;
}

.flex_box div img {
    width: 100%;
}

.themp_block h3 {
    color: #D9BD85;
    font-family: 'DaimlerCAC-Regular', sans-serif;
    font-size: 7.2rem;
}

.themp_flex_article p {
    font-family: 'Noto Serif JP';
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.3;
}

.flex_box aside {
    font-family: 'Noto Serif JP';
    font-weight: 500;
    font-size: 3.6rem;
    margin-bottom: 25px;
}

.lineup_inner {
    display: flex;
    justify-content: space-between;
    margin: 15px 0px 80px 0px;
}

.lineup_box {
    width: 48%;
}

.lineup_box img {
    padding-bottom: 25px;
    width: 100%;
    max-width: 530px;
}

.lineup_box h4 {
    font-family: 'DaimlerCAC-Regular', sans-serif;
    font-size: 4rem;
    line-height: 1.2;
}

.lineup_box h5 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 2.3rem;
    line-height: 1.3;
}

.lineup_box aside {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    line-height: 2.6;
    padding-top: 10px;
}

.eqc_link_back {
    background: url(img/2x/EQC_img_pc_4@2x.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 33.2814%;
    width: 100%;
    position: relative;
    height: 100%;
}

.eqc_link_btn {
    background-color: #4D4D4D;

    border-radius: 50px;
    width: auto;
    position: absolute;
    top: 68%;
    left: 64%;
    line-height: 3;
}

.eqc_link_btn a {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0px 30px;
    border-radius: 50px;
}

.eqc_link_btn a p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-size: 1.25vw;
}

.footer_under_back {
    background: linear-gradient(#4B4B4B, #000);
    /* height: 730px; */
    padding-top: 63.909%;
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: relative;
}

.footer_under_back_box {
    top: 10%;
    position: absolute;
    margin: 0 auto;
    width: 60%;
}

@media all and (-ms-high-contrast: none) {
    header .header_contact {
        position: relative;
    }

    .footer_under_back {
        padding-top: 130px;
    }

    .footer_under_back_box {
        position: relative;
        width: 100%;
    }
}

/* for Microsoft Edge */
@supports (-ms-ime-align:auto) {
    header .header_contact {
        position: relative;
    }

    .footer_under_back {
        padding-top: 130px;
    }

    .footer_under_back_box {
        position: relative;
        width: 100%;
    }
}

.footer_under_back_box_txt {
    width: 100%;
    position: relative;
    left: 7px;
    max-width: 850px;
    margin: 0 auto;
}

.footer_under_back_box_txt img {
    width: 100%;
}

.footer_under_back div h2 {
    color: #D9BD85;
    font-family: 'DaimlerCAC-Regular', 'sans-serif';
    font-size: 12rem;
    font-size: 9.41vw;
    line-height: 0.9;
}

.footer_under_back div aside {
    color: #D9BD85;
    font-family: 'Noto Serif JP', 'sans-serif';
    font-size: 4.2rem;
    font-size: 3.29vw;
    line-height: 1.5;
    margin-top: -10px;
}

.footer_under_back div .tell_btn {
    margin-top: 40px;
}

/* main ここまで */

/* footer */

footer {
    background-color: #000;
}

.footer_container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer_inner {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 730px;
    margin: 0 auto;
    padding: 45px 0px 60px 0px;
}

.footer_inner li:first-child {
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
}

.footer_inner li img {
    margin-left: 45px;
    width: 100%;
}

.footer_box dl dt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    padding-bottom: 12px;
}

.footer_box dl dd {
    line-height: 1.85;
}

.footer_rights small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    line-height: 2.6;
    padding-bottom: 18px;
}

/* footer ここまで */

/* Google Map */

.g_map {
    height: 0;
    overflow: hidden;
    padding-bottom: 34.1614%;
    position: relative;
}

.g_map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.tb_only {
    display: none;
}

.sp_mini_only_ss {
    display: none;
}

.top_reverse {
    width: 60px;
    height: 60px;
    background-color: rgba(217, 189, 133, 0.9);
    position: fixed;
    right: 2%;
    bottom: 2%;
    cursor: pointer;
    display: none;
    text-align: center;
}

.top_reverse img {
    padding-top: 20px;
    width: 50%;
    margin: 0 auto;
}

/* Google Map ここまで */
/* responsive */
@media screen and (min-width:1275px) {
    .car_img div h2 {
        font-family: 'DaimlerCAC-Regular', 'sans-serif';
        font-size: 12rem;
        line-height: 0.9;
    }

    .car_img div aside {
        font-family: 'Noto Serif JP', 'sans-serif';
        font-size: 4.2rem;
        line-height: 1.5;
        margin-top: -10px;
    }

    div aside .little_font {
        font-family: 'Noto Serif JP', 'sans-serif';
        font-weight: 600;
        font-size: 2.8rem;
        line-height: 1;
    }
}

@media screen and (min-width:980px) {
    .sp_only {
        display: none;
    }


    .pc_only {
        display: block;
    }
}

@media screen and (max-width:1040px) {
    .tb_only {
        display: block;
    }

    header .header_logo {
        margin: 0;
    }

    .themp_block h3 {
        color: #D9BD85;
        font-family: 'DaimlerCAC-Regular', sans-serif;
        font-size: 6rem;
    }

    .aside_note {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .txt_center_container {
        font-size: 1.6rem;
    }

    .flex_box aside {
        font-family: 'Noto Serif JP';
        font-weight: 500;
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .tell_btn {
        width: 320px;
        margin: 0 auto 60px auto;
    }

    .tell_btn p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .tell_before:before {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }

    .tell_number {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .themp_flex_article p {
        font-family: 'Noto Serif JP';
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 2.3;
    }

}

@media screen and (max-width:980px) {
    .sp_only {
        display: block;
    }

    .pc_only {
        display: none;
    }

    header .header_logo {
        margin: 0;
    }

    header div .header_logo img {
        width: 357px;
    }

    .themp_block {
        width: 93%;
    }

    .sp_full {
        width: 100%;
    }

    .sp_limit {
        width: 93%;
        margin: 0 auto;
    }

    .aside_note {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .txt_center_container {
        font-size: 1.4rem;
    }

    .tell_btn {
        width: 320px;
        margin: 0 auto 60px auto;
    }

    .tell_btn p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .tell_before:before {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }

    .tell_number {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .flex_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 60px;
    }

    .flex_box {
        width: 100%;
    }

    .themp_block h3 {
        color: #D9BD85;
        font-family: 'DaimlerCAC-Regular', sans-serif;
        font-size: 6rem;
    }

    .themp_flex_article p {
        font-family: 'Noto Serif JP';
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 2.3;
    }

    .flex_box aside {
        font-family: 'Noto Serif JP';
        font-weight: 500;
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .themp_flex_article {
        margin-bottom: 55px;
    }

    .eqc_link_back {
        background: url(img/2x/EQC_img_pc_4@2x.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 33.2814%;
        width: 100%;
        position: relative;
        height: 100%;
    }

    .eqc_link_btn {
        background-color: #4D4D4D;
        border-radius: 50px;
        width: 40vw;
        position: relative;
        top: 0;
        left: 0;
        line-height: 5;
        margin: 30px auto 60px auto;
        text-align: center;
    }

    .eqc_link_btn a {
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 0px 30px;
        border-radius: 50px;
    }

    .eqc_link_btn a p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.8rem;
        font-size: 1.6vw;
    }
}

@media screen and (min-width:768px) {
    .pc_mini_only {
        display: block;
    }

    .sp_mini_only {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .pc_mini_only {
        display: none;
    }

    .sp_mini_only {
        display: block;
    }

    header {
        height: 85px;
        width: 100%;
        background-color: black;
        color: #FFF;
        display: flex;
    }

    header .header_inner {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 93%;
        margin: 0 auto;
        position: relative;
    }

    header .header_logo {
        margin-right: auto;
        margin-left: 0px;
    }



    /* header_layout　ここまで */

    /* header_parts */

    header div .header_logo img {
        width: 260px;
    }

    .header_contact_sp {
        background-color: #000;
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0px;
    }

    .header_contact_sp a {
        display: block;
        width: 50px;
        height: 50px;
        margin-left: auto;
        text-align: center;
    }

    .header_contact_sp a img {
        width: 100%;
        height: 100%;

    }

    main .main_visual {
        width: 100%;
        margin-bottom: 15px;
        position: relative;
    }

    .main_visual__title {
        z-index: 10;
        position: absolute;
        top: 52%;
        right: 5%;
        left: 5%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 90%;
    }

    .aside_note {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }

    .car_img {
        background: url(img/2x/EQC_img_pc_1_sp@2x.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 130.909%;
        width: 100%;
        margin: 0 auto 50px auto;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        position: relative;
    }

    .txt_visual__title {
        z-index: 10;
        position: absolute;
        top: 33%;
        right: 10%;
        left: 3.5%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }

    .txt_visual__title img {
        width: 100%;
        height: auto;
    }

    .car_img div {
        width: 93%;
    }

    .car_img div h2 {
        font-size: 12rem;
        font-size: 16.5vw;
    }

    .car_img div aside {
        font-size: 4.2rem;
        font-size: 5.7vw;
    }

    div aside .little_font {
        font-weight: 500;
        font-size: 2.8rem;
        font-size: 5.5vw;
        line-height: 1;
    }

    .car_img_note {
        padding-top: 20px;
    }

    .txt_center_container {
        text-align: left;
    }

    .tell_before {
        display: none;
    }

    .tell_btn {
        background-color: #00ADEF;
        border-radius: 50px;
        margin: 0 auto 50px auto;
        text-align: center;
        width: 95%;
        position: relative;
    }

    .tell_btn a {
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 18px;
        border-radius: 50px;
    }

    .tell_btn p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.8rem;
        font-size: 4.3vw;
        line-height: 2;
        text-align: center;
        padding-left: 20px;
    }

    .tell_btn a p:before {
        content: "";
        display: inline-block;
        background-image: url("img/4x/tell_btn_white@4x.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 9vw;
        max-width: 60px;
        height: 9vw;
        max-height: 60px;
        margin-right: 18px;
        position: absolute;
        left: 10px;
        top: 19px;
    }

    .themp_block h3 {
        color: #D9BD85;
        font-family: 'DaimlerCAC-Regular', sans-serif;
        font-size: 6.6rem;
    }

    .themp_flex_article p {
        font-family: 'Noto Serif JP';
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 2.3;
    }

    .themp_sec {
        border-bottom: 1px solid rgba(100, 100, 100, 1);
        margin-bottom: 65px;
    }

    .flex_inner {
        margin-bottom: 50px;
    }

    .flex_box div {
        margin-bottom: 18px;
    }

    .flex_box aside {
        font-family: 'Noto Serif JP';
        font-weight: 500;
        font-size: 3.6rem;
        margin-bottom: 25px;
    }

    .lineup_inner {
        flex-direction: column;
        justify-content: center;
        margin: 15px 0px 30px 0px;
    }

    .lineup_box {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .lineup_box img {
        padding-bottom: 25px;
        width: 100%;
        max-width: 900px;
    }

    .lineup_box h4 {
        font-family: 'DaimlerCAC-Regular', sans-serif;
        font-size: 3.8rem;
    }

    .lineup_box h5 {
        font-family: 'Noto Serif JP', sans-serif;
        font-size: 2.2rem;
    }

    .lineup_box aside {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.2rem;
        line-height: 2;
        padding-top: 10px;

    }

    .eqc_link_btn {
        background-color: #4D4D4D;
        border-radius: 50px;
        width: 70vw;
        position: relative;
        top: 0;
        left: 0;
        line-height: 5;
        margin: 25px auto 40px auto;
        text-align: center;
    }

    .eqc_link_btn a {
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 0px 10%;
        border-radius: 50px;
    }

    .eqc_link_btn a p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.8rem;
        font-size: 3.5vw;
    }

    .footer_under_back {
        background: linear-gradient(#4B4B4B, #000);
        /* height: 730px; */
        padding-top: 130.909%;
        width: 100%;
        position: relative;
        text-align: center;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        position: relative;
    }

    .footer_under_back_box {
        top: 15%;
        position: absolute;
        margin: 0 auto 20px auto;
        width: 93%;
    }

    .footer_under_back_box_txt {
        left: 0;
    }

    .footer_under_back_box_txt img {
        width: 100%;
    }

    .footer_under_back div h2 {
        color: #D9BD85;
        font-family: 'DaimlerCAC-Regular', 'sans-serif';
        font-size: 12rem;
        font-size: 16.5vw;
        line-height: 0.9;
    }

    .footer_under_back div aside {
        color: #D9BD85;
        font-family: 'Noto Serif JP', 'sans-serif';
        font-size: 4.2rem;
        font-size: 5.7vw;
        line-height: 1.5;
        margin-top: -10px;
    }

    .g_map {
        height: 0;
        overflow: hidden;
        padding-bottom: 69.17%;
        position: relative;
    }

    .g_map_btn div {
        background-color: #4B4B4B;
        width: 40%;
        text-align: center;
        border-radius: 50px;
        margin: 30px auto 50px auto;
    }

    .g_map_btn div a p {
        font-family: "Noto Sans JP", sans-serif;
        line-height: 2;
        font-size: 4vw;

    }

    .footer_inner {
        display: flex;
        justify-content: center;
        width: 93%;
        max-width: 630px;
        margin: 0 auto;
        padding: 45px 0px 60px 0px;
    }

    .footer_inner li {
        width: 50%;
    }

    .footer_inner li:first-child {
        text-align: left;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.4rem;
        font-size: 2.7vw;
    }

    .footer_inner li img {
        margin-left: auto;
        width: 95%;
    }

    .footer_box dl dt {
        font-size: 1.6rem;
        font-size: 3.5vw;
        font-weight: 500;
        line-height: 1.6;
        padding-bottom: 12px;
    }

    .footer_box dl dd {
        line-height: 1.85;
    }

    .footer_rights small {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.2rem;
        font-size: 2vw;
        line-height: 2.6;
        padding-bottom: 18px;
    }

    .top_reverse {
        width: 56px;
        height: 56px;
    }

    .top_reverse img {
        padding-top: 20px;
        width: 50%;
        margin: 0 auto;
    }
}

@media screen and (max-width:450px) {
    .sp_mini_only_ss {
        display: block;
    }
}

@media screen and (max-width:350px) {
    header div .header_logo img {
        width: 200px;
    }
}



/* responsive ここまで */