:root {
    --orange: #f47920;
    --navy: #1b2935;
}

/* page ttl */
.pagettl {
    background: url(../image/page/pagettl-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 255px;
    padding: 0 0 50px;
    text-align: center;
    width: 100%;
}
.pagettl h1 span.en {
    background: var(--navy);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: 700;
    height: 40px;
    margin: 0 auto 10px;
    width: 198px;
}
.pagettl h1 span.ja {
    color: var(--orange);
    font-size: 58px;
    font-weight: 900;
}
@media screen and (max-width: 968px) {
    .pagettl h1 span.en {
        font-size: 18px;
        height: 38px;
        width: 150px;
    }
    .pagettl h1 span.ja {
        font-size: 42px;
    }
}
@media screen and (max-width: 568px) {
    .pagettl {
        height: 175px;
        padding: 0 0 20px;
    }
    .pagettl h1 span.en {
        font-size: 16px;
        height: 35px;
        width: 120px;
    }
    .pagettl h1 span.ja {
        font-size: 32px;
    }
}

/* shoplist anker */
.anker {
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(2.5px 2.5px 4.6px rgb(142 142 142 / 45%));
    height: 73px;
    margin: calc((73px / 2) * -1) auto 0;
    width: 92%;
    max-width: 1294px;
}
.anker-inner,
.anker-list {
    width: 100%;
}
.anker-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.ankerlist-item {
    text-align: center;
    width: calc(100% / 6);
}
.anker-list.cal4 .ankerlist-item {
    width: calc(100% / 4);
}
.ankerlist-item:not(:last-child) {
    border-right: 2px solid var(--navy);
}
.ankerlist-item a,
.ankerlist-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    height: 100%;
    text-decoration: none;
    width: 100%;
}
.ankerlist-item span {
    opacity: .5;
}
.ankerlist-item a::after,
.ankerlist-item span::after {
    content: "▼";
    font-size: 16px;
    font-weight: 700;
    margin-left: 20px;
}
.fv-img.bottom {
    margin-top: calc((73px / 2) * -1);
}
@media screen and (max-width: 968px) {
    .anker {
        height: auto;
        margin: calc((88px / 2) * -1) auto 0;
        padding: 15px 0;
    }
    .anker-list {
        row-gap: 10px;
    }
    .ankerlist-item {
        width: calc(100% / 3);
    }
    .ankerlist-item:nth-child(3n) {
        border-right: 0;
    }
    .anker-list.cal4 .ankerlist-item {
        width: calc(100% / 2);
    }
    .anker-list.cal4 .ankerlist-item:nth-child(3n) {
        border-right: 2px solid var(--navy);
    }
    .anker-list.cal4 .ankerlist-item:nth-child(2n) {
        border-right: 0;
    }
    .fv-img.bottom {
        margin-top: calc((88px / 2) * -1);
    }
}
@media screen and (max-width: 568px) {
    .anker {
        border-radius: 10px;
        margin: calc((84px / 2) * -1) auto 0;
    }
    .ankerlist-item {
        width: calc(100% / 2);
    }
    .ankerlist-item:nth-child(3n) {
        border-right: 2px solid var(--navy);
    }
    .ankerlist-item:nth-child(2n) {
        border-right: 0;
    }
    .ankerlist-item a,
    .ankerlist-item span {
        font-size: 14px;
    }
    .ankerlist-item a::after,
    .ankerlist-item span::after {
        font-size: 14px;
    }
    .fv-img.bottom {
        margin-top: calc((84px / 2) * -1);
    }
}

