@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@font-face {
    font-family: 'vw-head';
    font-weight: 400;
    font-display: swap;
    src: url('vwhead-regular.woff2') format('woff2'), url('vwhead-regular.woff') format('woff');
}
@font-face {
    font-family: 'vw-head';
    font-weight: 700;
    font-display: swap;
    src: url('vwhead-bold.woff2') format('woff2'), url('vwhead-bold.woff') format('woff');
}
@font-face {
    font-family: 'vw-head';
    font-weight: 200;
    font-display: swap;
    src: url('vwhead-light.woff2') format('woff2'), url('vwhead-light.woff') format('woff');
}
@font-face {
    font-family: 'vw-text';
    font-weight: 400;
    font-display: swap;
    src: url('vwtext-regular.woff2') format('woff2'), url('vwtext-regular.woff') format('woff');
}
@font-face {
    font-family: 'vw-text';
    font-weight: 700;
    font-display: swap;
    src: url('vwtext-bold.woff2') format('woff2'), url('vwtext-bold.woff') format('woff');
}
@font-face {
    font-family: 'vw-head-ar';
    font-weight: 700;
    font-display: swap;
    src: url('HelveticaNeueArabicBD.woff') format('woff');
}
@font-face {
    font-family: 'vw-text-ar';
    font-weight: 400;
    font-display: swap;
    src: url('HelveticaNeueArabicLT.woff') format('woff');
}
@font-face {
    font-family: 'roboto-vi';
    font-weight: 200;
    font-display: swap;
    src: url('roboto-v20-vietnamese_latin-ext_latin-300.woff2') format('woff2'), url('roboto-v20-vietnamese_latin-ext_latin-300.woff') format('woff');
}
@font-face {
    font-family: 'roboto-vi';
    font-weight: 400;
    font-display: swap;
    src: url('roboto-v20-vietnamese_latin-ext_latin-regular.woff2') format('woff2'), url('roboto-v20-vietnamese_latin-ext_latin-regular.woff') format('woff');
}
@font-face {
    font-family: 'roboto-vi';
    font-weight: 700;
    font-display: swap;
    src: url('roboto-v20-vietnamese_latin-ext_latin-700.woff2') format('woff2'), url('roboto-v20-vietnamese_latin-ext_latin-700.woff') format('woff');
}
body, header, main, picture, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, a, form, fieldset, input, textarea, label, p, blockquote, th, td {
    text-decoration : none;
    font-style : normal;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-family: 'vw-head', 'Noto Sans JP', sans-serif;
    vertical-align: bottom;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #000;
    font-weight: 400;
    font-family: 'vw-head', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 22px;
    -webkit-text-size-adjust: 100%;
    background-position: 0%;
    background-color: #ffffff;
}
html, body {
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
    vertical-align: bottom;
}
span.aks {
    display: inline-block;
}
.mgr1em {
    margin-right: 1rem;
}

