@charset "UTF-8";
/* CSS Document */

/* header {position:absolute;} */
#menu_box_sp {
  display: none !important;
}

#contents>*:last-child {
  margin-bottom: 120px;
}

.line_title span:nth-child(2) {
  color: #C81432;
}

/* mv */
.mv button {
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 0;
  text-align: left;
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.mv .mv-slide {
  width: 100%;
  position: relative;
  opacity: 0;
}

.mv .mv-slide.slick-initialized {
  opacity: 1;
}

.mv .mv-slide__item__inner {
  display: block;
  margin: 0 30px;
}

.mv .mv-slide__item img {
  width: 100%;
}

.mv .mv-slide__nav {
  margin-top: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}

.mv .mv-slide__nav .slick-dots {
  width: auto;
  position: static;
  bottom: auto;
}

.mv .mv-slide__nav .slick-dots li {
  width: 40px;
  height: 4px;
  margin: 0 12px 10px;
}

.mv .mv-slide__nav .slick-dots li button {
  width: 40px;
  height: 4px;
  padding: 0;
}

.mv .mv-slide__nav .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  background: #8A8A8A;
}

.mv .mv-slide__nav .slick-dots li.slick-active button::before {
  background: #C81432;
}

.mv .mv-slide__ctrl {
  width: 30px;
  height: 30px;
  margin-left: 12px;
  border-radius: 15px;
  background: #10326B;
  position: relative;
  transition: all .3s;
}

.mv .mv-slide__ctrl:hover {
  opacity: .7;
}

.mv .mv-slide__ctrl::before,
.mv .mv-slide__ctrl::after {
  content: "";
  display: block;
  width: 3px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mv .mv-slide__ctrl::before {
  left: calc(50% - 5px);
}

.mv .mv-slide__ctrl::after {
  right: calc(50% - 5px);
}

.mv .mv-slide__ctrl.play::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #fff;
  background: none;
  left: calc(50% - 4px);
}

.mv .mv-slide__ctrl.play::after {
  content: none;
}

.mv .mv-slide .slick-prev,
.mv .mv-slide .slick-next {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  background: rgba(138, 163, 206, .8);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.mv .mv-slide .slick-prev {
  left: auto;
  right: 88%;
}

.mv .mv-slide .slick-next {
  left: 88%;
  right: auto;
}

.mv .mv-slide .slick-prev:hover,
.mv .mv-slide .slick-next:hover {
  background: rgba(138, 163, 206, 1);
}

.mv .mv-slide .slick-prev::before,
.mv .mv-slide .slick-next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 1;
}

.mv .mv-slide .slick-prev::before {
  transform: rotate(-45deg);
  margin-left: 5px;
}

.mv .mv-slide .slick-next::before {
  transform: rotate(135deg);
  margin-right: 5px;
}

.mv .mv-thumb {
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.mv .mv-thumb__item {
  width: 100%;
  max-width: 260px;
}

.mv .mv-thumb__item__inner {
  height: 100%;
}

.mv .mv-thumb__btn {
  width: 100%;
  height: 100%;
  background-color: #F6F9FF;
  padding: 6px;
  font-size: 14px;
  border-bottom: 2px solid #F6F9FF;
  transition: all .3s;
}

.mv .mv-thumb__btn.active,
.mv .mv-thumb__btn:hover {
  color: #C81432;
  border-bottom: 2px solid #C81432;
}

.mv .mv-thumb__btn:hover {
  opacity: .7;
}

/* featured */
.feature {
  margin-top: 32px;
  padding: 34px 0 36px;
  background: #F6F9FF;
}

.feature-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.feature-card {
  width: calc((100% - 40px) / 2);
}

.feature-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  transition: all .3s;
}

.feature-card a.feature-card__inner:hover {
  opacity: .7;
}

.feature-card__ttl {
  background: #10326B;
  padding: 8px 18px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.feature-card__content {
  display: flex;
  gap: 18px;
  padding: 18px;
  flex: 1;
}

.feature-card__img {
  width: 50%;
}

.feature-card__img img {
  width: 100%;
}

.feature-card__txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(50% - 18px);
  color: #333;
}

.feature-card__link-txt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0 auto;
  color: #C81432;
  line-height: 1;
}

