@charset "UTF-8";

/****** Page Settings *****************/
/* Reset */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

body {
    min-width: 1000px;
    color: #333;
    line-height: 1.7;
}
@media only screen and (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 14px;
    }
}

.br-sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .br-sp {
        display: block;
    }
}

/* スクロールのオフセット */
h1[id], h2[id], h3[id] {
    position: relative;
}
h1[id]:before, h2[id]:before, h3[id]:before {
    content: '';
    display: block;
    height: 60px;
    margin-top: -60px;
}

/* Link Text */
.page-various-services a {
    color: #333;
    transition: 0.2s;
}
.page-various-services a:hover {
    opacity: 0.7;
}

/* Content Width */
.section-various-services {
    margin: auto;
    width: 800px;
}
@media screen and (max-width: 767px) {
    .section-various-services {
        width: calc(100% - 60px);
    }
}

/* Font Size */
.section-various-services p {
    font-size: 16px;
    line-height: 1.7;
}
@media screen and (max-width: 767px) {
    .section-various-services p {
        font-size: 14px;
    }
}

/* Headings */
.text-bold {
    font-weight: bold;
}

.headingLv2 {
    margin: 100px 0 60px;
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.headingLv2::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 40px;
    height: 3px;
    background: #ed6c00;
}

.headingLv3 {
    margin: 60px 0 40px;
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.headingLv3 span {
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .headingLv2 {
        margin: 80px 0 40px;
        font-size: 26px;
    }

    .headingLv3 {
        margin: 36px 0 20px;
        font-size: 22px;
    }
}

/* Breadcrumbs ************/
.nav_bread {
    padding: 10px 1rem;
    background: #f5f5f5;
}
.nav_bread_inner {
    margin: auto;
    display: flex;
    font-size: 14px;
    max-width: 1092px;
}

@media screen and (max-width: 767px) {
    .nav_bread_inner {
        font-size: 12px;
    }
}

.nav_bread_item,
.nav_bread_item a {
    color: #666666;
    font-size: 12px;
}

.nav_bread_item:not(:first-of-type) {
    margin-left: 8px;
    padding-left: 15px;
    position: relative;
}
.nav_bread_item:not(:first-of-type):before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
}

/****** Main Visual ****************/
.main-visual {
    position: relative;
    display: grid;
    place-items: center;
}
.main-visual_textBox {
    padding: 30px 40px;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .main-visual_textBox {
        padding: 20px 10px;
        width: calc(100% - 40px);
    }
}

.main-visual_title {
    font-size: 36px;
    text-align: center;
    line-height: 1.2;
    font-weight: bold;
}
.main-visual_title::after {
    margin-top: 15px;
    padding-top: 15px;
    content: "";
    display: block;
    border-top: 1px solid #fff;
    height: 1px;
    width: 431px;
}
.main-visual_subTitle {
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    .main-visual_title {
        font-size: 24px;
    }
    .main-visual_title::after {
        padding-top: 10px;
        margin-top: 10px;
        width: 100%;
    }
    .main-visual_subTitle {
        font-size: 11px;
    }
}

/* Main Visual CTA */
.main-visual_cta {
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .main-visual_cta {
        padding: 20px 0;
        background: #f4f4f4;
    }
}

.mv_cta_buttons_inner {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: calc(100% - 60px);
}
@media screen and (max-width: 767px) {
    .mv_cta_buttons_inner {
        flex-direction: column;
        gap: 16px;
    }
}

/****** Outline *****************/
summary {
    display: list-item;
    display: block;
    list-style: none;
}

/* safariでlist-style: none */
summary::-webkit-details-marker {
    display: none;
}

.outline {
    margin: auto;
    width: 740px;
    padding: 20px 30px 0;
    font-size: 14px;
    background: #f8f8f8;
}
@media screen and (max-width: 767px) {
    .outline {
        padding: 15px 20px 0;
        width: calc(100% - 60px);
    }
}

