@charset "UTF-8";

/*----------------------------------------
	- base
-----------------------------------------*/
:root {
  --red_color: #ca0005;
}

/*=======================================
	base
=======================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img,
figure,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

/* デバイスで消すコンテンツ用 */
span.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  span.sp_none {
    display: none;
  }
  span.pc_none {
    display: inline-block;
  }
}

/* ページ内リンク */
.jump_posi {
  padding-top: 120px;
  margin-top: -120px;
  display: block;
}

/*=======================================
	header
=======================================*/
#header {
  background-color: transparent;
  transition: 0.3s;
}
#header ._list a {
  color: #fff;
}

@media screen and (min-width: 1161px) {

  #header.change-color {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #0000001F;
    transition: 0.3s;
  }
  #header.change-color .logo_color {
    fill: #161717;
  }
  #header.change-color ._list a {
    color: #161717;
  }
  @media (hover: hover) {
    #header.change-color ._list a:hover {
      color: var(--red_color);
    }
  }
}
@media screen and (max-width: 1160px) {
  #header {
    background: #fff;
  }
  #header ._list a {
    color: #161717;
  }
}

/*=======================================
	swiper
=======================================*/

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}


/*=======================================
	hd_main_wrap
=======================================*/
#hd_main_wrap .detail {
  position: relative;
}
#hd_main_wrap .text_box {
  content: "";
  position: absolute;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 10;
  bottom: 6.94444vw;
  left: 11.8vw;
}
#hd_main_wrap .text_box h2 {
  font-size: 36px;
  line-height: 170%;
  margin-bottom: 15px;
}
#hd_main_wrap .text_box p {
  font-size: 18px;
  font-style: italic;
  line-height: 150%;
}
@media screen and (max-width: 1160px) {
  #hd_main_wrap .detail {
    padding-top: 90px;
  }
  #hd_main_wrap .text_box {
    left: 5%;
  }
  #hd_main_wrap .text_box h2 {
    font-size: calc((36 / 1160) * 100vw);
  }
  #hd_main_wrap .text_box p {
    font-size: calc((18 / 1160) * 100vw);
  }
}
@media screen and (max-width: 768px) {
  #hd_main_wrap .detail {
    padding-top: 70px;
  }
  #hd_main_wrap .text_box {
    bottom: 12.8vw;
    /*
    left: 5.38vw;
    */
    left: 5%;
  }
  #hd_main_wrap .text_box h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }
  #hd_main_wrap .text_box p {
    font-weight: 700;
    font-size: 15px;
    line-height: 150%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
}

/*=======================================
	intro_wrap
=======================================*/
#intro_wrap .detail {
  background-color: #161717;
  background-image: radial-gradient(#454545 15%, transparent 15%);
  background-repeat: repeat;
  background-size: 10px 10px;
  color: #fff;
  padding: 80px 0 100px;
  margin-bottom: 80px;
  position: relative;
}
#intro_wrap .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
}
#intro_wrap .content h2 {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
}
#intro_wrap .content p {
  width: 800px;
  line-height: 200%;
  text-align: justify;
}
#intro_wrap .top_scroll_bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
  position: absolute;
  right: 4.166vw;
  top: -15.485vw;
  z-index: 10;
}
#intro_wrap .top_scroll_bar p {
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ca0005;
  writing-mode: vertical-rl;
}
#intro_wrap .top_scroll_bar .bar_set {
  position: relative;
}
#intro_wrap .top_scroll_bar span {
  content: "";
  position: absolute;
  background: #e31e23;
  width: 6px;
  height: 0;
  left: 50%;
  -webkit-animation: RightBorderMove 3s 1.2s ease infinite;
  animation: RightBorderMove 3s 1.2s ease infinite;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}