@media (hover: hover) and (pointer: fine) {
a img {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
a:hover img {
    color: #fff !important;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    opacity: 0.5;
}
}
.bg {
    background-color: #001e50;
}
/*===================　VW ムービングフレーム　===================*/
.header_wrap {
    width: 100vw;
    height: 20vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header {
    position: absolute;
    top: 0;
}
.vw_header {
    padding-top: 6.45vw;
    padding-bottom: 6.45vw;
}
.vw_header_item img {
    object-fit: cover;
    width: 100%;
    height: 8.5vw;
}
/*=================== ファーストビュー ===================*/
.hero_parent {
    position: relative;
    width: 100vw;
    height: 65.10538641686182vw;
    overflow: hidden;
    margin-bottom: 8%;
}
.hero {
    position: relative;
    width: 100%;
}
.hero_title {
    position: absolute;
    width: 100%;
    top: 34%;
    left: 0;
}
/*=================== お問い合わせボタン ===================*/
.fixed-content {
    position: fixed; /* 重要 */
    bottom: 0;
    left: 0;
    width: 100vw;
    pointer-event: all;
    z-index: 999; /* 重要 */
    background: #001e50;
    opacity: 0;
    transition: 0.3s;
}
.fixed-content a {
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    font-size: 24px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0.7em;
    border-top: 1px solid #ffffff;
}
.fixed-content.fixed {
    opacity: 1;
}
.hidden {
    animation: fade .2s ease-in-out forwards;
    pointer-events: none;/* 重要 */
}
.fixed-content a:link {
    text-decoration: none;
    color: #ffffff;
}
.fixed-content a:visited {
    text-decoration: none;
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
.fixed-content a:hover {
    text-decoration: none;
    color: #000000;
    background: #a9e3ff;
    border-top: 1px solid #000000;
}
}
.fixed-content a:active {
    text-decoration: none;
    color: #ffffff;
}
.fixed-content a:after {
    font-family: "Font Awesome 5 Free";
    content : "\f35d";
    font-weight: 900;
    margin: 0px 2px;
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: bottom;
    text-decoration: none !important;
}
@keyframes fade {
 from {
 opacity: 1;
}
 to {
 opacity: 0;
}
}
.visible {
    animation: fadeOut .2s ease-in-out forwards;
    pointer-events: all;/* 重要 */
}
 @keyframes fadeOut {
 from {
 opacity: 0;
}
 to {
 opacity: 1;
}
}
/*=================== ご成約特典 ===================*/
.seiyaku {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
    margin-bottom: 8%;
}
/*=================== 注釈部分 ===================*/
.annotation {
    font-size: 12px;
    line-height: 22px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    margin-bottom: 8%;
    margin-top: 5%;
    color: #000000;
}
/*=================== ボタン ===================*/
.button {
    text-align: center;
}
.button a {
    border-radius: 5px;
    background: #001e50;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ffffff;
    font-weight: 700;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 23px;
    padding-bottom: 20px;
    letter-spacing: 3px;
    font-size: 26px;
    line-height: 26px;
    min-width: 368px;
    margin-bottom: 4%;
}
.button_buttom a {
    margin-bottom: 8%;
}
.button a:link {
    text-decoration: none;
    color: #ffffff;
}
.button a:visited {
    text-decoration: none;
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
.button a:hover {
    text-decoration: none;
    color: #ffffff;
    background: #00b0f0;
}
.keisai_button a:hover {
    text-decoration: none;
    color: #000000;
    background: #ffffff;
}
.otoiawase_button a:hover {
    text-decoration: none;
    color: #000000;
    background: #ffffff;
}
}
.button a:active {
    text-decoration: none;
    color: #ffffff;
    background: #001e50;
}
.button a:after {
    font-family: "Font Awesome 5 Free";
    content : "\f35d";
    font-weight: 900;
    margin: 0px 2px;
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: bottom;
    text-decoration: none !important;
}
.tel_button a {
    font-size: 31px;
}
.tel_button a:after {
    content : "\f098";
    font-size: 26px;
}
.present_button {
    text-align: center;
}
.present_button a {
    border-radius: 5px;
    background: #00b0f0;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ffffff;
    font-weight: 700;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 23px;
    padding-bottom: 20px;
    letter-spacing: 3px;
    font-size: 26px;
    line-height: 26px;
    min-width: 368px;
    margin-bottom: 5%;
}
.present_button a:link {
    text-decoration: none;
    color: #ffffff;
}
.present_button a:visited {
    text-decoration: none;
    color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
.present_button a:hover {
    text-decoration: none;
    color: #ffffff;
    background: #001E50;
}
}
.present_button a:active {
    text-decoration: none;
    color: #000000;
    background: #ffffff;
}
.present_button a:after {
    font-family: "Font Awesome 5 Free";
    content : "\f13a";
    font-weight: 900;
    margin: 0px 2px;
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: bottom;
    text-decoration: none !important;
}
/*=================== T-Cross ===================*/
.tcross {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
    margin-bottom: 8%;
}
/*=================== T-Roc ===================*/
.troc {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
    margin-bottom: 8%;
}
/*=================== お問い合わせ ===================*/
.otoiawase {
    position: relative;
    overflow: hidden;
}
.otoiawase_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.otoiawase_bg img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.otoiawase_title {
    position: relative;
    margin-top: 4%;
    margin-bottom: 4%;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}
.otoiawase .button {
    position: relative;
}
/*=================== 試乗申込みフォーム ===================*/
.form_bg {
    background-color: #ffffff;
}
input[type="submit"].check_agreed_submit {
    margin-top: 2rem;
    border-style: none;
    opacity: 0;
    border-radius: 5px;
    background: #00b0f0;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #ffffff;
    font-weight: 700;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 23px;
    padding-bottom: 20px;
    font-size: 26px;
    line-height: 26px;
    min-width: 270px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    letter-spacing: 2px;
}

@media (hover: hover) and (pointer: fine) {
input[type="submit"].check_agreed_submit:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #001e50;
}
}
#formWrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    line-height: 26px;
    font-size: 16px;
    padding-bottom: 5%;
    color: #000000;
}
.formtitle {
    font-size: clamp(18px, 3.7vw, 38px);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    padding-top: 2rem;
    color: #000000;
    letter-spacing: 3px;
}
.formtitle img {
    display: block;
    width: 90%;
    margin-right: auto;
}
.formcaption {
    font-size: 18px;
    margin-bottom: 2rem;
    font-family: 'vw-head', 'Noto Sans JP', sans-serif!important;
}
.confirm_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}
table.formTable {
    margin-top: 1rem;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
table.formTable tr {
}
table.formTable td, table.formTable th {
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 24px;
}
table.formTable td.colspan1 {
    width: 40%;
}
table.formTable td.colspan2 {
    padding-left: 1rem;
    width: 40%;
    vertical-align: top;
}
table.formTable td span {
    display: block;
    margin-top: 0.5rem;
    font-size: 14px;
}
table.formTable th {
    width: 20%;
    font-size: 16px;
    text-align: left;
    vertical-align: middle;
    line-height: 24px;
}
table.formTable th span {
    color: #fa0032;
    font-size: 14px;
}
table.formTable th span.nini {
    color: #fff;
}
table.formTable th span.ninni {
    color: #000000;
}
.check_agreed {
    font-size: 16px;
}
.cp_ipselect {
    overflow: hidden;
    width: 100%;
    text-align: left;
}
.cp_ipselect select {
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.cp_ipselect select::-ms-expand {
 display: none;
}
.cp_ipselect.cp_sl01 {
    position: relative;
    border-radius: 3px;
    background: #e5e5e5;
}
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 1.4em;
    right: 0.9rem;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
    padding: 1rem;
    color: #000000;
    font-size: 16px;
    width: 100%;
}
.select_wrap {
    display: flex;
}
.personal_info_caption {
    font-size: 14px;
    margin-bottom: 1rem;
    line-height: 20px;
    text-align: justify;
}
.personal_info_caption2 {
    font-size: 12px;
    margin-top: 1rem;
    line-height: 20px;
    text-align: justify;
}
.personal_info_caption a:link {
    text-decoration: underline;
    color: #000000;
}
.personal_info_caption a:visited {
    text-decoration: underline;
    color: #000000;
}

@media (hover: hover) and (pointer: fine) {
.personal_info_caption a:hover {
    text-decoration: none;
    color: #000000;
}
}
.personal_info_caption a:active {
    text-decoration: none;
    color: #000000;
}
.personal_info_caption_title {
    font-family: 'vw-head', 'Noto Sans JP', sans-serif!important;
    font-size: 16px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: left;
}
.submit_reset_bu {
    background-color: #000;
    border-style: none;
    padding-top: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
    border-radius: 5px;
    outline: none;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    max-width: 230px;
    margin-top: 2rem;
    letter-spacing: 0.3rem;
    text-indent: 0.3em;
    margin-left: auto;
    margin-right: auto;
}

@media (hover: hover) and (pointer: fine) {
.submit_reset_bu:hover {
    cursor: pointer;
    opacity: 0.6;
}
}
input.submit_reset_bu {
    background-color: #000;
    border-style: none;
    padding-top: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
    border-radius: 3px;
    outline: none;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    min-width: 200px;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    letter-spacing: 0.5rem;
    text-indent: 0.5em;
    -webkit-appearance: none;
}

@media (hover: hover) and (pointer: fine) {
input.submit_reset_bu:hover {
    cursor: pointer;
    opacity: 0.6;
}
}
table.formTable td {
}
table.formTable input[type='text'] {
    font-size: 16px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1rem;
    border-style: none;
    width: 100%;
    border-radius: 3px;
    outline: none;
    background-color: #e5e5e5;
}
table.formTable textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 3px;
    resize: none;
    outline: none;
    box-sizing: border-box;
}
input[type="checkbox"] {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.check_agreed {
    text-align: center;
}
.check_agreed input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000000;
    margin-right: 3px;
    vertical-align: -2px;
}
.check_agreed input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    content: '';
}
/*=================== 店舗情報 ===================*/
.store_bg {
    padding-top: 5%;
    padding-bottom: 2%;
    background-color: #001C51;
    position: relative;
}
.fair_tenpo_title {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    margin-bottom: 3%;
    position: absolute;
    top: -4%;
    overflow: hidden;
    left: -0.1%;
}
.fair_tenpo_title img {
    display: block;
    margin-right: auto;
    width: 35%;
}
.store_title {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    width: 95%;
    margin-bottom: 3%;
}
.store_wrap_1 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 95%;
}
.store_wrap_2 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 95%;
}
.address_wrap {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
}
.store_img_address_parent_b {
    margin-left: 2rem;
}
.store_img {
    width: 63.1%;
}
.store_address {
    width: 46.9%;
    margin-left: 2rem;
}
.address_item_button {
    margin-top: 2rem;
    width: 85%;
}
.address_item_button a {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
.address_item_button a:hover img {
    opacity: 0.7;
}
}
.insta_wrap_1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 95%;
}
.insta_wrap_2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 95%;
}
.insta_wrap_inner_1 {
    position: relative;
    margin-top: 2rem;
    height: 31.424166666666665;
    max-height: 377.09px;
    max-width: 1200px;
}
.insta_follow_me_1 {
    position: absolute;
    width: 20%;
    left: 7%;
    top: 15%;
    z-index: 5;
}
.insta_button_1 {
    position: absolute;
    width: 27%;
    left: 13%;
    top: 25%;
    z-index: 4;
}
.insta_img_1 {
}
.insta_wrap_inner_2 {
    position: relative;
    margin-top: 2rem;
    height: 34.288333333333334;
    max-height: 411.46px;
    max-width: 1200px;
}
.insta_follow_me_2 {
    position: absolute;
    width: 20%;
    left: 7%;
    top: 35%;
    z-index: 5;
}
.insta_button_2 {
    position: absolute;
    width: 27%;
    left: 13%;
    top: 45%;
    z-index: 4;
}
.insta_img_2 {
}
footer {
    margin-top: 2rem;
    padding-right: 1em;
    padding-left: 1em;
}
address {
    font-size: 14px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
}