.outline_summary {
    padding-bottom: 15px;
    cursor: pointer;
}
.outline_summaryIco {
    display: inline-block;
    transform: rotate(-90deg) scale(0.5);
    transition: all 0.4s;
}
.outline_summaryIco.is-opened {
    transform: rotate(0deg) scale(0.5);
}
.outline_summaryText {
    font-weight: bold;
}
.outline_item {
    border-top: 1px solid #fff;
}
.outline_item:last-child {
    padding-bottom: 10px;
}
.outline_subItem {
    margin-left: 1em;
}
.outline_link {
    padding: 10px 0;
    display: block;
    color: #333;
}

@media screen and (max-width: 767px) {
    .various-services-pg_details {
        margin-top: 24px;
    }
}

.js-details.is-opened .outline_summaryIco {
    transform: rotate(0deg) scale(0.5);
}

.js-content {
    overflow: hidden;
}

/****** CTA-GrayBack ****************/
.cta-wrapper {
    margin-bottom: 80px;
}
.cta-inner {
    box-sizing: border-box;
    margin: auto;
    width: 800px;
    padding: 20px;
    background: #f4f4f4;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .cta-inner {
        width: calc(100% + 60px);
        margin-left: -30px;
    }
}
p.cta_title {
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    p.cta_title {
        font-size: 16px;
    }
}
.cta_text {
    margin: 0 0 18px;
}
@media screen and (max-width: 767px) {
    .cta_text {
        width: 100%;
        font-size: 14px;
    }
}
.cta_linkWrap {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.cta_linkWrap .cta_link {
    width: 305px;
}
@media screen and (max-width: 767px) {
    .cta_linkWrap {
        flex-direction: column;
        gap: 16px;
    }

}

/****** タイヤ交換とは *****************/
/* 履き替えとの違い */
.difference-text:not(:first-child) {
    margin-top: 20px;
}
.difference-text_heading {
    font-weight: 600;
}

/* 作業完了までの流れ */
.flow-various-services {
    margin: auto;
    width: 470px;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .flow-various-services {
        max-width: 100%;
    }
}

.flow-various-services_img {
    width: 47px;
    height: 47px;
}
.flow-various-services_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}
.flow-various-services_item {
    display: flex;
    align-items: center;
    gap: 20px;
    counter-increment: number;
}
@media screen and (max-width: 767px) {
    .flow-various-services_item {
        gap: 10px;
    }
}
.flow-various-services_item {
    display: flex;
    flex-wrap: wrap;
}
.flow-various-services_item .flow-various-services_text::before {
    content: counter(number) ".";
    margin-right: 5px;
}
.flow-various-services_text {
    display: flex;
    font-weight: bold;
    font-size: 18px;
}
.flow-various-services_text span {
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .flow-various-services_text {
        font-size: 14px;
    }
}
.flow-various-services_sm {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .flow-various-services_sm {
        font-size: 12px;
    }
}

.flow-various-services_bottom-text {
    width: 100%;
}

/* お店に着いた後はどうしたらいいの？ */
.flow-arriving {
    margin: auto;
    width: 470px;
    margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
    .flow-arriving {
        max-width: 100%;
    }
}

.flow-arriving_sum {
    padding: 10px 10px;
    background: #f4f4f4;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    position: relative;
}

@media screen and (max-width: 767px) {
    .flow-arriving_sum {
        font-size: 14px;
    }
}

.flow-arriving_sum::before {
    content: url(../_images/icon_q.svg);
    display: inline-block;
    vertical-align: middle;
    padding-right: 5px;
}
.flow-arriving_sum::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 12px;
    width: 8.5px;
    height: 8.5px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.is-opened .flow-arriving_sum::after {
    top: 20px;
    right: 12px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.flow-arriving .details_content {
    padding-top: 20px;
}

.flow-arriving .details_content p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.flow-arriving .details_content p:last-child {
    margin-bottom: 0;
}
.flow-arriving_h {
    display: block;
    font-weight: bold;
}

/* Table 費用・作業時間 */
.table_price-time_wrapper {
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #ebebeb;
    margin-top: 20px;
    margin-bottom: 16px;
}
.table_price-time_wrapper>*:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .table_price-time_wrapper {
        padding: 20px 10px;
    }
}