@media screen and (max-width: 1160px) {
  #intro_wrap .detail {
    padding: 6.89vw 0 8.62vw;
  }
  #intro_wrap .content h2 {
    font-size: calc((36 / 1160) * 100vw);
  }
  #intro_wrap .content p {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  #intro_wrap .detail {
    padding: 50px 0 60px;
    margin-bottom: 50px;
    background-image: radial-gradient(#454545 10%, transparent 15%);
    background-size: 10px 10px;
  }
  #intro_wrap .content p {
    width: auto;
  }
  #intro_wrap .content h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
  }

  #intro_wrap .top_scroll_bar {
    gap: 5px 0;
    top: -38.45vw;
  }
  #intro_wrap .top_scroll_bar p {
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    top: -37vw;
  }
  #intro_wrap .top_scroll_bar span {
    height: 0;
    width: 3px;
  }

  /*
  @-webkit-keyframes RightBorderMove {
    0% {
      height: 0;
      top: calc(100% + 5px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
    60% {
      height: 180px;
      top: calc(100% + 5px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
    100% {
      height: 0px;
      top: calc(100% + 185px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
  }
  
  @keyframes RightBorderMove {
    0% {
      height: 0;
      top: calc(100% + 5px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
    60% {
      height: 180px;
      top: calc(100% + 5px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
    100% {
      height: 0px;
      top: calc(100% + 185px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
  }
  */
}

/*=======================================
	strong_wrap
=======================================*/
#strong_wrap .detail {
  margin-bottom: 100px;
}

#strong_wrap h3 {
  margin: 0 auto 80px;
}
#strong_wrap .content,
#strong_wrap .content02 {
  position: relative;
}
#strong_wrap .content {
  margin-bottom: 120px;
}
/* グレー背景 */
#strong_wrap .content .gray_bg {
  content: "";
  position: absolute;
  width: 88.2vw;
  height: 90%;
  bottom: 0;
  left: 0;
  background-color: #f3f3f3;
  z-index: -1;
}
/* 画像 */
#strong_wrap .content .img {
  content: "";
  position: absolute;
  width: 48.25vw;
  height: auto;
  top: 0;
  right: 0;
  z-index: 5;
}
#strong_wrap .content .img img {
  height: 491px;
  vertical-align: top;
  width: 100%;
  object-fit: cover;
}
#strong_wrap .content .clm {
  padding-bottom: 72px;
  display: flex;
}
#strong_wrap .content .clm .left {
  width: 42%;
  position: relative;
  padding-left: 6.36%;
}
#strong_wrap .content .clm .left div {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  align-items: center;
}
#strong_wrap .content .clm .left div span.text {
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ca0005;
  writing-mode: vertical-rl;
}
#strong_wrap .content .clm .left span.bow {
  display: block;
  background: #e31e23;
  width: 6px;
  height: 0%;
}

/* active時 */
#strong_wrap .content .clm .left span.bow.is-animated {
  animation: BowDown 1s 0.8s forwards;
}
#strong_wrap .content02 .clm .right span.bow.is-animated {
  animation: BowDown 1s 0.8s forwards;
}
@-webkit-keyframes BowDown {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes BowDown {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

#strong_wrap .content .clm .left p.wide_num {
  font-style: italic;
  font-weight: 600;
  font-size: 100px;
  line-height: 100%;
  color: #ca0005;
  margin-bottom: 54px;
}
#strong_wrap .content .clm .left h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

#strong_wrap .content02 .gray_bg {
  content: "";
  position: absolute;
  width: 88.2vw;
  height: 90%;
  bottom: 0;
  right: 0;
  background-color: #f3f3f3;
  z-index: -1;
}
/* 画像 */
#strong_wrap .content02 .img {
  content: "";
  position: absolute;
  width: 48.25vw;
  height: auto;
  top: 0;
  left: 0;
  z-index: 5;
}
#strong_wrap .content02 .img img {
  height: 491px;
  vertical-align: top;
  width: 100%;
  object-fit: cover;
}
#strong_wrap .content02 .clm {
  padding-bottom: 72px;
  display: flex;
  justify-content: space-between;
}
#strong_wrap .content02 .clm .right {
  width: 42%;
  position: relative;
  padding-right: 6.36%;
}
#strong_wrap .content02 .clm .right div {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  align-items: center;
}
#strong_wrap .content02 .clm .right div span.text {
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ca0005;
  writing-mode: vertical-rl;
}
#strong_wrap .content02 .clm .right span.bow {
  display: block;
  background: #e31e23;
  width: 6px;
  height: 0%;
}

#strong_wrap .content02 .clm .right p.wide_num {
  font-style: italic;
  font-weight: 600;
  font-size: 100px;
  line-height: 100%;
  color: #ca0005;
  margin-bottom: 54px;
}
#strong_wrap .content02 .clm .right h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