.feature-card__link-txt::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../png/arw_blue.png) no-repeat;
  background-size: contain;
  margin-right: 6px;
}

/* topics */
.topics {
  margin-top: 80px;
}

.topics-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.topics-card {
  width: calc((100% - 120px) / 4);
  margin-bottom: 10px;
}

.topics-card__inner {
  display: flex;
  flex-direction: column-reverse;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .16);
}

.topics-card__ttl {
  padding: 12px 8px;
  color: #10326B;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.topics-card__ttl::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #C81432;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.topics-card__img {
  width: 100%;
  padding-top: 66.36%;
  overflow: hidden;
  position: relative;
  background: #F6F9FF;
}

.topics-card__img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all .3s;
}

a.topics-card__inner:hover .topics-card__img img {
  transform: translate(-50%, -50%) scale(1.1);
}

/* news */
.news {
  margin-top: 80px;
}

#tab .tab {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

#tab .tab li {
  width: calc(100% / 4);
  border-right: solid 2px #ccc;
}

#tab .tab li:last-child {
  border-right: none;
}

#tab .tab li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
  height: 100%;
  background: #F6F9FF;
  text-align: center;
}

#tab .tab li a:hover,
#tab .tab li a.active {
  background-color: #10326B;
  color: #fff;
  position: relative;
}

#tab .tab li a:hover::after,
#tab .tab li a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #C81432;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

#tab .tab li a:hover p,
#tab .tab li a.active p,
#tab .tab li a:hover small,
#tab .tab li a.active small {
  color: #fff;
}

#tab .tab p {
  color: #10326B;
}

#tab .tab small {
  color: #C81432;
  font-size: 10px;
}

#tab .list {
  position: relative;
  height: 300px;
  margin-bottom: 40px;
  overflow-y: scroll;
}

#tab .list>li {
  width: 100%;
  display: none;
}

#tab .list>li:first-child {
  display: block;
}

#tab .list>li>ul {
  padding: 0 35px;
  background: #fff;
}

#tab .list>li>ul>li {
  /*border-bottom:dotted 1px #615f5f;*/
  background: url(../gif/dotted.gif) repeat-x left bottom;
}

#tab .list>li>ul>li a {
  display: block;
  padding: 15px 15px;
}

#tab .list>li>ul>li a.pdf .list_title:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url(../svg/pdf_navy.svg) no-repeat center center;
  background-size: auto 100%;
  position: relative;
  top: 0.25em;
  padding-left: 20px;
}

#tab .list>li>ul>li a.out .list_title:after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  background: url(../svg/out_navy.svg) no-repeat center center;
  background-size: auto 100%;
  position: relative;
  top: 0.25em;
  padding-left: 20px;
}

#tab .list>li>ul>li a:hover {
  background: #eee;
}

#tab .list .date,
#tab .list .tag {
  display: inline-block;
}

#tab .list .date {
  color: #666;
  font-weight: bold;
  margin-bottom: 10px;
  min-width: 75px;
}

#tab .list .list_title {
  color: #333;
  margin-left: 1em;
}

#tab .list .tag {
  min-width: 148px;
  padding: 3px 5px;
  font-size: 0.9em;
  line-height: 1.3em;
  text-align: center;
  background: #5A77A8;
  margin: 0 5px;
  color: #fff;
}

#tab .archive {
  width: 240px;
  margin: 0 auto 50px;
  position: static;
  background: none;
  padding: 0;
}

#tab .archive a {
  display: table-cell;
  width: 1000px;
  height: 45px;
  color: #fff;
  background: #10326B url(../svg/arrow_white_right.svg) no-repeat 220px center;
  background-size: 6px auto;
  vertical-align: middle;
  text-align: center;
}

#tab .archive a:hover {
  opacity: 0.7;
}

.bnr-area {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.big-bnr,
.small-bnr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
}

.big-bnr__item a,
.small-bnr__item a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  transition: all .3s;
}

.big-bnr__item a:hover,
.small-bnr__item a:hover {
  opacity: .7;
}

.big-bnr__item img,
.small-bnr__item img {
  width: 100%;
}