.table_price-time {
    width: 100%;
    margin: 0 auto 23px;
    border-collapse: collapse;
}

.table_price-time thead th {
    padding: 1rem 0;
    font-weight: 700;
    line-height: 1.28571;
    text-align: center;
    color: #000;
}
.table_price-time tbody tr td {
    border-top: 1px solid #a7a7a7;
    border-bottom: 1px solid #a7a7a7;
    font-weight: 700;
    color: #000;
    padding: 0.5em 0.5em 0.5em 0;
    white-space: nowrap;
}

.table_price-time .price,
.table_price-time .time {
    text-align: center;
    padding: 0.5em;
}

@media screen and (max-width: 767px) {
    .table_price-time thead th {
        font-size: 12px;
        padding: 8px 0;
    }
    .table_price-time tbody tr td {
        font-size: 12px;
    }
}

a.blue-link {
    color: #1e77c9;
}

@media screen and (max-width: 340px) {
    /* テーブルのスクロール */
    .js-table-scroll {
        overflow-x: scroll;
        white-space: nowrap;
    }
}


/****** FAQ *****************/
.section-faq {
    margin: auto;
    width: 800px;
}
@media screen and (max-width: 767px) {
    .section-faq {
        width: calc(100% - 60px);
    }
}

.faq-block_title {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    background: #000;
    padding: 13px 0 13px 22px;
}
@media screen and (max-width: 767px) {
    .faq-block_title {
        font-size: 16px;
        padding: 10px 0 10px 18px;
    }
}

.faq-single {
    border-top: 1px solid #fff;
}

.faq-q {
    padding: 20px 18px;
    background: #f4f4f4;
    color: #000;
    list-style: none;
    position: relative;
    padding-left: 56px;
    cursor: pointer;
}
.faq-q::before {
    content: url(../_images/icon_question.svg);
    line-height: 1;
    position: absolute;
    left: 18px;
}
@media screen and (max-width: 767px) {
    .faq-q {
        font-size: 14px;
        align-items: flex-start;
    }
    .faq-q::before {
        top: 18px;
    }
}

.faq-a {
    font-weight: 400;
    text-align: left;
    color: #000;
    display: flex;
}
@media screen and (max-width: 767px) {
    .faq-a {
        font-size: 15px;
    }
}

.faq-a_inner {
    padding: 20px 18px;
    display: flex;
}
.faq-a_inner::before {
    content: url(../_images/icon_answer.svg);
    margin-right: 10px;
    line-height: 1;
}

.faq-a a {
    color: #1e77c9;
}

.faq-block {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .faq-block {
        margin-bottom: 30px;
    }
}

/****** Common Parts *****************/
/* Pit Service News */
.pit-tips-line_inner {
    margin: auto;
    width: 1000px;
}
.pit-tips-line_lead {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .pit-tips-line_inner {
        width: calc(100% - 60px);
    }
    .pit-tips-line_lead {
        text-align: inherit;
    }
}

/* 店舗一覧 */
.section-store-search .areas {
    margin: auto;
    width: 1000px;
}
@media screen and (max-width: 767px) {
    .section-store-search .areas {
        width: calc(100% - 60px);
    }
}
.section-store-search .area-name {
    display: block;
    position: relative;
    margin-top: 1px;
    padding: 20px 0 20px 80px;
    background: #f4f4f4;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.44444;
    text-align: left;
    color: #000;
    transition: 0.2s;
    transition-property: opacity;
    cursor: pointer;
}
.section-store-search .area-name::after,
.section-store-search .area-name::before {
    position: absolute;
    content: "";
    top: 50%;
}
.section-store-search .area-name::before {
    height: 30px;
    left: 35px;
    border-left: 1px solid #707070;
    transform: translate3d(0, -50%, 0);
}
.section-store-search .area-name::after {
    width: 30px;
    left: 20px;
    border-top: 1px solid #707070;
}
.section-store-search .area-name:hover {
    opacity: 0.7;
}
@media screen and (max-width: 767px) {
    .section-store-search .area-name {
        font-size: 15px;
    }
}
.section-store-search details[open] .area-name::before {
    height: 0;
}
.section-store-search .prefectures {
    display: block;
}
.section-store-search .prefectures ul {
    padding: 20px;
    text-align: left;
    color: #000;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
    .section-store-search .prefectures ul {
        font-size: 15px;
    }
}
.section-store-search .prefectures a {
    font-size: 14px;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .section-store-search .prefectures a {
        font-size: 14px;
    }
}

