@charset "UTF-8";
.mv {
    max-height: calc(90vh - 50px);
    overflow: hidden;
  position: relative;
  background: linear-gradient(180deg,#111868 0%,#111868 80%, transparent 80%,transparent 100%);
}
.mv_outer{
  display: flex;
  justify-content: flex-end
}
.mv_ex {
  max-width: calc(100% - 215px);
  background: #fff;
  width: 100%;
}
.mv_ex .mv_img img {
  width: 100%;
}
.mv_slider {
  max-width: calc(100% - 215px);
  background: #fff;
  width: 100%;
}
.mv_slider img{
  width: 100%;
}
.mv_catch {
    max-width: calc(100% - 215px);
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
  pointer-events: none;
}
.mv_catch img {
    width: 100%;
}
.scroll_outer {
    width: 128px;
    position: absolute;
    left: 0;
    bottom: 20%;
    z-index: 3;
}
.scroll_outer span {
    display: inline-block;
    position: absolute;
    right: 50%;
    bottom: 0;
    z-index: 0;
    padding: 10px 10px 140px;
    overflow: hidden;
    color: #fff;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    box-sizing: content-box;
    height: 60px;
    font-size: 1.2rem;
}
.scroll_outer span::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: calc(50% - 1px);
    width: 2px;
    height: 130px;
    background: #fff;
    animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.scroll_outer span::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: calc(50% - 1px);
    width: 2px;
    height: 130px;
    background: #ffffff50;
}
.scroll_outer span::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*RV*/
.rv{
  max-width: 590px;
  width: 90%;
  margin:auto;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  background: url("../img/bnr_rv.png") top left no-repeat;
  -webkit-background-size: auto;
  background-size: auto;
  margin-top: 80px;
}
.rv_inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:15px;
  padding: 20px;
  background: #333;
}
.rv_text{
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}
.rv_btn{
  font-size: 1.4rem;
  width: 175px;
  height: 40px;
  background: #0070C0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:5px;
  color: #fff;
  &::after{
    content: '';
    display: block;
    background: url("../img/arrow_bnr.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 8px;
    height: 12px;
  }
} 
/*PICK UP*/
.pick{
  margin-top: 80px;
  margin-bottom: 60px;
}
.pick_inner--flex{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

/*topics*/
.topics {
    max-width: calc(100% - 215px);
    margin: 0 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: end;
  padding: 15px 0;
}

.new .topics_head::after {
    content: 'NEW!';
    font-size: 1.4rem;
    line-height: 1.2;
    color: #C5010F;
    padding: 3px 5px 1px;
    border: 1px solid #C5010F;
    font-weight: bold;
    letter-spacing: 2px;
    margin-left: 30px;
}
.no_new .topics_head {
  margin-left: 90px;
}
.topics_head {
    font-size: 2rem;
    font-weight: bold;
    color: #111868;
    letter-spacing: 3px;
}
.topics_row {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

/*230406追記*/
.topics.second {
  max-width: calc(100% - 307px);
  margin: 0 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  padding-top: 0;
}
.topics.second .topics_row {
  margin-left: 40px;
}
.topics .topics_row {
  margin-left: 130px;
}
.topics.new .topics_row {
  margin-left: 40px;
}
/*---------*/
/*240529追記*/
.topics.second.new_none {
  max-width: calc(100% - 397px);
  min-height: 45px;
}
/*---------*/

.topics_data {
    color: #111868;
    margin-right: 15px;
    white-space: nowrap;
}
.topics_tag {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    width: 105px;
    background: #ccc;
    padding: 2px 0;
}
.topics_tag--01{
  color: #111868;
  background: #CFD0DF;
}
.topics_tag--02{
  color: #6A5E20;
  background: #D9D7C3;
}
.topics_tag--03{
  color: #401F5D;
  background: #D4C2EF;
}
.topics_tag--04{
  color: #9A364D;
  background: #D9C3C8;
}
.topics_tag--05{
  color: #1E6732;
  background: #C3D9C9;
}
.topics_cont {
    margin-left: 15px;
}
.topics_cont a {
    color: #111868;
  text-decoration: underline;
}
.topics_cont a:hover {
  text-decoration: none;
}

/*intro*/
.intro_inner {
    background: #E1E2EC;
    max-width: 1200px;
    width: 95%;
    margin: 10px auto 0;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.intro_text_h1 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #111868;
  line-height: 2;
}
.intro_text {
    font-weight: bold;
    color: #111868;
    line-height: 2;
}
.intro_bold {
    font-size: 2.4rem;
    border-bottom: 2px solid #C5010F;
}

/*product*/
.product {
    padding-bottom: 50px;
    position: relative;
}
.product::before {
    content: '';
    display: block;
    background: #F1F1F1;
    width: 75%;
    height: 380px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.pro_inner {
    max-width: 1024px;
    width: 90%;
    margin: 80px auto 0;
  position: relative;
}
.slider_img:hover::after{
  opacity: 1;
}
.slide-arrow {
    position: absolute;
    top: calc(50% - 25px);
    z-index: 3;
    cursor: pointer;
}
.slide-arrow.prev-arrow {
    left: -20px;
}
.slide-arrow.next-arrow {
    right: -20px;
}
.pro_slider {
    margin-top: 55px;
    position: relative;
}
.slider_img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider_name {
    display: block;
    text-align: center;
    color: #000;
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: bold;
}

/*category*/
.cate_inner {
    max-width: 1024px;
    width: 90%;
    margin: 100px auto 0;
}
.cate_row {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    align-items: flex-start;
}
.cate_row:first-child{
  margin-top: 30px;
}
.cate_row--rev {
    flex-direction: row-reverse;
}
.cate_cont {
    max-width: 350px;
}
.cate_img {
    box-shadow: 50px 50px 0 #111868;
}
.cate_head {
}
.cate_num {
    font-size: 4rem;
    color: #111868;
    font-weight: lighter;
  position: relative;
  line-height: 1;
  display: block;
}
.cate_num::after {
    content: '';
    display: block;
    width: 85px;
    position: absolute;
    height: 2px;
    background: #111868;
    transform: rotate(-45deg);
    top: 35px;
    left: 15px;
}
.cate_title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #111868;
    letter-spacing: 4px;
    padding-left: 62px;
  margin-top: -10px;
  display: block;
}
.cate_menu {
    display: flex;
    flex-direction: column;
    max-width: fit-content;
    margin: 50px auto;
    gap: 10px;
}
.cate_item {
    font-weight: bold;
    color: #000000;
    display: flex;
}
.cate_item::before{
  content: '-';
  color: #111868;
  margin-right: 5px;
}
.cate_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #111868;
    max-width: 215px;
    margin: auto;
    height: 40px;
}

/*news*/
.news_inner {
    max-width: 1024px;
    width: 90%;
    margin: 140px auto 0;
}
.news_cont {
    max-width: 850px;
    width: 100%;
    margin: 30px auto 0;
    border-top: 1px solid #A8A8A8;
}
.news_row {
    padding: 30px 40px;
    border-bottom: 1px solid #a8a8a8;
}
.news_head{
  position: relative;
  display: flex;
  align-items: center;
}
.new .news_head::after{
  content: 'NEW!';
  font-size: 1.4rem;
  line-height: 1.2;
  color: #C5010F;
  padding: 3px 5px 1px;
  border: 1px solid #C5010F;
  font-weight: bold;
  letter-spacing: 2px;
  margin-left: 49px;
}
.news_main {
    display: flex;
    align-items: center;
  margin-top: 5px;
}
.news_title{
  margin-left: 15px;
}
.news_title a {
    color: #000000;
    text-decoration: underline;
}
.news_title a:hover {
    text-decoration: none;
}
.news_btn {
    max-width: 251px;
    margin: 25px auto 0;
}
.news_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #C5010F;
  padding: 12px 0;
}
.link {
    max-width: 1024px;
    width: 90%;
    margin: 100px auto 110px;
}
.link_midashi {
    font-size: 2.4rem;
    font-weight: bold;
    color: #111868;
    letter-spacing: 4px;
    text-align: center;
}
.link_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
.mv_ex {
  max-width: 90%;
}
.mv_slider {
    max-width: 90%;
}
.scroll_outer span {
    left: 0;
    right: auto;
}
.mv_catch {
    left: 0;
    max-width: 100%;
    width: 100%;
    padding: 0 2.5% 0 12.5%;
    top: calc(50% - 20vw);
}
  .pick_inner{
    width: 90%;
    margin: auto;
  }
.topics {
    margin: auto;
    flex-direction: column;
    max-width: 90%;
    align-items: flex-start;
    position: relative;
}
.topics_row {
    margin: 0;
    flex-wrap: wrap;
}
.topics .topics_row,
.topics.second .topics_row{
  margin-left: 0;
}

.topics_row.first {
  margin-top: 70px;
}
.topics.new .topics_row {
  margin-left: 0px;
}
  .topics.second , .topics.second.new_none {
    margin: auto;
    flex-direction: column;
    max-width: 90%;
    align-items: flex-start;
  }
.rv {
  justify-content: center;
  padding-bottom: 115px;
}
.rv_inner{
  position: relative;
  max-width: none;
  width: 90%;
  bottom: -115px;
 /* background: rgba(0,0,0,.65);*/
}
  .pick_inner--flex{
    flex-wrap: wrap;
  }

.topics_cont {
    width: 100%;
  margin-left: 0;
}
.intro_inner {
    padding: 40px 5%;
}
.intro_text_h1 {
  text-align: left;
}
.intro_text {
    text-align: left;
}
.intro_bold {
    font-size: min(6.5vw,2.4rem);
}
.cate_row, .cate_row--rev {
    flex-direction: column;
    margin-top: 50px;
}
.cate_img {
    box-shadow: 10px 10px 0 #111868;
}
.cate_cont {
    margin-top: 40px;
    max-width: none;
    width: 100%;
}
  .cate_num{
    font-weight: normal;
  }
.news_row {
    padding: 15px;
}
.news_main {
    flex-direction: column;
    align-items: flex-start;
}
.new .news_head::after {
    margin-left: 20px;
}
  .link{
    width: 95%;
  }
.link_list {
    gap: 5px;
    justify-content: space-around;
}
.slide-arrow.prev-arrow {
    left: -15px;
}
.slide-arrow.next-arrow {
    right: -15px;
}
/*.new .topics_head::after {
  position: absolute;
}*/
.new .topics_head::after {
  position: relative;
  margin-left: 0;
}
.new .topics_head.first::after{
    position: absolute;
    top: 90px;
    left: 0;
  }
  /*240529追記*/
.topics.second.new_none {
  margin-top: 12px;
}
/*---------*/
}
@media print {

}