@media screen and (max-width: 1160px) {
  #strong_wrap h3 {
    margin-bottom: 6.89vw;
  }
  #strong_wrap .content {
    margin-bottom: 10.34vw;
  }
  #strong_wrap .content02 .clm {
    padding-bottom: 6.2vw;
  }
  #strong_wrap .content .clm .left p.wide_num,
  #strong_wrap .content02 .clm .right p.wide_num {
    font-size: calc((100 / 1160) * 100vw);
    margin-bottom: 35px;
  }
  #strong_wrap .content .clm .left h4,
  #strong_wrap .content02 .clm .right h4 {
    font-size: calc((36 / 1160) * 100vw);
    margin-bottom: 20px;
  }
  #strong_wrap .content .img img,
  #strong_wrap .content02 .img img {
    height: 40.8vw;
  }
}
@media screen and (max-width: 768px) {
  #strong_wrap h3 {
    margin-bottom: 62px;
  }
  #strong_wrap .content .clm {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 200px;
  }
  #strong_wrap .content .clm .left,
  #strong_wrap .content .clm .right {
    width: 85%;
  }
  #strong_wrap .content .clm .left {
    padding-left: 0;
  }
  #strong_wrap .content .gray_bg {
    width: 95vw;
  }
  #strong_wrap .content .clm .left div {
    left: -32px;
  }
  #strong_wrap .content .clm .left p.wide_num,
  #strong_wrap .content02 .clm .right p.wide_num {
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 20px;
  }
  #strong_wrap .content02 .clm .right p.wide_num {
    text-align: right;
  }
  #strong_wrap .content .clm .left h4,
  #strong_wrap .content02 .clm .right h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 20px;
  }
  #strong_wrap .content .clm .right {
    height: 140px;
  }
  #strong_wrap .content .img {
    top: auto;
    bottom: -120px;
    width: 90vw;
  }
  #strong_wrap .content .img img,
  #strong_wrap .content02 .img img {
    height: 217px;
  }
  #strong_wrap .content .gray_bg {
    height: 92.5%;
  }
  #strong_wrap .content .clm .left div span.text {
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
  }
  #strong_wrap .content .clm .left span.bow {
    width: 3px;
  }
  #strong_wrap .content02 .clm {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 200px;
  }
  #strong_wrap .content02 .clm .right,
  #strong_wrap .content02 .clm .left {
    width: 85%;
  }
  #strong_wrap .content02 .gray_bg {
    width: 95vw;
    height: 92.5%;
  }
  #strong_wrap .content02 .clm .right {
    padding: 0;
  }
  #strong_wrap .content02 .clm .right div {
    right: -32px;
  }
  #strong_wrap .content02 .clm .left {
    height: 140px;
  }
  #strong_wrap .content02 .img {
    top: auto;
    bottom: -120px;
    width: 90vw;
  }
  #strong_wrap .content02 .clm .right div span.text {
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
  }
  #strong_wrap .content02 .clm .right span.bow {
    width: 3px;
  }
}

/*=======================================
	product_wrap
=======================================*/
#product_wrap .detail {
  margin-bottom: 100px;
}
#product_wrap h3 {
  margin-bottom: 60px;
}
#product_wrap h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
  text-align: center;
  margin-bottom: 10px;
}
#product_wrap p {
  line-height: 200%;
  text-align: center;
  margin-bottom: 50px;
}
.graph {
  width: 100%;
  background-color: #f3f3f3;
  position: relative;
}
.graph span.dummy {
  content: "";
  position: absolute;
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  padding: 10px 0;
  background-color: #ca0005;
  width: 213px;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  #product_wrap h3 {
    margin-bottom: 5.17vws;
  }
}
@media screen and (max-width: 768px) {
  #product_wrap .detail {
    margin-bottom: 60px;
  }
  #product_wrap h3 {
    margin-bottom: 30px;
  }
  #product_wrap h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
  }
  #product_wrap p {
    text-align: justify;
    margin-bottom: 30px;
  }
  .graph span.dummy {
    font-size: 16px;
    line-height: 200%;
    width: 128px;
    padding: 5px 0;
    letter-spacing: 0.15em;
  }
}

/*=======================================
	philo_wrap
=======================================*/
#philo_wrap .detail {
  background-color: #161717;
  background-image: radial-gradient(#454545 15%, transparent 15%);
  background-repeat: repeat;
  background-size: 10px 10px;
  color: #fff;
  padding: 80px 0 100px;
  margin-bottom: 80px;
}
#philo_wrap h3 {
  margin-bottom: 60px;
}
#philo_wrap h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
  text-align: center;
  margin-bottom: 10px;
}
#philo_wrap p {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 200%;
}

