@charset "utf-8";

/* ==========================================

  ノーマライズCSS

========================================== */
body {margin: 0;padding: 0;max-width: 100vw;overflow-x: hidden;font-family: "HondaGlobalFontJP-Regular", sans-serif;}
ul {list-style: none;margin: 0;padding: 0;}
* {font-size: 16px;line-height:1.5em;}
img {max-width: 100%;height: auto;}
input[type="checkbox"], input[type="radio"] {display: none;}
.spOnly, br.spOnly, #contents_area br.spOnly {display: none !important;}
.hide {display: none;}
.box_flex {background-color: #fff;}

@media all and (max-width: 768px) {
body {font-size: 5vw;}
.pcOnly {display: none;}
.spOnly, br.spOnly, #contents_area br.spOnly {display: block !important;}
.link a:after {content: '';display: inline-block;position: relative;right: -5px;}
}


/* ==========================================

  ローディング

========================================== */
body.loading {
    position: fixed !important;
}
#loadingBox {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d5dbdb;
    z-index: 99999;
}
#loadingMessage {
    font-size: 23px;
    letter-spacing: 0.1em;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #444;
    line-height: 1em;
    margin: calc((100vh - 4em) / 2) auto;
    max-width: 19em;
    width: 19em;
    opacity: 0;
    transition: opacity 0.1s ease-in-out 0s;
}
/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #loadingMessage {
    transform: translate3d(0, 0, 0);
}
#loadingMessage.on {
    opacity: 1;
}

@media all and (max-width: 768px) {
body:not(.loading) {
    overflow-y: auto !important;
}
}

/* ------------------------------------------

  ローディング - バー

------------------------------------------ */
#loadingMessage > span {
    font-size: 1em;
    line-height: 1em;
}
#loadingMessage > span:before {
    height: 3px;
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    z-index: 9999999;
}
#loadingMessage > span:after {
    height: 3px;
    background-color: #444;
    content: "";
    display: block;
    position: absolute;
    max-width: 60%;
    bottom: 0;
    left: 20%;
    width: 0;
    transition: width 2s ease-in 0s;
    z-index: 9999999;
}
/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #loadingMessage > span:after {
    transform: translate3d(0, 0, 0);
}
#loadingMessage.on > span:after {
    width: 60%;
}

@media all and (max-width: 768px) {

}


/* ==========================================

  ヒーローエリア

========================================== */

/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #heroBox {
    transform: scale(1) translate3d(0, 0, 0);
}
#heroBox.on {
    transition:
        transform 20s linear 0s,
        background-position 20s linear 0s;
    transform: scale(1.25);
    background-position: 50% 25%;
}
/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #heroBox.on {
    transform: scale(1.25) translate3d(0, 0, 0);
}

/* ------------------------------------------

  ヒーローエリアの拡大アニメと干渉する、
  ヘッダーの半透過状態用CSS

------------------------------------------ */
#access_header:not(.fixed) {
    background: rgba(255, 255, 255, 1.0);
}
#global_navigation:not(.fixed) {
    background: rgba(237, 237, 237, 1.0);
}

/* ------------------------------------------

  ヒーローエリア - タイトル

------------------------------------------ */
#heroTitle {
    position: absolute;
    z-index: 99;
    top: 30vh;
    left: 0;
    right: 0;
    text-align: center;
    width: 150px;
    margin: 0 calc((100vw - 150px) / 2);
    opacity: 0;
}
#heroTitle.on {
    animation: fade-up 1s ease-in 0.5s 1 forwards;
}
@keyframes fade-up {
      0% {opacity: 0; transform: translate3d(0, 15px, 0);}
    100% {opacity: 1; transform: translate3d(0, 0, 0);}
}

@media all and (max-width: 768px) {
#heroTitle {
    width: 27%;
    top: 14vh;
    margin: 0 auto;
}
}

/* ------------------------------------------

  ヒーローエリア - 下部のscroll▽

------------------------------------------ */
#heroBox:before {
    content: "scroll";
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 2em;
    left: 0;
    right: 0;
    letter-spacing: 0.1em;
}
#heroBox:after {
    content:  ">";
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: absolute;
    bottom: 0.75em;
    left: 0;
    right: 0;
    animation: scrollBounds 1.5s ease-in-out 0s infinite forwards; /* スクロールの▽アニメ */
}
@keyframes scrollBounds {
      0% {transform: rotate(90deg) scale(0.75, 1.25) translateX( 0px);}
     50% {transform: rotate(90deg) scale(0.75, 1.25) translateX(10px);}
    100% {transform: rotate(90deg) scale(0.75, 1.25) translateX( 0px);}
}