/* shoplist */
.shoplist-item {
    padding: 95px 0;
}
.shoplist-item:nth-child(even) {
    background: #e8f4fd;
}
.shoplist-item__in {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}
.shoplist-head {
    border-bottom: 4px solid var(--orange);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 25px;
    padding: 0 0 10px;
}
.shoplist-head::before {
    background: #fff;
    border: 5px solid var(--orange);
    border-radius: 50%;
    content: "";
    display: block;
    height: 55px;
    margin-right: 20px;
    position: relative;
    top: 2px;
    width: 55px;
}
.shoplist-head h2 {
    font-size: 48px;
    font-weight: 700;
    width: calc(100% - 75px);
}
.shoplist-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.shoplist-left {
    width: calc(100% - (445px + 50px));
}
.shoplist-right {
    aspect-ratio: 16 / 11;
    width: 445px;
}
.shoplist-right img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.shoplist-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.shoplist-info__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.shoplist-info__item dt {
    background: var(--orange);
    border-radius: 7px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: 700;
    height: 37px;
    margin-right: 10px;
    width: 127px;
}
.shoplist-info__item dd {
    color: var(--orange);
    font-size: 21px;
    font-weight: 400;
    word-wrap: break-word;
    width: calc(100% - 137px);
}
.shoplist-info__item:first-child dd {
    color: var(--navy);
    font-size: 36px;
    font-weight: 700;
}
.shoplist-btn {
    height: 68px;
    width: 100%;
    max-width: 370px;
}
.shoplist-btn a {
    background: var(--orange);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    height: 100%;
    position: relative;
    width: 100%;
}
.shoplist-btn a::after {
    content: "▶︎";
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
}
@media screen and (max-width: 968px) {
    .shoplist-item {
        padding: 65px 0;
    }
    .shoplist-head::before {
        height: 30px;
        margin-right: 15px;
        width: 30px;
    }
    .shoplist-head h2 {
        font-size: 32px;
        width: calc(100% - 45px);
    }
    .shoplist-body {
        flex-direction: column-reverse;
    }
    .shoplist-left {
        width: 100%;
    }
    .shoplist-right {
        aspect-ratio: 16 / 9;
        margin: 0 0 20px;
        width: 100%;
    }
    .shoplist-info {
        gap: 20px;
    }
    .shoplist-info__item dt {
        font-size: 18px;
        height: 30px;
        width: 100px;
    }
    .shoplist-info__item dd {
        font-size: 18px;
        width: calc(100% - 110px);
    }
    .shoplist-info__item:first-child dd {
        font-size: 26px;
    }
    .shoplist-btn {
        height: 55px;
        margin: 20px auto 0;
    }
    .shoplist-btn a {
        font-size: 20px;
    }
    .shoplist-btn a::after {
        font-size: 16px;
    }
}
@media screen and (max-width: 568px) {
    .shoplist-item {
        padding: 45px 0;
    }
    .shoplist-head::before {
        height: 25px;
        width: 25px;
    }
    .shoplist-head h2 {
        font-size: 26px;
        width: calc(100% - 40px);
    }
    .shoplist-info__item dt {
        font-size: 16px;
        height: 28px;
        width: 85px;
    }
    .shoplist-info__item dd {
        font-size: 16px;
        width: calc(100% - 95px);
    }
    .shoplist-info__item:first-child dd {
        font-size: 21px;
    }
    .shoplist-btn {
        height: 50px;
        margin: 15px auto 0;
    }
    .shoplist-btn a {
        font-size: 18px;
    }
    .shoplist-btn a::after {
        font-size: 14px;
    }
}

/* shopinfo */
.shopinfo {
    padding: 85px 0 0;
}
.shopinfo-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}
.shopinfo-text {
    color: var(--orange);
    font-size: 40px;
    font-weight: 700;
    line-height: 2em;
    margin: 0 0 65px;
    text-align: center;
}
.shopinfo-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
}
.shopinfo-feature {
    width: calc((100% - (25px * 4)) / 5);
}
@media screen and (max-width: 968px) {
    .shopinfo-text {
        font-size: 32px;
        margin: 0 0 45px;
    }
    .shopinfo-features {
        gap: 20px;
    }
    .shopinfo-feature {
        width: calc((100% - (25px * 2)) / 3);
    }
}
@media screen and (max-width: 568px) {
    .shopinfo-text {
        font-size: 26px;
        margin: 0 0 35px;
    }
    .shopinfo-features {
        margin: 0 auto;
        width: 85%;
    }
    .shopinfo-feature {
        width: calc((100% - (25px * 1)) / 2);
    }
}

/* shopblock */
.shopblock.bg {
    background: #e8f4fd;
}
.shopblock {
    padding: 85px 0;
}
.shopblock-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}
.shopblock-head {
    margin: 0 0 85px;
    padding: 0 0 15px;
    position: relative;
    text-align: center;
    width: 100%;
}
.shopblock-head::after {
    border-bottom: 4px dashed var(--navy);
    content: "";
    display: block;
    height: 4px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 500px;
}
.shopblock-head h2 {
    font-size: 48px;
    font-weight: 700;
}
@media screen and (max-width: 968px) {
    .shopblock-head {
        margin: 0 0 65px;
    }
    .shopblock-head::after {
        max-width: 400px;
    }
    .shopblock-head h2 {
        font-size: 32px;
    }
}
@media screen and (max-width: 568px) {
    .shopblock-head {
        margin: 0 0 45px;
    }
    .shopblock-head::after {
        max-width: 250px;
    }
    .shopblock-head h2 {
        font-size: 26px;
    }
}