/* 動画 */
#philo_wrap .philo_movie video {
  width: 100%;
}
#philo_wrap .responsive {
  width: 100%;
  aspect-ratio: 16/9;
}


@media screen and (max-width: 1160px) {
  #philo_wrap .detail {
    margin-bottom: 6.89vw;
  }
  #philo_wrap h3 {
    margin-bottom: 5.17vw;
  }
}
@media screen and (max-width: 768px) {
  #philo_wrap .detail {
    background-image: radial-gradient(#454545 10%, transparent 15%);
    background-size: 10px 10px;
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
  #philo_wrap h3 {
    margin-bottom: 30px;
  }
  #philo_wrap h4 {
    font-size: 20px;
    line-height: 150%;
  }
  #philo_wrap p {
    margin: 0 auto 40px;
  }
}

/*=======================================
	faci_wrap
=======================================*/
#facility_wrap .detail {
  background-color: #fff;
}
#facility_wrap h3 {
  margin-bottom: 80px;
}
#facility_wrap .box_area {
  display: flex;
  flex-direction: column;
  gap: 100px 0;
}
#facility_wrap .box_area .box {
  display: flex;
  align-items: center;
  gap: 0 50px;
}
#facility_wrap .box_area .box:nth-child(2n) {
  flex-direction: row-reverse;
}
#facility_wrap .box_area .box .left {
  width: 100%;
}
#facility_wrap .box_area .box h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  padding-bottom: 12px;
  margin-bottom: 24px;
  position: relative;
}
#facility_wrap .box_area .box h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ca0005;
}
#facility_wrap .box_area .box .left p.white_area {
  margin-bottom: 12px;
  line-height: 200%;
}
#facility_wrap .box_area .box .left .gray_area {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  background-color: #f3f3f3;
  margin-bottom: 20px;
}
#facility_wrap .box_area .box .left .gray_area p {
  font-size: 15px;
  line-height: 150%;
}
#facility_wrap .box_area .box .left .gray_area p span {
  font-weight: 700;
}
#facility_wrap .box_area .box .left ul.img_list {
  display: flex;
  gap: 0 6px;
}
#facility_wrap .box_area .box .left ul.img_list li {
  width: calc((100% - 12px) / 3);
}

#facility_wrap .box_area .box .left #facility_wrap .box_area .box .right {
  width: 100%;
}

@media screen and (max-width: 1160px) {
  #facility_wrap h3 {
    margin-bottom: 6.89vw;
  }
  #facility_wrap .box_area {
    gap: 8.62vw 0;
  }
  #facility_wrap .box_area .box h4 {
    font-size: calc((24 / 1160) * 100vw);
  }
  #facility_wrap .box_area .box .left .gray_area p {
    font-size: calc((15 / 1160) * 100vw);
  }
}

@media screen and (max-width: 768px) {
  #facility_wrap h3 {
    margin-bottom: 50px;
  }
  #facility_wrap .box_area {
    gap: 40px 0;
  }
  #facility_wrap .box_area .box {
    flex-direction: column-reverse;
    gap: 5px 0;
  }
  #facility_wrap .box_area .box .left {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }
  #facility_wrap .box_area .box .left ul.img_list {
    order: 1;
  }
  #facility_wrap .box_area .box .left p.white_area {
    order: 2;
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 0;
  }
  #facility_wrap .box_area .box .left .gray_area {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    margin-bottom: 0;
    padding: 10px 20px;
  }
  #facility_wrap .box_area .box .left ul.img_list {
    gap: 0 5px;
  }
  #facility_wrap .box_area .box:nth-child(2n) {
    flex-direction: column-reverse;
  }
  #facility_wrap .box_area .box h4 {
    font-size: 20px;
    line-height: 150%;
  }
  #facility_wrap .box_area .box h4::before {
    height: 2px;
  }
  #facility_wrap .box_area .box .left .gray_area p {
    font-size: 15px;
  }
}