@media all and (max-width: 768px) {
#heroBox:before,
#heroBox:after {
    font-size: 2.9vw;
}
}


/* ==========================================

  ギャラリーアニメ

========================================== */

/* ------------------------------------------

  アニメセクション

------------------------------------------ */
.animePics {
    position: relative;
    margin: 200px 0 280px;
    min-height: 368vh;
}
@media all and (max-width: 768px) {
.animePics {
    margin: 26.5vw 0;
}
#picsArea03 {
    margin-bottom: 21.5vw;
}
}

/* ------------------------------------------

  テキストアニメ

------------------------------------------ */
.animeText,
#style {
    /*font-family: "FB Benton Sans Medium";*/
	font-family: "HondaGlobalFontJP-Regular", sans-serif;
    font-style: normal;
    font-weight: 500;
}
.animeText {
    margin-bottom: 0.5em;
    font-size: 28px;
    opacity: 0;
    width: auto;
    margin: 0 11.5vw 60px;
    text-align: left;
    letter-spacing: 0.1em;
    position: absolute;
    top: 0;
    left: 0;
}
.animeText.on {
    opacity: 1;
}
.animeText > span {
    font-size: 1em;
    transform-origin: left;
    transform: translateX(-100%);
    transition: transform 0.65s ease-in 0.35s;
    display: block;
}
.animeText.on > span {
    transform: translateX(0%) !important;
}
.animeText:before {
    content: "";
    min-width: 1.35em;
    position: absolute;
    top: -2em;
    left: 0.0625em;
    border-top: 2px solid #444;
    transform-origin: top left;
    transform: rotate(-90deg);
    opacity: 0;
    transition: all 0.35s ease-in 0s;
}
.animeText:after {
    position: absolute;
    content: "";
    display: block;
    background-color: #fff;
    min-width: 100%;
    min-height: 2em;
    bottom: -0.5em;
    transition: all 1s cubic-bezier(0,.62,.54,1.01) 0s;
    left: -100%;
}
.animeText.on:before {
    transform: rotate(0deg) !important;
    opacity: 1;
}

@media all and (max-width: 768px) {
.animeText {
    font-size: 6.15vw;
    margin: 0 15px 80px !important;
}
.animeText:before {
    border-top-width: 2px;
    font-size: 3.75vw;
    top: -2em;
}
.section h3 > span {
    width: auto;
    border-bottom: none;
    font-size: 3.75vw;
    display: inline-block;
}
}

/* ------------------------------------------

  #animeText02は右配置

------------------------------------------ */
#animeText02 {
    text-align: right;
    left: auto;
    right: 0;
}
#animeText02:before {
    text-align: right;
    left: auto;
    right: 0.0625em;
    transform-origin: top right;
    transform: rotate(90deg);
}
#animeText02:after {
    right: -10em;
    left: auto;
    width: 10em;
}
#animeText02 > span {
    transform-origin: right;
    transform: translateX(100%);
}


/* ------------------------------------------

  画像アニメ

------------------------------------------ */
.animePic {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 0;
    overflow: hidden;
}

/* ------------------------------------------

  画像アニメ - メインカット

------------------------------------------ */
.animeLarge {
    width: 100%;
    overflow: hidden;
}
.animeLarge > img {
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
    filter: blur(20px);
    opacity: 0;
}
.animeLarge.on > img {
    transform-origin: middle top;
    -webkit-perspective: 500;
    perspective: 500;
    transform-style: preserve-3d;
    animation: animationPicFocus 1s cubic-bezier(0,.62,.54,1.01) 0.4s forwards;
}
@keyframes animationPicFocus {
    0% {transform: scale(2, 2);-webkit-filter: blur(20px);-moz-filter: blur(20px);-o-filter: blur(20px);-ms-filter: blur(20px);filter: blur(20px);opacity: 0;}
    1% {transform: scale(2, 2);-webkit-filter: blur(20px);-moz-filter: blur(20px);-o-filter: blur(20px);-ms-filter: blur(20px);filter: blur(20px);opacity: 1;}
  100% {transform: scale(1, 1);-webkit-filter: blur(0px);-moz-filter: blur(0px);-o-filter: blur(0px);-ms-filter: blur(0px);filter: blur(0px);opacity: 1;}
}

