@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_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%;
  }
}
/*topics*/
.topics {
    max-width: calc(100% - 215px);
    margin: 0 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  padding: 15px 0;
}
.topics_head {
    font-size: 2rem;
    font-weight: bold;
    color: #111868;
    letter-spacing: 3px;
}
.topics_row {
    display: flex;
    align-items: center;
    margin-left: 40px;
}
.topics_data {
    color: #111868;
    margin-right: 15px;
}
.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 {
    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;
}
.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;
}
.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: 60px;
}
.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;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
.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);
}
.topics {
    margin: auto;
    flex-direction: column;
    max-width: 90%;
    align-items: flex-start;
}
.topics_row {
    margin: 0;
    flex-wrap: wrap;
}
.topics_cont {
    width: 100%;
  margin-left: 0;
}
.intro_inner {
    padding: 40px 5%;
}
.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;
}
}
@media print {

}