.section-store-search .area .area-name.open:before {
    height: 0;
}

.section-store-search .area .prefectures ul li:nth-child(n + 2):before {
    display: inline-block;
    content: "|";
    margin: 0 1rem;
}


/* Bottom Links */
.bottom-links {
    margin-top: 100px;
    padding-bottom: 4rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    .bottom-links {
        flex-direction: column;
        margin-top: 3.5rem;
        padding-bottom: 1.5rem;
    }
}
.bottom-links_linkWrap {
    width: 200px;
}
@media screen and (max-width: 767px) {
    .bottom-links_linkWrap {
        width: 50%;
        margin: auto;
    }
}
.bottom-links_link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1em 2em;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: #fff !important;
    background: #000;
    border-radius: 5px;
}
.bottom-links_link:hover {
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .bottom-links_link {
        font-size: 12px;
    }
}
.bottom-links_icon {
    margin-left: auto;
}


/* floating */
.floating-bottom {
    position: fixed;
    z-index: 99999;
    width: 100%;
    min-width: 1000px;
    bottom: 0;
    display: none;
    background-color: #b2b2b2;
}

.fb_inner {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    width: 800px;
    gap: 24px;
    margin: 0 auto;
    padding: 10px 30px;
}

.fb_inner_link {
    width: 305px;
}

@media screen and (max-width: 767px) {
    .floating-bottom {
        min-width: 320px;
    }
    .fb_inner {
        width: 100%;
        gap: 16px;
        padding: 2vw 4vw;
        max-height: 15vh;
    }

    .fb_inner_link {
        display: block;
        width: 45%;
        margin: 0 1.5%;
    }

    .fb_inner_link picture,.fb_inner_link img {
        display: block;
        width: 100%;
    }

}

/* 2024-03-21追記 */
.gray-wrapper {
    background: #f8f8f8;
    padding: 20px 16px;
    margin-bottom: 40px;
}
.gray-wrapper p {
    font-size: 16px;
    line-height: 1.6;
}
.gray-wrapper p.gray-wrapper_heading {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
    .gray-wrapper p {
        font-size: 14px;
    }
    .gray-wrapper p.gray-wrapper_heading {
        font-size: 14px;
    }
}

/* 2024-11-06 YouTube動画追加 */

/* ------- Youtube------- */
.l-contents{
    max-width: 800px;
    /* width: 100%; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 0;
    width: calc(100% - 60px);
}

.p-contents__youtube {
    cursor: pointer;

    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
.p-contents__youtube {
  /* width: calc(100% - 60px); */
  margin: 0 auto 30px;
}}
 
.p-contents__youtube > .modal {
  transition: 0.2s;
  transition-property: opacity;
}
.p-contents__youtube > .modal:hover {
  opacity: 0.7;
}
/* ------- Youtubeここまで ------- */


/* ------- モーダル ------- */
html.is-modal {
  overflow: hidden;
}

#backMaskBase {
  background: #000;
  display: none;
  height: 100%;
  left: 0px;
  opacity: 0.8;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

#modalWin {
  display: none;
  height: 0;
  left: 0;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 101;
}

#modalContent {
  display: none;
  height: auto;
  margin: 0 auto;
  padding-top: min(50%, 480px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 854px;
  max-width: 90%;
  z-index: 99;
}