/* SP時のアニメは長めの再生時間としています */
@media all and (max-width: 768px) {
.animeLarge.on > img {
    animation: animationPicFocus 1.25s cubic-bezier(0,.62,.54,1.01) 0.4s forwards;
}
}

/* ------------------------------------------

  画像アニメ - サブカット(通常)

------------------------------------------ */
.animeSmall {
    width: 100%;
}
.animePic > img {
    width: 100%;
    height: auto;
}
.animeSmall > img {
    position: relative;
    transform: translateX(-101%);
    transition: transform 0.8s cubic-bezier(0,.62,.54,1.01) 1.0s;
}
#picsArea02 > .animeSmall > img {
    transform: translateX(101%);
}
.animeSmall:before,
.animeSmall:after {
    position: absolute;
    min-height: 100%;
    min-width: 3em;
    content: "";
    display: block;
    z-index: 99;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: -3em;
    right: auto;
    transform-origin: top right;
}
.animeSmall:after {
    background-color: #fff;
    right: -3em;
    left: auto;
}
.animeSmall:nth-of-type(4) > img,
.animeSmall:nth-of-type(5) > img,
.animeSmall:nth-of-type(6) > img {
    transition-delay: 0s;
}
.animeSmall.on img,
#picsArea02 > .animeSmall.on > img {
    transform: translateX(0);
}

/* SP時のアニメは長めの再生時間としています */
@media all and (max-width: 768px) {
.animeSmall > img {
    transform: translateX(-101%); /* ―100%だと場合によっては、1px見えてしまっていたため */
    transition: transform 1.25s cubic-bezier(0,.62,.54,1.01) 1.0s; /* サブカット - アニメ(画像の移動) */
}
.animeSmall:nth-of-type(4) > img,
.animeSmall:nth-of-type(5) > img,
.animeSmall:nth-of-type(6) > img {
    transition-delay: 0s;
}
}

/* ------------------------------------------

  画像アニメ - サブカット(横長)
  ※描画を早くする

------------------------------------------ */
.animeSmall.fast > img {
    transition: transform 0.6s cubic-bezier(0,.62,.54,1.01) 1.0s;
}
.animeSmall.fast:nth-of-type(4) > img,
.animeSmall.fast:nth-of-type(5) > img,
.animeSmall.fast:nth-of-type(6) > img {
    transition-delay: 0s;
}

/* SP時のアニメは長めの再生時間としています */
@media all and (max-width: 768px) {
.animeSmall.fast img {
    transition: transform 1.00s cubic-bezier(0,.62,.54,1.01) 1.0s;
}
.animeSmall.fast:nth-of-type(4) > img,
.animeSmall.fast:nth-of-type(5) > img,
.animeSmall.fast:nth-of-type(6) > img {
    transition-delay: 0s;
}
}

/* ------------------------------------------

  画像アニメ - 画像位置の設定

------------------------------------------ */
#anime101 {max-width: 32vw; left: 11.5vw; top: 88px;}
#anime102 {max-width: 24vw; left: 60vw; top: calc(88px + 3vw);}
#anime103 {max-width: 24vw; left: 47.5vw; top: calc(88px + 31vw);}
#anime104 {max-width: 80vw; left: 0; top: calc(88px + 68.25vw);}
#anime105 {max-width: 32vw; left: 16vw; top: calc(88px + 117.25vw);}
#anime106 {max-width: 24vw; left: 52vw; top: calc(88px + 124.75vw);}
#anime107 {max-width: 48.4vw; left: 19.5vw; top: calc(88px + 152.25vw);}
#anime201 {max-width: 24vw; left: 63vw; top: 88px;}
#anime202 {max-width: 27.5vw; left: 21.25vw; top: calc(88px + 12vw);}
#anime203 {max-width: 38.2vw; left: 52.75vw; top: calc(88px + 28vw);}
#anime204 {max-width: 80vw; right: 0; top: calc(88px + 56vw);}
#anime205 {max-width: 24vw; left: 28.75vw; top: calc(88px + 105.25vw);}
#anime206 {max-width: 24vw; left: 56.75vw; top: calc(88px + 113vw);}
#anime207 {max-width: 48.4vw; left: 19.75vw; top: calc(88px + 143vw);}
#anime301 {max-width: 26vw; left: 11.5vw; top: calc(88px + 10vw);}
#anime302 {max-width: 24vw; left: 41.75vw; top: 88px;}
#anime303 {max-width: 20vw; right: 10vw; top: calc(88px + 23vw)}
#anime304 {max-width: 46vw; left: 20vw; top: calc(88px + 38vw);}
#anime305 {max-width: 38.2vw; left: 54vw; top: calc(88px + 96vw);}
#anime306 {max-width: 32vw; left: 18vw; top: calc(88px + 107.25vw);}
#anime307 {max-width: 24vw; left: 54vw; top: calc(88px + 123.5vw);}

