﻿/*=============================================
 * Fonts
 *=============================================*/
.fnt-m-plus {
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.fnt-noto-sans {
    font-family: "Noto Sans JP", sans-serif;
}


/*=============================================
 * body
 *=============================================*/
html:not(.responsive) {
    width: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    background: #fff;
    color: #000;
    min-width: inherit;
    min-height: inherit;
    max-height: 100%;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0;
}

body.bg2 {
    background: #e3f5f4;
}

body * {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-auto {
    width: 100%;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.box-parallax {
    position: relative;
}

.img-parallax {
    clip: rect(0, auto, auto, 0);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
}

.img-parallax img {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    object-fit: cover;
    z-index: 0;
    transform: translateZ(0) !important;
}

/*=============================================
 * PC
 *=============================================*/
@media screen and (max-width: 767px) {
    body {
        font-size: 13px;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none !important;
    }
}


/*=============================================
 * FCV - CUSTOMS
 *=============================================*/
li {
    list-style: none;
}

i {
    letter-spacing: inherit;
    font-weight: inherit;
}

.word-br {
    word-break: break-all;
}

.txt-center {
    text-align: center;
}

.break-all {
    word-break: break-all;
}

.copied {
    pointer-events: none;
}

.rss-img:hover {
    opacity: 0.7;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

    .btn-over img,
    .over-img img,
    img.over,
    img:not(.btn):not(.non-over),
    button img,
    .btn {
        opacity: 1;
        transform: none !important;
        -moz-transform: none !important;
        -webkit-transform: none !important;
        transition: opacity .3s ease;
        -moz-transition: opacity .3s ease;
        -webkit-transition: opacity .3s ease;
    }

    .btn {
        transition: none !important;
        -moz-transition: none !important;
        -webkit-transition: none !important;
    }

    .over-img img:hover,
    img.over:hover,
    a:hover img:not(.btn):not(.non-over),
    button:hover img {
        cursor: pointer;
        opacity: .8;
        transform: none !important;
        -moz-transform: none !important;
        -webkit-transform: none !important;
    }

    .img-parallax img {
        height: auto !important;
    }
}

body.navOpen {
    touch-action: none !important;
    pointer-events: none !important;
}

body.navOpen .hamburger,
body.navOpen #fixed-btn,
body.navOpen #menu-toggle,
body.navOpen #brandlist_menu {
    touch-action: auto !important;
    pointer-events: visible !important;
}

.navOpen {
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: none !important;
    pointer-events: none !important;
}

.navOpen #header #menu-toggle {
    opacity: 1;
    pointer-events: auto;
    visibility: visible
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
}

/*=============================================
 * <main>
 *=============================================*/
main {
    clear: both;
    width: 100%;
    position: relative;
}

.ovh {
    overflow: hidden;
}

/*=============================================
 * copyright
 *=============================================*/
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both
}
/* =============================
   notice-box
============================= */
.notice-box {
  max-width: 580px;
  margin: 20px auto 0;
  padding: 8px 12px;
  background: #fff;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .notice-box {
    margin: 16px 20px 0;
    font-size: 17px;
    padding: 10px 12px;
  }
}