@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
a,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

* {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

a {
  text-decoration: none;
  color: #000;
}

section,
div {
  box-sizing: border-box;
}

.mainArea {
  position: relative;
  background-color: #FFF;
  padding: 0.5rem 0;
  z-index: 2;
}

.mainArea p {
  margin: 0 auto;
  text-align: right;
  cursor: default;
}

.footerArea {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 100%;
  color: #FFF;
  text-align: center;
}

.footerArea__inner {
  background-color: #000;
}

.footerArea__logo {
  margin: 0;
  padding: 2rem 0 1rem;
}

.footerArea__attention {
  display: block;
  color: #FFF;
  font-size: 11px;
  text-align: center;
}

.footerArea__logo img {
  width: 8rem;
  height: auto;
  display: block;
  margin: auto;
}

.navArea__list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.navArea__list li {
  flex: 1;
  border: solid 1px #1C3C5A;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.navArea__list li a {
  display: block;
  color: #1C3C5A;
}

#header {
  position: relative;
  height: 100vh;
  text-align: center;
  color: #fff;
  background: url("https://cdn.autoc-one.jp/static/article-assets/special/premium/addset/movie.jpg") no-repeat;
  background-size: cover;
}

/* ローディングアイコン設定 */

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear {
  display: none;
}

/* youtube設定 */

#youtube-area {
  position: fixed;
  z-index: 1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/

#youtube-area.appear {
  animation-name: PageAnimeAppear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#youtube {
  /*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/

#youtube-mask {
  position: absolute;
  z-index: 2;
  /*下から2番目に表示*/
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/*youtube 上のロゴ */