#modalContent .closeBtn {
  cursor: pointer;
  height: 25px;
  position: absolute;
  right: 0;
  text-align: center;
  top: -34px;
  width: 25px;
  z-index: 100;
}

#modalContent .closeBtn div {
  display: inline-block;
  position: relative;
  margin: -12px 0 0 0;
  padding: 0;
  width: 2px;
  height: 36px;
  background: #fff;
  transform: rotate(45deg);
}

#modalContent .closeBtn div:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 36px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
}

.modalinner {
  text-align: left;
  padding: 0;
}

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

/* ------- モーダルここまで ------- */

/* 2024-12-19 WEB予約の流れリンク追加 */
.p-cta__textLink {
    margin-top: 18px;
    }
.p-cta__textLink a {
    color: #1E77C9;
}

/* 2025-01-23 KV変更 */
/***** キービジュアル *****/
.keyVisual {
    background: #111;
    position: relative;
}
.keyVisual__img {
    max-width: 1000px;
    margin: 0 auto;
}
.keyVisual__text__inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
}
.keyVisual__text {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.cta1 {
    background: #F4F4F4;
    margin-bottom: 80px;
}
.cta1__inner {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.balloon__wrapper {
    width: 400px;
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
    background: #ED6C00;
    padding: 2px;
}

.cta1 .balloon {
    width: 100%;
    text-align: center;
    background: #fff;
    clip-path: polygon(0 0, calc(95% + 1px) 0, 100% 50%, calc(95% + 1px) 100%, 0 100%);
}

.balloon__text-orange {
    font-size: 16px;
    font-weight: bold;
    color: #ED6C00;
}
.balloon .balloon__text-black {
    font-size: 24px;
    font-weight: bold;
}
.balloon__text-black span {
    font-size: 20px;
    font-weight: bold;
}
.cta1_buttons_link img {
    width: 400px;
}

@media screen and (max-width: 767px) {
    .cta1 {
        margin-bottom: 24px;
    }
    .cta1__inner {
        display: block;
        padding: 6.4vw 8vw;
    }

    .balloon__wrapper {
        position: relative;
        width: 100%;
        clip-path: none;
        background: #fff;
        padding: 0;
        margin-bottom: 4vw;
    }  
    .cta1 .balloon {
        clip-path: none;
        border: 2px solid #ED6C00;
        padding: 2vw 0;
    }
    .balloon__wrapper::after {
        content: "";
        position: absolute;
        width: 4vw;
        height: 4vw;
        background: #fff;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 50%) rotate(45deg);
        border-right: 2px solid #ED6C00;
        border-bottom: 2px solid #ED6C00;
    }
    .balloon__wrapper .balloon p::before {
        display: none;
    }

    .balloon .balloon__text-orange {
        font-size: 3.73vw;
    }
    .balloon .balloon__text-black {
        font-size: 5.6vw;
        line-height: 1.2;
    }
    .balloon .balloon__text-black span {
        font-size: 4.53vw;
    }
    .cta1_buttons_link img {
        width: 100%;
    }
}

/* 2025-02-25 お知らせ タイヤ値上げ */
.tire__news {
    margin: 40px auto;
    width: 100%;
    max-width: 800px;
}

.tire__news__heading {
    background: #ED6C00;
    color: #fff;
    font-size: 21px;
    line-height: 1.8;
    font-weight: bold;
    text-align: center;
}

.tire__news__content {
    padding: 24px;
    text-align: center;
    background: #F4F4F4;
    font-size: 17px;
}

.tire__news__content__inner {
    background: #FFF;
    padding: 24px;
    line-height: 1.5;
}

.tire__news__content--bold {
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .tire__news {
        box-sizing: border-box;
        padding: 0 10px;
    }
    .tire__news__heading {
        font-size: 17px;
    }
    .tire__news__content {
        padding: 24px 16px;
        text-align: left;
    }
    .tire__news__content__inner {
        padding: 12px 16px;
        line-height: 1.6;
    }
}

.cta1 {margin-bottom: 40px;}