/*=================== スマホレイアウト ===================*/
@media (max-width:559px) {
.PC {
    display: none;
}
.title {
    margin-bottom: 4%;
}
/*=================== スマホレイアウト ファーストビュー ===================*/
.hero_parent {
    height: 134.58110516934045vw;
    margin-bottom: 4%;
}
.hero {
}
.hero_title {
    top: 22.5%;
}
/*=================== スマホレイアウト お問い合わせボタン ===================*/
.fixed-content a {
    font-size: 16px;
    padding: 0.5em;
}
/*=================== スマホレイアウト ご成約特典 ===================*/
.seiyaku {
    margin-bottom: 4%;
}
/*=================== T-Cross ===================*/
.tcross {
    padding-left: 0%;
    padding-right: 0%;
    margin-bottom: 8%;
}
/*=================== T-Roc ===================*/
.troc {
    padding-left: 0%;
    padding-right: 0%;
    margin-bottom: 8%;
}
/*=================== スマホレイアウト 注釈部分 ===================*/
.annotation {
    font-size: 10px;
    line-height: 18px;
    width: 96%;
    margin-bottom: 11%;
    margin-top: 5%;
    text-align: justify;
}
/*=================== スマホレイアウト 試乗予約ボタン ===================*/
.button {
    text-align: center;
}
.button a, .present_button a {
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
    padding-top: 13px;
    padding-right: 13px;
    padding-left: 15px;
    padding-bottom: 13px;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 16px;
    min-width: 231px;
}
    .tel_button a {
    font-size: 20px;
}
.tel_button a:after {
    font-size: 16px;
}
.button_a_bg {
}
.button_title_a {
    width: 80%;
}
.button_b_bg {
}
.button_title_b {
    width: 70%;
}
.keisai_inner {
    width: 94%;
}
/*=================== スマホレイアウト お問い合わせ ===================*/
.otoiawase {
    padding-top: 4%;
    padding-bottom: 4%;
}
.otoiawase_bg {
}
.otoiawase_bg img {
}
.otoiawase_title {
    margin-top: 4%;
    margin-bottom: 8%;
    width: 80%;
}
.otoiawase .button {
}
/*=================== スマホレイアウト 試乗申込みフォーム ===================*/
#formWrap {
    width: 100%;
    line-height: 120%;
    font-size: 90%;
    padding: 3%;
}
.formtitle {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    padding-top: 1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}
.formcaption {
    font-family: 'hiragino-kakugo-pro-w6';
    font-size: 16px;
    margin-bottom: 0rem;
    line-height: 24px;
}
table.formTable {
    margin-top: 0rem;
}
.cp_ipselect {
    width: 80%;
}
.shop_button_caption {
    font-size: 14px;
    line-height: 26px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1.5rem;
}
.advance_reservation_button_parent {
    display: block;
    padding-bottom: 0rem;
}
.advance_reservation_button a {
    padding-top: 0.3rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-bottom: 0.3rem;
    font-size: 18px;
    line-height: 36px;
    border-radius: 5px;
    min-width: 130px;
    margin-bottom: 4rem;
}
input[type="submit"].check_agreed_submit {
    margin-top: 2rem;
    border-style: none;
    opacity: 0;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 700;
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 17px;
    padding-bottom: 15px;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 18px;
    min-width: 200px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
/*=================== スマホレイアウト store ===================*/
.store_bg {
    padding-top: 2.3rem;
    padding-bottom: 1.5rem;
}
.fair_tenpo_title {
    margin-bottom: 3%;
    top: -2.5%;
    overflow: hidden;
}
.fair_tenpo_title img {
    display: block;
    margin-right: auto;
    width: 60%;
}
.store_title {
    width: 90%;
    margin-bottom: 1.5rem;
}
.store_title img {
}
.store_wrap_1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.store_wrap_2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.insta_wrap_inner {
    margin-left: 0rem;
    margin-right: 0rem;
    position: relative;
}
.store_img_address_parent_b {
    margin-left: 0rem;
    margin-top: 1rem;
}
.store_img {
    margin-bottom: 1rem;
    width: 100%;
}
.store_address {
    margin-left: 0rem;
    width: 100%;
}
.address_item_button {
    margin-top: 1.5rem;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}
.insta_wrap_inner_1 {
    position: relative;
    margin-top: 1rem;
    height: 71.55116145133424;
}
.insta_follow_me_1 {
    position: absolute;
    width: 40%;
    left: 40%;
    top: 0%;
    z-index: 5;
}
.insta_button_1 {
    position: absolute;
    width: 45%;
    left: 50%;
    top: 10%;
    z-index: 4;
}
.insta_img_1 {
}
.insta_wrap_inner_2 {
    position: relative;
    margin-top: 2rem;
    height: 68.99596851602995;
}
.insta_follow_me_2 {
    position: absolute;
    width: 40%;
    left: 5%;
    top: 60%;
    z-index: 5;
}
.insta_button_2 {
    position: absolute;
    width: 45%;
    left: 15%;
    top: 70%;
    z-index: 4;
}
.insta_img_2 {
}
address {
    font-size: 10px;
}
}