@media all and (max-width: 768px){
#anime101 {max-width: 44vw; left: 15px; top: 18vw;}
#anime102 {max-width: 33.5vw; left: 60vw; top: calc(18vw + 53vw);}
#anime103 {max-width: 34vw; left: 22vw; top: calc(18vw + 75vw);}
#anime104 {max-width: 95vw; left: 0; top: calc(18vw + 126vw);}
#anime105 {max-width: 38vw; left: 3.5vw; top: calc(18vw + 192vw);}
#anime106 {max-width: 49.5vw; left: 46vw; top: calc(18vw + 204vw);}
#anime107 {max-width: 71vw; left: 12vw; top: calc(18vw + 257vw);}
#anime201 {max-width: 38vw; left: 57vw; top: calc(18vw - 2vw);}
#anime202 {max-width: 47vw; left:  6vw; top: calc(18vw + 19vw);}
#anime203 {max-width: 63vw; left: 37vw; top: calc(18vw + 57vw);}
#anime204 {max-width: 95vw; left:  5vw; top: calc(18vw + 100.5vw);}
#anime205 {max-width: 39vw; left:  5vw; top: calc(18vw + 159vw);}
#anime206 {max-width: 45.5vw; left: 48vw; top: calc(18vw + 191vw);}
#anime207 {max-width: 71vw; left: 9vw; top: calc(18vw + 239.5vw);}
#anime301 {max-width: 43vw; left: 15px; top: calc(18vw - 2vw);}
#anime302 {max-width: 33vw; left: 51vw; top: calc(18vw + 5vw);}
#anime303 {max-width: 34vw; left:  12.75vw; top: calc(18vw + 38vw);}
#anime304 {max-width: 62vw; left:  0; top: calc(18vw + 77vw);}
#anime305 {max-width: 61vw; left: 35vw; top: calc(18vw + 155vw);}
#anime306 {max-width: 53vw; left:  5vw; top: calc(18vw + 198vw);}
#anime307 {max-width: 33.5vw; left: 62.5vw; top: calc(18vw + 210vw);}
}


/* ==========================================

  シミュレーター

========================================== */
#styleCarView {
    margin-top: 7.5vw;
}
#scrollNav {
    max-width: 100vw;
    min-width: 980px;
    min-height: 1.5em;
    max-height: 1.5em;
    -ms-overflow-style: none;

}
#scrollNav::-moz-scrollbar,
#scrollNav::-webkit-scrollbar {
    display: none;
}

#scrollNav .barNavi[data-style-no="5"] {
    margin-right: 0 !important;
}

/* Firefoxハック */
/* ※スクロールバーが表示されているので */
@-moz-document url-prefix() {
#scrollNav {
    min-height: 4.5em;
    max-height: 4.5em;
}
}

#styleName {
    min-width: 100%;
    min-height: 1.5em;
    max-height: 1.5em;
    list-style: none;
}
#styleName > li {
    padding: 0;
    color: #666;
	font-family: "HondaGlobalFontJP-Bold", sans-serif;
    font-size: 1em;
    float: left;
    text-align: center;
}
/* Safariハック */
/* ※文字サイズが違うためにレイアウトが崩れている */
_::-webkit-full-page-media, _:future,
:root #styleName > li {
    font-size: 12px;
}
#styleName > li.active,
#styleName > li:hover {
    color: #9d2702;
    cursor: pointer;
}
#styleNavLine {
    min-width: 100%;
    background-color: #ccc;
    position: relative;
    margin: 0.25em 0 3em;
    font-size: 0.95em;
    padding: 0;
    min-height: 2px;
    max-height: 2px;
    height: 2px;
}
/* IE/edgeハック */
/* ※赤線▲のアニメーションでえぐれてしまっている対応 */
_:-ms-lang(x), #styleNavLine {
    margin: 0.25em 0 0;
}

/* Firefoxハック */
/* ※スクロールバーが表示されているので */
@-moz-document url-prefix() {
#styleNavLine {
    margin: -2.95em 0 3em;
}
}