/* staff */
.staff-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.staff-card__image {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    line-height: 0;
    margin: 0 0 20px;
    overflow: hidden;
}
.staff-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.staff-card__name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
}
.staff-card__comment p {
    color: var(--navy);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .staff-cards {
        grid-template-columns: 1fr;
    }
    .staff-card__name {
        font-size: 21px;
    }
    .staff-card__comment p {
        font-size: 16px;
    }
}
@media screen and (max-width: 568px) {}


/* shopabout */
.shopabout {
    padding-top: 0;
}
.shopabout-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 45px 0 0;
}
.shopabout-text {
    width: calc(100% - 480px);
}
.shopabout-image {
    width: 440px;
}
.shopabout-text p {
    font-size: 24px;
    font-weight: 700;
    line-height: 2em;
}
@media screen and (max-width: 968px) {
    .shopabout-text {
        width: calc(100% - 380px);
    }
    .shopabout-image {
        width: 340px;
    }
    .shopabout-text p {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .shopabout-body {
        flex-direction: column-reverse;
        margin: 25px 0 0;
    }
    .shopabout-text {
        margin: 20px 0 0;
        width: 100%;
    }
    .shopabout-image {
        width: 100%;
    }
    .shopabout-text p {
        font-size: 16px;
    }
}


/* car */
.car-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.car-card {
    background: #fff;
    filter: drop-shadow(4px 4px 4px rgb(165 165 165 / 65%));
}
.car-card__image {
    aspect-ratio: 16 / 9;
    line-height: 0;
}
.car-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.car-card__text {
    padding: 15px;
}
.car-card__name {
    font-size: 22px;
    font-weight: 700;
}
.car-card__price {
    border-bottom: 4px dashed var(--orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px;
    padding: 0 0 8px;
}
.car-card__price dt {
    background: var(--orange);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    height: 27px;
    text-align: center;
    width: 126px
}
.car-card__price dd {
    color: var(--orange);
    font-size: 35px;
    font-weight: 700;
    text-align: right;
    width: calc(100% - 126px);
}
.car-card__price dd span {
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
}
.car-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.car-card__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.car-card__item dt {
    font-size: 15px;
    font-weight: 700;
    width: 100px;
}
.car-card__item dd {
    font-size: 15px;
    font-weight: 400;
    width: calc(100% - 100px);
}
@media screen and (max-width: 968px) {
    .car-cards {
        gap: 15px;
    }
}
@media screen and (max-width: 768px) {
    .car-cards {
        grid-template-columns: 1fr;
    }
}


/* more-btn */
.more-btn {
    height: 70px;
    margin: 65px auto 0;
    width: 100%;
    max-width: 370px;
}
.more-btn a {
    background: var(--orange);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    height: 100%;
    position: relative;
    text-decoration: none;
    width: 100%;
}
.more-btn a::after {
    color: #fff;
    content: "▶︎";
    display: flex;
    align-items: center;
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
}
@media screen and (max-width: 968px) {
    .more-btn {
        height: 60px;
        margin: 45px auto 0;
        max-width: 350px;
    }
    .more-btn a {
        font-size: 20px;
    }
    .more-btn a::after {
        font-size: 18px;
    }
}
@media screen and (max-width: 568px) {
    .more-btn {
        margin: 35px auto 0;
        max-width: 320px;
    }
    .more-btn a {
        font-size: 18px;
    }
    .more-btn a::after {
        font-size: 14px;
    }
}


/* block */
.shopaccess-table {
    margin: 0 0 35px;
}
.shopaccess-table table,
.shopaccess-table table td,
.shopaccess-table table th {
    border: 2px solid var(--navy);
    margin: 0;
}
.shopaccess-table table:first-child,
.shopaccess-table table:first-child td,
.shopaccess-table table:first-child th {
    border-bottom: 0;
}
.shopaccess-table table:first-child th {
    width: 200px;
}
.shopaccess-table table:last-child tr:first-child th {
    width: 250px;
}
.shopaccess-table table th {
    background: #e8f4fd;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 0;
    text-align: center;
}
.shopaccess-table table td {
    font-size: 24px;
    font-weight: 400;
    padding: 15px;
    text-align: left;
}
.shopaccess-map {
    aspect-ratio: 16 / 9;
}
.shopaccess-map iframe {
    height: 100%;
    width: 100%;
}
@media screen and (max-width: 968px) {
    .shopaccess-table table:first-child th {
        width: 150px;
    }
    .shopaccess-table table:last-child tr:first-child th {
        width: 200px;
    }
    .shopaccess-table table td {
        font-size: 18px;
        padding: 12px 10px;
    }
    .shopaccess-table table th {
        font-size: 18px;
        padding: 12px 0;
    }
    .shopaccess-map {
        aspect-ratio: 16 / 14;
    }
}
@media screen and (max-width: 568px) {
    .shopaccess-table table,
    .shopaccess-table table td,
    .shopaccess-table table th {
        border: 0;
    }
    .shopaccess-table table tr {
        display: block;
    }
    .shopaccess-table table td {
        display: block;
        font-size: 16px;
        padding: 10px;
        width: 100%;
    }
    .shopaccess-table table th {
        display: block;
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
    }
    .shopaccess-table table:first-child th,
    .shopaccess-table table:last-child tr:first-child th {
        display: block;
        width: 100%;
    }
}

/* block */
.shopcontact-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
.shopcontact-card {
    background: #fff;
    border-radius: 5px;
    display: block;
    padding: 20px;
    width: calc((100% - (20px * 1)) / 2);
}
.shopcontact-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    min-height: 50px;
    margin: 0 auto 15px;
    text-align: center;
    width: 90%;
}
.shopcontact-btn {
    height: 57px;
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
}
.shopcontact-btn a {
    background: var(--orange);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(2px 2px 4px rgb(142 142 142 / 45%));
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    text-decoration: none;
    width: 100%;
}
.shopcontact-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 57px;
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
}
.shopcontact-tel a {
    color: var(--orange);
    font-size: 42px;
    font-weight: 700;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .shopcontact-card {
        width: 100%;
    }
    .shopcontact-card p {
        font-size: 16px;
        width: 100%;
    }
    .shopcontact-btn a {
        font-size: 16px;
    }
    .shopcontact-tel a {
        font-size: 32px;
    }
}
@media screen and (max-width: 568px) {}

