@charset "UTF-8";
html, body {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

main {
  font-size: 1.2vw;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #fff;
  padding: 0;
  margin: 0;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.07vw;
  line-height: 1.6;
  overflow: hidden;
  background: linear-gradient(90deg, #1353bd,#0c3476);
}

@media screen and (max-width: 880px) {
  main {
    font-size: 3.4vw;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p, figure {
  margin: 0;
}

img {
  width: 100%;
}

ul{
	list-style: none;
	padding: 0;
}

a{
	text-decoration: none;
}

.swrap {
  /*padding: 0 17vw;
  box-sizing: border-box;*/
	max-width:65vw;
	margin: 0 auto;
}

.wrap {
  margin: 0 auto;
  padding: 0 10vw;
  box-sizing: border-box;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 880px) {
  .wrap {
    padding: 0 5vw;
  }
  html {
    scroll-padding-top: 0;
  }
  .swrap {
    /*padding: 0 2vw;*/
	max-width:90vw; 
  }
  .rwd_show {
    display: inline !important;
  }
  .rwd_hide {
    display: none;
  }
}
.ovh {
  overflow: hidden;
}

@keyframes btn_animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.growfadein {
  opacity: 0;
}

.growfadein.active {
  opacity: 0;
  animation: growfade 0.5s ease 0.2s forwards; 
}


@keyframes growfade {
  0% {
    opacity: 0; }
  30% {
    opacity: 1; }
  40% {
    opacity: 1;
    filter: brightness(1330%); }
  70% {
    opacity: 1;
    filter: brightness(100%); }
  100% {
    opacity: 1;
    filter: brightness(100%); } }

.show_text {
  position: relative;
  transition: -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  overflow: hidden;
}

.show_text.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
}

.bottom_to_top.active {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.left_to_right {
  opacity: 0;
  transform: translate3d(-150px, 0, 0) scale(1.1);
}

.left_to_right.active {
  animation: left_to_right 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes left_to_right {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.right_to_left {
  opacity: 0;
  transform: translate3d(50px, 0, 0);
}

.right_to_left.active {
  animation: right_to_left 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes right_to_left {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

  @keyframes elasticus {
    0% {
      transform-origin: 0% 0%;
      transform: scale(0, 1);
      opacity: 1;
    }
    50% {
      transform-origin: 0% 0%;
      transform: scale(1, 1);
    }
    50.1% {
      transform-origin: 100% 0%;
      transform: scale(1, 1);
    }
    100% {
      transform-origin: 100% 0%;
      transform: scale(0, 1);
      opacity: 0;
    }
  }
  .scroller {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .scroller.stop {
    opacity: 0;
  }

/*common*/
.inc_common_footer_wrap {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  font-size: 18px;
  /* font-size: 1.8rem; */
  color: #111;
  line-height: 2;
  font-family: Meiryo,sans-serif;
  text-align: left;
  position: relative; }

@media screen and (max-width: 47.938em) {
  .inc_common_footer_wrap {
    line-height: 1.8;
    font-size: 1.6rem; } }

/*# sourceMappingURL=commons.css.map */



.page_header {
  color: #fff;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.page_header .logo {
  /*display: block;*/
  position: absolute;
  width: 14vw;
  right: 3vw;
  top: 2vw;
  display: flex;
  align-items: center;
}

.page_header .d_logo {
  /*display: block;*/
  position: absolute;
  width: 12vw;
  left: 2vw;
  top: 2vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .page_header .logo {
    width: 23vw;
    right: 3vw;
    top: 3vw;
  }
	.page_header .d_logo{
		width: 24vw;
  left: 3vw;
  top: 4vw;
	}
}
.mv {
  position: relative;
  background-image: url("../img/mv_bg.jpg");
  background-size: cover;
background-repeat: no-repeat;
	overflow: hidden;
}

.mv .mv_in {
  position: relative;
  padding-top: 54%;
	overflow: hidden;
}
.mv .mv_in .mv_matsuyama {
  width: 92vw;
  position: absolute;
  bottom:0;
right: 4vw;
}

@media screen and (max-width: 1000px) {
	
}
@media screen and (max-width: 600px) {
  .mv {
    padding-top: 100%;
  background-image: url("../img/sp_mv_bg.jpg");
  }
	
	.mv .mv_in{
		overflow: visible;
		padding-top: 25%;
	}

  .mv .mv_in .mv_matsuyama {
    bottom: -3vw;
    width: 100vw;
	 left: 0.5vw;
  }
}
.movie {
  padding: 6vw 0;
  background-image: url(../img/movie_bg.jpg);
  background-size: cover;
}
.movie .wrap {
  max-width: 80vw;
}
.movie .movie_first {
  margin: 0 auto;
  /*display: flex;
  margin-right: -3vw;
  flex-wrap: wrap;*/
}
@media screen and (max-width: 600px) {
	.movie .wrap {
  max-width: 100vw;
}
}
.movie .movie_first > div {
  /*padding-right: 3vw;2つ以上で追加*/
  box-sizing: border-box;
  flex: 0 1 50%;
  /*margin-bottom: 3vw;*/
}
.movie .movie_first a {
  display: block;
  position: relative;
}
.movie .movie_first a figure {
  transition: all ease 0.3s;
  overflow: hidden;
}
.movie .movie_first a figure img {
  transition: all ease 0.3s;
}
.movie .movie_first a:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/youtube.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  z-index: 10;
  transition: all ease 0.3s;
}
.movie .movie_first a:hover figure {
  opacity: 0.7;
}
.movie .movie_first a:hover figure img {
  transform: scale(1.05);
}
.movie .movie_first a:hover:before {
  transform: scale(1.2);
}
/*.movie .movie_bottom {
  width: 50vw;
  margin: 0 auto;
}
.movie .movie_bottom a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
  position: relative;
}
.movie .movie_bottom a:before {
  content: '';
  display: block;
  width: 5vw;
  height: 5vw;
  background-image: url(../img/youtube.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all ease 0.3s;
  z-index: 1;
}
.movie .movie_bottom a > figure {
  transition: all ease 0.3s;
  flex: 0 1 100%;
}
.movie .movie_bottom a > figure img {
  width: 100%;
}
.movie .movie_bottom a > div {
  flex: 1;
  padding-left: 2vw;
  box-sizing: border-box;
}
.movie .movie_bottom a > div > p {
  font-size: 160%;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.movie .movie_bottom a > div > div p {
  font-size: 90%;
}
.movie .movie_bottom a:hover > figure {
  opacity: 0.7;
}
.movie .movie_bottom a:hover:before {
  transform: scale(1.05);
}*/

.point ,.voice /*,.feature*/,.color,.spec,.campaign{
	padding: 4vw 0;
}

.voice,.color,.campaign{
	background-color: #000;
}

.point h1,.voice h1 ,.feature h1,.color h1,.spec h1,.campaign h1{
	font-size: 8vw;
	font-style: italic;
	position: relative;
}

.point .title_sb,.voice .title_sb,.feature .title_sb,.color .title_sb,.spec .title_sb,.campaign .title_sb{
	position: absolute;
	font-size: 2vw;
	margin-left: 3%;
	top: 5vw;
}

@media screen and (max-width: 880px) {
.point h1,.voice h1 ,.feature h1,.color h1,.spec h1,.campaign h1{
	font-size: 15vw;
	margin-bottom:10vw;
}
	.feature h1{
		margin-bottom: 0;
	}
.point .title_sb,.voice .title_sb,.feature .title_sb,.color .title_sb,.spec .title_sb,.campaign .title_sb{
	position: absolute;
	font-size: 4vw;
	margin-left: 0;
	top: 21vw;
	left: 0;}
	
	.feature .title_sb{
		margin-left: 2vw;
	}
	
}

.point_1,.point_2,.point_3{
	display: flex;
	margin-bottom: 6vw;
}

.voice_1,.campaign_1{
	display: flex;
	margin-bottom: 4vw;
}

.point_2{
	flex-direction:row-reverse;
}

.point_image{
	width: 50%;
}
.point_1_text , .point_2_text, .point_3_text{
	background-color: #000;
	width: 50%;
	margin-top: 3vw;
	padding: 5vw 2.5vw;
	position: relative;
}
.point_1_text h2, .point_2_text h2, .point_3_text h2{
	position: relative;
	font-size: 3vw;
	font-style: italic;
}

.point_1_text h2::before, .point_2_text h2::before, .point_3_text h2::before{
	background-color: #e9c45c; 
  border-radius: 5px; /* 線の両端を丸く */
  bottom: -10px; /* 線の位置 */
  content: "";
  height: 3px; /* 線の高さ */
  left: 0;
  position: absolute;
  width: 3vw; /* 線の長さ */
}
.point_1_text::before{
    content: "";
    background-image: url(../img/01.png);
    left: 3vw;
    top: -2vw;
    position: absolute;
    width: 5vw;
    height: 5vw;
    background-repeat: no-repeat;
    display: inline-block;
	background-size: contain;
}
.point_2_text::before{
    content: "";
    background-image: url(../img/02.png);
    left: 3vw;
    top: -2vw;
    position: absolute;
    width: 5vw;
    height: 5vw;
    background-repeat: no-repeat;
    display: inline-block;
	background-size: contain;
}

.point_3_text::before{
    content: "";
    background-image: url(../img/03.png);
    left: 3vw;
    top: -2vw;
    position: absolute;
    width: 5vw;
    height: 5vw;
    background-repeat: no-repeat;
    display: inline-block;
	background-size: contain;
}

.point_1_text p, .point_2_text p, .point_3_text p{
	margin-top: 2vw;
	font-size:120%;
	font-style: italic;
}

@media screen and (max-width: 880px) {
.point_1,.point_2,.point_3 ,.voice_1,.campaign_1{
	display: block;
}
.point_1,.point_2,.point_3 {
margin-bottom:12vw;
}
	.point_image,.point_1_text , .point_2_text, .point_3_text{
		width: 100%;
	}
	.point_1_text , .point_2_text, .point_3_text{
	margin-top:0;
	padding:5vw 4vw;}
	
	
.point_1_text h2, .point_2_text h2, .point_3_text h2{
	font-size: 7vw;
}
.point_1_text p, .point_2_text p, .point_3_text p{
	margin-top: 5vw;
	font-size: 130%;
}
	.point_1_text h2::before, .point_2_text h2::before, .point_3_text h2::before{
	left: 1vw;
	width: 5vw;
}
	.point_1_text::before,.point_2_text::before,.point_3_text::before{
	width: 15vw;
    height: 15vw;
	left: 75vw;
	top:-5vw;
	}
}


.voice_image,.campaign_image{
	width: 90%;
	margin-right: 3vw;
}

.voice_1_text,.campaign_1_text{
	margin:auto 0;
	vertical-align: middle;
}

.voice_1_text h2,.campaign_1_text h2{
	font-size: 2vw;
}

.voice_1_text p ,.campaign_1_text p{
	margin-top: 2vw;
	font-size:120%;
	font-style: italic;
}

@media screen and (max-width: 880px) {
	.voice,.campaign{
		padding:6vw 0;
	}
	.voice_1,.campaign_1{
		display: block;
	}
	.voice_image,.campaign_image{
		width: 100%;
		margin: 0 auto 4vw;
	}
	.voice_1_text h2,.campaign_1_text h2{
		font-size: 6vw;
	}
	.voice_1_text p,.campaign_1_text p{
		font-size: 130%;
	}
	
}

/*ここから機能説明*/
.s-feature {
  height: auto;
  margin-bottom: 150px; }
  @media screen and (max-width: 880px) {
    .s-feature {
      margin-bottom: 100px; } }

.s-feature__hgroup {
  margin-bottom: 130px;
  text-align: center; }
  @media screen and (max-width: 880px) {
    .s-feature__hgroup {
      margin-bottom: 40px; } }

.s-feature__h {
  margin-bottom: 10px;
  color: #0173e5;
  font-size: 9.0rem;
  font-weight: 700; }
  @media screen and (max-width: 880px) {
    .s-feature__h {
      font-size: 6.3rem; } }

.s-feature__h_ja {
  color: #ffffff;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 1em; }
  @media screen and (max-width: 880px) {
    .s-feature__h_ja {
      font-size: 1.8rem; } }

.s-feature__container.s-feature__container--front {
  margin-bottom: 4vw; }
  @media screen and (max-width: 880px) {
    .s-feature__container.s-feature__container--front {
      margin-bottom: 0; } }

.s-feature__container.s-feature__container--back {
  margin-bottom: 180px; }
  @media screen and (max-width: 880px) {
    .s-feature__container.s-feature__container--back {
      margin-bottom: 30px; } }

.s-feature__wrap {
  position: relative;
  width: 1000px;
  height: 1000px;
  margin: auto;
  background-color: #0c3476; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__wrap {
      width: 100%;
      height: auto;
      margin-bottom: 30px;
      padding-top: 100%; }
      .s-feature__container--front .s-feature__wrap {
        background: url(../img/sp_front_img_figure.png) center top/contain scroll no-repeat; }
      .s-feature__container--back .s-feature__wrap {
        background: url(../img/sp_back_img_figure.png) center top/contain scroll no-repeat; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__wrap {
      width: 100%;
      height: auto;
      margin-bottom: 30px;
      padding-top: 184%; }
      .s-feature__container--front .s-feature__wrap {
        background: url(../img/sp_front_img_figure.png) center top/contain scroll no-repeat; }
      .s-feature__container--back .s-feature__wrap {
        background: url(../img/sp_back_img_figure.png) center top/contain scroll no-repeat; } }

.s-feature__container--front .s-feature__h2 {
  position: absolute;
  top: 2vw;
left: 4vw;
  display: inline-block;
  font-size: 4rem;
	font-style: italic;
  border-bottom: 7px solid #dadd1c; }
  .s-feature__container--back .s-feature__h2 {
  position: absolute;
  top: 2vw;
	right: 4vw;
  display: inline-block;
  font-size: 4rem;
	font-style: italic;
  border-bottom: 7px solid #dadd1c; 
     }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__h2 {
      top: 150px;
      padding: 5px 5px 5px 13px;
      font-size: 4.5rem;
      border-width: 7px;
      letter-spacing: 2px; } }*/
  @media screen and (max-width: 880px) {
	  .s-feature__container--front .s-feature__h2 {
		      top: 16vw;
      padding: 2px 5px 2px;
      font-size: 2rem;
      border-width: 4px;
      letter-spacing: 2px;
	  left: 10vw;}  
	 
	  
    .s-feature__container--back .s-feature__h2 {
      top: 16vw;
      padding: 2px 5px 2px;
      font-size: 2rem;
      border-width: 4px;
      letter-spacing: 2px;
	  right: 6vw;} }



.s-feature__figure {
  position: absolute;
  top: 50%;
  left: 50%; }
  .s-feature__container--front .s-feature__figure {
	  	width:63%;
    -webkit-transform: translate(-46%, -50%);
    -ms-transform: translate(-46%, -50%);
    transform: translate(-46%, -50%); }
  .s-feature__container--back .s-feature__figure {
	  	width:32%;
    -webkit-transform: translate(-48%, -50%);
    -ms-transform: translate(-48%, -50%);
    transform: translate(-48%, -50%); }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__figure {
      display: none; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__figure {
      display: none; } }

.s-feature__container--front .s-feature__border {
  position: absolute;
    width: 55%;
    top: 140px;
    left: 212px;}

.s-feature__container--back .s-feature__border {
  position: absolute;
    width: 68%;
    top: 213px;
    left: 162px;}
  @media screen and (max-width: 880px) {
    .s-feature__border {
      display: none; } }

.s-feature__note {
  display: none; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__note {
      display: block;
      margin-bottom: 30px;
      text-align: center;
      font-size: 1.3rem;
      line-height: 1.8;
      color: #ffffff;
      opacity: 0.7; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__note {
      display: block;
      margin-bottom: 30px;
      text-align: center;
      font-size: 4vw;
      line-height: 1.8;
      color: #ffffff;
      opacity: 0.7; } }

.s-feature__ul {
  position: relative;
  width: 1000px;
  height: 1000px;
  margin: auto;
  margin-top: -1000px; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      width: 100%;
      height: auto;
      margin: 0;
      padding: 0 4%; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: grid;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      margin: 0;
      height: auto; } }

.s-feature__li {
  position: absolute;
  width: 250px;
  height: auto; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__li {
      position: static;
      width: 50%;
      margin-bottom: 90px;
      border-right: 1px solid #121422; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__li {
      position: static;
      width: 100%;
      margin-bottom: 45px;
      border-right: 1px solid #0c3476; } }

.s-feature__a {
  position: relative;
  display: block;
  color: #ffffff; }
  .s-feature__a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
   /* @media screen and (min-width: 768px) and (max-width: 1080px) {
      .s-feature__a:hover {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); } }*/
    @media screen and (max-width: 880px) {
      .s-feature__a:hover {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); } }
    @media screen and (max-width: 880px) {
      .s-feature__a:hover .s-feature__no {
        background-color: rgba(235, 51, 65, 0.85); } }
    .s-feature__a:hover::before {
      background-color: #eb3341; }
    .s-feature__a:hover .s-feature__text {
      color: #eb3341; }
  .s-feature__a::before {
    position: absolute;
    top: -20px;
    right: 10px;
    z-index: 1;
    display: block;
    width: 31px;
    height: 31px;
    border-radius: 15px;
    background: rgba(1, 115, 229, 0.9) url(../img/icon_enlarge.svg) center center/auto scroll no-repeat;
    content: ''; }

    @media screen and (max-width: 880px) {
      .s-feature__a::before {
        display: none; } }

.s-feature__pict {
  display: block;
  margin-bottom: 5px; }
  @media screen and (max-width: 880px) {
    .s-feature__pict {
      margin-bottom: 10px; } }
  .s-feature__pict img {
    border: 1px solid #fff;
    width: 250px;
    /*height: 155px;*/
    background-color: #fff; }
    /*@media screen and (min-width: 768px) and (max-width: 1080px) {
      .s-feature__pict img {
        border: 0;
        width: 100%;
        height: auto; } }*/
    @media screen and (max-width: 880px) {
      .s-feature__pict img {
        border: 0;
        width: 100%;
        height: auto; } }

.s-feature__no {
  display: none; }
 /* @media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__no {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 50px;
      height: 50px;
      margin: auto;
      margin-top: -35px;
      margin-bottom: 15px;
      background-color: rgba(131, 135, 152, 0.85);
      color: #fff;
      font-size: 3.0rem;
      font-weight: 700;
      border-radius: 40px; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__no {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 33px;
      height: 33px;
      margin: auto;
      margin-top: -22px;
      margin-bottom: 10px;
      background-color: rgba(131, 135, 152, 0.85);
      color: #fff;
      font-size: 1.7rem;
      font-weight: 700;
      border-radius: 16px; } }

.s-feature__text {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 900; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-feature__text {
      text-align: center;
      font-size: 2.2rem; } }*/
  @media screen and (max-width: 880px) {
    .s-feature__text {
      text-align: center;
      font-size: 4vw; } }

.s-feature__container--front .s-feature__li--1 {
  top: 45px;
  right: 25px; }

.s-feature__container--front .s-feature__li--2 {
  top: 410px;
  right: 30px; }

.s-feature__container--front .s-feature__li--3 {
  top: 540px;
  left: 20px;  }

.s-feature__container--front .s-feature__li--4 {
  top: 740px;
  right: 64px;  }

.s-feature__container--front .s-feature__li--5 {
  top: 285px;
  left: 20px; }

/*.s-feature__container--front .s-feature__li--6 {
  top: 695px;
  left: -55px; }

.s-feature__container--front .s-feature__li--7 {
  top: 740px;
  right: 64px; }*/

.s-feature__container--back .s-feature__li--1 {
  top: 150px;
  left: 45px; }

.s-feature__container--back .s-feature__li--2 {
  top: 370px;
  right: 15px; }

.s-feature__container--back .s-feature__li--3 {
  top: 500px;
  left: 15px; }

.s-feature__container--back .s-feature__li--4 {
  bottom: 15px;
  right: 25px; }

.s-feature__container--back .s-feature__li--5 {
  bottom: 15px;
  left: 55px; }

/*@media screen and (min-width: 768px) and (max-width: 1080px) {
  .s-items {
    padding: 0 4%; } }*/


.color_image, .color_type{
	display: flex;
}

.color_image li{
	 width:21vw;
 height:39vw;
 margin:0 0.5%;
 display:inline-block;
 transform:skewX(-6deg);
	overflow: hidden;
	margin-bottom:1vw;
}

.color img{
	position: absolute;
 transform:skewX(6deg) scale(1.2);
	top: 4vw;
	right:0;
}

.color_type{
	margin-left: -3vw;
}
.color_type :nth-child(3){
	margin-left: -1vw;
}

.color_type li{
	width: 33.3%;
	text-align: center;
}

.color_type li p{
font-size:2rem;}

@media screen and (max-width: 880px) {
	.color_image li{
	 width:33vw;
 height:88vw;
	margin-bottom:2vw;
}
.color img{
	top: 23vw;
	right:0;
	transform:skewX(6deg) scale(2);
}
	
.color_type{
	margin-bottom:6vw;
	margin-left: -4vw;
}

.color_type :nth-child(2){
	margin-left: -2vw;
}
	
.color_type li p{
font-size:1.4rem;}
}


.spec_table table{
	border-collapse:collapse;
	width: 100%;
}

.spec_table table tbody tr{
	font-weight: normal;
	text-align: left;
}

.spec_table th,.spec_table td{
	border-bottom: 1px solid #fff;
	padding: 1em;
	font-size: 1.2em;
}
.spec_table p{
	text-align: right;
	margin-top: 0.5em;
}

@media screen and (max-width: 880px) {
	.spec_table table tbody tr{
	display: grid;
}
.spec_table th{
	border-bottom: none;
	padding-bottom:0;
}
}

 .spec .spec_p_links {
    display: flex;
    justify-content: center;
    margin: 5vw 0; }
    .spec .spec_p_links a {
		position: relative;
		color: #fff;
		font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
		letter-spacing: 0.08em;
      display: block;
      font-style: italic;
      text-align: center;
      padding: 1vw 0;
      text-decoration: none;
      width: 35%;
      font-size: 120%;
      background-color: #000;
      transition: all 0.4s ease-out; }
      .spec .spec_p_links a:first-child {
        margin-right: 3vw;}
      .spec .spec_p_links a:hover {
        background-color: #dadd1c;
        background: #dadd1c;
        background-size: 200% auto;
        background-position: right center;
        color: #0c3476;
        box-shadow: 0 5px 10px rgba(91, 102, 112, 0.4);
        border-color: transparent; }
.spec .spec_p_links a:before{
  content: '';
  width: 0.8vw;
  height: 0.8vw;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1vw;
  bottom: 0;
  margin: auto;
}
.spec .spec_p_links a:hover:before{
border-top: solid 2px #0c3476;
  border-right: solid 2px #0c3476;
}

@media screen and (max-width: 880px) {
 .spec .spec_p_links {
    display: block;
	 margin: 8vw 0;
}
    .spec .spec_p_links a {
      display: block;
      text-align: center;
      padding: 3vw 1vw;
      text-decoration: none;
      width: 80%;
      margin: 0 auto;}
      .spec .spec_p_links a:first-child {
        margin: 0 auto 6vw;}
      .spec .spec_p_links a:hover {
        background-color: #dadd1c;
        background: #dadd1c;
        background-size: 200% auto;
        background-position: right center;
        color: #0c3476;
        box-shadow: 0 5px 10px rgba(91, 102, 112, 0.4);
        border-color: transparent; }
.spec .spec_p_links a:before{
  content: '';
  width: 2vw;
  height: 2vw;
  right: 4vw;
}
}


.s-modal {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

.s-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 20, 34, 0.93); }

.s-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-modal__inner {
      min-width: initial;
      width: 90%; } }*/
  @media screen and (max-width: 880px) {
    .s-modal__inner {
      min-width: initial;
      width: 90%; } }

.s-modal__pict {
  margin-bottom: 20px; }
  @media screen and (max-width: 880px) {
    .s-modal__pict {
      margin-bottom: 15px; } }
  .s-modal__pict img {
    width: 100%;
    border: 2px solid #fff; }

.s-modal__h {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 2.0rem;
  line-height: 1.2;
  font-weight: 700; }
  @media screen and (max-width: 880px) {
    .s-modal__h {
      font-size: 1.8rem; } }

.s-modal__text {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500; }

  @media screen and (max-width: 880px) {
   /* .s-modal__text {
      font-size: 1.2rem; } */}

.s-modal__btn {
  position: absolute;
  top: -50px;
  right: 5px;
  width: 40px;
  height: 40px;
  background: url(../img/icon_close.svg) center center/cover scroll no-repeat; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .s-modal__btn {
      top: -43px;
      width: 30px;
      height: 30px;
      background-size: cover; } }*/
  @media screen and (max-width: 880px) {
    .s-modal__btn {
      top: -43px;
      width: 30px;
      height: 30px;
      background-size: cover; } }
  .s-modal__btn:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.u-d-n {
  display: none !important; }

@media screen and (max-width: 880px) {
  .u-d-n-sm {
    display: none !important; } }

/*@media screen and (min-width: 768px) and (max-width: 1080px) {
  .u-d-n-md {
    display: none !important; } }*/

.u-d-b {
  display: block !important; }

.u-d-b-sm {
  display: none; }
  @media screen and (max-width: 880px) {
    .u-d-b-sm {
      display: block !important; } }

.u-d-b-md {
  display: none; }
  /*@media screen and (min-width: 768px) and (max-width: 1080px) {
    .u-d-b-md {
      display: block !important; } }*/

.u-d-ib {
  display: inline-block !important; }

.u-d-ib-sm {
  display: none; }
  @media screen and (max-width: 880px) {
    .u-d-ib-sm {
      display: inline-block !important; } }

.u-d-ib-md {
  display: none; }

/*# sourceMappingURL=common.css.map */