/* ▲ */
#styleNavLine:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: calc(4.25em + 40px); /* 初期下線の位置(変更後はjsで位置を再計算します) */
    border-style: solid;
    border-color: transparent transparent #9d2702 transparent;
    border-width: 0 3px 0 3px;
    transition:
        border-width 0.15s ease-in-out 0s;
    width: 0;
    height: 0;
}
#styleNavLine.on:before {
    border-style: solid;
    border-color: transparent transparent #9d2702 transparent;
    border-width: 0 3px 8px 3px;
    transition:
        border 0.3s ease-in 0s;
}
/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #styleNavLine:before,
:root #styleNavLine.on:before {
    transform: translate3d(0, 0, 0);
}

/* 赤線 */
#styleNavLine:after {
    content: "";
    min-width: 9em;
    transition:
        width 0.75s cubic-bezier(.42,.87,.6,.89) 0s,
        min-width 0.75s cubic-bezier(.42,.87,.6,.89) 0s,
        max-width 0.75s cubic-bezier(.42,.87,.6,.89) 0s,
        left 0.5s cubic-bezier(.42,.87,.6,.89) 0.25s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #9d2702;
    min-height: 2px;
    max-height: 2px;
    height: 2px;
}
/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #styleNavLine:after {
    transform: translate3d(0, 0, 0);
}

/* PC時にのみInview後、0.5秒後から0.5秒で横に伸びる線 */
#styleCarView:before {
    content: "";
    min-width: 100vw;
    min-height: 2px;
    max-height: 2px;
    height: 2px;
    background-color: #ccc;
    position: absolute;
    margin: 0.25em calc((100% - 100vw) / 2) 3em;
    font-size: 0.95em;
    display: block;
    z-index: -1;
    top: 19px;
    transition: transform 0.5s ease-out 0.5s;
    transform-origin: center;
    transform: scaleX(0.5);
}
/* Safariハック */
/* ※動きがカタカタしている問題 */
_::-webkit-full-page-media, _:future,
:root #styleCarView:before {
    transform: scaleX(0.5) translate3d(0, 0, 0);
}

@media all and (max-width: 768px){
#styleCarView:before {
    display: none;
}
#styleName,
#styleName > li,
#styleNavLine,
#scrollNav {
    font-size: 2.9vw;
}
#styleName {
    min-width: 500vw !important;
    position: relative;
    left: 3.5vw;
}
#styleName > li {
    width: auto;
    margin-right: 5.25vw;
}
#styleNavLine {
    margin-bottom: 10vw;
}
#styleNavLine:before {
    /* 初期表示の調整 */
    /*******************************
     * 初期表示の調整
     *   3.5vw : 文字部分の左余白(固定)
     *   8em / 2 : 文字部分の長さの半分
     *   8px / 2 : ▲部分の横幅の半分
     */
    left: calc(3.5vw + 8em / 2 - 8px / 2);
    transition: border 0.1s ease-in-out 0s;
}
#styleNavLine.on:before {
    transition: border 0.2s ease-in 0s;
}
#styleNavLine:after {
    min-width: 8em;
    left: 3vw !important;
    transition:
        width 0.6s cubic-bezier(.42,.87,.6,.89) 0s,
        min-width 0.6s cubic-bezier(.42,.87,.6,.89) 0s,
        max-width 0.6s cubic-bezier(.42,.87,.6,.89) 0s,
        left 0.35s cubic-bezier(.42,.87,.6,.89) 0.2s;
    min-height: 2px;
    max-height: 2px;
    height: 2px;
}
#scrollNav {
    overflow-x: scroll;
}
}

/* ------------------------------------------

  シミュレーター - 配置(初期化)

------------------------------------------ */
#carViewArea {
    position: relative;
}

/* IE/edgeハック */
/* ※赤線▲のアニメーションでえぐれてしまっている対応 */
_:-ms-lang(x), #carViewArea {
    padding-top: calc(3 * 0.95em);
    background-color: #fff;
}
@media all and (max-width: 768px){
_:-ms-lang(x), #carViewArea {
    padding-top: 0;
    background-color: #fff;
}
}

/* Firefoxハック */
/* ※スクロールバーが表示されているので */
@-moz-document url-prefix() {
#carViewArea {
    background-color: #fff;
    margin-top: -2.7em;
    padding-top: 2.7em;
}
}
@media all and (max-width: 768px){
@-moz-document url-prefix() {
#carViewArea {
    margin-top: -2em;
    padding-top: 2em;
}
}
}