/* shopfaq */
.shopfaq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.shopfaq-list__item dt,
.shopfaq-list__item dd {
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 50px 15px 35px;
    position: relative;
}
.shopfaq-list__item dd {
    margin-top: -2px;
}
.shopfaq-list__item dt::after {
    background: url(../image/page/shop/icon-solid-arrow.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 14px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 29px;
}
.shopfaq-list__item.open dt::after {
    transform: rotate(180deg);
}
.shopfaq-list__item dt::before,
.shopfaq-list__item dd::before {
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 41px;
    font-weight: 700;
    height: 68px;
    margin-right: 22px;
    width: 68px;
}
.shopfaq-list__item dt::before {
    background: var(--orange);
    content: "Q";
}
.shopfaq-list__item dd::before {
    background: var(--navy);
    content: "A";
}
.shopfaq-list__item dt p,
.shopfaq-list__item dd p {
    font-size: 24px;
    font-weight: 700;
    width: calc(100% - 90px);
}
.shopfaq-list__item dt p {
    color: var(--orange);
}
.shopfaq-list__item dd p {
    color: var(--navy);
}
.more-link {
    height: 32px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: max-content;
}
.more-link a {
    background: var(--orange);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    padding: 0 15px;
    text-decoration: none;
}
.more-link a::after {
    content: "▶︎";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-left: 20px;
}
@media screen and (max-width: 968px) {
    .more-link {
        margin: 20px 0 0;
        position: static;
    }
}
@media screen and (max-width: 768px) {
    .shopfaq-list__item dt,
    .shopfaq-list__item dd {
        padding: 15px 35px 15px 15px;
    }
    .shopfaq-list__item dt::before,
    .shopfaq-list__item dd::before {
        font-size: 26px;
        height: 50px;
        margin-right: 15px;
        width: 50px;
    }
    .shopfaq-list__item dt p,
    .shopfaq-list__item dd p {
        font-size: 18px;
        width: calc(100% - 65px);
    }
}

/* block */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 568px) {}

/* block */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 568px) {}