/*___________________________
Body
___________________________*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background: #fff;
    font-family: var(--familyNotoSans);
}

body.locked {
    overflow: hidden;
}

.ios-mac {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*
  Base common text style.
  Change to match design.
*/

p,
h5,
h4,
h3,
h2,
h1,
a,
dd,
dt,
li,
figcaption,
button {
    color: var(--colorBlack);
    font-family: var(--familySerif);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.78;
}

/* 
  Small fade animation on hover for links 
  Change as required
*/

main a,
footer a {
    transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

main a:not(.paginationGroup a):hover,
footer a:hover {
    opacity: 0.7;
}

/*___________________________
Container
___________________________*/

.container {
    margin: 0 auto;
    max-width: 1080px;
}

.for-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .for-sp {
        display: block;
    }
}

/*___________________________
Link Buttons
___________________________*/

/*___________________________
Animation
___________________________*/

.js-fadeElement {
    opacity: 0;
    visibility: hidden;
}

/*___________________________
Breadcrumbs
___________________________*/

.breadcrumbs {
    display: flex;
    gap: 24px;
    margin: 0 auto;
    max-width: 1280px;
    padding: 80px 16px 24px;
}

.breadcrumbLink,
.breadcrumbCurrent {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
}

.breadcrumbLink {
    color: #ababab;
    min-width: fit-content;
    position: relative;
}

.breadcrumbLink::after {
    background: #ababab;
    content: "";
    height: 12px;
    position: absolute;
    right: -13px;
    top: 7px;
    transform: rotate(45deg);
    transform-origin: center;
    width: 1px;
}

@media screen and (max-width: 767px) {
    .breadcrumbs {
        padding-top: 40px;
    }
}

/*___________________________
Header
___________________________*/

.header {
    align-items: center;
    background: #fff;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: -3.125rem auto;
    max-width: 23.4375rem;
    padding: 0.6875rem 0;
    position: sticky;
    top: 0;
    transform: translateY(-115%);
    transition: 0.4s ease-out;
    z-index: 100;
}

.header.show {
    transform: translateY(0);
}

.header__logo img {
    max-width: 4.625rem;
}

.header__text {
    display: flex;
    flex-direction: column;
    gap: 0.0625rem;
}

.goldText {
    color: var(--colorGold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
}

.goldText .small {
    font-size: 0.625rem;
}

.blackText {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.38;
}

.header__link {
    background: linear-gradient(to bottom, #fe2f35 0%, #ff5b09 49%, #f5ab50 100%);
    border-radius: 7px;
    display: grid;
    justify-items: center;
    padding-bottom: 0.3125rem;
}

.header__linkTop {
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.88;
    padding: 0.3125rem 0.5625rem;
    position: relative;
    text-align: center;
}

.header__linkTop::after {
    background: #fff087;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    mix-blend-mode: soft-light;
    position: absolute;
    top: 0;
    width: 100%;
}

.header__linkNumber img {
    margin-top: 0.3125rem;
    max-width: 7.875rem;
}

.header__linkBottom {
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.88;
}

/*___________________________
Footer
___________________________*/

.contactInfo {
    display: grid;
    grid-template-columns: 52% 44%;
    justify-content: space-between;
    margin-top: 1.4375rem;
}

.contactInfo__store {
    font-size: 1.6875rem;
    font-weight: 700;
    grid-column: 1;
    grid-row: 1;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-align: end;
}

.contactInfo__branch {
    font-size: 1rem;
    font-weight: 500;
    grid-column: 2;
    grid-row: 1;
    letter-spacing: unset;
    text-align: start;
}

.contactInfo__link {
    display: block;
    grid-column: span 2;
    margin-top: 0.625rem;
    text-align: center;
}

.contactInfo__link img {
    max-width: 20.125rem;
}

.contactInfo__address {
    grid-column: span 2;
    margin-top: 0.0625rem;
}

.contactInfo__address address,
.contactInfo__address p {
    font-family: var(--familyNotoSans);
    font-size: 0.9375rem;
    font-style: normal;
    letter-spacing: unset;
    line-height: 1.67;
    text-align: center;
}

.contactInfo__address p {
    font-size: 1rem;
}

.contactInfo__map {
    aspect-ratio: 339 / 192;
    display: block;
    margin: 1.125rem auto 0;
    max-width: 21.1875rem;
    width: auto;
}

.contactInfo__map iframe {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.footer {
    background: #fff;
    padding-top: 2.875rem;
}

.footer__logo {
    text-align: center;
}

.footer__logo img {
    width: 32%;
}

.footer .contactInfo {
    margin-top: 2.25rem;
}

.privacyPolicy {
    color: var(--colorBlack);
    display: block;
    font-family: var(--familyNotoSans);
    font-size: 11px;
    letter-spacing: 0;
    margin: 1.625rem auto 0;
    width: fit-content;
}

.copyright {
    align-items: center;
    background: var(--colorGold);
    color: #fff;
    display: flex;
    font-size: 0.625rem;
    height: 2.125rem;
    justify-content: center;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}