/* ------------------------------------------

  シミュレーター - サブタイトル / テキスト

------------------------------------------ */
#styleNameLarge,
#styleText {
    max-width: 90%;
    margin: 0 auto;
}
#styleText {
    font-size: 1.1em;
    margin-top: 1em;
}
#styleNameLarge {
    font-size: 1.875em;
    font-family: "HondaGlobalFontJP-Bold", sans-serif;
}

@media all and (max-width: 768px) {
#styleNameLarge,
#styleText {
    max-width: calc(100% - 15px * 2);
}
#styleNameLarge {
    font-size: 4.25vw;
}
#styleText {
    font-size: 3.75vw;
}
}

/* ------------------------------------------

  シミュレーター - 車体(本体)プレビュー

------------------------------------------ */
.viewCars {
    max-width: 600px;
    min-height: 140px;
    margin: 2em auto 1em;
    display: block;
    height: auto;
    width: 100%;
}

@media all and (max-width: 768px) {
.viewCars {
    margin: 1.5em auto;
}
}

/* ------------------------------------------

  シミュレーター - FRONT / REAR、装着 / 非装着

------------------------------------------ */
.viewCarBtn,
.toggleCarBtn {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 246px;
    z-index: 10;
}
.viewCarBtn {
    width: 5.5em;
    right: 0;
}
.toggleCarBtn {
    width: 7.5em;
    left: 0;
}
.viewCarBtn:after,
.toggleCarBtn:after {
    content: "";
    display: block;
    max-height: 1px;
    min-height: 1px;
    clear: both;
}
input[type="radio"][name="viewMode"] + label {
    font-size: 0.9em;
    width: 5em;
    padding: 0.55em 0 0.5em;
    background-color: #ccc;
    color: #333;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    float: left;
    margin: 0 0 10px;
}
input[type="radio"][name="viewMode"]:checked + label {
    background-color: #333;
    color: white;
}
input[type="radio"][name="viewInformation"] + label {
    min-width: 40%;
    color: rgba(33, 33, 33, 0.6);
    border-left: 2px solid #ccc;
    display: block;
    text-align: center;
    float: left;
    font-size: 1.15em;
    line-height: 1.25em;
	font-family: "HondaGlobalFontJP-Bold", sans-serif;
    padding-left: 26px;
    margin-bottom: 15px;
}
input[type="radio"][name="viewInformation"]:checked + label {
    color: #9d2702;
    border-left-color: #9d2702;
}

@media all and (min-width: 769px){
input[type="radio"] + label:hover {
    cursor: pointer;
    opacity: 0.7;
}
}

@media all and (max-width: 768px) {
.viewCarBtn {
    width: auto;
    right: 15px;
    bottom: auto;
    top: 65.5vw;
}
input[type="radio"][name="viewMode"] + label {
    font-size: 3.75vw;
    margin: 0 4vw 0 0;
    width: 3.5em;
    padding: 0.55em 1em 0.5em;
}
input[type="radio"][name="viewMode"]:last-of-type + label {
    margin: 0;
}
.toggleCarBtn {
    bottom: auto;
    top: 65.5vw;
    left: 15px;
    width: 8.25em;
}
input[type="radio"][name="viewInformation"] + label {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    width: 7.75vw;
    height: 7.75vw;
    padding: 0;
    color: transparent !important;
    text-indent: 999px;
    margin: 1px 3.75vw;
    border: none;
}
input[type="radio"][name="viewInformation"]:last-of-type + label {
    margin: 0;
}
/* Firefoxハック */
/* ※レイアウトが崩れているので */
@-moz-document url-prefix() {
.viewCarBtn,
.toggleCarBtn {
    top: 74.5vw;
}
}

/* SP時のみ、テキストではなく画像ボタンにする */
#viewInformationFront + label {
    background: url(../img/sp_front_icon_off.png);
}
#viewInformationRear + label {
    background: url(../img/sp_rear_icon_off.png);
}
#viewInformationFront:checked + label {
    background: url(../img/sp_front_icon_on.png);
}
#viewInformationRear:checked + label {
    background: url(../img/sp_rear_icon_on.png);
}
}

/* ------------------------------------------

  非装着がONの場合に押せなくするためのCSS

------------------------------------------ */
.informationList .linkText.nonDisp {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

/* ------------------------------------------

  シミュレーター - carret配置(初期化)

------------------------------------------ */
#previewCars {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

@media all and (max-width: 768px) {
#previewCars {
    width: 78vw;
    margin: 0 auto;
}
}

/* ------------------------------------------

  シミュレーター - 見出しナビ

------------------------------------------ */
@media all and (min-width: 769px) {
li.plus {
    display: none; /* SP時に出したい項目のため */
}
}