h1 {
  position: absolute;
  z-index: 2;
  /*下から2番目に表示*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  text-shadow: 0 0 15px #666;
}

h1 span {
  display: block;
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/

.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*左から右*/

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.containerArea {
  position: relative;
  /*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
  z-index: 3;
  /*一番上に表示*/
  /*見た目の調整*/
  background: #FFF;
}

.headingTitle {
  text-align: center;
  font-weight: 400;
}

.headingTitle span {
  display: block;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

.btnView {
  display: grid;
  place-items: center;
  width: 210px;
  height: 55px;
  margin: auto auto 0;
  color: #000;
  background-color: #FFF;
  text-align: center;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.btnView:hover {
  transform: translateY(-5px);
}

.brandArticle__list .btnView a {
  border: solid 1px #1C3C5A;
  color: #1C3C5A;
}

.productArticle__list .btnView a {
  border: solid 1px #0F525D;
  color: #0F525D;
}

.brandArea h2 {
  color: #000;
}

.brandArea__inner {
  background-image: url("https://cdn.autoc-one.jp/static/article-assets/special/premium/addset/bg_brand.png");
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.brandInfo {
  background: rgba(255, 255, 255, 0.9);
}

.brandInfo__firstblock {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.brandInfo__title {
  margin: 0 0 0.5rem;
  color: #000;
}

.brandInfo__text {
  width: 50%;
}

.brandInfo__picture {
  width: 47%;
  padding: 0 1rem;
}

.brandInfo__picture img {
  width: 100%;
  height: auto;
}

.brandArticle {
  margin: 1rem 0 0;
}

.brandArticle__list {
  background-color: #1C3C5A;
  color: #FFF;
  position: relative;
}

.brandArticle__list--heading {
  margin: 0 0 0.5rem;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  font-family: "Mrs Saint Delafield", cursive;
  opacity: 0.2;
}

.brandArticle__list--thumb {
  margin: 0;
  width: 46%;
}

.brandArticle__list--thumb img {
  width: 100%;
  height: auto;
}

.brandArticle__list--textbox {
  width: 47%;
  display: flex;
  flex-direction: column;
}

.brandArticle__list--title {
  margin: 0 0 1rem;
  font-weight: 700;
}

.brandArticle__list--text {
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.productArea h2 {
  color: #FFF;
}

.productArea__inner {
  background-color: #0F525D;
  background-image: url("https://cdn.autoc-one.jp/static/article-assets/special/premium/addset/bg_product1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.productArea__inner.section_tilt_r {
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}

.productArea__inner.section_tilt_l {
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
}

.productArticle__list {
  margin: 1rem 0 0;
}

.productArticle__list {
  color: #FFF;
}

.productArticle__list--heading {
  margin: 0 0 1rem;
  padding: 0.5rem;
  font-weight: 400;
  color: #FFF;
  border-bottom: solid 1px #FFF;
}

.productArticle__list--title {
  margin: 0 0 1rem;
  font-weight: 700;
}

.productArticle__list--text {
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 任意の行数を指定 */
}

.productArticle__list--textbox {
  display: flex;
  flex-direction: column;
}

.productArticle__list--textbox .btnView {
  margin: auto 0 0 auto;
}

.galleryArea h2 {
  color: #FFF;
}

.galleryArea__inner {
  background-color: #0F525D;
}

.galleryArea__inner.section_tilt_r {
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}

.galleryArea__inner.section_tilt_l {
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
}

.galleryArea__list {
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.galleryArea__list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.zoomInRotate img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.zoomInRotate a:hover img {
  transform: rotate(5deg) scale(1.2);
}

.mask {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.movieArea h2 {
  color: #FFF;
}

.movieArea__inner {
  margin: 0rem auto 0;
  background-color: #FFF;
  background-image: url("https://cdn.autoc-one.jp/static/article-assets/special/premium/addset/bg_movie.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.movieArea__inner.section_tilt_r {
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}

.movieArea__inner.section_tilt_l {
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
}

.circle span.circle_mask {
  position: relative;
  /*波紋の基点となる位置を定義*/
  display: block;
  line-height: 0;
  /*行の高さを0にする*/
  overflow: hidden;
  /*拡大してはみ出る要素を隠す*/
}

.circle span.circle_mask::before {
  position: absolute;
  content: "";
  transform: scale(0);
  /*円の大きさ初期値は0*/
  opacity: 0;
  /*透過0*/
  width: 100%;
  /*円のサイズ指定*/
  height: 100%;
  /*円のサイズ指定*/
  border-radius: 50%;
  /*円の角丸指定*/
  background: rgba(255, 255, 255, 0.4);
  /*円の背景色*/
}

.circle span.circle_mask:hover::before {
  /*hoverした時の変化*/
  animation: circle 0.75s;
  /*アニメーションの名前と速度を定義*/
}

@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 1;
    /*透過なし*/
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: scale(2);
    /*アニメーションで大きくなった2倍の円の指定*/
  }
}

.corporateArea h2 {
  color: #000;
  text-align: left;
}

.companyText {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

.companyText p {
  margin-bottom: 1.8rem;
}

.companyText .title {
  display: inline-block;
  color: #FFF;
  margin: 0 0 0.8rem;
  padding: 0.5rem 0.5rem;
  line-height: 1;
  background-color: #333;
}

.snsLink {
  display: flex;
  justify-content: flex-start;
}

.snsLink li {
  padding: 0 0.5rem;
}

@media screen and (min-width: 640px) {
  .mainArea p {
    width: 1200px;
    font-size: 14px;
  }

  .footerArea__inner {
    padding: 0 0 1rem;
  }

  .navArea {
    margin: -5rem 0 0;
  }

  .navArea__list {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    width: 1020px;
    font-size: 18px;
  }

  .navArea__list li a {
    padding: 1rem 2rem;
  }

  h1 {
    font-size: 3rem;
  }

  h1 span {
    font-size: 1.8rem;
  }

  .containerArea {
    padding: 8rem 0;
  }

  .headingTitle {
    font-size: 3rem;
  }

  .headingTitle span {
    font-size: 1rem;
  }

  .productArticle__list .btnView {
    text-align: right;
  }

  .brandArea {
    margin: 6rem 0 0;
  }

  .brandArea__inner {
    padding: 24rem 0 0;
  }

  .brandInfo {
    width: 1200px;
    margin: 0 auto;
    padding: 4rem 4rem;
  }

  .brandInfo__title {
    font-size: 1.125rem;
  }

  .grid:nth-child(1) {
    grid-area: 1/1/2/4;
  }

  .grid:nth-child(2) {
    grid-area: 1/4/2/7;
  }

  .grid:nth-child(3) {
    grid-area: 2/1/3/4;
  }

  .grid:nth-child(4) {
    grid-area: 2/4/3/7;
  }

  .brandArticle__list {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 0;
    padding: 2rem;
  }

  .brandArticle__list--heading {
    font-size: 2rem;
  }

  .brandArticle__list--title {
    font-size: 1.125rem;
  }

  .brandArticle__list--text {
    font-size: 1rem;
  }

  .productArea {
    margin: 6rem 0 0;
  }

  .productArea__inner {
    padding: 6rem 0;
  }

  .productArticle__list {
    width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 4fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .productArticle__list .grid:nth-child(1) {
    grid-area: 1/1/2/3;
  }

  .productArticle__list .grid:nth-child(2) {
    grid-area: 1/3/2/6;
  }

  .productArticle__list {
    padding: 2rem 2rem 3rem;
  }

  .productArticle__list--heading {
    font-size: 1.25rem;
  }

  .productArticle__list--title {
    font-size: 1.125rem;
  }

  .galleryArea {
    margin: -4rem auto 0;
  }

  .galleryArea__inner {
    padding: 8rem 0 20rem;
  }

  .galleryArea__list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 1200px;
    margin: 2rem auto 0;
  }

  .galleryArea__list li:nth-child(1) {
    grid-area: 1/1/3/3;
  }

  .galleryArea__list li:nth-child(2) {
    grid-area: 1/3/2/4;
  }

  .galleryArea__list li:nth-child(3) {
    grid-area: 1/4/2/5;
  }

  .galleryArea__list li:nth-child(4) {
    grid-area: 2/3/3/4;
  }

  .galleryArea__list li:nth-child(5) {
    grid-area: 2/4/3/5;
  }

  .galleryArea__list li:nth-child(6) {
    grid-area: 3/1/4/2;
  }

  .galleryArea__list li:nth-child(7) {
    grid-area: 3/2/4/3;
  }

  .galleryArea__list li:nth-child(8) {
    grid-area: 4/1/5/2;
  }

  .galleryArea__list li:nth-child(9) {
    grid-area: 4/2/5/3;
  }

  .galleryArea__list li:nth-child(10) {
    grid-area: 3/3/5/5;
  }

  .galleryArea__list li:nth-child(11) {
    grid-area: 5/1/7/3;
  }

  .galleryArea__list li:nth-child(12) {
    grid-area: 5/3/6/4;
  }

  .galleryArea__list li:nth-child(13) {
    grid-area: 5/4/6/5;
  }

  .galleryArea__list li:nth-child(14) {
    grid-area: 6/3/7/4;
  }

  .galleryArea__list li:nth-child(15) {
    grid-area: 6/4/7/5;
  }

  .movieArea {
    margin: -10rem auto 0;
  }

  .movieArea__inner {
    padding: 8rem 0 10rem;
  }

  .movieArea__inner--movie {
    width: 740px;
    margin: 4rem auto 0;
    text-align: center;
  }

  .js-modal-video {
    cursor: pointer;
  }

  .corporateArea {
    margin: 6rem auto 0;
  }

  .corporateArea__inner {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 8rem;
  }

  .corporateArea__inne--detail {
    width: 48%;
    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 640px) {
  .mainArea p {
    width: 94%;
    margin: 0 auto;
    font-size: 12px;
  }

  .footerArea__inner {
    padding: 0 1rem 1rem;
  }

  .navArea {
    margin: -2rem 0 0;
  }

  .navArea__list {
    padding: 0 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    font-size: 14px;
  }

  .navArea__list li a {
    padding: 0.5rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h1 span {
    font-size: 1rem;
  }

  .containerArea {
    padding: 4rem 0;
  }

  .headingTitle {
    font-size: 2rem;
  }

  .headingTitle span {
    font-size: 0.75rem;
  }

  .productArticle__list .btnView {
    text-align: center;
  }

  .brandArea {
    margin: 3rem 0 0;
  }

  .brandArea__inner {
    padding: 5rem 0 0;
  }

  .brandInfo {
    margin: 0 auto;
    padding: 1rem 0;
  }

  .brandInfo__firstblock {
    flex-direction: column;
  }

  .brandInfo__title {
    font-size: 1rem;
  }

  .brandInfo__text {
    padding: 1rem;
    width: 100%;
  }

  .brandInfo__text p {
    font-size: 0.9375rem;
  }

  .brandInfo__picture {
    width: 100%;
  }

  .brandArticle__list {
    margin: 1rem 1rem 0;
    padding: 3rem 2rem 3rem;
  }

  .brandArticle__list--heading {
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .brandArticle__list--thumb {
    width: 100%;
  }

  .brandArticle__list--textbox {
    width: 100%;
  }

  .brandArticle__list--title {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .brandArticle__list--text {
    display: none;
    font-size: 0.9375rem;
  }

  .productArea__inner {
    padding: 3rem 0;
  }

  .productArticle__list {
    padding: 2rem 1rem 3rem;
  }

  .productArticle__list--heading {
    font-size: 1rem;
  }

  .productArticle__list--title {
    font-size: 1rem;
  }

  .productArticle__list--text {
    display: none;
  }

  .productArticle__list--text p {
    font-size: 0.9375rem;
  }

  .productArticle__list--textbox .btnView {
    margin: auto auto 0;
  }

  .galleryArea {
    margin: -3.5rem auto 0;
  }

  .galleryArea__inner {
    padding: 4rem 0 10rem;
  }

  .galleryArea__list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    margin: 2rem 1rem 0;
  }

  .galleryArea__list li:nth-child(1) {
    grid-area: 1/1/3/3;
  }

  .galleryArea__list li:nth-child(2) {
    grid-area: 1/3/3/5;
  }

  .galleryArea__list li:nth-child(3) {
    grid-area: 3/1/4/2;
  }

  .galleryArea__list li:nth-child(4) {
    grid-area: 3/2/4/3;
  }

  .galleryArea__list li:nth-child(5) {
    grid-area: 3/3/4/4;
  }

  .galleryArea__list li:nth-child(6) {
    grid-area: 3/4/4/5;
  }

  .galleryArea__list li:nth-child(7) {
    grid-area: 4/1/6/3;
  }

  .galleryArea__list li:nth-child(8) {
    grid-area: 4/3/5/4;
  }

  .galleryArea__list li:nth-child(9) {
    grid-area: 4/4/5/5;
  }

  .galleryArea__list li:nth-child(10) {
    grid-area: 5/3/6/4;
  }

  .galleryArea__list li:nth-child(11) {
    grid-area: 5/4/6/5;
  }

  .galleryArea__list li:nth-child(12) {
    grid-area: 6/1/7/2;
  }

  .galleryArea__list li:nth-child(13) {
    grid-area: 6/2/7/3;
  }

  .galleryArea__list li:nth-child(14) {
    grid-area: 6/3/7/4;
  }

  .galleryArea__list li:nth-child(15) {
    grid-area: 6/4/7/5;
  }

  .movieArea {
    margin: -8rem auto 0;
  }

  .movieArea__inner {
    padding: 6rem 0 8rem;
  }

  .movieArea__inner--movie {
    margin: 1rem 1rem;
  }

  .corporateArea {
    margin: 4rem auto 0;
  }

  .corporateArea h2 {
    font-size: 2rem;
    line-height: 1;
  }

  .corporateArea__inner {
    margin: 0 0 8rem;
    padding: 0 1rem;
  }

  .corporateArea__inne--detail {
    padding: 2rem 1rem;
  }
}