@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/*  UDReiminPro (development only)
--------------------------------------------- */
/*  html, body
--------------------------------------------- */
html,
body {
    background-color: #d7c8af;
    color: #40220f;
    font-size: 14px;
    font-family: "UDReimin-Medium", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

html.repair,
.repair body {
    background-color: #fff;
    color: #000;
}

body {
    min-width: 1020px;
    line-height: 1.5;
}


@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 3.73333vw;
    }
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/*  <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/*  <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

img[src$=".svg"] {
    width: 100%;
}

/*  <hr> tag as anchor target
--------------------------------------------- */
hr[id^="anchor-"] {
    display: block;
    margin: 0;
    margin-top: 0;
    padding: 0;
    padding-top: 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
}

@media screen and (max-width: 750px) {
    hr[id^="anchor-"] {
        margin-top: 0;
        padding-top: 0;
    }
}

/*  js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    outline: none;
    cursor: default;
}

.js-tel-disabled:hover {
    text-decoration: none;
    opacity: 1;
}

/*  hover-opacity
--------------------------------------------- */
/*
.hover-opacity {
    -webkit-transition: filter 300ms;
    transition: filter 300ms;
}

.hover-opacity:hover {
    filter: brightness(120%);
}

.hover-opacity-ie {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.hover-opacity-ie:hover {
    opacity: .8;
}
*/

/* ---------------------------------------------
*   background-fixed
--------------------------------------------- */
.background-fixed {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 49.8vw;
    background: url(/image/common/bg_common.jpg) 0 0 no-repeat;
    background-size: cover;
}
.repair .background-fixed {
    background-image: url(/image/repair/bg.jpg);
}

@media screen and (max-width: 1280px) {
    .background-fixed {
        height: 659px;
    }
}

/* ---------------------------------------------
*   object-fit
--------------------------------------------- */
.object-fit {
    font-family: 'object-fit: contain;';

    -o-object-fit: contain;
    object-fit: contain;
}

/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: relative;
    padding-top: 20px;
    padding-bottom: 5px;
    width: 100%;
    background-color: #d7c8af;
    z-index: 5;
}
.repair .header {
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        padding-top: 2vw;
        padding-bottom: 4.6vw;
        background-image: url(/image/common/bg_common_sp.jpg);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .repair .header {
        background-color: #fff;
        background-image: url(/image/repair/bg_sp.jpg);
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1200px;
    width: 1220px;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .header-container {
        display: block;
        width: 100%;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    width: 277px;
}

.header-logo__year {
    display: block;
    margin-top: 5px;
    text-align: center;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .header-logo {
        margin: 0 auto;
        width: 58.66667vw;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    width: 415px;
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header-nav__list-item {
    font-size: 1.21429rem;
}

@media screen and (max-width: 750px) {
    .header-nav {
        width: 100%;
    }
    .header-nav__list {
        margin-top: 2.13333vw;
        padding: 0 4.8vw;
    }
    .header-nav__list-item {
        text-shadow: #d7c8af 3px 1px 2px, #d7c8af -3px 1px 2px, #d7c8af 3px -1px 2px, #d7c8af -3px -1px 2px;
        font-size: 3.608vw;
    }
    .repair .header-nav__list-item {
        text-shadow: #fff 3px 1px 2px, #fff -3px 1px 2px, #fff 3px -1px 2px, #fff -3px -1px 2px;
    }
}

/*  header-description
--------------------------------------------- */
.header-description {
    font-size: 1.21429rem;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    position: relative;
    z-index: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1260px;
    width: 1260px;
}

@media screen and (max-width: 750px) {
    .wrapper {
        margin-top: 22.8vw;
        padding: 0;
        width: 100%;
    }

    .iphone .wrapper {
        margin-top: 19.2vw;
    }
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
    padding-right: 10px;
    padding-left: 10px;
    background-color: #d7c8af;
}
.repair .main {
    background-color: #fff;
}

.main__inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #523c13;
    -o-border-image: linear-gradient(to left, #6b4e1b 1%, #fcf0b6 51%, #6b4e1b 100%);
    border-image: -webkit-gradient(linear, right top, left top, color-stop(1%, #6b4e1b), color-stop(51%, #fcf0b6), to(#6b4e1b));
    border-image: linear-gradient(to left, #6b4e1b 1%, #fcf0b6 51%, #6b4e1b 100%);
    border-image-slice: 1;
}

.main__contents {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 2px;
    min-height: 800px;
    border: 2px solid #523c13;
    -o-border-image: linear-gradient(to left, #6b4e1b 1%, #fcf0b6 51%, #6b4e1b 100%);
    border-image: -webkit-gradient(linear, right top, left top, color-stop(1%, #6b4e1b), color-stop(51%, #fcf0b6), to(#6b4e1b));
    border-image: linear-gradient(to left, #6b4e1b 1%, #fcf0b6 51%, #6b4e1b 100%);
    border-image-slice: 1;
}

.main__contents::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 750px) {
    .main {
        padding-top: 0;
        padding-right: 1.33333vw;
        padding-left: 1.33333vw;
    }
    .main__inner {
        border-width: 0.8vw;
        border-top: none;
    }
    .main__contents {
        margin: 0 0.53333vw 0.53333vw;
        border-width: 0.53333vw;
        min-height: none;
        min-height: initial;
        min-height: auto;
        border-top: none;
    }
}

/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
/* ---------------------------------------------
*   sidebar
--------------------------------------------- */
/* ---------------------------------------------
*   sidebar-nav
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1240px;
    width: 1260px;
    background-color: #d7c8af;
    z-index: 5;
}
.repair .footer {
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .footer {
        width: 100%;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    padding-top: 2px;
    padding-bottom: 24px;
    text-align: center;
}

.footer-copyright__text {
    font-size: 0.78571rem;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        padding-top: 1.6vw;
        padding-bottom: 1.6vw;
    }
    .footer-copyright__text {
        font-size: 3.2vw;
    }
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    display: none;
    position: fixed;
    right: calc(50% - 570px);
    bottom: 100px;
    width: 40px;
}

@media screen and (max-width: 1260px) {
    .footer-pagetop {
        right: 60px;
    }
}

@media screen and (max-width: 750px) {
    .footer-pagetop {
        right: 7vw;
        bottom: 15vw;
        width: 11vw;
    }
}