/* ------------------------------------------

  シミュレーター - 見出し / 車体プレビュー表示

------------------------------------------ */
#style,
#styleCarView {
    opacity: 0;
    transform-origin: center top;
    transform: translateY(10%);
    transition: all 0.5s ease-in 0s;
}
#styleCarView {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}
#style.on,
#styleCarView.on {
    opacity: 1;
    transform: translateY(0);
}
#styleCarView.on:before {
    transform: scaleX(1);
}

/* ------------------------------------------

  シミュレーター - アイテム情報リスト

------------------------------------------ */
.informationList > li {
    display: inline-block;
    padding: 0.5em 1em 0.5em 0.5em;
}
#informationText {
    margin-top: -120px;
}
#informationText {
    padding: 150px 20px 20px;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin-bottom: 80px;
    position: relative;
    min-height: 11em;
}
.informationList {
    opacity: 0;
    transition: all 0.5s ease-in 0s;
    position: absolute;
    visibility: hidden;
}
.informationList.on {
    opacity: 1;
    visibility: visible;
}

/* キャレットを表示するためのリンク */
.informationList .linkText {
    padding-right: 0.5em;
    position: relative;
    color: #333 !important;
    line-height: 1.75em;
}
.informationList .linkText:before {
    content: '>';
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    position: relative;
    left: 0.25em;
    transform: scaleX(0.5);
}
.informationList .linkText:hover {
    cursor: pointer;
}

@media all and (max-width: 768px){
.informationList .linkText:before {
    display: none;
}
.informationList .linkText:after {
    content: '';
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    background-image: url(../img/parts_ico_btn_detail_arrow_k.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1.25em 1.25em;
    position: relative;
    top: 0.325em;
    right: -0.5em;
}
#informationText {
    border: none;
    position: static;
    margin: 19vw auto 0;
    min-height: initial;
    overflow-y: scroll;
    height: calc((3.75vw * 1.75 + 5.25vw) * 5 - 5.25vw / 2); /* 3.75vw * 1.75 は1行分、5.25vw は行間の余白 */
    background-color: #f6f6f6;
    padding: 5px;
    width: calc(100% - 15px * 2 - 5px * 2);
}
#informationText > .informationList {
    width: 100%;
    position: static;
    min-height: calc(1em * 2 + 5.25vw * 2); /* 2つ分の最低高さを取る(line-height: 1em / margin-bottom: 5.25vw) */
    display: none; /* 初期表示 */
    transition: all 0.75s ease-in 0s; /* SP時のアニメは長めの再生時間としています */
}
#informationText > .informationList.on {
    display: block; /* 条件に該当するもののみ表示する */
}
.informationList > li {
    display: block;
    padding: 0;
    position: relative;
    margin-bottom: 5.25vw;
}
.informationList > li:last-of-type {
    margin-bottom: 0;
}
.informationList a.linkText {
    font-size: 3.5vw;
    max-width: calc(72.5% - 0.5em);
    display: block;
    padding: 0;
}
.informationList a.linkBtn {
    font-size: 3.75vw;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: auto;
    margin: 0;
    padding: 0.4em 0.75em 0.25em 1em;
}
.informationList a.linkBtn:before {
    top: -0.15em;
    right: 0.15em;
}
}

/* ------------------------------------------

  シミュレーター - キャレット

------------------------------------------ */
#carret1,
#carret2 {
    display: none;
    opacity: 0;
    transition: all 0.5s ease-in 0s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: 20;
}
#carret1.on,
#carret2.on {
    display: block;
    opacity: 1;
}
.carretTop {
    width: 100%;
    height: 26px;
    position: relative;
    top: 0;
}
.carretBottom {
    width: 100%;
}
.carretTop:before {
    width: 20px;
    height: 20px;
    border-top: 6px solid #9d2702;
    border-left: 6px solid #9d2702;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}
.carretTop:after {
    width: 20px;
    height: 20px;
    border-top: 6px solid #9d2702;
    border-right: 6px solid #9d2702;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
}
.carretBottom:before {
    width: 20px;
    height: 20px;
    border-bottom: 6px solid #9d2702;
    border-left: 6px solid #9d2702;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}
.carretBottom:after {
    width: 20px;
    height: 20px;
    border-bottom: 6px solid #9d2702;
    border-right: 6px solid #9d2702;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
}

@media all and (max-width: 768px) {
.carretTop {
    height: 10px;
}
.carretTop:before {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-left-width: 2px;
}
.carretTop:after {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
}
.carretBottom:before {
    width: 8px;
    height: 8px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}
.carretBottom:after {
    width: 8px;
    height: 8px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}
}

/* ------------------------------------------

  シミュレーター - 見出し

------------------------------------------ */
#style {
    font-size: 28px;
    text-align: center;
    margin-bottom: 100px;
    color: #000;
}
#style:before {
    content: "";
    position: relative;
    left: calc(50% - 2px);
    width: 2px;
    height: 63px;
    bottom: 63px;
    display: block;
    background-color: #000;
}
@media all and (max-width: 768px) {
#style {
    font-size: 4.7vw;
    margin-bottom: 12vw;
}
#style:before {
    height: 8vw;
    bottom: 8vw;
    width: 1px;
}
}