/*=======================================
	news_wrap
=======================================*/
.top_bg_gray {
  background: #f3f3f3;
  margin-top: 100px;
  position: relative;
  padding-bottom: 80px;
}
.top_bg_gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 273px;
  background-color: #fff;
}
#news_wrap .detail {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  content: "";
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 80px 0;
  position: relative;
  z-index: 5;
}
#news_wrap .detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--red_color);
}
#news_wrap h3._head {
  position: relative;
  font-style: italic;
  font-weight: 600;
  font-size: 80px;
  padding-top: 10px;
}
#news_wrap h3._head::before {
  content: attr(data-st_outline);
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 20px;
  font-family: "Noto Sans JP";
  color: var(--red_color);
  font-style: normal;
}
#news_wrap ._inner {
  display: flex;
  gap: 0 9%;
}
#news_wrap ._inner ._left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#news_wrap ._inner ._right {
  width: 100%;
}
#news_wrap .all_button {
  width: 283px;
  display: block;
  border: 1px solid var(--red_color);
  padding: 21px 0;
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.15em;
}
#news_wrap .all_button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../../image/top/arrow_red.svg) no-repeat center/6.5px 10px;
  width: 6.5px;
  height: 10px;
}
#news_wrap .all_button span {
  color: var(--red_color);
}
#news_wrap ._right ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
#news_wrap ._right ul li a {
  padding: 0 60px 20px 0;
  border-bottom: 1px solid #848484;
  display: block;
  position: relative;
}
#news_wrap ._right ul li a::before {
  content: "";
  background: #e31e23;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@media (hover: hover) {
  #news_wrap .all_button:hover {
    opacity: 1;
    border: 1px solid var(--red_color);
    background-color: var(--red_color);
  }
  #news_wrap .all_button:hover span {
    color: #fff;
  }
  #news_wrap .all_button:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(../../image/top/arrow_white.svg) no-repeat center/6.5px 10px;
    width: 6.5px;
    height: 10px;
  }
  #news_wrap ._right ul li a:hover {
    opacity: 1;
  }
  #news_wrap ._right ul li a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  #news_wrap ._right ul li a:hover .hov_arrow {
    stroke: var(--red_color);
  }
  #news_wrap ._right ul li a:hover > span {
    right: 15px;
  }
}
#news_wrap ._right ul li .sub_set {
  display: flex;
  color: #848484;
  margin-bottom: 10px;
}
#news_wrap ._right ul li .sub_set time {
  padding-right: 20px;
  font-size: 15px;
  line-height: 150%;
}
#news_wrap ._right ul li .sub_set span {
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  padding: 1px 22px;
  border-left: 1px solid #848484;
  border-right: 1px solid #848484;
}
#news_wrap ._right ul li a h4 {
  font-weight: 700;
  letter-spacing: 0.15em;
}
#news_wrap ._right ul li a > span {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.hov_arrow {
  stroke: #848484;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1160px) {
  #news_wrap .detail {
    padding: 6.89vw 0;
  }
}

@media screen and (max-width: 768px) {
  #news_wrap ._inner {
    flex-direction: column-reverse;
  }
  .top_bg_gray {
    margin-top: 60px;
  }
  #news_wrap .detail {
    padding: 60px 0;
  }
  #news_wrap .h3_outline {
    text-align: left;
    width: 100%;
    padding-top: 25px;
    margin-bottom: 25px;
  }
  #news_wrap .h3_outline::before {
    left: 0;
    transform: translateX(0);
  }
  #news_wrap ._right ul li .sub_set {
    margin-bottom: 5px;
  }
  #news_wrap .w1100 {
    width: 85%;
  }
  #news_wrap ._right ul {
    margin-bottom: 30px;
  }
  #news_wrap ._right ul li .sub_set time {
    padding-right: 10px;
    line-height: 1;
  }
  #news_wrap ._right ul li .sub_set span {
    padding: 0 10px;
    font-weight: 400;
    line-height: 1;
  }
  #news_wrap ._right ul li a {
    padding: 0 0 15px 0;
  }
  #news_wrap ._right ul li a > span {
    display: none;
  }
  #news_wrap .all_button {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 16.5px 0;
  }
  #news_wrap .all_button::after {
    width: 8px;
    height: 12px;
  }
  #news_wrap::before {
    width: 3px;
  }
}

/*=======================================
	inview
=======================================*/
/*inview動き1*/
.sli-up1 {
  opacity: 0;
  transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
}
.slideInUp1 {
  opacity: 1 !important;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transition-delay: 0.4s;
  transition-duration: 0.6s;
}
/*inview動き2*/
.sli-up2 {
  opacity: 0;
  transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
}
.slideInUp2 {
  opacity: 1 !important;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transition-delay: 0.8s;
  transition-duration: 0.6s;
}