.big-bnr__item,
.small-bnr__item {
  width: calc((100% - 76px) / 3);
}

.big-bnr.--col2,
.small-bnr.--col2 {
  justify-content: center;
  gap: 38px 60px;
}

.big-bnr.--col2 .big-bnr__item,
.small-bnr.--col2 .small-bnr__item {
  width: calc((100% - 60px) / 2);
  max-width: 368px;
}

/*2/6追加*/
.distributors_sp{display: none;}
.distributors_pc{margin-bottom: 90px;}
/*2/7追加*/
br.sp{display: none;}

.distributors-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 3.8%;
  margin: 40px calc(50% - 50vw) 0;
  padding: 0 calc(50vw - 50%) 24px;
  background: linear-gradient(to bottom, transparent 0, transparent 36px, #F6F9FF 36px, #F6F9FF 100%);
}

.distributors-btn__item {
  width: calc(92.4% / 3);
}

.distributors-btn__item__inner {
  display: flex;
  align-items: center;
  padding: 14px 36px 14px 18px;
  background: #fff;
  position: relative;
}

a.distributors-btn__item__inner {
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  transition: all .3s;
}

a.distributors-btn__item__inner::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background: url(../png/arrow_blue_right.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

a.distributors-btn__item__inner:hover {
  opacity: .7;
}

.distributors-btn__item img {
  width: 64px;
  margin-right: 14px;
}

.distributors-btn__txt {
  color: #443F3D;
  font-size: 16px;
  line-height: 1.375;
}

.distributors-btn__txt span {
  display: block;
  color: #C81432;
  font-weight: bold;
}

@media screen and (min-width: 1200px) {
  .mv .mv-thumb {
    width: 72%;
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width:920px){
  .topics-card__list {
    gap: 24px;
  }

  .topics-card {
    width: calc((100% - 48px) / 3);
  }
}

@media screen and (max-width:750px){

  #contents>*:last-child {
    margin-bottom: 60px;
  }

  /* mv */
  .mv .mv-slide__item__inner {
    margin: 0;
  }

  .mv .mv-slide__nav .slick-dots li {
    width: 32px;
    height: 5px;
    margin: 0 5px 15px;
  }

  .mv .mv-slide__nav .slick-dots li button {
    width: 32px;
    height: 5px;
  }

  .mv .mv-slide .slick-prev,
  .mv .mv-slide .slick-next {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    top: 66%;
  }

  .mv .mv-slide .slick-prev {
    left: 15px;
    right: auto;
  }

  .mv .mv-slide .slick-next {
    left: auto;
    right: 15px;
  }

  .mv .mv-slide .slick-prev::before,
  .mv .mv-slide .slick-next::before {
    width: 9px;
    height: 9px;
  }

  .mv .mv-thumb .slick-track {
    display: flex;
  }

  .mv .mv-thumb .slick-slide {
    height: auto !important;
  }

  .mv .mv-thumb__item {
    max-width: none;
  }

  .mv .mv-thumb__item__inner {
    margin: 0 14px;
  }

  .mv .mv-thumb__btn {
    padding: 10px;
  }

  /* featured */
  .feature {
    margin-top: 40px;
    padding: 19px 0 20px;
  }

  .feature-slide {
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .feature-slide .slick-track {
    display: flex;
  }

  .feature-slide .slick-slide {
    height: auto !important;
  }

  .feature-card {
    width: 100%;
    padding-bottom: 10px;
  }

  .feature-card__inner {
    margin: 0 12px;
  }

  .feature-card__ttl {
    padding: 6px 9px;
    font-size: 16px;
  }

  .feature-card__content {
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px;
    font-size: 13px;
  }

  .feature-card__img {
    width: 100%;
  }

  .feature-card__txt {
    width: 100%;
    flex: 1;
  }

  .feature-card__link-txt {
    margin-top: 20px;
  }

  .feature-slide .slick-prev,
  .feature-slide .slick-next {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: rgba(138, 163, 206, .8);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
  }

  .feature-slide .slick-prev {
    left: 15px;
  }

  .feature-slide .slick-next {
    right: 15px;
  }

  .feature-slide .slick-prev:hover,
  .feature-slide .slick-next:hover {
    background: rgba(138, 163, 206, 1);
  }

  .feature-slide .slick-prev::before,
  .feature-slide .slick-next::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 1;
  }

  .feature-slide .slick-prev::before {
    transform: rotate(-45deg);
    margin-left: 5px;
  }

  .feature-slide .slick-next::before {
    transform: rotate(135deg);
    margin-right: 5px;
  }

  .topics {
    margin-top: 40px;
  }

  #tab .tab {
    flex-wrap: wrap;
  }

  #tab .tab li {
    width: calc((100% / 2) - 1px);
    border-right: solid 1px #ccc;
  }

  #tab .tab li:nth-of-type(3n) {
    border-right: solid 1px #ccc;
  }

  #tab .tab li:nth-of-type(2n) {
    border-right: none;
  }

  #tab .tab li:nth-of-type(n + 3) {
    border-top: solid 1px #ccc;
  }

  #tab .tab li a {
    min-height: 66px;
  }

  #tab .tab p {
    font-size: 14px;
  }

  #tab .tab small {
    font-size: 9px;
  }

  .bnr-area {
    margin-top: 40px;
    gap: 20px;
  }

  .big-bnr,
  .small-bnr,
  .big-bnr.--col2,
  .small-bnr.--col2 {
    gap: 20px;
    justify-content: flex-start;
  }

  .big-bnr__item,
  .small-bnr__item,
  .big-bnr.--col2 .big-bnr__item,
  .small-bnr.--col2 .small-bnr__item {
    width: 100%;
    max-width: none;
  }