/* ==========================================

  linkBtn

========================================== */
a.linkBtn {
    padding: 0.5em 0;
    width: 18em;
    color: #333 !important;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 1px solid #333;
    display: block;
    text-align: center !important;
    margin: 2.25em 0 0;
    position: relative;
}
a.linkBtn:after {
    content: '';
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    background-image: url(../img/parts_ico_btn_detail_arrow_b.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1.25em 1.25em;
    position: absolute;
    top: 25%;
    right: 1em;
}
.section_end {
    width: calc(27em * 2 + 1px * 2 * 2 + 40px);
    min-height: 40px;
    margin: 1.75em auto 100px !important;
    font-size: 16px;
}
.section_end > a.linkBtn {
    width: 27em;
    color: #0064a1 !important;
    border-color: #0064a1 !important;
    float: left;
    display: block;
    margin-top: 0;
    padding: 0.75em 0;
    line-height: 1.2em;
    border-radius: 2px;
}
.section_end > a.linkBtn:first-of-type {
    margin-right: 40px;
}
.informationList .linkBtn {
    background-color: #eee;
    padding: 0.125em 0.65em;
    letter-spacing: 0.25em;
    border: 1px solid #6d6d6d;
    color: #333 !important;
    display: inline;
}
.informationList .linkBtn:before {
    content: "▼";
    position: relative;
    transform: rotate(-90deg) scale(0.575, 0.8);
    display: inline-block;
    color: #666;
}
.informationList .linkBtn:after {
    display: none;
}

@media all and (max-width: 768px) {
.section_end {
    width: 100%;
    margin: 21.25vw auto 23vw !important;
    font-size: 0.775em;
}
.informationList .linkBtn {
    background-color: #fff;
}
.section_end > a.linkBtn {
    margin-top: initial;
    float: none;
    width: calc(100% - 15px * 2 - 1px * 2);
    margin: 5vw 15px;
    padding: 0.75em 0;
    line-height: 1.2em;
}
/* IE/Edgeハック */
/* ※余白の考え方が違うことによるレイアウト崩れ */
_:-ms-lang(x), .section_end > a.linkBtn {
    margin: 0 15px 5vw;
}
.section_end > a.linkBtn:first-of-type {
    margin-right: auto;
    margin-top: 0;
}
}


/* ==========================================

  シミュレーター - slickカスタマイズ

========================================== */
#carViewArea .slick-prev:before,
#carViewArea .slick-next:before {
    background-size: contain;
    font-size: 15px;
    color: transparent;
}
#carViewArea .slick-prev:before {
    background-image: url(../img/arrow_l.png);
    background-repeat: no-repeat;
    background-position: center;
}
#carViewArea .slick-next:before {
    background-image: url(../img/arrow_r.png);
    background-repeat: no-repeat;
    background-position: center;
}
#carViewArea .slick-prev,
#carViewArea .slick-next {
    bottom: 135px;
    top: initial;
    z-index: 99;
    width: 70px;
    height: 50px;
}
#carViewArea .slick-prev {
    left: -190px;
}
#carViewArea .slick-next {
    right: -190px;
}
#carViewArea .slick-prev:before,
#carViewArea .slick-next:before {
    font-size: 70px;
}
#carViewArea .slick-slide {
    opacity: 0;
    transition: all 0.35s ease-in 0s;
}
#carViewArea .slick-slide.slick-active {
    opacity: 1;
    transition: all 0.75s ease-in 0s;
}

/* SP時のアニメは長めの再生時間としています */
@media all and (max-width: 768px){
#carViewArea .slick-slide {
    transition: all 0.75s ease-in 0s;
}
#carViewArea .slick-slide.slick-active {
    transition: all 1.00s ease-in 0s;
}
}