@media (max-width:949px) {
#formWrap {
    border-radius: 0px;
}
table.formTable tr, table.formTable th, table.formTable td {
    display: block;
    width: auto;
}
table.formTable td.colspan1, table.formTable td.colspan2 {
    display: table-cell;
    width: auto;
}
table.formTable td.colspan1 input, table.formTable td.colspan2 input {
    padding: 5%;
}
table.formTable th, table.formTable td {
    border-top: none;
    padding-top: 2%;
    padding-bottom: 0%;
}
table.formTable tr {
    margin-top: 1rem;
}
table.formTable input[type='text'], table.formTable textarea {
    width: 100%;
    padding: 2%;
}
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 46%;
    right: 3%;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #C0C0C0;
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select.select1 {
    padding: 3%;
    color: #000000;
    border: 1px;
    font-size: 16px;
    width: 100%;
}
.personal_info_caption_title {
    margin-top: 3rem;
}
input[type="submit"].check_agreed_submit {
    -webkit-appearance: none;
    margin-bottom: 2rem;
}
}

@media (min-width:560px) {
.SP {
    display: none;
}
}

@media (max-width:560px) {
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 43%;
    right: 4%;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    pointer-events: none;
}
}

@media (max-width:958px) and (min-width:561px) {
}

@media (min-width:1280px) {
}