/*2/6追加*/
	.distributors_pc{display: none;}
	.distributors_sp{display: block; margin-bottom: 66px;}
	.distributors_sp ul li a{display: block;font-size: 1em;color: #333;padding: 20px 0 20px 35px;background-color: #fff; background-image: url("../png/map_icon_red.png"),url("../png/arrow_blue_right.png"); background-repeat: no-repeat; background-position:  left 10px center,right 10px center; background-size:15px auto, 6px auto; }
	.distributors_sp ul li a:hover{background-color: #eee; background-image: url("../png/map_icon_red.png"),url("../png/arrow_blue_right.png"); background-repeat: no-repeat; background-position:  left 10px center,right 10px center; background-size:15px auto, 6px auto;}
	.distributors_sp ul li{background: url("../gif/slide_border.gif"); padding-bottom: 2px;}
	.distributors_sp ul li:last-child{background: none;border-bottom: 1px solid #999; padding-bottom: 0;}

  .distributors-btn {
    margin-top: 20px;
    padding-bottom: 25px;
    background: linear-gradient(to bottom, transparent 0, transparent 25px, #F6F9FF 25px, #F6F9FF 100%);
  }

  .distributors-btn__item {
    width: 100%;
  }

  .distributors-btn__item__inner {
    padding: 7px 20px 7px 10px;
  }

  a.distributors-btn__item__inner::after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    right: 10px;
  }

  .distributors-btn__item img {
    width: 54px;
  }

  .distributors-btn__txt {
    font-size: 14px;
  }

  .distributors-btn__txt span {
    display: inline-block;
    margin-left: 1em;
  }
}

@media screen and (max-width:680px){
  #tab .list {
    height: auto;
    overflow: inherit;
  }

  #tab .list>li>ul {
    padding: 0;
  }

  #tab .list>li>ul>li:nth-child(n+7) {
    display: none;
  }

  #tab .list>li>ul>li a {
    padding-left: 0;
    padding-right: 0;
  }

  #tab .list .list_title {
    margin-left: 0;
  }

  #tab .archive {
    width: 100%;
    max-width: 400px;
  }

  #tab .archive a {
    background-position: right 15px center;
  }
}

@media screen and (max-width:480px){
  .topics-card__list {
    gap: 17px;
  }

  .topics-card {
    width: calc((100% - 17px) / 2);
  }

  #tab .tab {
    margin-bottom: 0;
  }

  #tab .list>li>ul {
    padding: 0;
  }

  #tab .list li .tag {
    margin: 0 5px 10px 0;
  }

/*2/7追加*/
	br.sp{display: block;}
	#tab .tab li:nth-child(4) a {padding-right: 0;padding-left: 0;}

}
